diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 1492416c01..c2203262a1 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -33,14 +33,19 @@ jobs: git config --global --add safe.directory $(realpath .) git diff --exit-code --ignore-cr-at-eol *.rb - - name: Check HPXMLs + - name: Check HPXMLs/Schedules shell: bash run: | echo "Regenerating HPXML files..." openstudio tasks.rb update_hpxmls - echo "Checking for HPXML differences..." git config --global --add safe.directory $(realpath .) + echo "Checking for HPXML differences..." + echo "If differences are found below, then HPXMLs need to be regenerated using: openstudio tasks.rb update_hpxmls" git diff --exit-code --ignore-cr-at-eol workflow/*.xml + echo "Checking for schedule CSV differences..." + echo "If differences are found below, then schedule CSVs need to be regenerated using: openstudio tasks.rb update_hpxmls" + git diff --stat --ignore-cr-at-eol HPXMLtoOpenStudio/resources/schedule_files/*.csv + git diff --quiet --ignore-cr-at-eol HPXMLtoOpenStudio/resources/schedule_files/*.csv - name: Run measure unit tests run: | diff --git a/BuildResidentialHPXML/README.md b/BuildResidentialHPXML/README.md index 0c76275dc2..0c470bdac2 100644 --- a/BuildResidentialHPXML/README.md +++ b/BuildResidentialHPXML/README.md @@ -174,7 +174,7 @@ Enter a date range like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used. - **Name:** ``simulation_control_temperature_capacitance_multiplier`` -- **Type:** ``String`` +- **Type:** ``Double`` - **Required:** ``false`` @@ -4510,6 +4510,154 @@ Number of bedrooms served by the lithium ion battery. Only needed if single-fami
+**Vehicle: Type** + +The type of vehicle present at the home. + +- **Name:** ``vehicle_type`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Vehicle: EV Battery Nominal Battery Capacity** + +The nominal capacity of the vehicle battery, only applies to electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_battery_capacity`` +- **Type:** ``Double`` + +- **Units:** ``kWh`` + +- **Required:** ``false`` + +
+ +**Vehicle: EV Battery Usable Capacity** + +The usable capacity of the vehicle battery, only applies to electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_battery_usable_capacity`` +- **Type:** ``Double`` + +- **Units:** ``kWh`` + +- **Required:** ``false`` + +
+ +**Vehicle: Combined Fuel Economy Units** + +The combined fuel economy units of the vehicle. Only 'kWh/mile', 'mile/kWh', or 'mpge' are allow for electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_fuel_economy_units`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `kWh/mile`, `mile/kWh`, `mpge`, `mpg` + +
+ +**Vehicle: Combined Fuel Economy** + +The combined fuel economy of the vehicle. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_fuel_economy_combined`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Vehicle: Miles Driven Per Year** + +The annual miles the vehicle is driven. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_miles_driven_per_year`` +- **Type:** ``Double`` + +- **Units:** ``miles`` + +- **Required:** ``false`` + +
+ +**Vehicle: Hours Driven Per Week** + +The weekly hours the vehicle is driven. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_hours_driven_per_week`` +- **Type:** ``Double`` + +- **Units:** ``hours`` + +- **Required:** ``false`` + +
+ +**Vehicle: Fraction Charged at Home** + +The fraction of charging energy provided by the at-home charger to the vehicle, only applies to electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used. + +- **Name:** ``vehicle_fraction_charged_home`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Electric Vehicle Charger: Present** + +Whether there is an electric vehicle charger present. + +- **Name:** ``ev_charger_present`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Electric Vehicle Charger: Charging Level** + +The charging level of the EV charger. If not provided, the OS-HPXML default (see HPXML Electric Vehicle Chargers) is used. + +- **Name:** ``ev_charger_level`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `1`, `2`, `3` + +
+ +**Electric Vehicle Charger: Rated Charging Power** + +The rated power output of the EV charger. If not provided, the OS-HPXML default (see HPXML Electric Vehicle Chargers) is used. + +- **Name:** ``ev_charger_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Electric Vehicle Charger: Location** + +The space type for the EV charger. If not provided, the OS-HPXML default (see HPXML Electric Vehicle Chargers) is used. + +- **Name:** ``ev_charger_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `garage`, `outside` + +
+ **Lighting: Present** Whether there is lighting energy use. diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index b6b656a688..03c51f394a 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -114,7 +114,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription("Enter a date range like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default (see HPXML Building Site) is used.") args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('simulation_control_temperature_capacitance_multiplier', false) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('simulation_control_temperature_capacitance_multiplier', false) arg.setDisplayName('Simulation Control: Temperature Capacitance Multiplier') arg.setDescription("Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used.") args << arg @@ -2682,6 +2682,88 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('#') args << arg + arg = OpenStudio::Measure::OSArgument::makeStringArgument('vehicle_type', false) + arg.setDisplayName('Vehicle: Type') + arg.setDescription('The type of vehicle present at the home.') + arg.setDefaultValue(Constants::None) + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('vehicle_battery_capacity', false) + arg.setDisplayName('Vehicle: EV Battery Nominal Battery Capacity') + arg.setDescription("The nominal capacity of the vehicle battery, only applies to electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + arg.setUnits('kWh') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('vehicle_battery_usable_capacity', false) + arg.setDisplayName('Vehicle: EV Battery Usable Capacity') + arg.setDescription("The usable capacity of the vehicle battery, only applies to electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + arg.setUnits('kWh') + args << arg + + fuel_economy_units_choices = OpenStudio::StringVector.new + fuel_economy_units_choices << HPXML::UnitsKwhPerMile + fuel_economy_units_choices << HPXML::UnitsMilePerKwh + fuel_economy_units_choices << HPXML::UnitsMPGe + fuel_economy_units_choices << HPXML::UnitsMPG + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('vehicle_fuel_economy_units', fuel_economy_units_choices, false) + arg.setDisplayName('Vehicle: Combined Fuel Economy Units') + arg.setDescription("The combined fuel economy units of the vehicle. Only '#{HPXML::UnitsKwhPerMile}', '#{HPXML::UnitsMilePerKwh}', or '#{HPXML::UnitsMPGe}' are allow for electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('vehicle_fuel_economy_combined', false) + arg.setDisplayName('Vehicle: Combined Fuel Economy') + arg.setDescription("The combined fuel economy of the vehicle. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('vehicle_miles_driven_per_year', false) + arg.setDisplayName('Vehicle: Miles Driven Per Year') + arg.setDescription("The annual miles the vehicle is driven. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + arg.setUnits('miles') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('vehicle_hours_driven_per_week', false) + arg.setDisplayName('Vehicle: Hours Driven Per Week') + arg.setDescription("The weekly hours the vehicle is driven. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + arg.setUnits('hours') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('vehicle_fraction_charged_home', false) + arg.setDisplayName('Vehicle: Fraction Charged at Home') + arg.setDescription("The fraction of charging energy provided by the at-home charger to the vehicle, only applies to electric vehicles. If not provided, the OS-HPXML default (see HPXML Vehicles) is used.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('ev_charger_present', false) + arg.setDisplayName('Electric Vehicle Charger: Present') + arg.setDescription('Whether there is an electric vehicle charger present.') + arg.setDefaultValue(false) + args << arg + + ev_charging_level_choices = OpenStudio::StringVector.new + ev_charging_level_choices << '1' + ev_charging_level_choices << '2' + ev_charging_level_choices << '3' + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('ev_charger_level', ev_charging_level_choices, false) + arg.setDisplayName('Electric Vehicle Charger: Charging Level') + arg.setDescription("The charging level of the EV charger. If not provided, the OS-HPXML default (see HPXML Electric Vehicle Chargers) is used.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ev_charger_power', false) + arg.setDisplayName('Electric Vehicle Charger: Rated Charging Power') + arg.setDescription("The rated power output of the EV charger. If not provided, the OS-HPXML default (see HPXML Electric Vehicle Chargers) is used.") + arg.setUnits('W') + args << arg + + ev_charger_location_choices = OpenStudio::StringVector.new + ev_charger_location_choices << HPXML::LocationGarage + ev_charger_location_choices << HPXML::LocationOutside + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('ev_charger_location', ev_charger_location_choices, false) + arg.setDisplayName('Electric Vehicle Charger: Location') + arg.setDescription("The space type for the EV charger. If not provided, the OS-HPXML default (see HPXML Electric Vehicle Chargers) is used.") + args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('lighting_present', true) arg.setDisplayName('Lighting: Present') arg.setDescription('Whether there is lighting energy use.') @@ -3732,7 +3814,7 @@ def argument_errors(args) args[:schedules_unavailable_period_dates].count(',')] if !args[:schedules_unavailable_period_window_natvent_availabilities].nil? - schedules_unavailable_period_lengths += [args[:schedules_unavailable_period_window_natvent_availabilities].count(',')] + schedules_unavailable_period_lengths.concat([args[:schedules_unavailable_period_window_natvent_availabilities].count(',')]) end error = (schedules_unavailable_period_lengths.uniq.size != 1) @@ -3809,13 +3891,13 @@ def argument_errors(args) args[:emissions_electricity_units].count(','), args[:emissions_electricity_values_or_filepaths].count(',')] - emissions_scenario_lengths += [args[:emissions_electricity_number_of_header_rows].count(',')] unless args[:emissions_electricity_number_of_header_rows].nil? - emissions_scenario_lengths += [args[:emissions_electricity_column_numbers].count(',')] unless args[:emissions_electricity_column_numbers].nil? + emissions_scenario_lengths.concat([args[:emissions_electricity_number_of_header_rows].count(',')]) unless args[:emissions_electricity_number_of_header_rows].nil? + emissions_scenario_lengths.concat([args[:emissions_electricity_column_numbers].count(',')]) unless args[:emissions_electricity_column_numbers].nil? HPXML::fossil_fuels.each do |fossil_fuel| underscore_case = OpenStudio::toUnderscoreCase(fossil_fuel) - emissions_scenario_lengths += [args["emissions_#{underscore_case}_values".to_sym].count(',')] unless args["emissions_#{underscore_case}_values".to_sym].nil? + emissions_scenario_lengths.concat([args["emissions_#{underscore_case}_values".to_sym].count(',')]) unless args["emissions_#{underscore_case}_values".to_sym].nil? end error = (emissions_scenario_lengths.uniq.size != 1) @@ -3828,8 +3910,8 @@ def argument_errors(args) HPXML::all_fuels.each do |fuel| underscore_case = OpenStudio::toUnderscoreCase(fuel) - bills_scenario_lengths += [args["utility_bill_#{underscore_case}_fixed_charges".to_sym].count(',')] unless args["utility_bill_#{underscore_case}_fixed_charges".to_sym].nil? - bills_scenario_lengths += [args["utility_bill_#{underscore_case}_marginal_rates".to_sym].count(',')] unless args["utility_bill_#{underscore_case}_marginal_rates".to_sym].nil? + bills_scenario_lengths.concat([args["utility_bill_#{underscore_case}_fixed_charges".to_sym].count(',')]) unless args["utility_bill_#{underscore_case}_fixed_charges".to_sym].nil? + bills_scenario_lengths.concat([args["utility_bill_#{underscore_case}_marginal_rates".to_sym].count(',')]) unless args["utility_bill_#{underscore_case}_marginal_rates".to_sym].nil? end error = (bills_scenario_lengths.uniq.size != 1) @@ -3941,6 +4023,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) set_solar_thermal(hpxml_bldg, args, weather) set_pv_systems(hpxml_bldg, args, weather) set_battery(hpxml_bldg, args) + set_vehicle(hpxml_bldg, args) set_lighting(hpxml_bldg, args) set_dehumidifier(hpxml_bldg, args) set_clothes_washer(hpxml_bldg, args) @@ -6877,6 +6960,46 @@ def self.set_battery(hpxml_bldg, args) number_of_bedrooms_served: number_of_bedrooms_served) end + # Set the vehicle and electric vehicle charger properties, including: + # - vehicle battery nominal and usable capacity + # - fuel economy + # - fuel economy units + # - miles driven per year + # - hours driven per week + # - fraction charged at home + # - EV charger reference + # - EV charger location + # - EV charger charging power + # + # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit + # @param args [Hash] Map of :argument_name => value + # @return [nil] + def self.set_vehicle(hpxml_bldg, args) + return unless args[:vehicle_type] || args[:ev_charger_present] + + charger_id = nil + if args[:ev_charger_present] + charger_id = "EVCharger#{hpxml_bldg.ev_chargers.size + 1}" + hpxml_bldg.ev_chargers.add(id: charger_id, + location: args[:ev_charger_location], + charging_level: args[:ev_charger_level], + charging_power: args[:ev_charger_power]) + end + + if args[:vehicle_type] != Constants::None + hpxml_bldg.vehicles.add(id: "Vehicle#{hpxml_bldg.vehicles.size + 1}", + vehicle_type: args[:vehicle_type], + nominal_capacity_kwh: args[:vehicle_battery_capacity], + usable_capacity_kwh: args[:vehicle_battery_usable_capacity], + fuel_economy_combined: args[:vehicle_fuel_economy_combined], + fuel_economy_units: args[:vehicle_fuel_economy_units], + miles_per_year: args[:vehicle_miles_driven_per_year], + hours_per_week: args[:vehicle_hours_driven_per_week], + fraction_charged_home: args[:vehicle_fraction_charged_home], + ev_charger_idref: charger_id) + end + end + # Set the lighting properties, including: # - interior/exterior/garage fraction of lamps that are LFL/CFL/LED # - interior/exterior/garage usage multipliers diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 134e00563b..5c51a299dc 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 54f3be39-bbda-4b53-8238-20c4166edca5 - 2025-01-16T23:01:22Z + 6b3a2a36-11b7-4a15-b2db-34b47b10d771 + 2025-02-27T17:59:16Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -149,7 +149,7 @@ simulation_control_temperature_capacitance_multiplier Simulation Control: Temperature Capacitance Multiplier Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. - String + Double false false @@ -5519,6 +5519,161 @@ false false + + vehicle_type + Vehicle: Type + The type of vehicle present at the home. + String + false + false + none + + + vehicle_battery_capacity + Vehicle: EV Battery Nominal Battery Capacity + The nominal capacity of the vehicle battery, only applies to electric vehicles. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Double + kWh + false + false + + + vehicle_battery_usable_capacity + Vehicle: EV Battery Usable Capacity + The usable capacity of the vehicle battery, only applies to electric vehicles. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Double + kWh + false + false + + + vehicle_fuel_economy_units + Vehicle: Combined Fuel Economy Units + The combined fuel economy units of the vehicle. Only 'kWh/mile', 'mile/kWh', or 'mpge' are allow for electric vehicles. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Choice + false + false + + + kWh/mile + kWh/mile + + + mile/kWh + mile/kWh + + + mpge + mpge + + + mpg + mpg + + + + + vehicle_fuel_economy_combined + Vehicle: Combined Fuel Economy + The combined fuel economy of the vehicle. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Double + false + false + + + vehicle_miles_driven_per_year + Vehicle: Miles Driven Per Year + The annual miles the vehicle is driven. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Double + miles + false + false + + + vehicle_hours_driven_per_week + Vehicle: Hours Driven Per Week + The weekly hours the vehicle is driven. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Double + hours + false + false + + + vehicle_fraction_charged_home + Vehicle: Fraction Charged at Home + The fraction of charging energy provided by the at-home charger to the vehicle, only applies to electric vehicles. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-vehicles'>HPXML Vehicles</a>) is used. + Double + false + false + + + ev_charger_present + Electric Vehicle Charger: Present + Whether there is an electric vehicle charger present. + Boolean + false + false + false + + + true + true + + + false + false + + + + + ev_charger_level + Electric Vehicle Charger: Charging Level + The charging level of the EV charger. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-electric-vehicle-chargers'>HPXML Electric Vehicle Chargers</a>) is used. + Choice + false + false + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + + + ev_charger_power + Electric Vehicle Charger: Rated Charging Power + The rated power output of the EV charger. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-electric-vehicle-chargers'>HPXML Electric Vehicle Chargers</a>) is used. + Double + W + false + false + + + ev_charger_location + Electric Vehicle Charger: Location + The space type for the EV charger. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-electric-vehicle-chargers'>HPXML Electric Vehicle Chargers</a>) is used. + Choice + false + false + + + garage + garage + + + outside + outside + + + lighting_present Lighting: Present @@ -7527,7 +7682,7 @@ README.md md readme - ECAEDA1E + 4D1FBA76 README.md.erb @@ -7544,7 +7699,7 @@ measure.rb rb script - 89B21962 + 341F5C60 constants.rb @@ -7556,7 +7711,7 @@ geometry.rb rb resource - 170EAEAB + C905753A version.txt @@ -7568,7 +7723,7 @@ test_build_residential_hpxml.rb rb test - 71348C9A + BAC58C3D diff --git a/BuildResidentialHPXML/resources/geometry.rb b/BuildResidentialHPXML/resources/geometry.rb index 3530800384..1c7124c5ab 100644 --- a/BuildResidentialHPXML/resources/geometry.rb +++ b/BuildResidentialHPXML/resources/geometry.rb @@ -1061,10 +1061,10 @@ def self.create_apartment(model, # Adiabatic floor/ceiling adb_levels = [] if attic_type == HPXML::LocationOtherHousingUnit - adb_levels += [EPlus::SurfaceTypeRoofCeiling] + adb_levels.concat([EPlus::SurfaceTypeRoofCeiling]) end if foundation_type == HPXML::LocationOtherHousingUnit - adb_levels += [EPlus::SurfaceTypeFloor] + adb_levels.concat([EPlus::SurfaceTypeFloor]) end # Make conditioned space surfaces adiabatic diff --git a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index 1e4e7b282b..866602fc4e 100644 --- a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb +++ b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -68,6 +68,8 @@ def test_workflows 'extra-water-heater-attic.xml' => 'base-sfd.xml', 'extra-battery-crawlspace.xml' => 'base-sfd.xml', 'extra-battery-attic.xml' => 'base-sfd.xml', + 'extra-vehicle-ev.xml' => 'extra-enclosure-garage-partially-protruded.xml', + 'extra-two-batteries.xml' => 'base-sfd.xml', 'extra-detailed-performance-autosize.xml' => 'base-sfd.xml', 'extra-power-outage-periods.xml' => 'base-sfd.xml', @@ -939,6 +941,14 @@ def _set_measure_argument_values(hpxml_file, args) when 'extra-battery-attic.xml' args['battery_present'] = true args['battery_location'] = HPXML::LocationAttic + when 'extra-vehicle-ev.xml' + args['vehicle_type'] = HPXML::VehicleTypeBEV + args['ev_charger_present'] = true + args['ev_charger_location'] = HPXML::LocationGarage + when 'extra-two-batteries.xml' + args['vehicle_type'] = HPXML::VehicleTypeBEV + args['battery_present'] = true + args['battery_location'] = HPXML::LocationAttic when 'extra-detailed-performance-autosize.xml' args['heating_system_type'] = Constants::None args['cooling_system_type'] = Constants::None diff --git a/BuildResidentialScheduleFile/measure.rb b/BuildResidentialScheduleFile/measure.rb index 55a29b78bd..7c481ea7b5 100644 --- a/BuildResidentialScheduleFile/measure.rb +++ b/BuildResidentialScheduleFile/measure.rb @@ -144,7 +144,6 @@ def run(model, runner, user_arguments) epw_path = Location.get_epw_path(hpxml_bldg, hpxml_path) weather = WeatherFile.new(epw_path: epw_path, runner: runner, hpxml: hpxml) end - # deterministically vary schedules across building units args[:random_seed] *= (i + 1) @@ -201,11 +200,13 @@ def write_modified_hpxml(runner, doc, hpxml_path, hpxml_output_path, schedules_f def create_schedules(runner, hpxml, hpxml_bldg, weather, args) info_msgs = [] - get_simulation_parameters(hpxml, weather, args) - get_generator_inputs(hpxml_bldg, weather, args) + Defaults.apply(runner, hpxml, hpxml_bldg, weather) + + get_simulation_parameters(hpxml, args) + get_generator_inputs(hpxml_bldg, args) args[:resources_path] = File.join(File.dirname(__FILE__), 'resources') - schedule_generator = ScheduleGenerator.new(runner: runner, **args) + schedule_generator = ScheduleGenerator.new(runner: runner, hpxml_bldg: hpxml_bldg, **args) success = schedule_generator.create(args: args, weather: weather) return false if not success @@ -236,32 +237,26 @@ def create_schedules(runner, hpxml, hpxml_bldg, weather, args) # Get simulation parameters that are required for the stochastic schedule generator. # # @param hpxml [HPXML] HPXML object - # @param weather [WeatherFile] Weather object containing EPW information # @param args [Hash] Map of :argument_name => value - def get_simulation_parameters(hpxml, weather, args) + def get_simulation_parameters(hpxml, args) args[:minutes_per_step] = 60 if !hpxml.header.timestep.nil? args[:minutes_per_step] = hpxml.header.timestep end args[:steps_in_day] = 24 * 60 / args[:minutes_per_step] - args[:mkc_ts_per_day] = 96 - args[:mkc_ts_per_hour] = args[:mkc_ts_per_day] / 24 - calendar_year = Location.get_sim_calendar_year(hpxml.header.sim_calendar_year, weather) - args[:sim_year] = calendar_year + args[:sim_year] = hpxml.header.sim_calendar_year args[:sim_start_day] = DateTime.new(args[:sim_year], 1, 1) - args[:total_days_in_year] = Calendar.num_days_in_year(calendar_year) + args[:total_days_in_year] = Calendar.num_days_in_year(hpxml.header.sim_calendar_year) end # Get generator inputs that are required for the stochastic schedule generator. # # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit - # @param weather [WeatherFile] Weather object containing EPW information # @param args [Hash] Map of :argument_name => value - def get_generator_inputs(hpxml_bldg, weather, args) - state_code = Defaults.get_state_code(hpxml_bldg.state_code, weather) - if Constants::StateCodesMap.keys.include?(state_code) - args[:state] = state_code + def get_generator_inputs(hpxml_bldg, args) + if Constants::StateCodesMap.keys.include?(hpxml_bldg.state_code) + args[:state] = hpxml_bldg.state_code else # Unhandled state code, fallback to CO args[:state] = 'CO' @@ -275,9 +270,9 @@ def get_generator_inputs(hpxml_bldg, weather, args) end args[:geometry_num_occupants] = Float(Integer(args[:geometry_num_occupants])) - args[:time_zone_utc_offset] = Defaults.get_time_zone(hpxml_bldg.time_zone_utc_offset, weather) - args[:latitude] = Defaults.get_latitude(hpxml_bldg.latitude, weather) - args[:longitude] = Defaults.get_longitude(hpxml_bldg.longitude, weather) + args[:time_zone_utc_offset] = hpxml_bldg.time_zone_utc_offset + args[:latitude] = hpxml_bldg.latitude + args[:longitude] = hpxml_bldg.longitude end end diff --git a/BuildResidentialScheduleFile/measure.xml b/BuildResidentialScheduleFile/measure.xml index f892fc288f..2fd96ff21c 100644 --- a/BuildResidentialScheduleFile/measure.xml +++ b/BuildResidentialScheduleFile/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - c5bb6758-f028-455a-a49d-25f4df40e500 - 2025-01-02T23:31:30Z + acfa3ed7-ca05-472e-832b-19f86cabf04b + 2025-02-18T03:57:10Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -133,7 +133,7 @@ measure.rb rb script - F7D77A2C + 9163B41C README.md @@ -229,7 +229,7 @@ schedules.rb rb resource - F14B1337 + F51BA6CF shower_cluster_size_probability.csv @@ -931,7 +931,7 @@ test_build_residential_schedule_file.rb rb test - 04AE998D + 9C469A27 diff --git a/BuildResidentialScheduleFile/resources/schedules.rb b/BuildResidentialScheduleFile/resources/schedules.rb index 540d41b6eb..3f7dd4ae47 100644 --- a/BuildResidentialScheduleFile/resources/schedules.rb +++ b/BuildResidentialScheduleFile/resources/schedules.rb @@ -2,7 +2,6 @@ require 'csv' require 'matrix' - # Collection of methods related to the generation of stochastic occupancy schedules. class ScheduleGenerator # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings @@ -11,21 +10,18 @@ class ScheduleGenerator # @param random_seed [Integer] the seed for the random number generator # @param minutes_per_step [Integer] the simulation timestep (minutes) # @param steps_in_day [Integer] the number of steps in a 24-hour day - # @param mkc_ts_per_day [Integer] Markov chain timesteps per day - # @param mkc_ts_per_hour [Integer] Markov chain timesteps per hour # @param total_days_in_year [Integer] number of days in the calendar year # @param sim_year [Integer] the calendar year # @param sim_start_day [DateTime] the DateTime object corresponding to Jan 1 of the calendar year # @param debug [Boolean] If true, writes extra column(s) (e.g., sleeping) for informational purposes. # @param append_output [Boolean] If true and the output CSV file already exists, appends columns to the file rather than overwriting it. The existing output CSV file must have the same number of rows (i.e., timeseries frequency) as the new columns being appended. def initialize(runner:, + hpxml_bldg:, state:, column_names: nil, random_seed: nil, minutes_per_step:, steps_in_day:, - mkc_ts_per_day:, - mkc_ts_per_hour:, total_days_in_year:, sim_year:, sim_start_day:, @@ -33,14 +29,17 @@ def initialize(runner:, append_output:, **) @runner = runner + @hpxml_bldg = hpxml_bldg @state = state @column_names = column_names @random_seed = random_seed @minutes_per_step = minutes_per_step @steps_in_day = steps_in_day - @mkc_ts_per_day = mkc_ts_per_day - @mkc_ts_per_hour = mkc_ts_per_hour @total_days_in_year = total_days_in_year + @mkc_ts_per_day = 96 + @mkc_ts_per_hour = 96 / 24 + @mkc_steps_in_a_year = @total_days_in_year * @mkc_ts_per_day + @mins_in_year = @total_days_in_year * 1440 @sim_year = sim_year @sim_start_day = sim_start_day @debug = debug @@ -65,10 +64,6 @@ def create(args:, weather:) @schedules = {} - ScheduleGenerator.export_columns.each do |col_name| - @schedules[col_name] = Array.new(@total_days_in_year * @steps_in_day, 0.0) - end - if @column_names.nil? @column_names = SchedulesFile::Columns.values.map { |c| c.name } end @@ -85,6 +80,39 @@ def create(args:, return true end + # Export the generated schedules to a CSV file. + # + # @param schedules_path [String] Path to write the schedules CSV file to + # @return [Boolean] Returns true if successful, false if there was an error + def export(schedules_path:) + (SchedulesFile::Columns.values.map { |c| c.name } - @column_names).each do |col_to_remove| + @schedules.delete(col_to_remove) + end + schedule_keys = @schedules.keys + schedule_rows = @schedules.values.transpose.map { |row| row.map { |x| '%.3g' % x } } + if @append_output && File.exist?(schedules_path) + table = CSV.read(schedules_path) + if table.size != schedule_rows.size + 1 + @runner.registerError("Invalid number of rows (#{table.size}) in file.csv. Expected #{schedule_rows.size + 1} rows (including the header row).") + return false + end + schedule_keys = table[0] + schedule_keys + schedule_rows = schedule_rows.map.with_index { |row, i| table[i + 1] + row } + end + + # Note: We don't use the CSV library here because it's slow for large files + File.open(schedules_path, 'w') do |csv| + csv << "#{schedule_keys.join(',')}\n" + schedule_rows.each do |row| + csv << "#{row.join(',')}\n" + end + end + + return true + end + + private + # The main method for creating stochastic schedules. # # @param args [Hash] Map of :argument_name => value @@ -92,1008 +120,1315 @@ def create(args:, # @return [Boolean] true if successful def create_stochastic_schedules(args:, weather:) - default_schedules_csv_data = Defaults.get_schedules_csv_data() - schedules_csv_data = get_schedules_csv_data() - - # initialize a random number generator - prng = Random.new(@random_seed) + @default_schedules_csv_data = Defaults.get_schedules_csv_data() + @schedules_csv_data = get_schedules_csv_data() + + # Use independent random number generators for each class of enduse so that when certain + # enduses are removed/added in an upgrade run, the schedules for the other enduses are not affected + # New class of enduses can be be added to the enduse_types list at the end without loss of backwards + # compatibility (i.e. ability to generate same schedules for existing enduses with a given seed) + # For plug loads and lighting, the schedules are deterministically generated from occupancy schedule so separate + # prngs are not needed for them. + @prngs = {} + @prngs[:main] = Random.new(@random_seed) + seed_generator = Random.new(@random_seed) + enduse_types = [:hygiene, :dishwasher, :clothes_washer, :clothes_dryer, :ev, :cooking] + enduse_types.each do |key| + @prngs[key] = Random.new(seed_generator.rand(2**32)) + end + @num_occupants = args[:geometry_num_occupants].to_i + @resources_path = args[:resources_path] # pre-load the probability distribution csv files for speed - cluster_size_prob_map = read_activity_cluster_size_probs(resources_path: args[:resources_path]) - event_duration_prob_map = read_event_duration_probs(resources_path: args[:resources_path]) - activity_duration_prob_map = read_activity_duration_prob(resources_path: args[:resources_path]) - appliance_power_dist_map = read_appliance_power_dist(resources_path: args[:resources_path]) - weekday_monthly_shift_dict = read_monthly_shift_minutes(resources_path: args[:resources_path], daytype: 'weekday') - weekend_monthly_shift_dict = read_monthly_shift_minutes(resources_path: args[:resources_path], daytype: 'weekend') - - all_simulated_values = [] # holds the markov-chain state for each of the seven simulated states for each occupant. + @cluster_size_prob_map = read_activity_cluster_size_probs() + @event_duration_prob_map = read_event_duration_probs() + @activity_duration_prob_map = read_activity_duration_prob() + @appliance_power_dist_map = read_appliance_power_dist() + @weekday_monthly_shift_dict = read_monthly_shift_minutes(daytype: 'weekday') + @weekend_monthly_shift_dict = read_monthly_shift_minutes(daytype: 'weekend') + + mkc_activity_schedules = simulate_occupant_activities() + # shape of mkc_activity_schedules is [n, 35040, 7] i.e. (geometry_num_occupants, period_in_a_year, number_of_states) + @ev_occupant_number = get_ev_occupant_number(mkc_activity_schedules) + occupancy_schedules = generate_occupancy_schedules(mkc_activity_schedules) + @schedules[SchedulesFile::Columns[:Occupants].name] = occupancy_schedules[:away_schedule].map { |i| 1.0 - i } + + fill_plug_loads_schedule(mkc_activity_schedules, weather) + fill_lighting_schedule(mkc_activity_schedules, args) + # Generate schedules for each class of enduse + sink_activity_sch = generate_sink_schedule(mkc_activity_schedules) + shower_activity_sch, bath_activity_sch = generate_bath_shower_schedules(mkc_activity_schedules) + + # Apply random offset to schedules to avoid synchronization + offset_range = 30 # +- 30 minutes offset + random_offset = (@prngs[:main].rand * 2 * offset_range).to_i - offset_range + if !@hpxml_bldg.dishwashers.to_a.empty? + dw_hot_water_sch = generate_dishwasher_schedule(mkc_activity_schedules) + dw_power_sch = generate_dishwasher_power_schedule(mkc_activity_schedules) + @schedules.merge!({ + SchedulesFile::Columns[:HotWaterDishwasher].name => random_shift_and_normalize(dw_hot_water_sch, random_offset), + SchedulesFile::Columns[:Dishwasher].name => random_shift_and_normalize(dw_power_sch, random_offset) + }) + end + if !@hpxml_bldg.clothes_washers.to_a.empty? + cw_hot_water_sch = generate_clothes_washer_schedule(mkc_activity_schedules) + cw_power_sch, cd_power_sch = generate_clothes_washer_dryer_power_schedules(mkc_activity_schedules) + @schedules.merge!({ + SchedulesFile::Columns[:HotWaterClothesWasher].name => random_shift_and_normalize(cw_hot_water_sch, random_offset), + SchedulesFile::Columns[:ClothesWasher].name => random_shift_and_normalize(cw_power_sch, random_offset) + }) + if !@hpxml_bldg.clothes_dryers.to_a.empty? + @schedules.merge!({ + SchedulesFile::Columns[:ClothesDryer].name => random_shift_and_normalize(cd_power_sch, random_offset) + }) + end + end + if !@hpxml_bldg.cooking_ranges.to_a.empty? + cooking_power_sch = generate_cooking_power_schedule(mkc_activity_schedules) + @schedules.merge!({ + SchedulesFile::Columns[:CookingRange].name => random_shift_and_normalize(cooking_power_sch, random_offset) + }) + end + + showers = random_shift_and_normalize(shower_activity_sch, random_offset) + sinks = random_shift_and_normalize(sink_activity_sch, random_offset) + baths = random_shift_and_normalize(bath_activity_sch, random_offset) + fixtures = [showers, sinks, baths].transpose.map(&:sum) + @schedules[SchedulesFile::Columns[:HotWaterFixtures].name] = normalize(fixtures) + fill_ev_schedules(mkc_activity_schedules, occupancy_schedules[:ev_occupant_presence]) + if @debug + @schedules[SchedulesFile::Columns[:PresentOccupants].name] = occupancy_schedules[:present_occupants] + @schedules[SchedulesFile::Columns[:Sleeping].name] = occupancy_schedules[:sleep_schedule] + end + return true + end + + # TODO + # + # @return [TODO] TODO + def simulate_occupant_activities() + mkc_activity_schedules = [] # holds the markov-chain state for each of the seven simulated states for each occupant. # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' - # if geometry_num_occupants = 2, period_in_a_year = 35040, num_of_states = 7, then - # shape of all_simulated_values is [2, 35040, 7] - occupancy_types_probabilities = Schedule.validate_values(Constants::OccupancyTypesProbabilities, 4, 'occupancy types probabilities') - for _n in 1..args[:geometry_num_occupants] - occ_type_id = weighted_random(prng, occupancy_types_probabilities) - init_prob_file_weekday = args[:resources_path] + "/weekday/mkv_chain_initial_prob_cluster_#{occ_type_id}.csv" - initial_prob_weekday = CSV.read(init_prob_file_weekday) - initial_prob_weekday = initial_prob_weekday.map { |x| x[0].to_f } - init_prob_file_weekend = args[:resources_path] + "/weekend/mkv_chain_initial_prob_cluster_#{occ_type_id}.csv" - initial_prob_weekend = CSV.read(init_prob_file_weekend) - initial_prob_weekend = initial_prob_weekend.map { |x| x[0].to_f } - - transition_matrix_file_weekday = args[:resources_path] + "/weekday/mkv_chain_transition_prob_cluster_#{occ_type_id}.csv" - transition_matrix_weekday = CSV.read(transition_matrix_file_weekday) - transition_matrix_weekday = transition_matrix_weekday.map { |x| x.map { |y| y.to_f } } - transition_matrix_file_weekend = args[:resources_path] + "/weekend/mkv_chain_transition_prob_cluster_#{occ_type_id}.csv" - transition_matrix_weekend = CSV.read(transition_matrix_file_weekend) - transition_matrix_weekend = transition_matrix_weekend.map { |x| x.map { |y| y.to_f } } + occupancy_types_probabilities = Schedule.validate_values(Constants::OccupancyTypesProbabilities, 4, 'occupancy types probabilities') + initial_probabilities = get_initial_probabilities() + transition_matrices = get_transition_matrices() + for _n in 1..@num_occupants + occ_type_id = weighted_random(@prngs[:main], occupancy_types_probabilities) simulated_values = [] @total_days_in_year.times do |day| today = @sim_start_day + day - day_of_week = today.wday - if [0, 6].include?(day_of_week) - # Weekend - day_type = 'weekend' - initial_prob = initial_prob_weekend - transition_matrix = transition_matrix_weekend - else - # weekday - day_type = 'weekday' - initial_prob = initial_prob_weekday - transition_matrix = transition_matrix_weekday - end + day_type = [0, 6].include?(today.wday) ? :weekend : :weekday j = 0 - state_prob = initial_prob # [] shape = 1x7. probability of transitioning to each of the 7 states - while j < @mkc_ts_per_day do - active_state = weighted_random(prng, state_prob) # Randomly pick the next state + state_prob = initial_probabilities[occ_type_id][day_type] # [] shape = 1x7. probability of transitioning to each of the 7 states + while j < @mkc_ts_per_day + active_state = weighted_random(@prngs[:main], state_prob) # Randomly pick the next state state_vector = [0] * 7 # there are 7 states state_vector[active_state] = 1 # Transition to the new state + # sample the duration of the state, and skip markov-chain based state transition until the end of the duration - activity_duration = sample_activity_duration(prng, activity_duration_prob_map, occ_type_id, active_state, day_type, j / 4) + activity_duration = sample_activity_duration(@prngs[:main], @activity_duration_prob_map, occ_type_id, active_state, day_type, j / 4) + for _i in 1..activity_duration # repeat the same activity for the duration times simulated_values << state_vector j += 1 - if j >= @mkc_ts_per_day then break end # break as soon as we have filled activities for the day + break if j >= @mkc_ts_per_day # break as soon as we have filled activities for the day end - if j >= @mkc_ts_per_day then break end # break as soon as we have filled activities for the day + break if j >= @mkc_ts_per_day # break as soon as we have filled activities for the day - transition_probs = transition_matrix[(j - 1) * 7..j * 7 - 1] # obtain the transition matrix for current timestep + # obtain the transition matrix for current timestep + transition_probs = transition_matrices[occ_type_id][day_type][(j - 1) * 7..j * 7 - 1] state_prob = transition_probs[active_state] end end # Markov-chain transition probabilities is based on ATUS data, and the starting time of day for the data is # 4 am. We need to shift everything forward by 16 timesteps to make it midnight-based. - simulated_values = simulated_values.rotate(-4 * 4) # 4am shifting (4 hours = 4 * 4 steps of 15 min intervals) - all_simulated_values << Matrix[*simulated_values] + simulated_values = simulated_values.rotate(-4 * 4) # 4am shifting (4 hours = 4 * 4 steps of 15 min intervals) + mkc_activity_schedules << Matrix[*simulated_values] end - # shape of all_simulated_values is [2, 35040, 7] i.e. (geometry_num_occupants, period_in_a_year, number_of_states) - plugload_other_weekday_sch = Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['WeekdayScheduleFractions'], 24, 'weekday') # Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C - plugload_other_weekend_sch = Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['WeekendScheduleFractions'], 24, 'weekend') # Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C - plugload_other_monthly_multiplier = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['PlugLoadsOtherMonthlyMultipliers'], 12, 'monthly') # Figure 24 of the 2010 BAHSP - plugload_tv_weekday_sch = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['PlugLoadsTVWeekdayFractions'], 24, 'weekday') # American Time Use Survey - plugload_tv_weekend_sch = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['PlugLoadsTVWeekendFractions'], 24, 'weekend') # American Time Use Survey - plugload_tv_monthly_multiplier = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['PlugLoadsTVMonthlyMultipliers'], 12, 'monthly') # American Time Use Survey - ceiling_fan_weekday_sch = Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name]['WeekdayScheduleFractions'], 24, 'weekday') # Table C.3(5) of ANSI/RESNET/ICC 301-2022 Addendum C - ceiling_fan_weekend_sch = Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name]['WeekendScheduleFractions'], 24, 'weekend') # Table C.3(5) of ANSI/RESNET/ICC 301-2022 Addendum C - ceiling_fan_monthly_multiplier = Schedule.validate_values(Defaults.get_ceiling_fan_months(weather).join(', '), 12, 'monthly') # based on monthly average outdoor temperatures per ANSI/RESNET/ICC 301 - - sch = get_building_america_lighting_schedule(args[:time_zone_utc_offset], args[:latitude], args[:longitude], schedules_csv_data) - interior_lighting_schedule = [] - num_days_in_months = Calendar.num_days_in_months(@sim_year) - for month in 0..11 - interior_lighting_schedule << sch[month] * num_days_in_months[month] + + return mkc_activity_schedules + end + + # Get initial probabilities for each occupancy type and day type. + # + # @return [Hash] Map of occupancy type ID to weekday/weekend initial probabilities + def get_initial_probabilities() + initial_probabilities = {} + # get weekday/weekend initial probabilities for 4 occupancy types + for occ_id in 0..3 + initial_probabilities[occ_id] = {} + init_prob_file_weekday_file_path = "#{@resources_path}/weekday/mkv_chain_initial_prob_cluster_#{occ_id}.csv" + initial_probabilities[occ_id][:weekday] = CSV.read(init_prob_file_weekday_file_path).map { |x| x[0].to_f } + init_prob_file_weekend_file_path = "#{@resources_path}/weekend/mkv_chain_initial_prob_cluster_#{occ_id}.csv" + initial_probabilities[occ_id][:weekend] = CSV.read(init_prob_file_weekend_file_path).map { |x| x[0].to_f } + end + return initial_probabilities + end + + # Get markov-chain transition matrices for each occupancy type and day type. + # + # @return [Hash] Map of occupancy type ID to weekday/weekend transition matrices + def get_transition_matrices() + transition_matrices = {} + # get weekday/weekend transition matrices for 4 occupancy types + for occ_id in 0..3 + transition_matrices[occ_id] = {} + weekday_file_path = "#{@resources_path}/weekday/mkv_chain_transition_prob_cluster_#{occ_id}.csv" + transition_matrices[occ_id][:weekday] = CSV.read(weekday_file_path).map { |x| x.map { |y| y.to_f } } + weekend_file_path = "#{@resources_path}/weekend/mkv_chain_transition_prob_cluster_#{occ_id}.csv" + transition_matrices[occ_id][:weekend] = CSV.read(weekend_file_path).map { |x| x.map { |y| y.to_f } } end - interior_lighting_schedule = interior_lighting_schedule.flatten - m = interior_lighting_schedule.max - interior_lighting_schedule = interior_lighting_schedule.map { |s| s / m } + return transition_matrices + end - sleep_schedule = [] - away_schedule = [] - idle_schedule = [] + # Aggregate array values by summing groups of elements. + # + # @param array [Array] Array of values to aggregate + # @param group_size [Integer] Number of consecutive elements to sum together + # @return [Array] New array with values aggregated by group_size + def aggregate_array(array, group_size) + new_array_size = array.size / group_size + new_array = [0] * new_array_size + new_array_size.times do |j| + new_array[j] = array[(j * group_size)..(j + 1) * group_size - 1].sum(0) + end + return new_array + end - # fill in the yearly time_step resolution schedule for plug/lighting and ceiling fan based on weekday/weekend sch - # States are: 0='sleeping', 1='shower', 2='laundry', 3='cooking', 4='dishwashing', 5='absent', 6='nothingAtHome' + # Apply monthly schedule shifts based on weekday/weekend patterns. + # + # @param array [Array] Array of minute-level schedule values to shift + # @param weekday_monthly_shift_dict [Hash] Map of month name to number of minutes to shift weekday schedules + # @param weekend_monthly_shift_dict [Hash] Map of month name to number of minutes to shift weekend schedules + # @return [Array] New array with values shifted according to monthly patterns + def apply_monthly_offsets(array:, weekday_monthly_shift_dict:, weekend_monthly_shift_dict:) + month_strs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] + new_array = [] @total_days_in_year.times do |day| today = @sim_start_day + day - month = today.month day_of_week = today.wday - [0, 6].include?(day_of_week) ? is_weekday = false : is_weekday = true - @steps_in_day.times do |step| - minute = day * 1440 + step * @minutes_per_step - index_15 = (minute / 15).to_i - sleep_schedule << sum_across_occupants(all_simulated_values, 0, index_15).to_f / args[:geometry_num_occupants] - away_schedule << sum_across_occupants(all_simulated_values, 5, index_15).to_f / args[:geometry_num_occupants] - idle_schedule << sum_across_occupants(all_simulated_values, 6, index_15).to_f / args[:geometry_num_occupants] - active_occupancy_percentage = 1 - (away_schedule[-1] + sleep_schedule[-1]) - @schedules[SchedulesFile::Columns[:PlugLoadsOther].name][day * @steps_in_day + step] = get_value_from_daily_sch(plugload_other_weekday_sch, plugload_other_weekend_sch, plugload_other_monthly_multiplier, month, is_weekday, minute, active_occupancy_percentage) - @schedules[SchedulesFile::Columns[:PlugLoadsTV].name][day * @steps_in_day + step] = get_value_from_daily_sch(plugload_tv_weekday_sch, plugload_tv_weekend_sch, plugload_tv_monthly_multiplier, month, is_weekday, minute, active_occupancy_percentage) - @schedules[SchedulesFile::Columns[:LightingInterior].name][day * @steps_in_day + step] = scale_lighting_by_occupancy(interior_lighting_schedule, minute, active_occupancy_percentage) - @schedules[SchedulesFile::Columns[:CeilingFan].name][day * @steps_in_day + step] = get_value_from_daily_sch(ceiling_fan_weekday_sch, ceiling_fan_weekend_sch, ceiling_fan_monthly_multiplier, month, is_weekday, minute, active_occupancy_percentage) + month = month_strs[today.month - 1] + if [0, 6].include?(day_of_week) + # Weekend + lead = weekend_monthly_shift_dict[month] + else + # weekday + lead = weekday_monthly_shift_dict[month] + end + if lead.nil? + raise "Could not find the entry for month #{month}, day #{day_of_week} and state #{@state}" end + + new_array.concat(array[day * 1440, 1440].rotate(lead)) end - @schedules[SchedulesFile::Columns[:PlugLoadsOther].name] = normalize(@schedules[SchedulesFile::Columns[:PlugLoadsOther].name]) - @schedules[SchedulesFile::Columns[:PlugLoadsTV].name] = normalize(@schedules[SchedulesFile::Columns[:PlugLoadsTV].name]) - @schedules[SchedulesFile::Columns[:LightingInterior].name] = normalize(@schedules[SchedulesFile::Columns[:LightingInterior].name]) - @schedules[SchedulesFile::Columns[:LightingGarage].name] = @schedules[SchedulesFile::Columns[:LightingInterior].name] - @schedules[SchedulesFile::Columns[:CeilingFan].name] = normalize(@schedules[SchedulesFile::Columns[:CeilingFan].name]) + return new_array + end - # Generate the Sink Schedule - # 1. Find indexes (minutes) when at least one occupant can have sink event (they aren't sleeping or absent) - # 2. Determine number of cluster per day - # 3. Sample flow-rate for the sink - # 4. For each cluster - # a. sample for number_of_events - # b. Re-normalize onset probability by removing invalid indexes (invalid = where we already have sink events) - # b. Probabilistically determine the start of the first event based on onset probability. - # c. For each event in number_of_events - # i. Sample the duration - # ii. Add the time occupied by event to invalid_index - # ii. if more events, offset by fixed wait time and goto c - # d. if more cluster, go to 4. - mins_in_year = 1440 * @total_days_in_year - mkc_steps_in_a_year = @total_days_in_year * @mkc_ts_per_day - sink_activity_probable_mins = [0] * mkc_steps_in_a_year # 0 indicates sink activity cannot happen at that time - sink_activity_sch = [0] * 1440 * @total_days_in_year - # mark minutes when at least one occupant is doing nothing at home as possible sink activity time - # States are: 0='sleeping', 1='shower', 2='laundry', 3='cooking', 4='dishwashing', 5='absent', 6='nothingAtHome' - mkc_steps_in_a_year.times do |step| - all_simulated_values.size.times do |i| # across occupants - # if at least one occupant is not sleeping and not absent from home, then sink event can occur at that time - if not ((all_simulated_values[i][step, 0] == 1) || (all_simulated_values[i][step, 5] == 1)) - sink_activity_probable_mins[step] = 1 - end - end + # Read monthly schedule shift minutes from CSV file for a given state and day type. + # + # @param daytype [String] Type of day ('weekday' or 'weekend') to get shifts for + # @return [Hash] Map of month name to number of minutes to shift schedules + def read_monthly_shift_minutes(daytype:) + shift_file = @resources_path + "/#{daytype}/state_and_monthly_schedule_shift.csv" + shifts = CSV.read(shift_file) + state_index = shifts[0].find_index('State') + lead_index = shifts[0].find_index('Lead') + month_index = shifts[0].find_index('Month') + state_shifts = shifts.select { |row| row[state_index] == @state } + monthly_shifts_dict = Hash[state_shifts.map { |row| [row[month_index], row[lead_index].to_i] }] + return monthly_shifts_dict + end + + # Read appliance power distribution data from CSV files. + # + # @return [Hash] Map of appliance name to array containing duration and consumption distributions + def read_appliance_power_dist() + activity_names = ['clothes_washer', 'dishwasher', 'clothes_dryer', 'cooking'] + power_dist_map = {} + activity_names.each do |activity| + duration_file = @resources_path + "/#{activity}_duration_dist.csv" + consumption_file = @resources_path + "/#{activity}_consumption_dist.csv" + duration_vals = CSV.read(duration_file) + consumption_vals = CSV.read(consumption_file) + duration_vals = duration_vals.map { |a| a.map { |i| i.to_i } } + consumption_vals = consumption_vals.map { |a| a[0].to_f } + power_dist_map[activity] = [duration_vals, consumption_vals] end + return power_dist_map + end - sink_duration_probs = Schedule.validate_values(Constants::SinkDurationProbability, 9, 'sink_duration_probability') - events_per_cluster_probs = Schedule.validate_values(Constants::SinkEventsPerClusterProbs, 15, 'sink_events_per_cluster_probs') - hourly_onset_prob = Schedule.validate_values(Constants::SinkHourlyOnsetProb, 24, 'sink_hourly_onset_prob') - # Lookup avg_sink_clusters_per_hh from constants - avg_sink_clusters_per_hh = Constants::SinkAvgSinkClustersPerHH - # Adjust avg_sink_clusters_per_hh for number of occupants in household - total_clusters = avg_sink_clusters_per_hh * (0.29 * args[:geometry_num_occupants] + 0.26) # Eq based on cluster scaling in Building America DHW Event Schedule Generator (fewer sink draw clusters for larger households) - sink_minutes_between_event_gap = Constants::SinkMinutesBetweenEventGap - cluster_per_day = (total_clusters / @total_days_in_year).to_i - sink_flow_rate_mean = Constants::SinkFlowRateMean - sink_flow_rate_std = Constants::SinkFlowRateStd - sink_flow_rate = gaussian_rand(prng, sink_flow_rate_mean, sink_flow_rate_std) - @total_days_in_year.times do |day| - for _n in 1..cluster_per_day - todays_probable_steps = sink_activity_probable_mins[day * @mkc_ts_per_day..((day + 1) * @mkc_ts_per_day - 1)] - todays_probablities = todays_probable_steps.map.with_index { |p, i| p * hourly_onset_prob[i / @mkc_ts_per_hour] } - prob_sum = todays_probablities.sum(0) - normalized_probabilities = todays_probablities.map { |p| p * 1 / prob_sum } - cluster_start_index = weighted_random(prng, normalized_probabilities) - if sink_activity_probable_mins[cluster_start_index] != 0 - sink_activity_probable_mins[cluster_start_index] = 0 # mark the 15-min interval as unavailable for another sink event - end - num_events = weighted_random(prng, events_per_cluster_probs) + 1 - start_min = cluster_start_index * 15 - end_min = (cluster_start_index + 1) * 15 - for _i in 1..num_events - duration = weighted_random(prng, sink_duration_probs) + 1 - if start_min + duration > end_min then duration = (end_min - start_min) end - sink_activity_sch.fill(sink_flow_rate, (day * 1440) + start_min, duration) - start_min += duration + sink_minutes_between_event_gap # Two minutes gap between sink activity - if start_min >= end_min then break end - end - end + # Sample the duration and power consumption for an appliance event. + # + # @param prng [Random] Random number generator to use for sampling + # @param power_dist_map [Hash] Map of appliance name to array containing duration and consumption distributions + # @param appliance_name [String] Name of the appliance to sample duration and power for + # @return [Array] Array containing [duration in 15-min intervals, average power in watts] + def sample_appliance_duration_power(prng, power_dist_map, appliance_name) + # returns number number of 15-min interval the appliance runs, and the average 15-min power + duration_vals, consumption_vals = power_dist_map[appliance_name] + if @consumption_row.nil? + # initialize and pick the consumption and duration row only the first time + # checking only consumption_row is sufficient because duration_row always go side by side with consumption row + @consumption_row = {} + @duration_row = {} + end + if !@consumption_row.has_key?(appliance_name) + @consumption_row[appliance_name] = (prng.rand * consumption_vals.size).to_i + @duration_row[appliance_name] = (prng.rand * duration_vals.size).to_i end + power = consumption_vals[@consumption_row[appliance_name]] + sample = prng.rand(0..(duration_vals[@duration_row[appliance_name]].length - 1)) + duration = duration_vals[@duration_row[appliance_name]][sample] + return [duration, power] + end - # Generate minute level schedule for shower and bath - # 1. Identify the shower time slots from the mkc schedule. This corresponds to personal hygiene time - # For each slot: - # 2. Determine if the personal hygiene is to be bath/shower using bath_to_shower_ratio probability - # 3. Sample for the shower and bath flow rate. (These will remain same throughout the year for a given building) - # However, the duration of each shower/bath event can be different, so, in 15-minute aggregation, the shower/bath - # Water consumption might appear different between different events - # 4. If it is shower - # a. Determine the number of events in the shower cluster (there can be multiple showers) - # b. For each event, sample the shower duration - # c. Fill in the time period of personal hygiene using that many events of corresponding duration - # separated by shower_minutes_between_event_gap. - # TODO If there is room in the mkc personal hygiene slot, shift uniform randomly - # 5. If it is bath - # a. Sample the bath duration - # b. Fill in the mkc personal hygiene slot with the bath duration and flow rate. - # TODO If there is room in the mkc personal hygiene slot, shift uniform randomly - # 6. Repeat process 2-6 for each occupant - shower_minutes_between_event_gap = Constants::ShowerMinutesBetweenEventGap - shower_flow_rate_mean = Constants::ShowerFlowRateMean - shower_flow_rate_std = Constants::ShowerFlowRateStd - bath_ratio = Constants::BathToShowerRatio - bath_duration_mean = Constants::BathDurationMean - bath_duration_std = Constants::BathDurationStd - bath_flow_rate_mean = Constants::BathFlowRateMean - bath_flow_rate_std = Constants::BathFlowRateStd - m = 0 - shower_activity_sch = [0] * mins_in_year - bath_activity_sch = [0] * mins_in_year - bath_flow_rate = gaussian_rand(prng, bath_flow_rate_mean, bath_flow_rate_std) - shower_flow_rate = gaussian_rand(prng, shower_flow_rate_mean, shower_flow_rate_std) - # States are: 'sleeping','shower','laundry','cooking', 'dishwashing', 'absent', 'nothingAtHome' - step = 0 - while step < mkc_steps_in_a_year - # shower_state will be equal to number of occupant taking shower/bath in the given 15-minute mkc interval - shower_state = sum_across_occupants(all_simulated_values, 1, step) - step_jump = 1 - for _n in 1..shower_state.to_i - r = prng.rand - if r <= bath_ratio - # fill in bath for this time - duration = gaussian_rand(prng, bath_duration_mean, bath_duration_std) - int_duration = duration.ceil - # since we are rounding duration to integer minute, we compensate by scaling flow rate - flow_rate = bath_flow_rate * duration / int_duration - start_min = step * 15 - m = 0 - int_duration.times do - bath_activity_sch[start_min + m] += flow_rate - m += 1 - if (start_min + m) >= mins_in_year then break end - end - step_jump = [step_jump, 1 + (m / 15)].max # jump additional step if the bath occupies multiple 15-min slots - else - # fill in the shower - num_events = sample_activity_cluster_size(prng, cluster_size_prob_map, 'shower') - start_min = step * 15 - m = 0 - num_events.times do - duration = sample_event_duration(prng, event_duration_prob_map, 'shower') - int_duration = duration.ceil - flow_rate = shower_flow_rate * duration / int_duration - # since we are rounding duration to integer minute, we compensate by scaling flow rate - int_duration.times do - shower_activity_sch[start_min + m] += flow_rate - m += 1 - if (start_min + m) >= mins_in_year then break end - end - shower_minutes_between_event_gap.times do - # skip the gap between events - m += 1 - if (start_min + m) >= mins_in_year then break end - end - if start_min + m >= mins_in_year then break end + # Read activity cluster size probability distributions from CSV files. + # + # @return [Hash] Map of activity name to array containing cluster size probabilities + def read_activity_cluster_size_probs + activity_names = ['hot_water_clothes_washer', 'hot_water_dishwasher', 'shower'] + cluster_size_prob_map = {} + activity_names.each do |activity| + cluster_size_file = @resources_path + "/#{activity}_cluster_size_probability.csv" + cluster_size_probabilities = CSV.read(cluster_size_file) + cluster_size_probabilities = cluster_size_probabilities.map { |entry| entry[0].to_f } + cluster_size_prob_map[activity] = cluster_size_probabilities + end + return cluster_size_prob_map + end + + # Read event duration probability distributions from CSV files. + # + # @return [Hash] Map of activity name to array containing durations and probabilities + def read_event_duration_probs() + activity_names = ['hot_water_clothes_washer', 'hot_water_dishwasher', 'shower'] + event_duration_probabilites_map = {} + activity_names.each do |activity| + duration_file = @resources_path + "/#{activity}_event_duration_probability.csv" + duration_probabilities = CSV.read(duration_file) + durations = duration_probabilities.map { |entry| entry[0].to_f / 60 } # convert to minute + probabilities = duration_probabilities.map { |entry| entry[1].to_f } + event_duration_probabilites_map[activity] = [durations, probabilities] + end + return event_duration_probabilites_map + end + + # Read activity duration probability distributions from CSV files. + # + # @return [Hash] Map of activity name to array containing durations and probabilities + def read_activity_duration_prob() + cluster_types = ['0', '1', '2', '3'] + day_types = ['weekday', 'weekend'] + time_of_days = ['morning', 'midday', 'evening'] + activity_names = ['shower', 'cooking', 'dishwashing', 'laundry'] + activity_duration_prob_map = {} + cluster_types.each do |cluster_type| + day_types.each do |day_type| + time_of_days.each do |time_of_day| + activity_names.each do |activity_name| + duration_file = @resources_path + "/#{day_type}/duration_probability/cluster_#{cluster_type}_#{activity_name}_#{time_of_day}_duration_probability.csv" + duration_probabilities = CSV.read(duration_file) + durations = duration_probabilities.map { |entry| entry[0].to_i } + probabilities = duration_probabilities.map { |entry| entry[1].to_f } + activity_duration_prob_map["#{cluster_type}_#{activity_name}_#{day_type}_#{time_of_day}"] = [durations, probabilities] end - step_jump = [step_jump, 1 + (m / 15)].max end end - step += step_jump end + return activity_duration_prob_map + end - # Generate minute level schedule for dishwasher and clothes washer - # 1. Identify the dishwasher/clothes washer time slots from the mkc schedule. - # 2. Sample for the flow_rate - # 3. Determine the number of events in the dishwasher/clothes washer cluster - # (it's typically composed of multiple water draw events) - # 4. For each event, sample the event duration - # 5. Fill in the dishwasher/clothes washer time slot using those water draw events - dw_flow_rate_mean = Constants::HotWaterDishwasherFlowRateMean - dw_flow_rate_std = Constants::HotWaterDishwasherFlowRateStd - dw_minutes_between_event_gap = Constants::HotWaterDishwasherMinutesBetweenEventGap - dw_activity_sch = [0] * mins_in_year - m = 0 - dw_flow_rate = gaussian_rand(prng, dw_flow_rate_mean, dw_flow_rate_std) + # Sample the number of events in a cluster for a given activity type. + # + # @param cluster_size_prob_map [Hash] Map of activity name to array of probabilities for different cluster sizes + # @param activity_type_name [String] Name of the activity type to sample cluster size for + # @return [Integer] Number of events in the cluster (1-based) + def sample_activity_cluster_size(prng, cluster_size_prob_map, activity_type_name) + cluster_size_probabilities = cluster_size_prob_map[activity_type_name] + return weighted_random(prng, cluster_size_probabilities) + 1 + end - # States are: 'sleeping','shower','laundry','cooking', 'dishwashing', 'absent', 'nothingAtHome' - # Fill in dw_water draw schedule - step = 0 - while step < mkc_steps_in_a_year - dish_state = sum_across_occupants(all_simulated_values, 4, step, max_clip: 1) - step_jump = 1 - if dish_state > 0 - cluster_size = sample_activity_cluster_size(prng, cluster_size_prob_map, 'hot_water_dishwasher') - start_minute = step * 15 - m = 0 - cluster_size.times do - duration = sample_event_duration(prng, event_duration_prob_map, 'hot_water_dishwasher') - int_duration = duration.ceil - flow_rate = dw_flow_rate * duration / int_duration - int_duration.times do - dw_activity_sch[start_minute + m] = flow_rate - m += 1 - if start_minute + m >= mins_in_year then break end - end - if start_minute + m >= mins_in_year then break end + # Sample a duration for a given event type based on its probability distribution. + # + # @param duration_probabilites_map [Hash] Map of event type to array containing durations and probabilities + # @param event_type [String] Type of event to sample duration for (e.g. 'hot_water_clothes_washer') + # @return [Float] Duration in minutes for the sampled event + def sample_event_duration(prng, duration_probabilites_map, event_type) + durations = duration_probabilites_map[event_type][0] + probabilities = duration_probabilites_map[event_type][1] + return durations[weighted_random(prng, probabilities)] + end - dw_minutes_between_event_gap.times do - m += 1 - if start_minute + m >= mins_in_year then break end - end - if start_minute + m >= mins_in_year then break end - end - step_jump = [step_jump, 1 + (m / 15)].max - end - step += step_jump + # Sample a duration for an activity based on occupant type, activity type, day type and hour. + # + # @param activity_duration_prob_map [Hash] Map of activity parameters to arrays containing durations and probabilities + # @param occ_type_id [String] Occupant type ID (cluster type) + # @param activity [Integer] Activity state number (1=shower, 2=laundry, 3=cooking, 4=dishwashing) + # @param day_type [String] Type of day ('weekday' or 'weekend') + # @param hour [Integer] Hour of the day (0-23) + # @return [Integer] Duration in minutes for the sampled activity + def sample_activity_duration(prng, activity_duration_prob_map, occ_type_id, activity, day_type, hour) + # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' + if hour < 8 + time_of_day = 'morning' + elsif hour < 16 + time_of_day = 'midday' + else + time_of_day = 'evening' end - cw_flow_rate_mean = Constants::HotWaterClothesWasherFlowRateMean - cw_flow_rate_std = Constants::HotWaterClothesWasherFlowRateStd - cw_minutes_between_event_gap = Constants::HotWaterClothesWasherMinutesBetweenEventGap - cw_activity_sch = [0] * mins_in_year # this is the clothes_washer water draw schedule - cw_load_size_probability = Schedule.validate_values(Constants::HotWaterClothesWasherLoadSizeProbability, 4, 'hot_water_clothes_washer_load_size_probability') - m = 0 - cw_flow_rate = gaussian_rand(prng, cw_flow_rate_mean, cw_flow_rate_std) - # States are: 'sleeping','shower','laundry','cooking', 'dishwashing', 'absent', 'nothingAtHome' - step = 0 - # Fill in clothes washer water draw schedule based on markov-chain state 2 (laundry) - while step < mkc_steps_in_a_year - clothes_state = sum_across_occupants(all_simulated_values, 2, step, max_clip: 1) - step_jump = 1 - if clothes_state > 0 - num_loads = weighted_random(prng, cw_load_size_probability) + 1 - start_minute = step * 15 - m = 0 - num_loads.times do - cluster_size = sample_activity_cluster_size(prng, cluster_size_prob_map, 'hot_water_clothes_washer') - cluster_size.times do - duration = sample_event_duration(prng, event_duration_prob_map, 'hot_water_clothes_washer') - int_duration = duration.ceil - flow_rate = cw_flow_rate * duration.to_f / int_duration - int_duration.times do - cw_activity_sch[start_minute + m] = flow_rate - m += 1 - if start_minute + m >= mins_in_year then break end - end - if start_minute + m >= mins_in_year then break end + if activity == 1 + activity_name = 'shower' + elsif activity == 2 + activity_name = 'laundry' + elsif activity == 3 + activity_name = 'cooking' + elsif activity == 4 + activity_name = 'dishwashing' + else + return 1 # all other activity will span only one mkc step + end + durations = activity_duration_prob_map["#{occ_type_id}_#{activity_name}_#{day_type}_#{time_of_day}"][0] + probabilities = activity_duration_prob_map["#{occ_type_id}_#{activity_name}_#{day_type}_#{time_of_day}"][1] + return durations[weighted_random(prng, probabilities)] + end - cw_minutes_between_event_gap.times do - # skip the gap between events - m += 1 - if start_minute + m >= mins_in_year then break end - end - if start_minute + m >= mins_in_year then break end - end - end - if start_minute + m >= mins_in_year then break end + # Generate a random number from a Gaussian (normal) distribution with the given parameters. + # + # @param prng [Random] Random number generator to use + # @param mean [Float] The mean (average) value of the distribution + # @param std [Float] The standard deviation of the distribution + # @param min [Float, nil] The minimum allowed value (defaults to 0.1) + # @param max [Float, nil] The maximum allowed value (optional) + # @return [Float] A random number drawn from the specified Gaussian distribution, clipped to min/max if specified + def gaussian_rand(prng, mean, std, min = 0.1, max = nil) + t = 2 * Math::PI * prng.rand + r = Math.sqrt(-2 * Math.log(1 - prng.rand)) + scale = std * r + x = mean + scale * Math.cos(t) + if (not min.nil?) && (x < min) then x = min end + if (not max.nil?) && (x > max) then x = max end + # y = mean + scale * Math.sin(t) + return x + end - step_jump = [step_jump, 1 + (m / 15)].max - end - step += step_jump + # Sum the activity state values across all occupants at a given time index. + # + # @param mkc_activity_schedules [Array] Array of matrices containing Markov chain activity states for each occupant + # @param activity_index [Integer] Index of the activity state to sum (0=sleeping, 1=shower, etc) + # @param time_index [Integer] Time index to sum the activity state values at + # @param max_clip [Integer, nil] Optional maximum value to clip the sum to + # @return [Integer] Sum of the activity state values across occupants, clipped to max_clip if specified + def sum_across_occupants(mkc_activity_schedules, activity_index, time_index, max_clip: nil) + sum = 0 + mkc_activity_schedules.size.times do |i| + sum += mkc_activity_schedules[i][time_index, activity_index] + end + if (not max_clip.nil?) && (sum > max_clip) + sum = max_clip end + return sum + end - # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' - # Fill in dishwasher and clothes_washer power draw schedule based on markov-chain - # This follows similar pattern as filling in water draw events, except we use different set of probability - # distribution csv files for power level and duration of each event. And there is only one event per mkc slot. - dw_power_sch = [0] * mins_in_year - step = 0 - last_state = 0 - start_time = Time.new(@sim_year, 1, 1) - hot_water_dishwasher_monthly_multiplier = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['HotWaterDishwasherMonthlyMultiplier'], 12, 'hot_water_dishwasher_monthly_multiplier') - while step < mkc_steps_in_a_year - dish_state = sum_across_occupants(all_simulated_values, 4, step, max_clip: 1) - step_jump = 1 - if (dish_state > 0) && (last_state == 0) # last_state == 0 prevents consecutive dishwasher power without gap - duration_15min, avg_power = sample_appliance_duration_power(prng, appliance_power_dist_map, 'dishwasher') + # Get a binary representation of occupant presence at a given time index. + # + # @param mkc_activity_schedules [Array] Array of matrices containing Markov chain activity states for each occupant + # @param time_index [int] time index in the array + # @return [int] The integer whose binary representation indicates the presence of occupants. Bit 0 is presence of the first occupant, bit 1 is the presence of the second occupant, etc. + def get_present_occupants(mkc_activity_schedules, time_index) + sum = 0 + multiplier = 1 + mkc_activity_schedules.size.times do |i| + # Since mkc_activity_schedules[i][time_index, 5]) is 1 when the occupant is away, we need to subtract it from 1 + sum += (1 - mkc_activity_schedules[i][time_index, 5]) * multiplier + multiplier *= 2 + end + return sum + end - month = (start_time + step * 15 * 60).month - duration_min = (duration_15min * 15 * hot_water_dishwasher_monthly_multiplier[month - 1]).to_i + # Determines which occupant will be assigned as the EV driver based on their away hours. + # + # @param mkc_activity_schedules [Array] Array of matrices containing Markov chain activity states for each occupant + # @return [Integer] Index of the occupant assigned as EV driver (0-based) + def get_ev_occupant_number(mkc_activity_schedules) + if @hpxml_bldg.vehicles.to_a.empty? + return 0 + end - duration = [duration_min, mins_in_year - step * 15].min - dw_power_sch.fill(avg_power, step * 15, duration) - step_jump = duration_15min - end - last_state = dish_state - step += step_jump + vehicle = @hpxml_bldg.vehicles[0] + hours_per_year = (vehicle.hours_per_week / 7) * UnitConversions.convert(1, 'yr', 'day') + + occupant_away_hours_per_year = [] + mkc_activity_schedules.size.times do |i| + occupant_away_hours_per_year[i] = mkc_activity_schedules[i].column(5).sum() / 4 end + # Only keep occupants whose 80% (the portion available for driving) away hours are sufficient to meet hours_per_year + elligible_occupant = occupant_away_hours_per_year.each_with_index.filter { |value, _| value * 0.8 > hours_per_year } + if elligible_occupant.empty? + # if nobody has enough away hours, find the index of the occupant with the highest away hours + _, ev_occupant = occupant_away_hours_per_year.each_with_index.max_by { |value, _| value } + return ev_occupant + else + # return the index of a random eligible occupant + _, ev_occupant = elligible_occupant.sample(random: @prngs[:ev]) + return ev_occupant + end + end - # Fill in cw and clothes dryer power schedule - # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' - cw_power_sch = [0] * mins_in_year - cd_power_sch = [0] * mins_in_year - step = 0 - last_state = 0 - start_time = Time.new(@sim_year, 1, 1) - clothes_dryer_monthly_multiplier = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['ClothesDryerMonthlyMultiplier'], 12, 'clothes_dryer_monthly_multiplier') - hot_water_clothes_washer_monthly_multiplier = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['HotWaterClothesWasherMonthlyMultiplier'], 12, 'hot_water_clothes_washer_monthly_multiplier') - while step < mkc_steps_in_a_year - clothes_state = sum_across_occupants(all_simulated_values, 2, step, max_clip: 1) - step_jump = 1 - if (clothes_state > 0) && (last_state == 0) # last_state == 0 prevents consecutive washer power without gap - cw_duration_15min, cw_avg_power = sample_appliance_duration_power(prng, appliance_power_dist_map, 'clothes_washer') - cd_duration_15min, cd_avg_power = sample_appliance_duration_power(prng, appliance_power_dist_map, 'clothes_dryer') + # Normalize an array by dividing all values by the maximum value. + # + # @param arr [Array] Array of numeric values to normalize + # @return [Array] Array with values normalized to between 0 and 1 + def normalize(arr) + m = arr.max + arr = arr.map { |a| a / m } + return arr + end - month = (start_time + step * 15 * 60).month - cd_duration_min = (cd_duration_15min * 15 * clothes_dryer_monthly_multiplier[month - 1]).to_i - cw_duration_min = (cw_duration_15min * 15 * hot_water_clothes_washer_monthly_multiplier[month - 1]).to_i + # Scale lighting schedule values based on occupancy. + # + # @param sch [Array] Array of hourly lighting schedule values + # @param minute [Integer] Current minute in simulation + # @param active_occupant_percentage [Float] Percentage of occupants that are active (not sleeping/away) + # @return [Float] Scaled lighting schedule value based on occupancy + def scale_lighting_by_occupancy(sch, minute, active_occupant_percentage) + day_start = minute / 1440 + day_sch = sch[day_start * 24, 24] + current_val = sch[minute / 60] + return day_sch.min + (current_val - day_sch.min) * active_occupant_percentage + end - cw_duration = [cw_duration_min, mins_in_year - step * 15].min - cw_power_sch.fill(cw_avg_power, step * 15, cw_duration) - cd_start_time = (step * 15 + cw_duration).to_i # clothes dryer starts immediately after washer ends\ - cd_duration = [cd_duration_min, mins_in_year - cd_start_time].min # cd_duration would be negative if cd_start_time > mins_in_year, and no filling would occur - cd_power_sch = cd_power_sch.fill(cd_avg_power, cd_start_time, cd_duration) - step_jump = cw_duration_15min + cd_duration_15min + # Get schedule value for current minute based on weekday/weekend schedule and occupancy. + # + # @param weekday_sch [Array] Array of hourly schedule values for weekdays + # @param weekend_sch [Array] Array of hourly schedule values for weekends + # @param monthly_multiplier [Array] Array of monthly multipliers to apply to schedule values + # @param month [Integer] Current month (1-12) + # @param is_weekday [Boolean] Whether current day is a weekday + # @param minute [Integer] Current minute in simulation + # @param active_occupant_percentage [Float] Percentage of occupants that are active (not sleeping/away) + # @return [Float] Schedule value scaled by occupancy and monthly multiplier + def get_value_from_daily_sch(weekday_sch, weekend_sch, monthly_multiplier, month, is_weekday, minute, active_occupant_percentage) + is_weekday ? sch = weekday_sch : sch = weekend_sch + full_occupancy_current_val = sch[((minute % 1440) / 60).to_i].to_f * monthly_multiplier[month - 1].to_f + return sch.min + (full_occupancy_current_val - sch.min) * active_occupant_percentage + end + + # Randomly select an index based on weighted probabilities. + # + # @param prng [Random] Random number generator + # @param weights [Array] Array of probability weights that sum to 1 + # @return [Integer] Randomly selected index based on probability weights + def weighted_random(prng, weights) + n = prng.rand + cum_weights = 0 + weights.each_with_index do |w, index| + cum_weights += w + if n <= cum_weights + return index end - last_state = clothes_state - step += step_jump end + return weights.size - 1 # If the prob weight don't sum to n, return last index + end - # Fill in cooking power schedule - # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' - cooking_power_sch = [0] * mins_in_year - step = 0 - last_state = 0 - start_time = Time.new(@sim_year, 1, 1) - cooking_monthly_multiplier = Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['CookingMonthlyMultiplier'], 12, 'cooking_monthly_multiplier') - while step < mkc_steps_in_a_year - cooking_state = sum_across_occupants(all_simulated_values, 3, step, max_clip: 1) - step_jump = 1 - if (cooking_state > 0) && (last_state == 0) # last_state == 0 prevents consecutive cooking power without gap - duration_15min, avg_power = sample_appliance_duration_power(prng, appliance_power_dist_map, 'cooking') - month = (start_time + step * 15 * 60).month - duration_min = (duration_15min * 15 * cooking_monthly_multiplier[month - 1]).to_i - duration = [duration_min, mins_in_year - step * 15].min - cooking_power_sch.fill(avg_power, step * 15, duration) - step_jump = duration_15min + # Get the Building America lighting schedule based on location and time zone. + # + # @param time_zone_utc_offset [Integer] Offset from UTC in hours + # @param latitude [Float] Latitude in degrees + # @param longitude [Float] Longitude in degrees + # @return [Array] Array of hourly lighting schedule values + def get_building_america_lighting_schedule(time_zone_utc_offset, latitude, longitude) + # Sunrise and sunset hours + sunrise_hour = [] + sunset_hour = [] + std_long = -time_zone_utc_offset * 15 + normalized_hourly_lighting = [[1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24]] + for month in 0..11 + if latitude < 51.49 + m_num = month + 1 + jul_day = m_num * 30 - 15 + if not ((m_num < 4) || (m_num > 10)) + offset = 1 + else + offset = 0 + end + declination = 23.45 * Math.sin(0.9863 * (284 + jul_day) * 0.01745329) + deg_rad = Math::PI / 180 + rad_deg = 1 / deg_rad + b = (jul_day - 1) * 0.9863 + equation_of_time = (0.01667 * (0.01719 + 0.42815 * Math.cos(deg_rad * b) - 7.35205 * Math.sin(deg_rad * b) - 3.34976 * Math.cos(deg_rad * (2 * b)) - 9.37199 * Math.sin(deg_rad * (2 * b)))) + sunset_hour_angle = rad_deg * Math.acos(-1 * Math.tan(deg_rad * latitude) * Math.tan(deg_rad * declination)) + sunrise_hour[month] = offset + (12.0 - 1 * sunset_hour_angle / 15.0) - equation_of_time - (std_long + longitude) / 15 + sunset_hour[month] = offset + (12.0 + 1 * sunset_hour_angle / 15.0) - equation_of_time - (std_long + longitude) / 15 + else + sunrise_hour = [8.125726064, 7.449258072, 6.388688653, 6.232405257, 5.27722936, 4.84705384, 5.127512162, 5.860163988, 6.684378904, 7.521267411, 7.390441945, 8.080667697] + sunset_hour = [16.22214058, 17.08642353, 17.98324493, 19.83547864, 20.65149672, 21.20662992, 21.12124777, 20.37458274, 19.25834757, 18.08155615, 16.14359164, 15.75571306] end - last_state = cooking_state - step += step_jump end - offset_range = 30 - - # showers, sinks, baths - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - shower_activity_sch = shower_activity_sch.rotate(random_offset) - shower_activity_sch = apply_monthly_offsets(array: shower_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - shower_activity_sch = aggregate_array(shower_activity_sch, @minutes_per_step) - shower_peak_flow = shower_activity_sch.max - showers = shower_activity_sch.map { |flow| flow / shower_peak_flow } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - sink_activity_sch = sink_activity_sch.rotate(-4 * 60 + random_offset) # 4 am shifting - sink_activity_sch = apply_monthly_offsets(array: sink_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - sink_activity_sch = aggregate_array(sink_activity_sch, @minutes_per_step) - sink_peak_flow = sink_activity_sch.max - sinks = sink_activity_sch.map { |flow| flow / sink_peak_flow } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - bath_activity_sch = bath_activity_sch.rotate(random_offset) - bath_activity_sch = apply_monthly_offsets(array: bath_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - bath_activity_sch = aggregate_array(bath_activity_sch, @minutes_per_step) - bath_peak_flow = bath_activity_sch.max - baths = bath_activity_sch.map { |flow| flow / bath_peak_flow } - - # hot water dishwasher/clothes washer/fixtures, cooking range, clothes washer/dryer, dishwasher, occupants - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - dw_activity_sch = dw_activity_sch.rotate(random_offset) - dw_activity_sch = apply_monthly_offsets(array: dw_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - dw_activity_sch = aggregate_array(dw_activity_sch, @minutes_per_step) - dw_peak_flow = dw_activity_sch.max - @schedules[SchedulesFile::Columns[:HotWaterDishwasher].name] = dw_activity_sch.map { |flow| flow / dw_peak_flow } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - cw_activity_sch = cw_activity_sch.rotate(random_offset) - cw_activity_sch = apply_monthly_offsets(array: cw_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cw_activity_sch = aggregate_array(cw_activity_sch, @minutes_per_step) - cw_peak_flow = cw_activity_sch.max - @schedules[SchedulesFile::Columns[:HotWaterClothesWasher].name] = cw_activity_sch.map { |flow| flow / cw_peak_flow } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - cooking_power_sch = cooking_power_sch.rotate(random_offset) - cooking_power_sch = apply_monthly_offsets(array: cooking_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cooking_power_sch = aggregate_array(cooking_power_sch, @minutes_per_step) - cooking_peak_power = cooking_power_sch.max - @schedules[SchedulesFile::Columns[:CookingRange].name] = cooking_power_sch.map { |power| power / cooking_peak_power } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - cw_power_sch = cw_power_sch.rotate(random_offset) - cw_power_sch = apply_monthly_offsets(array: cw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cw_power_sch = aggregate_array(cw_power_sch, @minutes_per_step) - cw_peak_power = cw_power_sch.max - @schedules[SchedulesFile::Columns[:ClothesWasher].name] = cw_power_sch.map { |power| power / cw_peak_power } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - cd_power_sch = cd_power_sch.rotate(random_offset) - cd_power_sch = apply_monthly_offsets(array: cd_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cd_power_sch = aggregate_array(cd_power_sch, @minutes_per_step) - cd_peak_power = cd_power_sch.max - @schedules[SchedulesFile::Columns[:ClothesDryer].name] = cd_power_sch.map { |power| power / cd_peak_power } - - random_offset = (prng.rand * 2 * offset_range).to_i - offset_range - dw_power_sch = dw_power_sch.rotate(random_offset) - dw_power_sch = apply_monthly_offsets(array: dw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - dw_power_sch = aggregate_array(dw_power_sch, @minutes_per_step) - dw_peak_power = dw_power_sch.max - @schedules[SchedulesFile::Columns[:Dishwasher].name] = dw_power_sch.map { |power| power / dw_peak_power } - - @schedules[SchedulesFile::Columns[:Occupants].name] = away_schedule.map { |i| 1.0 - i } + june_kws = [0.060, 0.040, 0.035, 0.025, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.025, 0.030, 0.030, 0.025, 0.020, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.020, 0.020, 0.020, 0.025, 0.025, 0.030, 0.030, 0.035, 0.045, 0.060, 0.085, 0.125, 0.145, 0.130, 0.105, 0.080] + lighting_seasonal_multiplier = @schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['LightingInteriorMonthlyMultipliers'].split(',').map { |v| v.to_f } + amplConst1 = 0.929707907917098 + sunsetLag1 = 2.45016230615269 + stdDevCons1 = 1.58679810983444 + amplConst2 = 1.1372291802273 + sunsetLag2 = 20.1501965859073 + stdDevCons2 = 2.36567663279954 - if @debug - @schedules[SchedulesFile::Columns[:Sleeping].name] = sleep_schedule + monthly_kwh_per_day = [] + days_m = Calendar.num_days_in_months(1999) # Intentionally excluding leap year designation + wtd_avg_monthly_kwh_per_day = 0 + for monthNum in 1..12 + month = monthNum - 1 + monthHalfHourKWHs = [0] + for hourNum in 0..9 + monthHalfHourKWHs[hourNum] = june_kws[hourNum] + end + for hourNum in 9..17 + hour = (hourNum + 1.0) * 0.5 + monthHalfHourKWHs[hourNum] = (monthHalfHourKWHs[8] - (0.15 / (2 * Math::PI)) * Math.sin((2 * Math::PI) * (hour - 4.5) / 3.5) + (0.15 / 3.5) * (hour - 4.5)) * lighting_seasonal_multiplier[month] + end + for hourNum in 17..29 + hour = (hourNum + 1.0) * 0.5 + monthHalfHourKWHs[hourNum] = (monthHalfHourKWHs[16] - (-0.02 / (2 * Math::PI)) * Math.sin((2 * Math::PI) * (hour - 8.5) / 5.5) + (-0.02 / 5.5) * (hour - 8.5)) * lighting_seasonal_multiplier[month] + end + for hourNum in 29..45 + hour = (hourNum + 1.0) * 0.5 + monthHalfHourKWHs[hourNum] = (monthHalfHourKWHs[28] + amplConst1 * Math.exp((-1.0 * (hour - (sunset_hour[month] + sunsetLag1))**2) / (2.0 * ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1)**2)) / ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1 * (2.0 * Math::PI)**0.5)) + end + for hourNum in 45..46 + hour = (hourNum + 1.0) * 0.5 + temp1 = (monthHalfHourKWHs[44] + amplConst1 * Math.exp((-1.0 * (hour - (sunset_hour[month] + sunsetLag1))**2) / (2.0 * ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1)**2)) / ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1 * (2.0 * Math::PI)**0.5)) + temp2 = (0.04 + amplConst2 * Math.exp((-1.0 * (hour - sunsetLag2)**2) / (2.0 * stdDevCons2**2)) / (stdDevCons2 * (2.0 * Math::PI)**0.5)) + if sunsetLag2 < sunset_hour[month] + sunsetLag1 + monthHalfHourKWHs[hourNum] = [temp1, temp2].min + else + monthHalfHourKWHs[hourNum] = [temp1, temp2].max + end + end + for hourNum in 46..47 + hour = (hourNum + 1) * 0.5 + monthHalfHourKWHs[hourNum] = (0.04 + amplConst2 * Math.exp((-1.0 * (hour - sunsetLag2)**2) / (2.0 * stdDevCons2**2)) / (stdDevCons2 * (2.0 * Math::PI)**0.5)) + end + + sum_kWh = 0.0 + for timenum in 0..47 + sum_kWh += monthHalfHourKWHs[timenum] + end + for hour in 0..23 + ltg_hour = (monthHalfHourKWHs[hour * 2] + monthHalfHourKWHs[hour * 2 + 1]).to_f + normalized_hourly_lighting[month][hour] = ltg_hour / sum_kWh + monthly_kwh_per_day[month] = sum_kWh / 2.0 + end + wtd_avg_monthly_kwh_per_day += monthly_kwh_per_day[month] * days_m[month] / 365.0 end - @schedules[SchedulesFile::Columns[:HotWaterFixtures].name] = [showers, sinks, baths].transpose.map { |flow| flow.sum } - fixtures_peak_flow = @schedules[SchedulesFile::Columns[:HotWaterFixtures].name].max - @schedules[SchedulesFile::Columns[:HotWaterFixtures].name] = @schedules[SchedulesFile::Columns[:HotWaterFixtures].name].map { |flow| flow / fixtures_peak_flow } + # Calculate normalized monthly lighting fractions + seasonal_multiplier = [] + sumproduct_seasonal_multiplier = 0 + normalized_monthly_lighting = seasonal_multiplier + for month in 0..11 + seasonal_multiplier[month] = (monthly_kwh_per_day[month] / wtd_avg_monthly_kwh_per_day) + sumproduct_seasonal_multiplier += seasonal_multiplier[month] * days_m[month] + end - return true - end + for month in 0..11 + normalized_monthly_lighting[month] = seasonal_multiplier[month] * days_m[month] / sumproduct_seasonal_multiplier + end - # TODO - # - # @param array [TODO] TODO - # @param group_size [TODO] TODO - # @return [TODO] TODO - def aggregate_array(array, group_size) - new_array_size = array.size / group_size - new_array = [0] * new_array_size - new_array_size.times do |j| - new_array[j] = array[(j * group_size)..(j + 1) * group_size - 1].sum(0) + # Calculate schedule values + lighting_sch = [[], [], [], [], [], [], [], [], [], [], [], []] + for month in 0..11 + for hour in 0..23 + lighting_sch[month][hour] = normalized_monthly_lighting[month] * normalized_hourly_lighting[month][hour] / days_m[month] + end end - return new_array + + return lighting_sch end - # TODO + # Generates EV battery charging and discharging schedules based on away schedule and annual driving hours. # - # @param array [TODO] TODO - # @param weekday_monthly_shift_dict [TODO] TODO - # @param weekend_monthly_shift_dict [TODO] TODO - # @return [TODO] TODO - def apply_monthly_offsets(array:, weekday_monthly_shift_dict:, weekend_monthly_shift_dict:) - month_strs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] - new_array = [] - @total_days_in_year.times do |day| - today = @sim_start_day + day - day_of_week = today.wday - month = month_strs[today.month - 1] - if [0, 6].include?(day_of_week) - # Weekend - lead = weekend_monthly_shift_dict[month] + # @param away_schedule [Array] Array of 0s and 1s indicating when occupants are away (1) or home (0) + # @param hours_driven_per_year [Float] Number of hours the EV is driven per year + # @return [Array>] Two arrays - [charging_schedule, discharging_schedule], each containing 0s and 1s + def get_ev_battery_schedule(away_schedule, hours_driven_per_year) + total_driving_minutes_per_year = (hours_driven_per_year * 60).ceil + expanded_away_schedule = away_schedule.flat_map { |status| [status] * 15 } + charging_schedule = [] + discharging_schedule = [] + driving_minutes_used = 0 + chunk_counts = expanded_away_schedule.chunk(&:itself).map { |value, elements| [value, elements.size] } + total_away_minutes = chunk_counts.map { |value, size| value * size }.sum + extra_drive_minutes = 0 # accumulator for keeping track of extra driving minutes used due to ceil to upper integer + chunk_counts.each do |is_away, activity_minutes| + if is_away == 1 + current_chunk_proportion = (1.0 * activity_minutes) / total_away_minutes + + expected_driving_time = (total_driving_minutes_per_year * current_chunk_proportion - extra_drive_minutes).ceil + max_driving_time = [expected_driving_time, total_driving_minutes_per_year - driving_minutes_used].min + + max_possible_driving_time = (activity_minutes * 0.8).ceil + actual_driving_time = [max_driving_time, max_possible_driving_time].min + extra_drive_minutes += actual_driving_time - total_driving_minutes_per_year * current_chunk_proportion + + idle_time = activity_minutes - actual_driving_time + first_half_driving = (actual_driving_time / 2.0).ceil + second_half_driving = actual_driving_time - first_half_driving + + discharging_schedule.concat([1] * first_half_driving) # Start driving + discharging_schedule.concat([0] * idle_time) # Idle in the middle + discharging_schedule.concat([1] * second_half_driving) # End driving + charging_schedule.concat([0] * activity_minutes) + + driving_minutes_used += actual_driving_time else - # weekday - lead = weekday_monthly_shift_dict[month] - end - if lead.nil? - raise "Could not find the entry for month #{month}, day #{day_of_week} and state #{@state}" + charging_schedule.concat([1] * activity_minutes) + discharging_schedule.concat([0] * activity_minutes) end - - new_array.concat(array[day * 1440, 1440].rotate(lead)) end - return new_array + if driving_minutes_used < total_driving_minutes_per_year + msg = "Insufficient away minutes (#{total_away_minutes}) for required driving minutes (#{hours_driven_per_year * 60})" + msg += "Only #{driving_minutes_used} minutes was used." + @runner.registerWarning(msg) + end + + return charging_schedule, discharging_schedule end - # TODO + # Fill EV battery charging and discharging schedules based on Markov chain simulation results # - # @param resources_path [TODO] TODO - # @param daytype [TODO] TODO - # @return [TODO] TODO - def read_monthly_shift_minutes(resources_path:, daytype:) - shift_file = resources_path + "/#{daytype}/state_and_monthly_schedule_shift.csv" - shifts = CSV.read(shift_file) - state_index = shifts[0].find_index('State') - lead_index = shifts[0].find_index('Lead') - month_index = shifts[0].find_index('Month') - state_shifts = shifts.select { |row| row[state_index] == @state } - monthly_shifts_dict = Hash[state_shifts.map { |row| [row[month_index], row[lead_index].to_i] }] - return monthly_shifts_dict + # @param markov_chain_simulation_result [Array] Array of matrices containing Markov chain simulation results for each occupant + # @return [nil] Updates @schedules with EV battery charging and discharging schedules + def fill_ev_schedules(markov_chain_simulation_result, ev_occupant_presence) + if @hpxml_bldg.vehicles.to_a.empty? + return + end + + vehicle = @hpxml_bldg.vehicles[0] + hours_per_year = (vehicle.hours_per_week / 7) * UnitConversions.convert(1, 'yr', 'day') + away_index = 5 # Index of away activity in the markov-chain simulator + away_schedule = markov_chain_simulation_result[@ev_occupant_number].column(away_index) + charging_schedule, discharging_schedule = get_ev_battery_schedule(away_schedule, hours_per_year) + agg_charging_schedule = aggregate_array(charging_schedule, @minutes_per_step).map { |val| val.to_f / @minutes_per_step } + agg_discharging_schedule = aggregate_array(discharging_schedule, @minutes_per_step).map { |val| val.to_f / @minutes_per_step } + + # The combined schedule is not a sum of the charging and discharging schedules because when charging and discharging + # both occur in a timestep, we don't want them to cancel out and draw no power from the building. So, whenever there + # is discharging, we use the full discharge in that timestep (without subtracting the charging). + combined_schedule = agg_charging_schedule.zip(agg_discharging_schedule).map { |charging, discharging| discharging > 0 ? -discharging : charging } + @schedules[SchedulesFile::Columns[:EVOccupant].name] = ev_occupant_presence if @debug + @schedules[SchedulesFile::Columns[:ElectricVehicle].name] = combined_schedule end - # TODO + # Get the weekday/weekend schedule fractions for TV plug loads and monthly multipliers for interior lighting, dishwasher, clothes washer/dryer, cooking range, and other/TV plug loads. # - # @param resources_path [TODO] TODO - # @return [TODO] TODO - def read_appliance_power_dist(resources_path:) - activity_names = ['clothes_washer', 'dishwasher', 'clothes_dryer', 'cooking'] - power_dist_map = {} - activity_names.each do |activity| - duration_file = resources_path + "/#{activity}_duration_dist.csv" - consumption_file = resources_path + "/#{activity}_consumption_dist.csv" - duration_vals = CSV.read(duration_file) - consumption_vals = CSV.read(consumption_file) - duration_vals = duration_vals.map { |a| a.map { |i| i.to_i } } - consumption_vals = consumption_vals.map { |a| a[0].to_f } - power_dist_map[activity] = [duration_vals, consumption_vals] + # @return [Hash] { schedule_name => { element => values, ... }, ... } + def get_schedules_csv_data() + schedules_csv = File.join(File.dirname(__FILE__), 'schedules.csv') + if not File.exist?(schedules_csv) + fail 'Could not find schedules.csv' + end + + require 'csv' + schedules_csv_data = {} + CSV.foreach(schedules_csv, headers: true) do |row| + schedule_name = row['Schedule Name'] + element = row['Element'] + values = row['Values'] + + schedules_csv_data[schedule_name] = {} if !schedules_csv_data.keys.include?(schedule_name) + schedules_csv_data[schedule_name][element] = values end - return power_dist_map + + return schedules_csv_data end - # TODO + # Initialize daily schedule data for plug loads, TV usage, and ceiling fans. # - # @param prng [Random] Random number generator object - # @param power_dist_map [TODO] TODO - # @param appliance_name [TODO] TODO - # @return [TODO] TODO - def sample_appliance_duration_power(prng, power_dist_map, appliance_name) - # returns number number of 15-min interval the appliance runs, and the average 15-min power - duration_vals, consumption_vals = power_dist_map[appliance_name] - if @consumption_row.nil? - # initialize and pick the consumption and duration row only the first time - # checking only consumption_row is sufficient because duration_row always go side by side with consumption row - @consumption_row = {} - @duration_row = {} - end - if !@consumption_row.has_key?(appliance_name) - @consumption_row[appliance_name] = (prng.rand * consumption_vals.size).to_i - @duration_row[appliance_name] = (prng.rand * duration_vals.size).to_i - end - power = consumption_vals[@consumption_row[appliance_name]] - sample = prng.rand(0..(duration_vals[@duration_row[appliance_name]].length - 1)) - duration = duration_vals[@duration_row[appliance_name]][sample] - return [duration, power] + # @param default_schedules_csv_data [Hash] Default schedule data from CSV + # @param schedules_csv_data [Hash] Custom schedule data from CSV + # @param weather [WeatherFile] Weather object containing temperature data + # @return [Hash] Map of schedule types to their weekday, weekend, and monthly values + def get_plugload_daily_schedules(default_schedules_csv_data, schedules_csv_data, weather) + { + plug_loads_other: { + # Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C + weekday: Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['WeekdayScheduleFractions'], 24, 'weekday'), + weekend: Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['WeekendScheduleFractions'], 24, 'weekend'), + # Figure 24 of the 2010 BAHSP + monthly: Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['PlugLoadsOtherMonthlyMultipliers'], 12, 'monthly') + }, + plug_loads_tv: { + # American Time Use Survey + weekday: Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['PlugLoadsTVWeekdayFractions'], 24, 'weekday'), + weekend: Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['PlugLoadsTVWeekendFractions'], 24, 'weekend'), + monthly: Schedule.validate_values(schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['PlugLoadsTVMonthlyMultipliers'], 12, 'monthly') + }, + ceiling_fan: { + # Table C.3(5) of ANSI/RESNET/ICC 301-2022 Addendum C + weekday: Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name]['WeekdayScheduleFractions'], 24, 'weekday'), + weekend: Schedule.validate_values(default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name]['WeekendScheduleFractions'], 24, 'weekend'), + # Based on monthly average outdoor temperatures per ANSI/RESNET/ICC 301 + monthly: Schedule.validate_values(Defaults.get_ceiling_fan_months(weather).join(', '), 12, 'monthly') + } + } end - # TODO + # Initialize the interior lighting schedule based on location parameters. # - # @param resources_path [TODO] TODO - # @return [TODO] TODO - def read_activity_cluster_size_probs(resources_path:) - activity_names = ['hot_water_clothes_washer', 'hot_water_dishwasher', 'shower'] - cluster_size_prob_map = {} - activity_names.each do |activity| - cluster_size_file = resources_path + "/#{activity}_cluster_size_probability.csv" - cluster_size_probabilities = CSV.read(cluster_size_file) - cluster_size_probabilities = cluster_size_probabilities.map { |entry| entry[0].to_f } - cluster_size_prob_map[activity] = cluster_size_probabilities + # @param args [Hash] Hash containing required parameters: + # @option args [Integer] :time_zone_utc_offset Offset from UTC in hours + # @option args [Float] :latitude Latitude in degrees + # @option args [Float] :longitude Longitude in degrees + # @return [Array] Array of hourly lighting schedule values normalized to 1.0 + def initialize_interior_lighting_schedule(args) + sch = get_building_america_lighting_schedule(args[:time_zone_utc_offset], args[:latitude], args[:longitude]) + interior_lighting_schedule = [] + num_days_in_months = Calendar.num_days_in_months(@sim_year) + + for month in 0..11 + interior_lighting_schedule << sch[month] * num_days_in_months[month] end - return cluster_size_prob_map + + interior_lighting_schedule.flatten! + return normalize(interior_lighting_schedule) end - # TODO + # Generate occupancy schedules for sleeping, away, idle, EV presence and total occupancy. # - # @param resources_path [TODO] TODO - # @return [TODO] TODO - def read_event_duration_probs(resources_path:) - activity_names = ['hot_water_clothes_washer', 'hot_water_dishwasher', 'shower'] - event_duration_probabilites_map = {} - activity_names.each do |activity| - duration_file = resources_path + "/#{activity}_event_duration_probability.csv" - duration_probabilities = CSV.read(duration_file) - durations = duration_probabilities.map { |entry| entry[0].to_f / 60 } # convert to minute - probabilities = duration_probabilities.map { |entry| entry[1].to_f } - event_duration_probabilites_map[activity] = [durations, probabilities] + # @param mkc_activity_schedules [Array] Array of matrices containing Markov chain activity states for each occupant + # @return [Hash] Hash containing arrays for sleep_schedule, away_schedule, idle_schedule, ev_occupant_presence, and present_occupants + def generate_occupancy_schedules(mkc_activity_schedules) + # States are: 0='sleeping', 1='shower', 2='laundry', 3='cooking', 4='dishwashing', 5='absent', 6='nothingAtHome' + occupancy_arrays = { + sleep_schedule: [], + away_schedule: [], + idle_schedule: [], + ev_occupant_presence: [], + # Binary representation of the presence of occupant. Each bit represents presence of one occupant + present_occupants: [] + } + @total_days_in_year.times do |day| + @steps_in_day.times do |step| + minute = day * 1440 + step * @minutes_per_step + index_15 = (minute / 15).to_i + occupancy_arrays[:sleep_schedule] << sum_across_occupants(mkc_activity_schedules, 0, index_15).to_f / @num_occupants + occupancy_arrays[:away_schedule] << sum_across_occupants(mkc_activity_schedules, 5, index_15).to_f / @num_occupants + occupancy_arrays[:idle_schedule] << sum_across_occupants(mkc_activity_schedules, 6, index_15).to_f / @num_occupants + occupancy_arrays[:ev_occupant_presence] << (1 - mkc_activity_schedules[@ev_occupant_number][index_15, 5]) + occupancy_arrays[:present_occupants] << get_present_occupants(mkc_activity_schedules, index_15) + end end - return event_duration_probabilites_map + return occupancy_arrays end - # TODO + # Fill plug loads and ceiling fan schedules based on occupant activities. # - # @param resources_path [TODO] TODO - # @return [TODO] TODO - def read_activity_duration_prob(resources_path:) - cluster_types = ['0', '1', '2', '3'] - day_types = ['weekday', 'weekend'] - time_of_days = ['morning', 'midday', 'evening'] - activity_names = ['shower', 'cooking', 'dishwashing', 'laundry'] - activity_duration_prob_map = {} - cluster_types.each do |cluster_type| - day_types.each do |day_type| - time_of_days.each do |time_of_day| - activity_names.each do |activity_name| - duration_file = resources_path + "/#{day_type}/duration_probability/cluster_#{cluster_type}_#{activity_name}_#{time_of_day}_duration_probability.csv" - duration_probabilities = CSV.read(duration_file) - durations = duration_probabilities.map { |entry| entry[0].to_i } - probabilities = duration_probabilities.map { |entry| entry[1].to_f } - activity_duration_prob_map["#{cluster_type}_#{activity_name}_#{day_type}_#{time_of_day}"] = [durations, probabilities] - end - end - end + # @param mkc_activity_schedules [Array] Array of matrices containing Markov chain activity states for each occupant + # @param weather [WeatherFile] Weather object containing EPW information + # @return [void] Updates @schedules with plug loads and ceiling fan schedules + def fill_plug_loads_schedule(mkc_activity_schedules, weather) + # Initialize base schedules + daily_schedules = get_plugload_daily_schedules(@default_schedules_csv_data, @schedules_csv_data, weather) + + # Generate schedules for each plug load type if it exists + if @hpxml_bldg.plug_loads.find { |p| p.plug_load_type == 'other' } + plug_loads_other = generate_plug_load_schedule(mkc_activity_schedules, daily_schedules, :plug_loads_other) + @schedules[SchedulesFile::Columns[:PlugLoadsOther].name] = normalize(plug_loads_other) + end + + if @hpxml_bldg.plug_loads.find { |p| p.plug_load_type == 'TV other' } + plug_loads_tv = generate_plug_load_schedule(mkc_activity_schedules, daily_schedules, :plug_loads_tv) + @schedules[SchedulesFile::Columns[:PlugLoadsTV].name] = normalize(plug_loads_tv) + end + if !@hpxml_bldg.ceiling_fans.to_a.empty? + ceiling_fan = generate_plug_load_schedule(mkc_activity_schedules, daily_schedules, :ceiling_fan) + @schedules[SchedulesFile::Columns[:CeilingFan].name] = normalize(ceiling_fan) end - return activity_duration_prob_map end # TODO # - # @param prng [Random] Random number generator object - # @param cluster_size_prob_map [TODO] TODO - # @param activity_type_name [TODO] TODO - # @return [TODO] TODO - def sample_activity_cluster_size(prng, cluster_size_prob_map, activity_type_name) - cluster_size_probabilities = cluster_size_prob_map[activity_type_name] - return weighted_random(prng, cluster_size_probabilities) + 1 + # @param mkc_activity_schedules [TODO] TODO + # @param daily_schedules [TODO] TODO + # @param schedule_type [TODO] TODO + # @return [TODO] + def generate_plug_load_schedule(mkc_activity_schedules, daily_schedules, schedule_type) + schedule = Array.new(@total_days_in_year * @steps_in_day, 0.0) + @total_days_in_year.times do |day| + today = @sim_start_day + day + month = today.month + is_weekday = ![0, 6].include?(today.wday) + @steps_in_day.times do |step| + minute = day * 1440 + step * @minutes_per_step + index_15 = (minute / 15).to_i + # Calculate occupancy percentage + active_occupancy_percentage = calculate_active_occupancy(mkc_activity_schedules, index_15) + schedule_index = day * @steps_in_day + step + # Update schedule based on daily schedules and occupancy + schedule[schedule_index] = get_value_from_daily_sch( + daily_schedules[schedule_type][:weekday], + daily_schedules[schedule_type][:weekend], + daily_schedules[schedule_type][:monthly], + month, is_weekday, minute, active_occupancy_percentage + ) + end + end + return schedule end - # TODO + # Calculate the percentage of occupants that are actively present and awake. # - # @param prng [Random] Random number generator object - # @param duration_probabilites_map [TODO] TODO - # @param event_type [TODO] TODO - # @return [TODO] TODO - def sample_event_duration(prng, duration_probabilites_map, event_type) - durations = duration_probabilites_map[event_type][0] - probabilities = duration_probabilites_map[event_type][1] - return durations[weighted_random(prng, probabilities)] + # @param mkc_activity_schedules [Array] Array of occupant activity schedules + # @param index_15 [Integer] 15-minute timestep index + # @return [Float] Percentage of occupants that are actively present and awake + def calculate_active_occupancy(mkc_activity_schedules, index_15) + sleep_percentage = sum_across_occupants(mkc_activity_schedules, 0, index_15).to_f / @num_occupants + away_percentage = sum_across_occupants(mkc_activity_schedules, 5, index_15).to_f / @num_occupants + 1 - (away_percentage + sleep_percentage) end - # TODO + # Fill the lighting schedule based on occupant activities. # - # @param prng [Random] Random number generator object - # @param activity_duration_prob_map [TODO] TODO - # @param occ_type_id [TODO] TODO - # @param activity [TODO] TODO - # @param day_type [TODO] TODO - # @param hour [TODO] TODO - # @return [TODO] TODO - def sample_activity_duration(prng, activity_duration_prob_map, occ_type_id, activity, day_type, hour) - # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' - if hour < 8 - time_of_day = 'morning' - elsif hour < 16 - time_of_day = 'midday' - else - time_of_day = 'evening' + # @param mkc_activity_schedules [Array] Array of occupant activity schedules + # @param args [Hash] Map of :argument_name => value + # @return [nil] + def fill_lighting_schedule(mkc_activity_schedules, args) + # Initialize base lighting schedule + interior_lighting_schedule = initialize_interior_lighting_schedule(args) + + # Generate minute-level schedule + lighting_interior = Array.new(@total_days_in_year * @steps_in_day, 0.0) + + @total_days_in_year.times do |day| + @steps_in_day.times do |step| + minute = day * 1440 + step * @minutes_per_step + index_15 = (minute / 15).to_i + + # Calculate occupancy percentage + active_occupancy_percentage = calculate_active_occupancy(mkc_activity_schedules, index_15) + + schedule_index = day * @steps_in_day + step + lighting_interior[schedule_index] = scale_lighting_by_occupancy( + interior_lighting_schedule, minute, active_occupancy_percentage + ) + end end - if activity == 1 - activity_name = 'shower' - elsif activity == 2 - activity_name = 'laundry' - elsif activity == 3 - activity_name = 'cooking' - elsif activity == 4 - activity_name = 'dishwashing' - else - return 1 # all other activity will span only one mkc step + normalized_lighting = normalize(lighting_interior) + @schedules[SchedulesFile::Columns[:LightingInterior].name] = normalized_lighting + if @hpxml_bldg.has_location(HPXML::LocationGarage) + @schedules[SchedulesFile::Columns[:LightingGarage].name] = normalized_lighting end - durations = activity_duration_prob_map["#{occ_type_id}_#{activity_name}_#{day_type}_#{time_of_day}"][0] - probabilities = activity_duration_prob_map["#{occ_type_id}_#{activity_name}_#{day_type}_#{time_of_day}"][1] - return durations[weighted_random(prng, probabilities)] end - # TODO + # Generate the sink schedule based on occupant activities. # - # @param schedules_path [TODO] TODO - # @return [TODO] TODO - def export(schedules_path:) - (SchedulesFile::Columns.values.map { |c| c.name } - @column_names).each do |col_to_remove| - @schedules.delete(col_to_remove) - end - schedule_keys = @schedules.keys - schedule_rows = @schedules.values.transpose.map { |row| row.map { |x| '%.3g' % x } } - if @append_output && File.exist?(schedules_path) - table = CSV.read(schedules_path) - if table.size != schedule_rows.size + 1 - @runner.registerError("Invalid number of rows (#{table.size}) in file.csv. Expected #{schedule_rows.size + 1} rows (including the header row).") - return false + # @param mkc_activity_schedules [Array] Array of occupant activity schedules + # @return [Array] Minute-level sink water draw schedule + def generate_sink_schedule(mkc_activity_schedules) + # Generate the Sink Schedule + # 1. Find indexes (minutes) when at least one occupant can have sink event (they aren't sleeping or absent) + # 2. Determine number of cluster per day + # 3. Sample flow-rate for the sink + # 4. For each cluster + # a. sample for number_of_events + # b. Re-normalize onset probability by removing invalid indexes (invalid = where we already have sink events) + # b. Probabilistically determine the start of the first event based on onset probability. + # c. For each event in number_of_events + # i. Sample the duration + # ii. Add the time occupied by event to invalid_index + # ii. if more events, offset by fixed wait time and goto c + # d. if more cluster, go to 4. + + sink_activity_probable_mins = get_sink_probable_minutes(mkc_activity_schedules) + sink_activity_sch = [0] * @mins_in_year + + # Load probability distributions and constants + sink_duration_probs = Schedule.validate_values(Constants::SinkDurationProbability, 9, 'sink_duration_probability') + events_per_cluster_probs = Schedule.validate_values(Constants::SinkEventsPerClusterProbs, 15, 'sink_events_per_cluster_probs') + hourly_onset_prob = Schedule.validate_values(Constants::SinkHourlyOnsetProb, 24, 'sink_hourly_onset_prob') + + # Calculate clusters and flow rate + cluster_per_day = calculate_sink_clusters_per_day() + sink_flow_rate = gaussian_rand(@prngs[:hygiene], Constants::SinkFlowRateMean, Constants::SinkFlowRateStd) + # Generate sink events for each day + @total_days_in_year.times do |day| + cluster_per_day.times do + # Get probability distribution for today's events + todays_probable_steps = sink_activity_probable_mins[day * @mkc_ts_per_day..((day + 1) * @mkc_ts_per_day - 1)] + todays_probablities = todays_probable_steps.map.with_index { |p, i| p * hourly_onset_prob[i / @mkc_ts_per_hour] } + + # Normalize probabilities and select start time + prob_sum = todays_probablities.sum(0) + normalized_probabilities = todays_probablities.map { |p| p * 1 / prob_sum } + cluster_start_index = weighted_random(@prngs[:hygiene], normalized_probabilities) + + # Mark time slot as used + if sink_activity_probable_mins[cluster_start_index] != 0 + sink_activity_probable_mins[cluster_start_index] = 0 + end + + # Generate events within this cluster + num_events = weighted_random(@prngs[:hygiene], events_per_cluster_probs) + 1 + start_min = cluster_start_index * 15 + end_min = (cluster_start_index + 1) * 15 + + num_events.times do + duration = weighted_random(@prngs[:hygiene], sink_duration_probs) + 1 + duration = end_min - start_min if start_min + duration > end_min + + sink_activity_sch.fill(sink_flow_rate, (day * 1440) + start_min, duration) + start_min += duration + Constants::SinkMinutesBetweenEventGap + + break if start_min >= end_min + end end - schedule_keys = table[0] + schedule_keys - schedule_rows = schedule_rows.map.with_index { |row, i| table[i + 1] + row } end + return sink_activity_sch + end - # Note: We don't use the CSV library here because it's slow for large files - File.open(schedules_path, 'w') do |csv| - csv << "#{schedule_keys.join(',')}\n" - schedule_rows.each do |row| - csv << "#{row.join(',')}\n" + # Initialize array marking minutes when sink activity is possible. + # + # @param mkc_activity_schedules [Array>] Array of occupant activity schedules from Markov chain simulation + # @return [Array] Array indicating minutes when sink activity is possible (1) or not (0) + def get_sink_probable_minutes(mkc_activity_schedules) + # Initialize array marking minutes when sink activity is possible + # (when at least one occupant is not sleeping and not absent) + sink_activity_probable_mins = [0] * @mkc_steps_in_a_year + + # States are: 0='sleeping', 1='shower', 2='laundry', 3='cooking', 4='dishwashing', 5='absent', 6='nothingAtHome' + @mkc_steps_in_a_year.times do |step| + mkc_activity_schedules.size.times do |i| # across occupants + if not ((mkc_activity_schedules[i][step, 0] == 1) || (mkc_activity_schedules[i][step, 5] == 1)) + sink_activity_probable_mins[step] = 1 + break # One active occupant is sufficient + end end end - return true + return sink_activity_probable_mins end - # TODO + # Calculate the number of sink clusters per day based on number of occupants. # - # @param prng [Random] Random number generator object - # @param mean [TODO] TODO - # @param std [TODO] TODO - # @param min [TODO] TODO - # @param max [TODO] TODO - # @return [TODO] TODO - def gaussian_rand(prng, mean, std, min = 0.1, max = nil) - t = 2 * Math::PI * prng.rand - r = Math.sqrt(-2 * Math.log(1 - prng.rand)) - scale = std * r - x = mean + scale * Math.cos(t) - if (not min.nil?) && (x < min) then x = min end - if (not max.nil?) && (x > max) then x = max end - # y = mean + scale * Math.sin(t) - return x + # @return [Integer] Number of sink clusters per day + def calculate_sink_clusters_per_day() + # Lookup avg_sink_clusters_per_hh from constants and adjust for number of occupants + avg_sink_clusters_per_hh = Constants::SinkAvgSinkClustersPerHH + # Eq based on cluster scaling in Building America DHW Event Schedule Generator + # (fewer sink draw clusters for larger households) + total_clusters = avg_sink_clusters_per_hh * (0.29 * @num_occupants + 0.26) + return (total_clusters / @total_days_in_year).to_i end - # TODO + # Generate minute level schedule for shower and bath. # - # @param all_simulated_values [TODO] TODO - # @param activity_index [TODO] TODO - # @param time_index [TODO] TODO - # @param max_clip [TODO] TODO - # @return [TODO] TODO - def sum_across_occupants(all_simulated_values, activity_index, time_index, max_clip: nil) - sum = 0 - all_simulated_values.size.times do |i| - sum += all_simulated_values[i][time_index, activity_index] - end - if (not max_clip.nil?) && (sum > max_clip) - sum = max_clip + # @param mkc_activity_schedules [Array>] Array of occupant activity schedules from Markov chain simulation + # @return [Array, Array] Arrays containing shower and bath schedules + def generate_bath_shower_schedules(mkc_activity_schedules) + # Generate minute level schedule for shower and bath + # 1. Identify the shower time slots from the mkc schedule. This corresponds to personal hygiene time + # For each slot: + # 2. Determine if the personal hygiene is to be bath/shower using bath_to_shower_ratio probability + # 3. Sample for the shower and bath flow rate. (These will remain same throughout the year for a given building) + # However, the duration of each shower/bath event can be different, so, in 15-minute aggregation, the shower/bath + # Water consumption might appear different between different events + # 4. If it is shower + # a. Determine the number of events in the shower cluster (there can be multiple showers) + # b. For each event, sample the shower duration + # c. Fill in the time period of personal hygiene using that many events of corresponding duration + # separated by shower_minutes_between_event_gap. + # TODO If there is room in the mkc personal hygiene slot, shift uniform randomly + # 5. If it is bath + # a. Sample the bath duration + # b. Fill in the mkc personal hygiene slot with the bath duration and flow rate. + # TODO If there is room in the mkc personal hygiene slot, shift uniform randomly + # 6. Repeat process 2-6 for each occupant + bath_flow_rate = gaussian_rand(@prngs[:hygiene], Constants::BathFlowRateMean, Constants::BathFlowRateStd) + shower_flow_rate = gaussian_rand(@prngs[:hygiene], Constants::ShowerFlowRateMean, Constants::ShowerFlowRateStd) + bath_sch = [0] * @mins_in_year + shower_sch = [0] * @mins_in_year + # Generate schedules + step = 0 + while step < @mkc_steps_in_a_year + shower_state = sum_across_occupants(mkc_activity_schedules, 1, step) + start_min = step * 15 + step_jump = 1 + shower_state.to_i.times do + r = @prngs[:hygiene].rand + if r <= Constants::BathToShowerRatio + # Fill bath event + duration = gaussian_rand(@prngs[:hygiene], Constants::BathDurationMean, Constants::BathDurationStd) + int_duration = duration.ceil + # since we are rounding duration to integer minute, we compensate by scaling flow rate + flow_rate = bath_flow_rate * duration / int_duration + m = 0 + int_duration.times do + break if (start_min + m) >= @mins_in_year + + bath_sch[start_min + m] += flow_rate + m += 1 + end + else + # Fill shower events + num_events = sample_activity_cluster_size(@prngs[:hygiene], @cluster_size_prob_map, 'shower') + m = 0 + num_events.times do + duration = sample_event_duration(@prngs[:hygiene], @event_duration_prob_map, 'shower') + int_duration = duration.ceil + flow_rate = shower_flow_rate * duration / int_duration + int_duration.times do + break if (start_min + m) >= @mins_in_year + + shower_sch[start_min + m] += flow_rate + m += 1 + end + Constants::ShowerMinutesBetweenEventGap.times do + break if (start_min + m) >= @mins_in_year + + m += 1 + end + break if start_min + m >= @mins_in_year + end + end + step_jump = [step_jump, 1 + (m / 15)].max + end + step += step_jump end - return sum + return shower_sch, bath_sch end - # TODO + # Generate the dishwasher schedule based on occupant activities. # - # @param arr [TODO] TODO - # @return [TODO] TODO - def normalize(arr) - m = arr.max - arr = arr.map { |a| a / m } - return arr - end + # @param mkc_activity_schedules [Array] Array of occupant activity schedules + # @return [Array] Minute-level dishwasher water draw schedule + def generate_dishwasher_schedule(mkc_activity_schedules) + # Generate minute level schedule for dishwasher + # 1. Identify the dishwasher time slots from the mkc schedule. + # 2. Sample for the flow_rate + # 3. Determine the number of events in the dishwasher cluster + # (it's typically composed of multiple water draw events) + # 4. For each event, sample the event duration + # 5. Fill in the dishwasher time slot using those water draw events - # TODO - # - # @param sch [TODO] TODO - # @param minute [TODO] TODO - # @param active_occupant_percentage [TODO] TODO - # @return [TODO] TODO - def scale_lighting_by_occupancy(sch, minute, active_occupant_percentage) - day_start = minute / 1440 - day_sch = sch[day_start * 24, 24] - current_val = sch[minute / 60] - return day_sch.min + (current_val - day_sch.min) * active_occupant_percentage - end + dw_flow_rate_mean = Constants::HotWaterDishwasherFlowRateMean + dw_flow_rate_std = Constants::HotWaterDishwasherFlowRateStd + dw_minutes_between_event_gap = Constants::HotWaterDishwasherMinutesBetweenEventGap + dw_hot_water_sch = [0] * @mins_in_year + m = 0 + dw_flow_rate = gaussian_rand(@prngs[:dishwasher], dw_flow_rate_mean, dw_flow_rate_std) - # TODO - # - # @param weekday_sch [TODO] TODO - # @param weekend_sch [TODO] TODO - # @param monthly_multiplier [TODO] TODO - # @param month [TODO] TODO - # @param is_weekday [TODO] TODO - # @param minute [TODO] TODO - # @param active_occupant_percentage [TODO] TODO - # @return [TODO] TODO - def get_value_from_daily_sch(weekday_sch, weekend_sch, monthly_multiplier, month, is_weekday, minute, active_occupant_percentage) - is_weekday ? sch = weekday_sch : sch = weekend_sch - full_occupancy_current_val = sch[((minute % 1440) / 60).to_i].to_f * monthly_multiplier[month - 1].to_f - return sch.min + (full_occupancy_current_val - sch.min) * active_occupant_percentage - end + # States are: 'sleeping','shower','laundry','cooking', 'dishwashing', 'absent', 'nothingAtHome' + # Fill in dw_water draw schedule + step = 0 + while step < @mkc_steps_in_a_year + dish_state = sum_across_occupants(mkc_activity_schedules, 4, step, max_clip: 1) + step_jump = 1 + if dish_state > 0 + cluster_size = sample_activity_cluster_size(@prngs[:dishwasher], @cluster_size_prob_map, 'hot_water_dishwasher') + start_minute = step * 15 + m = 0 + cluster_size.times do + duration = sample_event_duration(@prngs[:dishwasher], @event_duration_prob_map, 'hot_water_dishwasher') + int_duration = duration.ceil + flow_rate = dw_flow_rate * duration / int_duration + int_duration.times do + dw_hot_water_sch[start_minute + m] = flow_rate + m += 1 + if start_minute + m >= @mins_in_year then break end + end + if start_minute + m >= @mins_in_year then break end - # TODO - # - # @param prng [Random] Random number generator object - # @param weights [TODO] TODO - # @return [TODO] TODO - def weighted_random(prng, weights) - n = prng.rand - cum_weights = 0 - weights.each_with_index do |w, index| - cum_weights += w - if n <= cum_weights - return index + dw_minutes_between_event_gap.times do + m += 1 + if start_minute + m >= @mins_in_year then break end + end + if start_minute + m >= @mins_in_year then break end + end + step_jump = [step_jump, 1 + (m / 15)].max end + step += step_jump end - return weights.size - 1 # If the prob weight don't sum to n, return last index + + return dw_hot_water_sch end - # TODO + # Generate the clothes washer schedule based on occupant activities. # - # @param time_zone_utc_offset [TODO] TODO - # @param latitude [TODO] TODO - # @param longitude [TODO] TODO - # @return [TODO] TODO - def get_building_america_lighting_schedule(time_zone_utc_offset, latitude, longitude, schedules_csv_data) - # Sunrise and sunset hours - sunrise_hour = [] - sunset_hour = [] - std_long = -time_zone_utc_offset * 15 - normalized_hourly_lighting = [[1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24], [1..24]] - for month in 0..11 - if latitude < 51.49 - m_num = month + 1 - jul_day = m_num * 30 - 15 - if not ((m_num < 4) || (m_num > 10)) - offset = 1 - else - offset = 0 - end - declination = 23.45 * Math.sin(0.9863 * (284 + jul_day) * 0.01745329) - deg_rad = Math::PI / 180 - rad_deg = 1 / deg_rad - b = (jul_day - 1) * 0.9863 - equation_of_time = (0.01667 * (0.01719 + 0.42815 * Math.cos(deg_rad * b) - 7.35205 * Math.sin(deg_rad * b) - 3.34976 * Math.cos(deg_rad * (2 * b)) - 9.37199 * Math.sin(deg_rad * (2 * b)))) - sunset_hour_angle = rad_deg * Math.acos(-1 * Math.tan(deg_rad * latitude) * Math.tan(deg_rad * declination)) - sunrise_hour[month] = offset + (12.0 - 1 * sunset_hour_angle / 15.0) - equation_of_time - (std_long + longitude) / 15 - sunset_hour[month] = offset + (12.0 + 1 * sunset_hour_angle / 15.0) - equation_of_time - (std_long + longitude) / 15 - else - sunrise_hour = [8.125726064, 7.449258072, 6.388688653, 6.232405257, 5.27722936, 4.84705384, 5.127512162, 5.860163988, 6.684378904, 7.521267411, 7.390441945, 8.080667697] - sunset_hour = [16.22214058, 17.08642353, 17.98324493, 19.83547864, 20.65149672, 21.20662992, 21.12124777, 20.37458274, 19.25834757, 18.08155615, 16.14359164, 15.75571306] - end - end + # @param mkc_activity_schedules [Array] Array of occupant activity schedules + # @return [Array] Minute-level clothes washer water draw schedule + def generate_clothes_washer_schedule(mkc_activity_schedules) + # Generate minute level schedule for clothes washer water draw + cw_flow_rate_mean = Constants::HotWaterClothesWasherFlowRateMean + cw_flow_rate_std = Constants::HotWaterClothesWasherFlowRateStd + cw_minutes_between_event_gap = Constants::HotWaterClothesWasherMinutesBetweenEventGap + cw_hot_water_sch = [0] * @mins_in_year # this is the clothes_washer water draw schedule + cw_load_size_probability = Schedule.validate_values(Constants::HotWaterClothesWasherLoadSizeProbability, 4, 'hot_water_clothes_washer_load_size_probability') - june_kws = [0.060, 0.040, 0.035, 0.025, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.025, 0.030, 0.030, 0.025, 0.020, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.020, 0.020, 0.020, 0.025, 0.025, 0.030, 0.030, 0.035, 0.045, 0.060, 0.085, 0.125, 0.145, 0.130, 0.105, 0.080] - lighting_seasonal_multiplier = schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['LightingInteriorMonthlyMultipliers'].split(',').map { |v| v.to_f } - amplConst1 = 0.929707907917098 - sunsetLag1 = 2.45016230615269 - stdDevCons1 = 1.58679810983444 - amplConst2 = 1.1372291802273 - sunsetLag2 = 20.1501965859073 - stdDevCons2 = 2.36567663279954 + cw_flow_rate = gaussian_rand(@prngs[:clothes_washer], cw_flow_rate_mean, cw_flow_rate_std) - monthly_kwh_per_day = [] - days_m = Calendar.num_days_in_months(1999) # Intentionally excluding leap year designation - wtd_avg_monthly_kwh_per_day = 0 - for monthNum in 1..12 - month = monthNum - 1 - monthHalfHourKWHs = [0] - for hourNum in 0..9 - monthHalfHourKWHs[hourNum] = june_kws[hourNum] - end - for hourNum in 9..17 - hour = (hourNum + 1.0) * 0.5 - monthHalfHourKWHs[hourNum] = (monthHalfHourKWHs[8] - (0.15 / (2 * Math::PI)) * Math.sin((2 * Math::PI) * (hour - 4.5) / 3.5) + (0.15 / 3.5) * (hour - 4.5)) * lighting_seasonal_multiplier[month] - end - for hourNum in 17..29 - hour = (hourNum + 1.0) * 0.5 - monthHalfHourKWHs[hourNum] = (monthHalfHourKWHs[16] - (-0.02 / (2 * Math::PI)) * Math.sin((2 * Math::PI) * (hour - 8.5) / 5.5) + (-0.02 / 5.5) * (hour - 8.5)) * lighting_seasonal_multiplier[month] - end - for hourNum in 29..45 - hour = (hourNum + 1.0) * 0.5 - monthHalfHourKWHs[hourNum] = (monthHalfHourKWHs[28] + amplConst1 * Math.exp((-1.0 * (hour - (sunset_hour[month] + sunsetLag1))**2) / (2.0 * ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1)**2)) / ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1 * (2.0 * Math::PI)**0.5)) - end - for hourNum in 45..46 - hour = (hourNum + 1.0) * 0.5 - temp1 = (monthHalfHourKWHs[44] + amplConst1 * Math.exp((-1.0 * (hour - (sunset_hour[month] + sunsetLag1))**2) / (2.0 * ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1)**2)) / ((25.5 / ((6.5 - monthNum).abs + 20.0)) * stdDevCons1 * (2.0 * Math::PI)**0.5)) - temp2 = (0.04 + amplConst2 * Math.exp((-1.0 * (hour - sunsetLag2)**2) / (2.0 * stdDevCons2**2)) / (stdDevCons2 * (2.0 * Math::PI)**0.5)) - if sunsetLag2 < sunset_hour[month] + sunsetLag1 - monthHalfHourKWHs[hourNum] = [temp1, temp2].min - else - monthHalfHourKWHs[hourNum] = [temp1, temp2].max + # States are: 'sleeping','shower','laundry','cooking', 'dishwashing', 'absent', 'nothingAtHome' + step = 0 + m = 0 + # Fill in clothes washer water draw schedule based on markov-chain state 2 (laundry) + while step < @mkc_steps_in_a_year + clothes_state = sum_across_occupants(mkc_activity_schedules, 2, step, max_clip: 1) + step_jump = 1 + if clothes_state > 0 + num_loads = weighted_random(@prngs[:clothes_washer], cw_load_size_probability) + 1 + start_minute = step * 15 + m = 0 + num_loads.times do + cluster_size = sample_activity_cluster_size(@prngs[:clothes_washer], @cluster_size_prob_map, 'hot_water_clothes_washer') + cluster_size.times do + duration = sample_event_duration(@prngs[:clothes_washer], @event_duration_prob_map, 'hot_water_clothes_washer') + int_duration = duration.ceil + flow_rate = cw_flow_rate * duration.to_f / int_duration + int_duration.times do + cw_hot_water_sch[start_minute + m] = flow_rate + m += 1 + if start_minute + m >= @mins_in_year then break end + end + if start_minute + m >= @mins_in_year then break end + + cw_minutes_between_event_gap.times do + # skip the gap between events + m += 1 + if start_minute + m >= @mins_in_year then break end + end + if start_minute + m >= @mins_in_year then break end + end end - end - for hourNum in 46..47 - hour = (hourNum + 1) * 0.5 - monthHalfHourKWHs[hourNum] = (0.04 + amplConst2 * Math.exp((-1.0 * (hour - sunsetLag2)**2) / (2.0 * stdDevCons2**2)) / (stdDevCons2 * (2.0 * Math::PI)**0.5)) - end + if start_minute + m >= @mins_in_year then break end - sum_kWh = 0.0 - for timenum in 0..47 - sum_kWh += monthHalfHourKWHs[timenum] - end - for hour in 0..23 - ltg_hour = (monthHalfHourKWHs[hour * 2] + monthHalfHourKWHs[hour * 2 + 1]).to_f - normalized_hourly_lighting[month][hour] = ltg_hour / sum_kWh - monthly_kwh_per_day[month] = sum_kWh / 2.0 + step_jump = [step_jump, 1 + (m / 15)].max end - wtd_avg_monthly_kwh_per_day += monthly_kwh_per_day[month] * days_m[month] / 365.0 + step += step_jump end + return cw_hot_water_sch + end - # Calculate normalized monthly lighting fractions - seasonal_multiplier = [] - sumproduct_seasonal_multiplier = 0 - normalized_monthly_lighting = seasonal_multiplier - for month in 0..11 - seasonal_multiplier[month] = (monthly_kwh_per_day[month] / wtd_avg_monthly_kwh_per_day) - sumproduct_seasonal_multiplier += seasonal_multiplier[month] * days_m[month] - end + # @param mkc_activity_schedules [Array>] Markov chain activity schedules for each occupant + # @return [Array] Dishwasher power draw schedule for each minute of the year + def generate_dishwasher_power_schedule(mkc_activity_schedules) + # Fill in dishwasher power draw schedule based on markov-chain + # This follows similar pattern as filling in water draw events, except we use different set of probability + # distribution csv files for power level and duration of each event. And there is only one event per mkc slot. + dw_power_sch = [0] * @mins_in_year + step = 0 + last_state = 0 + start_time = Time.new(@sim_year, 1, 1) + hot_water_dishwasher_monthly_multiplier = Schedule.validate_values(@schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['HotWaterDishwasherMonthlyMultiplier'], 12, 'hot_water_dishwasher_monthly_multiplier') - for month in 0..11 - normalized_monthly_lighting[month] = seasonal_multiplier[month] * days_m[month] / sumproduct_seasonal_multiplier - end + while step < @mkc_steps_in_a_year + dish_state = sum_across_occupants(mkc_activity_schedules, 4, step, max_clip: 1) + step_jump = 1 + if (dish_state > 0) && (last_state == 0) # last_state == 0 prevents consecutive dishwasher power without gap + duration_15min, avg_power = sample_appliance_duration_power(@prngs[:dishwasher], @appliance_power_dist_map, 'dishwasher') - # Calculate schedule values - lighting_sch = [[], [], [], [], [], [], [], [], [], [], [], []] - for month in 0..11 - for hour in 0..23 - lighting_sch[month][hour] = normalized_monthly_lighting[month] * normalized_hourly_lighting[month][hour] / days_m[month] + month = (start_time + step * 15 * 60).month + duration_min = (duration_15min * 15 * hot_water_dishwasher_monthly_multiplier[month - 1]).to_i + + duration = [duration_min, @mins_in_year - step * 15].min + dw_power_sch.fill(avg_power, step * 15, duration) + step_jump = duration_15min end + last_state = dish_state + step += step_jump end - return lighting_sch + return dw_power_sch end - # Get the weekday/weekend schedule fractions for TV plug loads and monthly multipliers for interior lighting, dishwasher, clothes washer/dryer, cooking range, and other/TV plug loads. + # Generate power schedules for clothes washer and dryer based on occupant activities. # - # @return [Hash] { schedule_name => { element => values, ... }, ... } - def get_schedules_csv_data() - schedules_csv = File.join(File.dirname(__FILE__), 'schedules.csv') - if not File.exist?(schedules_csv) - fail 'Could not find schedules.csv' + # @param mkc_activity_schedules [Array>] Markov chain activity schedules for each occupant + # @return [Array, Array] Arrays containing clothes washer and dryer power draw schedules + def generate_clothes_washer_dryer_power_schedules(mkc_activity_schedules) + # Fill in cw and clothes dryer power schedule + # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' + cw_power_sch = [0] * @mins_in_year + cd_power_sch = [0] * @mins_in_year + step = 0 + last_state = 0 + start_time = Time.new(@sim_year, 1, 1) + clothes_dryer_monthly_multiplier = Schedule.validate_values(@schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['ClothesDryerMonthlyMultiplier'], 12, 'clothes_dryer_monthly_multiplier') + hot_water_clothes_washer_monthly_multiplier = Schedule.validate_values(@schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['HotWaterClothesWasherMonthlyMultiplier'], 12, 'hot_water_clothes_washer_monthly_multiplier') + + while step < @mkc_steps_in_a_year + clothes_state = sum_across_occupants(mkc_activity_schedules, 2, step, max_clip: 1) + step_jump = 1 + if (clothes_state > 0) && (last_state == 0) # last_state == 0 prevents consecutive washer power without gap + cw_duration_15min, cw_avg_power = sample_appliance_duration_power(@prngs[:clothes_washer], @appliance_power_dist_map, 'clothes_washer') + cd_duration_15min, cd_avg_power = sample_appliance_duration_power(@prngs[:clothes_dryer], @appliance_power_dist_map, 'clothes_dryer') + + month = (start_time + step * 15 * 60).month + cd_duration_min = (cd_duration_15min * 15 * clothes_dryer_monthly_multiplier[month - 1]).to_i + cw_duration_min = (cw_duration_15min * 15 * hot_water_clothes_washer_monthly_multiplier[month - 1]).to_i + + cw_duration = [cw_duration_min, @mins_in_year - step * 15].min + cw_power_sch.fill(cw_avg_power, step * 15, cw_duration) + cd_start_time = (step * 15 + cw_duration).to_i # clothes dryer starts immediately after washer ends\ + cd_duration = [cd_duration_min, @mins_in_year - cd_start_time].min # cd_duration would be negative if cd_start_time > @mins_in_year, and no filling would occur + cd_power_sch = cd_power_sch.fill(cd_avg_power, cd_start_time, cd_duration) + step_jump = cw_duration_15min + cd_duration_15min + end + last_state = clothes_state + step += step_jump end - require 'csv' - schedules_csv_data = {} - CSV.foreach(schedules_csv, headers: true) do |row| - schedule_name = row['Schedule Name'] - element = row['Element'] - values = row['Values'] + return cw_power_sch, cd_power_sch + end - schedules_csv_data[schedule_name] = {} if !schedules_csv_data.keys.include?(schedule_name) - schedules_csv_data[schedule_name][element] = values + # Generate power schedule for cooking range based on occupant activities. + # + # @param mkc_activity_schedules [Array>] Markov chain activity schedules for each occupant + # @return [Array] Array containing cooking range power draw schedule + def generate_cooking_power_schedule(mkc_activity_schedules) + # Fill in cooking power schedule + # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' + cooking_power_sch = [0] * @mins_in_year + step = 0 + last_state = 0 + start_time = Time.new(@sim_year, 1, 1) + cooking_monthly_multiplier = Schedule.validate_values(@schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['CookingMonthlyMultiplier'], 12, 'cooking_monthly_multiplier') + + while step < @mkc_steps_in_a_year + cooking_state = sum_across_occupants(mkc_activity_schedules, 3, step, max_clip: 1) + step_jump = 1 + if (cooking_state > 0) && (last_state == 0) # last_state == 0 prevents consecutive cooking power without gap + duration_15min, avg_power = sample_appliance_duration_power(@prngs[:cooking], @appliance_power_dist_map, 'cooking') + month = (start_time + step * 15 * 60).month + duration_min = (duration_15min * 15 * cooking_monthly_multiplier[month - 1]).to_i + duration = [duration_min, @mins_in_year - step * 15].min + cooking_power_sch.fill(avg_power, step * 15, duration) + step_jump = duration_15min + end + last_state = cooking_state + step += step_jump end - return schedules_csv_data + return cooking_power_sch + end + + # Apply random time shift and normalize schedule values. + # + # @param schedule [Array] Array of minute-level schedule values + # @param random_offset [Integer] Random offset in minutes to apply to the schedule + # @return [Array] Normalized schedule with random time shift applied + def random_shift_and_normalize(schedule, random_offset) + schedule = schedule.rotate(random_offset) + + # Apply monthly offsets and aggregate + schedule = apply_monthly_offsets(array: schedule, + weekday_monthly_shift_dict: @weekday_monthly_shift_dict, + weekend_monthly_shift_dict: @weekend_monthly_shift_dict) + schedule = aggregate_array(schedule, @minutes_per_step) + + return normalize(schedule) end end diff --git a/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb b/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb index 0ebd92e4e0..a7a46ddbb2 100644 --- a/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb +++ b/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb @@ -19,7 +19,6 @@ def setup @args_hash = {} @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) @args_hash['hpxml_output_path'] = @args_hash['hpxml_path'] - @year = 2007 @tol = 0.005 end @@ -52,19 +51,20 @@ def test_stochastic year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5388, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1517, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + expected_values = { + Occupants: 6689, + LightingInterior: 2086, + CookingRange: 300.9, + Dishwasher: 161.5, + ClothesWasher: 67.7, + ClothesDryer: 114.0, + PlugLoadsOther: 5388, + PlugLoadsTV: 1517, + HotWaterDishwasher: 287.3, + HotWaterClothesWasher: 322.6, + HotWaterFixtures: 981.2, + } + assert_full_load_hrs_match(sf, expected_values, @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) end @@ -136,19 +136,20 @@ def test_stochastic_location_detailed year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1992, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1992, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5388, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1517, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + expected_values = { + Occupants: 6689, + LightingInterior: 1992, + CookingRange: 300.9, + Dishwasher: 161.5, + ClothesWasher: 67.7, + ClothesDryer: 114.0, + PlugLoadsOther: 5388, + PlugLoadsTV: 1517, + HotWaterDishwasher: 287.3, + HotWaterClothesWasher: 322.6, + HotWaterFixtures: 981.2, + } + assert_full_load_hrs_match(sf, expected_values, @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) end @@ -175,20 +176,22 @@ def test_stochastic_debug year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5388, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1517, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3067, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Sleeping].name, schedules: sf.tmp_schedules), @tol) + expected_values = { + Occupants: 6689, + LightingInterior: 2086, + CookingRange: 300.9, + Dishwasher: 161.5, + ClothesWasher: 67.7, + ClothesDryer: 114.0, + PlugLoadsOther: 5388, + PlugLoadsTV: 1517, + HotWaterDishwasher: 287.3, + HotWaterClothesWasher: 322.6, + HotWaterFixtures: 981.2, + Sleeping: 3067, + PresentOccupants: 46402, + } + assert_full_load_hrs_match(sf, expected_values, @tol) end def test_random_seed @@ -213,21 +216,24 @@ def test_random_seed sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: @year, output_path: @tmp_schedule_file_path) + expected_values = { + Occupants: 6689, + LightingInterior: 2070, + CookingRange: 300, + Dishwasher: 161, + ClothesWasher: 64, + ClothesDryer: 113.9, + PlugLoadsOther: 5388, + PlugLoadsTV: 1517, + HotWaterDishwasher: 304, + HotWaterClothesWasher: 322, + HotWaterFixtures: 936, + } + assert_full_load_hrs_match(sf, expected_values, @tol) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2070, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2070, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(233, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3233, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5388, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1517, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(288, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(320, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(889, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) + assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:EVOccupant].name)) + assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:PresentOccupants].name)) @args_hash['schedules_random_seed'] = 2 hpxml, result = _test_measure() @@ -246,21 +252,20 @@ def test_random_seed sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: @year, output_path: @tmp_schedule_file_path) - - assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1753, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1753, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(174, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3276, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5292, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1205, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(233, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(244, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) - assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) + expected_values = { + Occupants: 6072, + LightingInterior: 1753, + CookingRange: 336, + Dishwasher: 297, + ClothesWasher: 116, + ClothesDryer: 188, + PlugLoadsOther: 5292, + PlugLoadsTV: 1205, + HotWaterDishwasher: 243, + HotWaterClothesWasher: 263, + HotWaterFixtures: 1049, + } + assert_full_load_hrs_match(sf, expected_values, @tol) end def test_10_min_timestep @@ -285,19 +290,20 @@ def test_10_min_timestep year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6707, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(105, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3009, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5393, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1505, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(146, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(154, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(397, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + expected_values = { + Occupants: 6707, + LightingInterior: 2077, + CookingRange: 300.9, + Dishwasher: 161.4, + ClothesWasher: 64.3, + ClothesDryer: 114.0, + PlugLoadsOther: 5393, + PlugLoadsTV: 1505, + HotWaterDishwasher: 155.9, + HotWaterClothesWasher: 138.4, + HotWaterFixtures: 280.2, + } + assert_full_load_hrs_match(sf, expected_values, @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) end @@ -332,6 +338,22 @@ def test_zero_occupants assert_empty(hpxml.buildings[0].header.schedules_filepaths) end + def test_ev_battery + num_occupants = 1.0 + + hpxml = _create_hpxml('base-vehicle-ev-charger.xml') + hpxml.buildings[0].building_occupancy.number_of_residents = num_occupants + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + + @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) + hpxml, _result = _test_measure() + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, + year: @year, + output_path: @tmp_schedule_file_path) + assert_in_epsilon(5890, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ElectricVehicleCharging].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(729.9, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ElectricVehicleDischarging].name, schedules: sf.tmp_schedules), @tol) + end + def test_multiple_buildings hpxml = _create_hpxml('base-bldgtype-mf-whole-building.xml') hpxml.buildings.each do |hpxml_bldg| @@ -362,54 +384,51 @@ def test_multiple_buildings if hpxml_bldg.building_id == 'MyBuilding' assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv') - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5388, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1517, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) - assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) + expected_values = { + Occupants: 6689, + LightingInterior: 2086, + CookingRange: 300.9, + Dishwasher: 161.5, + ClothesWasher: 67.7, + PlugLoadsOther: 5388, + PlugLoadsTV: 1517, + HotWaterDishwasher: 287.3, + HotWaterClothesWasher: 322.6, + HotWaterFixtures: 981.2, + } + assert_full_load_hrs_match(sf, expected_values, @tol) elsif hpxml_bldg.building_id == 'MyBuilding_2' assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') - assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3103, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5292, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1205, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(894, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) - assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) + expected_values = { + Occupants: 6072, + LightingInterior: 1765, + CookingRange: 336.4, + Dishwasher: 297.4, + ClothesWasher: 116.3, + PlugLoadsOther: 5292, + PlugLoadsTV: 1205, + HotWaterDishwasher: 229.8, + HotWaterClothesWasher: 246.5, + HotWaterFixtures: 956.4, + } + assert_full_load_hrs_match(sf, expected_values, @tol) elsif hpxml_bldg.building_id == 'MyBuilding_3' assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_3.csv') - assert_in_epsilon(6045, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(421, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(239, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(81, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(127, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3079, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5314, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1162, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(224, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(209, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(970, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) - assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) + expected_values = { + Occupants: 6045, + LightingInterior: 1745, + CookingRange: 358.5, + Dishwasher: 207.2, + ClothesWasher: 126.4, + PlugLoadsOther: 5314, + PlugLoadsTV: 1162, + HotWaterDishwasher: 232.1, + HotWaterClothesWasher: 206.8, + HotWaterFixtures: 857.1, + } + assert_full_load_hrs_match(sf, expected_values, @tol) end end end @@ -446,19 +465,19 @@ def test_multiple_buildings_id assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') - assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3103, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(5292, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(1205, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(894, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + expected_values = { + Occupants: 6072, + LightingInterior: 1765, + CookingRange: 336.4, + Dishwasher: 297.4, + ClothesWasher: 116.3, + PlugLoadsOther: 5292, + PlugLoadsTV: 1205, + HotWaterDishwasher: 229.8, + HotWaterClothesWasher: 246.5, + HotWaterFixtures: 956.4, + } + assert_full_load_hrs_match(sf, expected_values, @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) else assert_empty(hpxml_bldg.header.schedules_filepaths) @@ -477,12 +496,10 @@ def test_append_output @args_hash['output_csv_path'] = @tmp_schedule_file_path @args_hash['append_output'] = false _test_measure() - assert(File.exist?(@tmp_schedule_file_path)) outdata = File.readlines(@tmp_schedule_file_path) expected_cols = ScheduleGenerator.export_columns - assert_equal(expected_cols, outdata[0].strip.split(',')) # Header - assert_equal(expected_cols.size, outdata[1].split(',').size) # Data + assert((outdata[0].strip.split(',').to_set - expected_cols.to_set).empty?) # Test w/ append_output=true hpxml = _create_hpxml('base.xml') @@ -494,9 +511,8 @@ def test_append_output assert(File.exist?(@tmp_schedule_file_path)) outdata = File.readlines(@tmp_schedule_file_path) - expected_cols = orig_cols + ScheduleGenerator.export_columns - assert_equal(expected_cols, outdata[0].strip.split(',')) # Header - assert_equal(expected_cols.size, outdata[1].split(',').size) # Data + expected_cols = ScheduleGenerator.export_columns + assert_equal(orig_cols.to_set, (outdata[0].strip.split(',').to_set - expected_cols.to_set)) # Header # Test w/ append_output=true and inconsistent data existing_csv_path = File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'schedule_files', 'setpoints-10-mins.csv') @@ -554,4 +570,71 @@ def _test_measure(expect_fail: false) def _create_hpxml(hpxml_name) return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) end + + def assert_full_load_hrs_match(sf, expected_values, tol) + mismatches = [] + suggested_values = {} + missing_cols = [] + schedule_col_names = [] + cols_to_ignore = Set.new(['Vacancy', 'Power Outage', 'No Space Heating', 'No Space Cooling']) + expected_values.each do |col_name, expected_value| + unless SchedulesFile::Columns.key?(col_name.to_sym) + puts "Error: Column '#{col_name}' not found in SchedulesFile::Columns" + assert(false) + end + schedule_col_name = SchedulesFile::Columns[col_name.to_sym].name + schedule_col_names << schedule_col_name + if !sf.tmp_schedules.key?(schedule_col_name) + missing_cols << col_name + next + end + actual_value = sf.annual_equivalent_full_load_hrs(col_name: schedule_col_name, schedules: sf.tmp_schedules) + + delta = tol * [actual_value.abs, expected_value.abs].min + diff = (actual_value - expected_value).abs + if diff > delta + mismatches << { col_name: col_name, expected_value: expected_value, actual_value: actual_value, + message: "Expected |#{expected_value} - #{actual_value}| (#{diff}) to be <= #{delta}" } + suggested_values[col_name] = "#{format('%.1f', actual_value)}" + else + suggested_values[col_name] = "#{expected_value}" + end + end + extra_cols = sf.tmp_schedules.keys.to_set - schedule_col_names.to_set - cols_to_ignore.to_set + + unless (mismatches.empty? && missing_cols.empty? && extra_cols.empty?) + if !mismatches.empty? + puts "\nMismatches found:" + mismatches.each do |mismatch| + puts "#{mismatch[:col_name]}: #{mismatch[:message]}" + end + end + + if !missing_cols.empty? + puts "\nMissing columns:" + missing_cols.each do |col_name| + puts " :#{col_name}" + end + end + + if !extra_cols.empty? + puts "\nUnexpected columns found in the schedule file" + extra_cols.each do |col_name| + puts " :#{col_name}" + end + end + + puts "\nTo fix this, you can update the expected values to match the actual values and columns:" + puts ' expected_values = {' + expected_values.keys.each do |col_name| + if missing_cols.include?(col_name) + next + end + + puts " :#{col_name} => #{suggested_values[col_name]}," + end + puts ' }' + assert(false) + end + end end diff --git a/Changelog.md b/Changelog.md index ef5b09b3b2..50c9584ec4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,11 +1,24 @@ ## OpenStudio-HPXML v1.10.0 __New Features__ +- Electric vehicle enhancements: + - Allows detailed modeling of electric vehicles (batteries and charging/discharging) using `Vehicles` as an alternative to the simple EV charging `PlugLoad`. + - Adds EV driving unmet hours output. +- Allows requesting timeseries EnergyPlus output meters (e.g., `--hourly "MainsWater:Facility"`), similar to requesting EnergyPlus output variables. +- BuildResidentialScheduleFile measure: + - Adds stochastic schedule generation for electric vehicle charging (using `Vehicles`). + - Removes generation of stochastic schedules for building components not present in the HPXML file. +- Output updates: + - **Breaking change**: Adds generator electricity produced to *total* fuel/energy use; previously it was only included in *net* values. + - Adds new outputs for *net* peak electricity (summer/winter/annual); same as *total* peak electricity outputs but subtracts power produced by PV. __Bugfixes__ - Fixes zero occupants specified for one unit in a whole MF building from being treated like zero occupants for every unit. - Fixes using detailed schedules with higher resolution (e.g., 10-min data) than the simulation timestep (e.g., 60-min). - Fixes possible heating/cooling spikes when using maximum power ratio detailed schedule for variable-speed HVAC systems. +- Fixes unavailable periods for two consecutive, but partial, days. +- Fixes error when specifying a glass block window without interior shading coefficients. +- Fixes battery charging/discharging not being included in peak electricity outputs. ## OpenStudio-HPXML v1.9.1 diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index 93bbd7cd54..0bfdb978c8 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -150,6 +150,7 @@ def run(model, runner, user_arguments) Outputs.apply_ems_programs(model, hpxml_osm_map, hpxml.header, args[:add_component_loads]) Outputs.apply_output_file_controls(model, args[:debug]) Outputs.apply_additional_properties(model, hpxml, hpxml_osm_map, args[:hpxml_path], args[:building_id], args[:hpxml_defaults_path]) + Outputs.create_custom_meters(model) # Outputs.apply_ems_debug_output(model) # Uncomment to debug EMS # Write output files @@ -371,6 +372,7 @@ def create_unit_model(hpxml, hpxml_bldg, runner, model, epw_path, weather, sched PV.apply(model, hpxml_bldg) Generator.apply(model, hpxml_bldg) Battery.apply(runner, model, spaces, hpxml_bldg, schedules_file) + Vehicle.apply(runner, model, spaces, hpxml_bldg, hpxml.header, schedules_file) end # Miscellaneous logic that needs to occur upfront. @@ -396,11 +398,15 @@ def init(model, hpxml_bldg, hpxml_header) hpxml_bldg.delete_adiabatic_subsurfaces() # EnergyPlus doesn't allow this # Hidden feature: Version of the ANSI/RESNET/ICC 301 Standard to use for equations/assumptions - if hpxml_header.eri_calculation_version.nil? - hpxml_header.eri_calculation_version = 'latest' + if hpxml_header.eri_calculation_versions.size > 1 + fail 'Only a single ERI version is supported.' end - if hpxml_header.eri_calculation_version == 'latest' - hpxml_header.eri_calculation_version = Constants::ERIVersions[-1] + + if hpxml_header.eri_calculation_versions.empty? + hpxml_header.eri_calculation_versions = ['latest'] + end + if hpxml_header.eri_calculation_versions == ['latest'] + hpxml_header.eri_calculation_versions = [Constants::ERIVersions[-1]] end # Hidden feature: Whether to override certain assumptions to better match the ASHRAE 140 specification diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ca25d5c3df..44fb042603 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 3ea49029-4568-4711-a340-03037e25c017 - 2025-01-30T04:54:11Z + 1b99b3c9-d02a-4d70-ad5f-5a7d5b254398 + 2025-02-27T17:59:16Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -183,19 +183,19 @@ measure.rb rb script - 28965567 + 34B61ECA airflow.rb rb resource - 29D991BE + 23B7B4AC battery.rb rb resource - 3062E4E6 + 19BFE868 calendar.rb @@ -207,7 +207,7 @@ constants.rb rb resource - 22E067E1 + 1382D07B constructions.rb @@ -261,7 +261,7 @@ data/default_schedules.csv csv resource - BF708670 + CDD2DA76 data/g_functions/C_configurations_5m_v1.0.json @@ -315,7 +315,7 @@ data/unavailable_periods.csv csv resource - EC394126 + 3FBE7B42 data/zipcode_weather_stations.csv @@ -327,7 +327,7 @@ defaults.rb rb resource - EE5FDB35 + ED7C0B11 energyplus.rb @@ -339,7 +339,7 @@ generator.rb rb resource - 8159FC55 + 6C50CF5E geometry.rb @@ -351,19 +351,19 @@ hotwater_appliances.rb rb resource - 0B205523 + FA4DA1B3 hpxml.rb rb resource - 270F2EEB + 6923DA1E hpxml_schema/HPXML.xsd xsd resource - CB97DDA1 + E36727BB hpxml_schema/README.md @@ -375,7 +375,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 105F837D + 6D661DE4 hpxml_schematron/iso-schematron.xsd @@ -405,7 +405,7 @@ lighting.rb rb resource - 7B7F6D4C + 74899E6B location.rb @@ -441,7 +441,7 @@ misc_loads.rb rb resource - F66475DC + 78E80650 model.rb @@ -453,7 +453,7 @@ output.rb rb resource - 573B31F4 + 2824DDC1 psychrometrics.rb @@ -465,7 +465,7 @@ pv.rb rb resource - F8E8DDDD + C2C1C9BA schedule_files/README.md @@ -489,55 +489,67 @@ schedule_files/occupancy-non-stochastic.csv csv resource - A54803E1 + FA81E518 schedule_files/occupancy-stochastic-10-mins.csv csv resource - F88479B3 + D9B181A4 schedule_files/occupancy-stochastic-30-mins.csv csv resource - F88479B3 + D9B181A4 - schedule_files/occupancy-stochastic.csv + schedule_files/occupancy-stochastic-ev-charger.csv + csv + resource + 188BC7F1 + + + schedule_files/occupancy-stochastic-mf-unit.csv csv resource - B0187567 + 308CB2EE - schedule_files/occupancy-stochastic_2.csv + schedule_files/occupancy-stochastic-mf-unit_2.csv csv resource - 86E85543 + DB7B62B3 - schedule_files/occupancy-stochastic_3.csv + schedule_files/occupancy-stochastic-mf-unit_3.csv csv resource - 902A544E + 7452D495 - schedule_files/occupancy-stochastic_4.csv + schedule_files/occupancy-stochastic-mf-unit_4.csv csv resource - 3A0C7E92 + AEB1502E - schedule_files/occupancy-stochastic_5.csv + schedule_files/occupancy-stochastic-mf-unit_5.csv csv resource - F0FB0913 + D10757F1 - schedule_files/occupancy-stochastic_6.csv + schedule_files/occupancy-stochastic-mf-unit_6.csv csv resource - B071AE65 + 9B96E690 + + + schedule_files/occupancy-stochastic.csv + csv + resource + 703EC57D schedule_files/setpoints-10-mins.csv @@ -575,6 +587,18 @@ resource 706A63BC + + schedule_files/vehicle-ev-undercharged.csv + csv + resource + 692A61D6 + + + schedule_files/vehicle-ev.csv + csv + resource + 264EFE70 + schedule_files/water-heater-operating-modes.csv csv @@ -597,7 +621,7 @@ schedules.rb rb resource - 467EB413 + 7E83A486 simcontrols.rb @@ -623,6 +647,12 @@ resource C87C3553 + + vehicle.rb + rb + resource + D6349216 + version.rb rb @@ -633,7 +663,7 @@ waterheater.rb rb resource - ECEBF85F + A8560A5A weather.rb @@ -653,6 +683,12 @@ resource 93120E27 + + results_design_load_details.json + json + test + 4578819C + test_airflow.rb rb @@ -663,13 +699,13 @@ test_battery.rb rb test - E8640271 + C45ECC20 test_defaults.rb rb test - 7E9FC2FA + 3BF1E52A test_enclosure.rb @@ -693,7 +729,7 @@ test_hvac.rb rb test - 01F47953 + 6BFD956C test_hvac_sizing.rb @@ -717,7 +753,7 @@ test_miscloads.rb rb test - 4E0D3190 + AF74F5D9 test_pv.rb @@ -729,7 +765,7 @@ test_schedules.rb rb test - BDA04315 + 67722FDB test_simcontrols.rb @@ -741,7 +777,13 @@ test_validation.rb rb test - 55A49170 + 3D2FFDAD + + + test_vehicle.rb + rb + test + F29DE25D test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 4646118e59..379260d5f0 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -550,8 +550,8 @@ def self.apply_natural_ventilation_and_whole_house_fan(runner, model, spaces, hp vent_program.addLine("Set Tnvsp = (#{htg_sp_sensor.name} + #{clg_sp_sensor.name}) / 2") else # No HVAC system; use the average of defaulted heating/cooling setpoints. - htg_weekday_setpoints, htg_weekend_setpoints = Defaults.get_heating_setpoint(HPXML::HVACControlTypeManual, hpxml_header.eri_calculation_version) - clg_weekday_setpoints, clg_weekend_setpoints = Defaults.get_cooling_setpoint(HPXML::HVACControlTypeManual, hpxml_header.eri_calculation_version) + htg_weekday_setpoints, htg_weekend_setpoints = Defaults.get_heating_setpoint(HPXML::HVACControlTypeManual, hpxml_header.eri_calculation_versions[0]) + clg_weekday_setpoints, clg_weekend_setpoints = Defaults.get_cooling_setpoint(HPXML::HVACControlTypeManual, hpxml_header.eri_calculation_versions[0]) if htg_weekday_setpoints.split(', ').uniq.size == 1 && htg_weekend_setpoints.split(', ').uniq.size == 1 && htg_weekday_setpoints.split(', ').uniq == htg_weekend_setpoints.split(', ').uniq default_htg_sp = UnitConversions.convert(htg_weekend_setpoints.split(', ').uniq[0].to_f, 'F', 'C') else @@ -2391,14 +2391,14 @@ def self.apply_infiltration_adjustment_to_conditioned(runner, model, spaces, hpx infil_program.addLine('Set Qfan_with_ducts = (@Max Qexhaust Qsupply)') # Total combined air exchange - if Constants::ERIVersions.index(hpxml_header.eri_calculation_version) >= Constants::ERIVersions.index('2022') + if Constants::ERIVersions.index(hpxml_header.eri_calculation_versions[0]) >= Constants::ERIVersions.index('2022') infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') infil_program.addLine('If Qinf + Qimb > 0') infil_program.addLine(' Set Qtot = Qfan_with_ducts + (Qinf^2) / (Qinf + Qimb)') infil_program.addLine('Else') infil_program.addLine(' Set Qtot = Qfan_with_ducts') infil_program.addLine('EndIf') - elsif Constants::ERIVersions.index(hpxml_header.eri_calculation_version) >= Constants::ERIVersions.index('2019') + elsif Constants::ERIVersions.index(hpxml_header.eri_calculation_versions[0]) >= Constants::ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan_with_ducts > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. diff --git a/HPXMLtoOpenStudio/resources/battery.rb b/HPXMLtoOpenStudio/resources/battery.rb index 9e52b228a7..9c0fa00714 100644 --- a/HPXMLtoOpenStudio/resources/battery.rb +++ b/HPXMLtoOpenStudio/resources/battery.rb @@ -11,48 +11,49 @@ module Battery # @param schedules_file [SchedulesFile] SchedulesFile wrapper class instance of detailed schedule files # @return [nil] def self.apply(runner, model, spaces, hpxml_bldg, schedules_file) + charging_schedule, discharging_schedule = nil, nil + if not schedules_file.nil? + charging_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::Columns[:BatteryCharging].name) + discharging_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::Columns[:BatteryDischarging].name) + end hpxml_bldg.batteries.each do |battery| - apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_file) + apply_battery(runner, model, spaces, hpxml_bldg, battery, charging_schedule, discharging_schedule) end end # Add the HPXML Battery to the OpenStudio model. # - # Apply a home battery to the model using OpenStudio ElectricLoadCenterStorageLiIonNMCBattery, ElectricLoadCenterDistribution, ElectricLoadCenterStorageConverter, OtherEquipment, and EMS objects. - # Battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled. - # The system may be shared, in which case nominal/usable capacity (kWh) and usable fraction are apportioned to the dwelling unit by total number of bedrooms served. - # A battery may share an ElectricLoadCenterDistribution object with PV; electric buss type and storage operation scheme are therefore changed. + # Apply a home battery or EV battery to the model using OpenStudio ElectricLoadCenterStorageLiIonNMCBattery, ElectricLoadCenterDistribution, ElectricLoadCenterStorageConverter, OtherEquipment, and EMS objects. + # Home battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled. + # Home battery systems may be shared, in which case nominal/usable capacity (kWh) and usable fraction are apportioned to the dwelling unit by total number of bedrooms served. + # A home battery may share an ElectricLoadCenterDistribution object with PV; electric buss type and storage operation scheme are therefore changed. # Round trip efficiency is (temporarily) applied as an EMS program b/c E+ input is not hooked up. # # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings # @param model [OpenStudio::Model::Model] OpenStudio Model object # @param spaces [Hash] Map of HPXML locations => OpenStudio Space objects # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit - # @param battery [HPXML::Battery] Object that defines a single home battery - # @param schedules_file [SchedulesFile] SchedulesFile wrapper class instance of detailed schedule files - # @return [nil] for unscheduled battery w/out PV; in this case battery is not modeled - def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_file) + # @param battery [HPXML::Battery, HPXML::Vehicle] Object that defines a single home battery or EV battery + # @param charging_schedule [OpenStudio::Model::ScheduleXXX] The battery charging schedule + # @param discharging_schedule [OpenStudio::Model::ScheduleXXX] The battery discharging schedule + # @return [nil] + def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, charging_schedule, discharging_schedule) nbeds = hpxml_bldg.building_construction.number_of_bedrooms unit_multiplier = hpxml_bldg.building_construction.number_of_units pv_systems = hpxml_bldg.pv_systems + is_ev = battery.is_a?(HPXML::Vehicle) - charging_schedule = nil - discharging_schedule = nil - if not schedules_file.nil? - charging_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::Columns[:BatteryCharging].name) - discharging_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::Columns[:BatteryDischarging].name) - end - - if pv_systems.empty? && charging_schedule.nil? && discharging_schedule.nil? + if !is_ev && pv_systems.empty? && charging_schedule.nil? && discharging_schedule.nil? runner.registerWarning('Battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled.') return end obj_name = battery.id + location = (is_ev ? battery.additional_properties.location : battery.location) + rated_power_output = (is_ev ? battery.additional_properties.rated_power_output : battery.rated_power_output) # W - space = Geometry.get_space_from_location(battery.location, spaces) + space = Geometry.get_space_from_location(location, spaces) - rated_power_output = battery.rated_power_output # W if not battery.nominal_capacity_kwh.nil? if battery.usable_capacity_kwh.nil? fail "UsableCapacity and NominalCapacity for Battery '#{battery.id}' must be in the same units." @@ -73,7 +74,7 @@ def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_fil return if rated_power_output <= 0 || nominal_capacity_kwh <= 0 || battery.nominal_voltage <= 0 - if battery.is_shared_system + if !is_ev && battery.is_shared_system # Apportion to single dwelling unit by # bedrooms fail if battery.number_of_bedrooms_served.to_f <= nbeds.to_f # EPvalidator.xml should prevent this @@ -82,12 +83,15 @@ def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_fil rated_power_output = rated_power_output * nbeds.to_f / battery.number_of_bedrooms_served.to_f end + charging_power = (is_ev ? battery.ev_charger.charging_power : rated_power_output) + nominal_capacity_kwh *= unit_multiplier usable_capacity_kwh *= unit_multiplier rated_power_output *= unit_multiplier + charging_power *= unit_multiplier - is_outside = (battery.location == HPXML::LocationOutside) - if not is_outside + is_outside = (location == HPXML::LocationOutside) + if !is_outside && !is_ev frac_sens = 1.0 else # Internal gains outside unit frac_sens = 0.0 @@ -122,9 +126,7 @@ def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_fil elcs.setLifetimeModel(HPXML::BatteryLifetimeModelNone) elcs.setNumberofCellsinSeries(number_of_cells_in_series) elcs.setNumberofStringsinParallel(number_of_strings_in_parallel) - elcs.setInitialFractionalStateofCharge(0.0) elcs.setBatteryMass(battery_mass) - elcs.setDCtoDCChargingEfficiency(battery.round_trip_efficiency) # Note: This is currently unused in E+, so we use an EMS program below instead elcs.setBatterySurfaceArea(battery_surface_area) elcs.setDefaultNominalCellVoltage(default_nominal_cell_voltage) elcs.setFullyChargedCellCapacity(default_cell_capacity) @@ -137,25 +139,41 @@ def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_fil end elcs.setFullyChargedCellVoltage(default_nominal_cell_voltage) elcs.setCellVoltageatEndofExponentialZone(default_nominal_cell_voltage) + if is_ev + elcs.additionalProperties.setFeature('ObjectType', Constants::ObjectTypeVehicle) + else + elcs.additionalProperties.setFeature('ObjectType', Constants::ObjectTypeBattery) + end - elcds = model.getElectricLoadCenterDistributions - elcds = elcds.select { |elcd| elcd.inverter.is_initialized } # i.e., not generators - if elcds.empty? + if is_ev + elcs.setDCtoDCChargingEfficiency(1.0) # Charging efficiency is captured in the ev_discharge_program + # EVs always get their own ELCD, not PV elcd = OpenStudio::Model::ElectricLoadCenterDistribution.new(model) - elcd.setName('Battery elec load center dist') + elcd.setName("#{obj_name} elec load center dist") elcd.setElectricalBussType('AlternatingCurrentWithStorage') + elcs.setInitialFractionalStateofCharge(maximum_storage_state_of_charge_fraction) else - elcd = elcds[0] # i.e., pv - - elcd.setElectricalBussType('DirectCurrentWithInverterACStorage') - elcd.setStorageOperationScheme('TrackFacilityElectricDemandStoreExcessOnSite') + elcs.setDCtoDCChargingEfficiency(battery.round_trip_efficiency) # Note: This is currently unused in E+, so we use an EMS program below instead + elcs.setInitialFractionalStateofCharge(0.0) + elcds = model.getElectricLoadCenterDistributions + elcds = elcds.select { |elcd| elcd.inverter.is_initialized } # i.e., not generators + # Use PV ELCD if present + elcd = elcds.find { |elcd| elcd.name.to_s.include?('PVSystem') } + if elcd + elcd.setElectricalBussType('DirectCurrentWithInverterACStorage') + elcd.setStorageOperationScheme('TrackFacilityElectricDemandStoreExcessOnSite') + else + elcd = OpenStudio::Model::ElectricLoadCenterDistribution.new(model) + elcd.setName("#{obj_name} elec load center dist") + elcd.setElectricalBussType('AlternatingCurrentWithStorage') + end end elcd.setMinimumStorageStateofChargeFraction(minimum_storage_state_of_charge_fraction) elcd.setMaximumStorageStateofChargeFraction(maximum_storage_state_of_charge_fraction) elcd.setElectricalStorage(elcs) elcd.setDesignStorageControlDischargePower(rated_power_output) - elcd.setDesignStorageControlChargePower(rated_power_output) + elcd.setDesignStorageControlChargePower(charging_power) if (not charging_schedule.nil?) && (not discharging_schedule.nil?) elcd.setStorageOperationScheme('TrackChargeDischargeSchedules') @@ -174,6 +192,13 @@ def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_fil frac_lost = 1.0 end + elcd.additionalProperties.setFeature('HPXML_ID', battery.id) + elcs.additionalProperties.setFeature('HPXML_ID', battery.id) + elcs.additionalProperties.setFeature('UsableCapacity_kWh', Float(usable_capacity_kwh)) + + # Power discharge curve in the ev_discharge_program handles all EV losses + return if is_ev + # Apply round trip efficiency as EMS program b/c E+ input is not hooked up. # Replace this when the first item in https://github.com/NREL/EnergyPlus/issues/9176 is fixed. charge_sensor = Model.add_ems_sensor( @@ -225,10 +250,6 @@ def self.apply_battery(runner, model, spaces, hpxml_bldg, battery, schedules_fil calling_point: 'EndOfSystemTimestepBeforeHVACReporting', ems_programs: [battery_losses_program] ) - - elcd.additionalProperties.setFeature('HPXML_ID', battery.id) - elcs.additionalProperties.setFeature('HPXML_ID', battery.id) - elcs.additionalProperties.setFeature('UsableCapacity_kWh', Float(usable_capacity_kwh)) end # Get nominal capacity (amp-hours) from nominal capacity (kWh) and voltage (V). diff --git a/HPXMLtoOpenStudio/resources/constants.rb b/HPXMLtoOpenStudio/resources/constants.rb index eb1528a7cf..e2dc9d5be1 100644 --- a/HPXMLtoOpenStudio/resources/constants.rb +++ b/HPXMLtoOpenStudio/resources/constants.rb @@ -10,6 +10,8 @@ module Constants # Object types ObjectTypeAirSourceHeatPump = 'air source heat pump' ObjectTypeBackupSuppHeat = 'back up supp heat' + ObjectTypeBEVDischargeProgram = 'bev discharge program' + ObjectTypeBattery = 'battery' ObjectTypeBatteryLossesAdjustment = 'battery losses adjustment' ObjectTypeBoiler = 'boiler' ObjectTypeCeilingFan = 'ceiling fan' @@ -34,6 +36,7 @@ module Constants ObjectTypeGeneralWaterUse = 'general water use' ObjectTypeGeneralWaterUseLatent = 'general water use latent' ObjectTypeGeneralWaterUseSensible = 'general water use sensible' + ObjectTypeGenerator = 'generator' ObjectTypeGroundSourceHeatPump = 'ground source heat pump' ObjectTypeGSHPSharedPump = 'gshp shared loop pump' ObjectTypeHotWaterRecircPump = 'dhw recirc pump' @@ -68,6 +71,7 @@ module Constants ObjectTypeNaturalVentilation = 'natural vent' ObjectTypeNeighbors = 'neighbors' ObjectTypeOccupants = 'occupants' + ObjectTypePhotovoltaics = 'photovoltaics' ObjectTypePTAC = 'packaged terminal air conditioner' ObjectTypePTHP = 'packaged terminal heat pump' ObjectTypeRefrigerator = 'fridge' @@ -78,6 +82,7 @@ module Constants ObjectTypeTotalLoadsProgram = 'total loads program' ObjectTypeUnitHeater = 'unit heater' ObjectTypeUnmetHoursProgram = 'unmet hours program' + ObjectTypeVehicle = 'vehicle' ObjectTypeWaterHeater = 'water heater' ObjectTypeWaterHeaterSetpoint = 'water heater setpoint' ObjectTypeWaterHeaterAdjustment = 'water heater energy adjustment' @@ -248,6 +253,7 @@ module CLT module UHT Heating = 'Heating' Cooling = 'Cooling' + Driving = 'EV Driving' end # Resilience Types (Constants for output reporting) diff --git a/HPXMLtoOpenStudio/resources/data/default_schedules.csv b/HPXMLtoOpenStudio/resources/data/default_schedules.csv index e08c04f96b..f4bb919e69 100644 --- a/HPXMLtoOpenStudio/resources/data/default_schedules.csv +++ b/HPXMLtoOpenStudio/resources/data/default_schedules.csv @@ -46,12 +46,12 @@ ceiling_fan,WeekendScheduleFractions,"0.057, 0.057, 0.057, 0.057, 0.057, 0.057, plug_loads_other,WeekdayScheduleFractions,"0.036, 0.036, 0.036, 0.036, 0.036, 0.036, 0.038, 0.041, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.044, 0.047, 0.050, 0.051, 0.050, 0.048, 0.044, 0.040, 0.037",Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C plug_loads_other,WeekendScheduleFractions,"0.036, 0.036, 0.036, 0.036, 0.036, 0.036, 0.038, 0.041, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.044, 0.047, 0.050, 0.051, 0.050, 0.048, 0.044, 0.040, 0.037",Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C plug_loads_other,MonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", +plug_loads_vehicle,WeekdayScheduleFractions,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0", +plug_loads_vehicle,WeekendScheduleFractions,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0", +plug_loads_vehicle,MonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", plug_loads_tv,WeekdayScheduleFractions,"0.014, 0.007, 0.004, 0.003, 0.004, 0.006, 0.010, 0.015, 0.020, 0.025, 0.028, 0.031, 0.033, 0.038, 0.042, 0.046, 0.054, 0.062, 0.080, 0.110, 0.132, 0.125, 0.077, 0.034",Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C plug_loads_tv,WeekendScheduleFractions,"0.014, 0.007, 0.004, 0.003, 0.004, 0.006, 0.010, 0.015, 0.020, 0.025, 0.028, 0.031, 0.033, 0.038, 0.042, 0.046, 0.054, 0.062, 0.080, 0.110, 0.132, 0.125, 0.077, 0.034",Table C.3(1) of ANSI/RESNET/ICC 301-2022 Addendum C plug_loads_tv,MonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", -plug_loads_vehicle,WeekdayScheduleFractions,"0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042", -plug_loads_vehicle,WeekendScheduleFractions,"0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042", -plug_loads_vehicle,MonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", plug_loads_well_pump,WeekdayScheduleFractions,"0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065",Figure 23 of the `2010 BAHSP `_ plug_loads_well_pump,WeekendScheduleFractions,"0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065",Figure 23 of the `2010 BAHSP `_ plug_loads_well_pump,MonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", @@ -86,3 +86,6 @@ hot_water_recirculation_pump_demand_control,RecirculationPumpWeekendScheduleFrac hot_water_recirculation_pump_temperature_control,RecirculationPumpWeekdayScheduleFractions,"0.067, 0.072, 0.074, 0.073, 0.069, 0.048, 0.011, 0.003, 0.009, 0.020, 0.030, 0.037, 0.043, 0.047, 0.050, 0.051, 0.044, 0.034, 0.026, 0.026, 0.030, 0.036, 0.045, 0.055",Table C.3(5) of ANSI/RESNET/ICC 301-2022 Addendum C hot_water_recirculation_pump_temperature_control,RecirculationPumpWeekendScheduleFractions,"0.067, 0.072, 0.074, 0.073, 0.069, 0.048, 0.011, 0.003, 0.009, 0.020, 0.030, 0.037, 0.043, 0.047, 0.050, 0.051, 0.044, 0.034, 0.026, 0.026, 0.030, 0.036, 0.045, 0.055",Table C.3(5) of ANSI/RESNET/ICC 301-2022 Addendum C hot_water_recirculation_pump,RecirculationPumpMonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", +electric_vehicle,WeekdayScheduleFractions,"0.0714, 0.0714, 0.0714, 0.0714, 0.0714, 0.0714, 0.0714, -0.3535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3221, -0.3244, 0.0714, 0.0714, 0.0714, 0.0714, 0.0714, 0.0714, 0.0714", +electric_vehicle,WeekendScheduleFractions,"0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, -0.3334, 0, 0, 0, 0, -0.3293, -0.3372, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588, 0.0588", +electric_vehicle,MonthlyScheduleMultipliers,"1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", diff --git a/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv b/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv index 4d20ab98cc..c2cf2e6354 100644 --- a/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv +++ b/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv @@ -36,3 +36,5 @@ bath_fan,1,1,0,0 whole_house_fan,0,1,0,0 battery_charging,0,1,0,0 battery_discharging,0,1,0,0 +electric_vehicle_charging,0,1,0,0 +electric_vehicle_discharging,0,1,0,0 diff --git a/HPXMLtoOpenStudio/resources/defaults.rb b/HPXMLtoOpenStudio/resources/defaults.rb index 33b48a5dca..dd3f218d31 100644 --- a/HPXMLtoOpenStudio/resources/defaults.rb +++ b/HPXMLtoOpenStudio/resources/defaults.rb @@ -27,9 +27,10 @@ module Defaults # @param convert_shared_systems [Boolean] Whether to convert shared systems to equivalent in-unit systems per ANSI/RESNET/ICC 301 # @return [Array] Maps of HPXML::Zones => DesignLoadValues object, HPXML::Spaces => DesignLoadValues object def self.apply(runner, hpxml, hpxml_bldg, weather, schedules_file: nil, convert_shared_systems: true) - eri_version = hpxml.header.eri_calculation_version - if eri_version.nil? + if hpxml.header.eri_calculation_versions.nil? || hpxml.header.eri_calculation_versions.empty? eri_version = 'latest' + else + eri_version = hpxml.header.eri_calculation_versions[0] end if eri_version == 'latest' eri_version = Constants::ERIVersions[-1] @@ -92,6 +93,7 @@ def self.apply(runner, hpxml, hpxml_bldg, weather, schedules_file: nil, convert_ apply_pv_systems(hpxml_bldg) apply_generators(hpxml_bldg) apply_batteries(hpxml_bldg) + apply_vehicles(hpxml_bldg, schedules_file) # Do HVAC sizing after all other defaults have been applied all_zone_loads, all_space_loads = apply_hvac_sizing(runner, hpxml_bldg, weather) @@ -1511,34 +1513,36 @@ def self.apply_windows(hpxml_bldg, eri_version) hpxml_bldg.windows.each do |window| if window.ufactor.nil? || window.shgc.nil? - # Frame/Glass provided instead, fill in more defaults as needed - if window.glass_type.nil? - window.glass_type = HPXML::WindowGlassTypeClear - window.glass_type_isdefaulted = true - end - if window.thermal_break.nil? && [HPXML::WindowFrameTypeAluminum, HPXML::WindowFrameTypeMetal].include?(window.frame_type) - if window.glass_layers == HPXML::WindowLayersSinglePane - window.thermal_break = false - window.thermal_break_isdefaulted = true - elsif window.glass_layers == HPXML::WindowLayersDoublePane - window.thermal_break = true - window.thermal_break_isdefaulted = true + if window.glass_layers != HPXML::WindowLayersGlassBlock + # Frame/Glass provided instead, fill in more defaults as needed + if window.glass_type.nil? + window.glass_type = HPXML::WindowGlassTypeClear + window.glass_type_isdefaulted = true end - end - if window.gas_fill.nil? - if window.glass_layers == HPXML::WindowLayersDoublePane - if [HPXML::WindowGlassTypeLowE, - HPXML::WindowGlassTypeLowEHighSolarGain, - HPXML::WindowGlassTypeLowELowSolarGain].include? window.glass_type + if window.thermal_break.nil? && [HPXML::WindowFrameTypeAluminum, HPXML::WindowFrameTypeMetal].include?(window.frame_type) + if window.glass_layers == HPXML::WindowLayersSinglePane + window.thermal_break = false + window.thermal_break_isdefaulted = true + elsif window.glass_layers == HPXML::WindowLayersDoublePane + window.thermal_break = true + window.thermal_break_isdefaulted = true + end + end + if window.gas_fill.nil? + if window.glass_layers == HPXML::WindowLayersDoublePane + if [HPXML::WindowGlassTypeLowE, + HPXML::WindowGlassTypeLowEHighSolarGain, + HPXML::WindowGlassTypeLowELowSolarGain].include? window.glass_type + window.gas_fill = HPXML::WindowGasArgon + window.gas_fill_isdefaulted = true + else + window.gas_fill = HPXML::WindowGasAir + window.gas_fill_isdefaulted = true + end + elsif window.glass_layers == HPXML::WindowLayersTriplePane window.gas_fill = HPXML::WindowGasArgon window.gas_fill_isdefaulted = true - else - window.gas_fill = HPXML::WindowGasAir - window.gas_fill_isdefaulted = true end - elsif window.glass_layers == HPXML::WindowLayersTriplePane - window.gas_fill = HPXML::WindowGasArgon - window.gas_fill_isdefaulted = true end end # Now lookup U/SHGC based on properties @@ -1562,7 +1566,11 @@ def self.apply_windows(hpxml_bldg, eri_version) end if window.interior_shading_factor_winter.nil? || window.interior_shading_factor_summer.nil? if window.interior_shading_type.nil? - window.interior_shading_type = HPXML::InteriorShadingTypeLightCurtains # ANSI/RESNET/ICC 301-2022 + if window.glass_layers == HPXML::WindowLayersGlassBlock + window.interior_shading_type = HPXML::InteriorShadingTypeNone + else + window.interior_shading_type = HPXML::InteriorShadingTypeLightCurtains # ANSI/RESNET/ICC 301-2022 + end window.interior_shading_type_isdefaulted = true end if window.interior_shading_coverage_summer.nil? && window.interior_shading_type != HPXML::InteriorShadingTypeNone @@ -1712,34 +1720,36 @@ def self.apply_skylights(hpxml_bldg) end next unless skylight.ufactor.nil? || skylight.shgc.nil? - # Frame/Glass provided instead, fill in more defaults as needed - if skylight.glass_type.nil? - skylight.glass_type = HPXML::WindowGlassTypeClear - skylight.glass_type_isdefaulted = true - end - if skylight.thermal_break.nil? && [HPXML::WindowFrameTypeAluminum, HPXML::WindowFrameTypeMetal].include?(skylight.frame_type) - if skylight.glass_layers == HPXML::WindowLayersSinglePane - skylight.thermal_break = false - skylight.thermal_break_isdefaulted = true - elsif skylight.glass_layers == HPXML::WindowLayersDoublePane - skylight.thermal_break = true - skylight.thermal_break_isdefaulted = true - end - end - if skylight.gas_fill.nil? - if skylight.glass_layers == HPXML::WindowLayersDoublePane - if [HPXML::WindowGlassTypeLowE, - HPXML::WindowGlassTypeLowEHighSolarGain, - HPXML::WindowGlassTypeLowELowSolarGain].include? skylight.glass_type + if skylight.glass_layers != HPXML::WindowLayersGlassBlock + # Frame/Glass provided instead, fill in more defaults as needed + if skylight.glass_type.nil? + skylight.glass_type = HPXML::WindowGlassTypeClear + skylight.glass_type_isdefaulted = true + end + if skylight.thermal_break.nil? && [HPXML::WindowFrameTypeAluminum, HPXML::WindowFrameTypeMetal].include?(skylight.frame_type) + if skylight.glass_layers == HPXML::WindowLayersSinglePane + skylight.thermal_break = false + skylight.thermal_break_isdefaulted = true + elsif skylight.glass_layers == HPXML::WindowLayersDoublePane + skylight.thermal_break = true + skylight.thermal_break_isdefaulted = true + end + end + if skylight.gas_fill.nil? + if skylight.glass_layers == HPXML::WindowLayersDoublePane + if [HPXML::WindowGlassTypeLowE, + HPXML::WindowGlassTypeLowEHighSolarGain, + HPXML::WindowGlassTypeLowELowSolarGain].include? skylight.glass_type + skylight.gas_fill = HPXML::WindowGasArgon + skylight.gas_fill_isdefaulted = true + else + skylight.gas_fill = HPXML::WindowGasAir + skylight.gas_fill_isdefaulted = true + end + elsif skylight.glass_layers == HPXML::WindowLayersTriplePane skylight.gas_fill = HPXML::WindowGasArgon skylight.gas_fill_isdefaulted = true - else - skylight.gas_fill = HPXML::WindowGasAir - skylight.gas_fill_isdefaulted = true end - elsif skylight.glass_layers == HPXML::WindowLayersTriplePane - skylight.gas_fill = HPXML::WindowGasArgon - skylight.gas_fill_isdefaulted = true end end # Now lookup U/SHGC based on properties @@ -3172,7 +3182,92 @@ def self.apply_generators(hpxml_bldg) end end + # Assigns default values for omitted optional inputs in the HPXML::Vehicle objects + # If an EV charger is found, apply_ev_charger is run to set its default values + # Default values for the battery are first applied with the apply_battery method, then electric vehicle-specific fields are populated such as miles/year, hours/week, and fraction charged at home. + # + # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit + # @return [nil] + def self.apply_vehicles(hpxml_bldg, schedules_file) + default_values = get_electric_vehicle_values + hpxml_bldg.vehicles.each do |vehicle| + next unless vehicle.vehicle_type == HPXML::VehicleTypeBEV + + apply_battery(vehicle, default_values) + if vehicle.battery_type.nil? + vehicle.battery_type = default_values[:battery_type] + vehicle.battery_type_isdefaulted = true + end + if vehicle.fuel_economy_combined.nil? || vehicle.fuel_economy_units.nil? + vehicle.fuel_economy_combined = default_values[:fuel_economy_combined] + vehicle.fuel_economy_combined_isdefaulted = true + vehicle.fuel_economy_units = default_values[:fuel_economy_units] + vehicle.fuel_economy_units_isdefaulted = true + end + miles_to_hrs_per_week = default_values[:miles_per_year] / default_values[:hours_per_week] + if vehicle.miles_per_year.nil? && vehicle.hours_per_week.nil? + vehicle.miles_per_year = default_values[:miles_per_year] + vehicle.miles_per_year_isdefaulted = true + vehicle.hours_per_week = default_values[:hours_per_week] + vehicle.hours_per_week_isdefaulted = true + elsif (not vehicle.hours_per_week.nil?) && vehicle.miles_per_year.nil? + vehicle.miles_per_year = vehicle.hours_per_week * miles_to_hrs_per_week + vehicle.miles_per_year_isdefaulted = true + elsif (not vehicle.miles_per_year.nil?) && vehicle.hours_per_week.nil? + vehicle.hours_per_week = vehicle.miles_per_year / miles_to_hrs_per_week + vehicle.hours_per_week_isdefaulted = true + end + if vehicle.fraction_charged_home.nil? + vehicle.fraction_charged_home = default_values[:fraction_charged_home] + vehicle.fraction_charged_home_isdefaulted = true + end + schedules_file_includes_ev = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::Columns[:ElectricVehicleCharging].name) && schedules_file.includes_col_name(SchedulesFile::Columns[:ElectricVehicleDischarging].name)) + if vehicle.ev_weekday_fractions.nil? && !schedules_file_includes_ev + vehicle.ev_weekday_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name]['WeekdayScheduleFractions'] + vehicle.ev_weekday_fractions_isdefaulted = true + end + if vehicle.ev_weekend_fractions.nil? && !schedules_file_includes_ev + vehicle.ev_weekend_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name]['WeekendScheduleFractions'] + vehicle.ev_weekend_fractions_isdefaulted = true + end + if vehicle.ev_monthly_multipliers.nil? && !schedules_file_includes_ev + vehicle.ev_monthly_multipliers = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name]['MonthlyScheduleMultipliers'] + vehicle.ev_monthly_multipliers_isdefaulted = true + end + + next if vehicle.ev_charger.nil? + + apply_ev_charger(hpxml_bldg, vehicle.ev_charger) + end + end + + # Assigns default values for omitted optional inputs in the HPXML::ElectricVehicleCharger objects + # + # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit + # @param ev_charger [HPXML::ElectricVehicleCharger] Object that defines a single electric vehicle charger + # @return [nil] + def self.apply_ev_charger(hpxml_bldg, ev_charger) + default_values = get_ev_charger_values(hpxml_bldg.has_location(HPXML::LocationGarage)) + if ev_charger.location.nil? + ev_charger.location = default_values[:location] + ev_charger.location_isdefaulted = true + end + if ev_charger.charging_level.nil? && ev_charger.charging_power.nil? + ev_charger.charging_level = default_values[:charging_level] + ev_charger.charging_level_isdefaulted = true + end + if ev_charger.charging_power.nil? + if ev_charger.charging_level == 1 + ev_charger.charging_power = default_values[:level1_charging_power] + elsif ev_charger.charging_level >= 2 + ev_charger.charging_power = default_values[:level2_charging_power] + end + ev_charger.charging_power_isdefaulted = true + end + end + # Assigns default values for omitted optional inputs in the HPXML::Battery objects + # This method assigns fields specific to home battery systems, and calls a general method (apply_battery) that defaults values for any battery system. # # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @return [nil] @@ -3187,54 +3282,64 @@ def self.apply_batteries(hpxml_bldg) battery.is_shared_system = false battery.is_shared_system_isdefaulted = true end - # if battery.lifetime_model.nil? - # battery.lifetime_model = default_values[:lifetime_model] - # battery.lifetime_model_isdefaulted = true - # end - if battery.nominal_voltage.nil? - battery.nominal_voltage = default_values[:nominal_voltage] # V - battery.nominal_voltage_isdefaulted = true - end if battery.round_trip_efficiency.nil? battery.round_trip_efficiency = default_values[:round_trip_efficiency] battery.round_trip_efficiency_isdefaulted = true end - if battery.nominal_capacity_kwh.nil? && battery.nominal_capacity_ah.nil? - # Calculate nominal capacity from usable capacity or rated power output if available - if not battery.usable_capacity_kwh.nil? - battery.nominal_capacity_kwh = (battery.usable_capacity_kwh / default_values[:usable_fraction]).round(2) - battery.nominal_capacity_kwh_isdefaulted = true - elsif not battery.usable_capacity_ah.nil? - battery.nominal_capacity_ah = (battery.usable_capacity_ah / default_values[:usable_fraction]).round(2) - battery.nominal_capacity_ah_isdefaulted = true - elsif not battery.rated_power_output.nil? - battery.nominal_capacity_kwh = (UnitConversions.convert(battery.rated_power_output, 'W', 'kW') / 0.5).round(2) - battery.nominal_capacity_kwh_isdefaulted = true - else - battery.nominal_capacity_kwh = default_values[:nominal_capacity_kwh] # kWh - battery.nominal_capacity_kwh_isdefaulted = true - end - end - if battery.usable_capacity_kwh.nil? && battery.usable_capacity_ah.nil? - # Calculate usable capacity from nominal capacity - if not battery.nominal_capacity_kwh.nil? - battery.usable_capacity_kwh = (battery.nominal_capacity_kwh * default_values[:usable_fraction]).round(2) - battery.usable_capacity_kwh_isdefaulted = true - elsif not battery.nominal_capacity_ah.nil? - battery.usable_capacity_ah = (battery.nominal_capacity_ah * default_values[:usable_fraction]).round(2) - battery.usable_capacity_ah_isdefaulted = true - end - end - next unless battery.rated_power_output.nil? - # Calculate rated power from nominal capacity + apply_battery(battery, default_values) + end + end + + # Assigns default values for omitted optional inputs in the HPXML::Battery or HPXML::Vehicle objects + # + # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit + # @param default_values [Hash] map of home battery or vehicle battery properties to default values + # @return [nil] + def self.apply_battery(battery, default_values) + # if battery.lifetime_model.nil? + # battery.lifetime_model = default_values[:lifetime_model] + # battery.lifetime_model_isdefaulted = true + # end + if battery.nominal_voltage.nil? + battery.nominal_voltage = default_values[:nominal_voltage] # V + battery.nominal_voltage_isdefaulted = true + end + if battery.nominal_capacity_kwh.nil? && battery.nominal_capacity_ah.nil? + # Calculate nominal capacity from usable capacity or rated power output if available + if not battery.usable_capacity_kwh.nil? + battery.nominal_capacity_kwh = (battery.usable_capacity_kwh / default_values[:usable_fraction]).round(2) + battery.nominal_capacity_kwh_isdefaulted = true + elsif not battery.usable_capacity_ah.nil? + battery.nominal_capacity_ah = (battery.usable_capacity_ah / default_values[:usable_fraction]).round(2) + battery.nominal_capacity_ah_isdefaulted = true + elsif battery.respond_to?(:rated_power_output) && (not battery.rated_power_output.nil?) + battery.nominal_capacity_kwh = (UnitConversions.convert(battery.rated_power_output, 'W', 'kW') / 0.5).round(2) + battery.nominal_capacity_kwh_isdefaulted = true + else + battery.nominal_capacity_kwh = default_values[:nominal_capacity_kwh] # kWh + battery.nominal_capacity_kwh_isdefaulted = true + end + end + if battery.usable_capacity_kwh.nil? && battery.usable_capacity_ah.nil? + # Calculate usable capacity from nominal capacity if not battery.nominal_capacity_kwh.nil? - battery.rated_power_output = (UnitConversions.convert(battery.nominal_capacity_kwh, 'kWh', 'Wh') * 0.5).round(0) + battery.usable_capacity_kwh = (battery.nominal_capacity_kwh * default_values[:usable_fraction]).round(2) + battery.usable_capacity_kwh_isdefaulted = true elsif not battery.nominal_capacity_ah.nil? - battery.rated_power_output = (UnitConversions.convert(Battery.get_kWh_from_Ah(battery.nominal_capacity_ah, battery.nominal_voltage), 'kWh', 'Wh') * 0.5).round(0) + battery.usable_capacity_ah = (battery.nominal_capacity_ah * default_values[:usable_fraction]).round(2) + battery.usable_capacity_ah_isdefaulted = true end - battery.rated_power_output_isdefaulted = true end + return unless battery.respond_to?(:rated_power_output) && battery.rated_power_output.nil? + + # Calculate rated power from nominal capacity + if not battery.nominal_capacity_kwh.nil? + battery.rated_power_output = (UnitConversions.convert(battery.nominal_capacity_kwh, 'kWh', 'Wh') * 0.5).round(0) + elsif not battery.nominal_capacity_ah.nil? + battery.rated_power_output = (UnitConversions.convert(Battery.get_kWh_from_Ah(battery.nominal_capacity_ah, battery.nominal_voltage), 'kWh', 'Wh') * 0.5).round(0) + end + battery.rated_power_output_isdefaulted = true end # Assigns default values for omitted optional inputs in the HPXML::ClothesWasher, HPXML::ClothesDryer, @@ -3886,7 +3991,7 @@ def self.apply_plug_loads(hpxml_bldg, schedules_file) plug_load.weekday_fractions_isdefaulted = true end if plug_load.weekend_fractions.nil? && !schedules_file_includes_plug_loads_vehicle - plug_load.weekend_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsVehicle].name]['WeekdayScheduleFractions'] + plug_load.weekend_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsVehicle].name]['WeekendScheduleFractions'] plug_load.weekend_fractions_isdefaulted = true end if plug_load.monthly_multipliers.nil? && !schedules_file_includes_plug_loads_vehicle @@ -3913,7 +4018,7 @@ def self.apply_plug_loads(hpxml_bldg, schedules_file) plug_load.weekday_fractions_isdefaulted = true end if plug_load.weekend_fractions.nil? && !schedules_file_includes_plug_loads_well_pump - plug_load.weekend_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsWellPump].name]['WeekdayScheduleFractions'] + plug_load.weekend_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsWellPump].name]['WeekendScheduleFractions'] plug_load.weekend_fractions_isdefaulted = true end if plug_load.monthly_multipliers.nil? && !schedules_file_includes_plug_loads_well_pump @@ -5634,6 +5739,41 @@ def self.get_battery_values(has_garage) usable_fraction: 0.9 } # Fraction of usable capacity to nominal capacity end + # Get default lifetime model, miles/year, hours/week, nominal capacity/voltage, round trip efficiency, fraction charged at home, + # and usable fraction for an electric vehicle and its battery. + # + # @return [Hash] map of EV properties to default values + def self.get_electric_vehicle_values() + return { battery_type: HPXML::BatteryTypeLithiumIon, + lifetime_model: HPXML::BatteryLifetimeModelNone, + miles_per_year: 10900, + hours_per_week: 8.88, + nominal_capacity_kwh: 63, + nominal_voltage: 50.0, + fuel_economy_combined: 0.22, + fuel_economy_units: HPXML::UnitsKwhPerMile, + fraction_charged_home: 0.8, + usable_fraction: 0.8 } # Fraction of usable capacity to nominal capacity + end + + # Get default location, charging power, and charging level for an electric vehicle charger. + # The default location is the garage if one is present. + # + # @param has_garage [Boolean] whether the HPXML Building object has a garage + # @return [Hash] map of electric vehicle charger properties to default values + def self.get_ev_charger_values(has_garage = false) + if has_garage + location = HPXML::LocationGarage + else + location = HPXML::LocationOutside + end + + return { location: location, + charging_level: 2, + level1_charging_power: 1600, + level2_charging_power: 5690 } # Median L2 charging rate in EVWatts + end + # Gets the default values for a dehumidifier # Used by OS-ERI. FUTURE: Change OS-HPXML inputs to be optional and use these. # @@ -5819,9 +5959,12 @@ def self.get_permanent_spa_heater_annual_energy(cfa, nbeds, n_occ, unit_type, ty def self.get_electric_vehicle_charging_annual_energy() ev_charger_efficiency = 0.9 ev_battery_efficiency = 0.9 - vehicle_annual_miles_driven = 4500.0 - vehicle_kWh_per_mile = 0.3 - return vehicle_annual_miles_driven * vehicle_kWh_per_mile / (ev_charger_efficiency * ev_battery_efficiency) + + # Use detailed vehicle model defaults + vehicle_defaults = get_electric_vehicle_values + kwh_per_year = vehicle_defaults[:miles_per_year] * vehicle_defaults[:fuel_economy_combined] * vehicle_defaults[:fraction_charged_home] / (ev_charger_efficiency * ev_battery_efficiency) + + return kwh_per_year.round(1) end # Gets the default well pump annual energy use. diff --git a/HPXMLtoOpenStudio/resources/generator.rb b/HPXMLtoOpenStudio/resources/generator.rb index 77cf86bc9b..054fc4f0f6 100644 --- a/HPXMLtoOpenStudio/resources/generator.rb +++ b/HPXMLtoOpenStudio/resources/generator.rb @@ -73,6 +73,7 @@ def self.apply_generator(model, hpxml_bldg, generator) gmt.setElectricalPowerFunctionofTemperatureandElevationCurve(curve_biquadratic_constant) gmt.setElectricalEfficiencyFunctionofTemperatureCurve(curve_cubic_constant) gmt.setElectricalEfficiencyFunctionofPartLoadRatioCurve(curve_cubic_constant) + gmt.additionalProperties.setFeature('ObjectType', Constants::ObjectTypeGenerator) elcd = OpenStudio::Model::ElectricLoadCenterDistribution.new(model) elcd.setName("#{obj_name} elec load center dist") diff --git a/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index 36dbfcb758..c30afdb1f7 100644 --- a/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -23,7 +23,7 @@ def self.apply(runner, model, weather, spaces, hpxml_bldg, hpxml_header, schedul nbeds = hpxml_bldg.building_construction.number_of_bedrooms n_occ = hpxml_bldg.building_occupancy.number_of_residents unit_type = hpxml_bldg.building_construction.residential_facility_type - eri_version = hpxml_header.eri_calculation_version + eri_version = hpxml_header.eri_calculation_versions[0] unit_multiplier = hpxml_bldg.building_construction.number_of_units # Get appliances, etc. diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index b062fa4ca1..308f818f87 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -118,6 +118,7 @@ class HPXML < Object ElectricResistanceDistributionRadiantCeiling = 'radiant ceiling' ElectricResistanceDistributionRadiantFloor = 'radiant floor' ElectricResistanceDistributionBaseboard = 'baseboard' + ElectricVehicleChargingLocationHome = 'Home' ExteriorShadingTypeAwnings = 'awnings' ExteriorShadingTypeBuilding = 'building' ExteriorShadingTypeDeciduousTree = 'deciduous tree' @@ -432,13 +433,23 @@ class HPXML < Object UnitsKwh = 'kWh' UnitsKwhPerYear = 'kWh/year' UnitsKwhPerDay = 'kWh/day' + UnitsKwhPerMile = 'kWh/mile' UnitsKwPerTon = 'kW/ton' + UnitsMiles = 'miles' + UnitsMilePerKwh = 'mile/kWh' + UnitsMPG = 'mpg' + UnitsMPGe = 'mpge' UnitsPercent = 'Percent' UnitsPercentPerHour = '%/hr' UnitsSEER = 'SEER' UnitsSEER2 = 'SEER2' UnitsSLA = 'SLA' UnitsThermPerYear = 'therm/year' + VehicleTypeBEV = 'BatteryElectricVehicle' + VehicleTypePHEV = 'PlugInHybridElectricVehicle' + VehicleTypeHybrid = 'HybridElectricVehicle' + VehicleTypeICE = 'InternalCombustionEngine' + VehicleTypeFCEV = 'FuelCellElectricVehicle' VerticalSurroundingsNoAboveOrBelow = 'no units above or below' VerticalSurroundingsAboveAndBelow = 'unit above and below' VerticalSurroundingsBelow = 'unit below' @@ -866,11 +877,11 @@ def initialize(hpxml_element, *args, **kwargs) :software_program_version, # [String] SoftwareInfo/SoftwareProgramVersion :apply_ashrae140_assumptions, # [Boolean] SoftwareInfo/extension/ApplyASHRAE140Assumptions :whole_sfa_or_mf_building_sim, # [Boolean] SoftwareInfo/extension/WholeSFAorMFBuildingSimulation - :eri_calculation_version, # [String] SoftwareInfo/extension/ERICalculation/Version - :co2index_calculation_version, # [String] SoftwareInfo/extension/CO2IndexCalculation/Version - :energystar_calculation_version, # [String] SoftwareInfo/extension/EnergyStarCalculation/Version - :iecc_eri_calculation_version, # [String] SoftwareInfo/extension/IECCERICalculation/Version - :zerh_calculation_version, # [String] SoftwareInfo/extension/ZERHCalculation/Version + :eri_calculation_versions, # [Array] SoftwareInfo/extension/ERICalculation/Version + :co2index_calculation_versions, # [Array] SoftwareInfo/extension/CO2IndexCalculation/Version + :energystar_calculation_versions, # [Array] SoftwareInfo/extension/EnergyStarCalculation/Version + :iecc_eri_calculation_versions, # [Array] SoftwareInfo/extension/IECCERICalculation/Version + :zerh_calculation_versions, # [Array] SoftwareInfo/extension/ZERHCalculation/Version :timestep, # [Integer] SoftwareInfo/extension/SimulationControl/Timestep (minutes) :sim_begin_month, # [Integer] SoftwareInfo/extension/SimulationControl/BeginMonth :sim_begin_day, # [Integer] SoftwareInfo/extension/SimulationControl/BeginDayOfMonth @@ -929,16 +940,19 @@ def to_doc(hpxml_doc) XMLHelper.add_element(software_info, 'SoftwareProgramVersion', @software_program_version, :string) unless @software_program_version.nil? XMLHelper.add_extension(software_info, 'ApplyASHRAE140Assumptions', @apply_ashrae140_assumptions, :boolean) unless @apply_ashrae140_assumptions.nil? XMLHelper.add_extension(software_info, 'WholeSFAorMFBuildingSimulation', @whole_sfa_or_mf_building_sim, :boolean) unless @whole_sfa_or_mf_building_sim.nil? - { 'ERICalculation' => @eri_calculation_version, - 'CO2IndexCalculation' => @co2index_calculation_version, - 'EnergyStarCalculation' => @energystar_calculation_version, - 'IECCERICalculation' => @iecc_eri_calculation_version, - 'ZERHCalculation' => @zerh_calculation_version }.each do |element_name, calculation_version| - next if calculation_version.nil? - - extension = XMLHelper.create_elements_as_needed(software_info, ['extension']) - calculation = XMLHelper.add_element(extension, element_name) - XMLHelper.add_element(calculation, 'Version', calculation_version, :string) + { 'ERICalculation' => @eri_calculation_versions, + 'CO2IndexCalculation' => @co2index_calculation_versions, + 'EnergyStarCalculation' => @energystar_calculation_versions, + 'IECCERICalculation' => @iecc_eri_calculation_versions, + 'ZERHCalculation' => @zerh_calculation_versions }.each do |element_name, calculation_versions| + calculation_versions = [] if calculation_versions.nil? + if not calculation_versions.empty? + extension = XMLHelper.create_elements_as_needed(software_info, ['extension']) + calculation = XMLHelper.add_element(extension, element_name) + end + calculation_versions.each do |calculation_version| + XMLHelper.add_element(calculation, 'Version', calculation_version, :string) + end end if (not @timestep.nil?) || (not @sim_begin_month.nil?) || (not @sim_begin_day.nil?) || (not @sim_end_month.nil?) || (not @sim_end_day.nil?) || (not @temperature_capacitance_multiplier.nil?) || (not @defrost_model_type.nil?) || (not @hvac_onoff_thermostat_deadband.nil?) || (not @heat_pump_backup_heating_capacity_increment.nil?) extension = XMLHelper.create_elements_as_needed(software_info, ['extension']) @@ -975,11 +989,11 @@ def from_doc(hpxml) @transaction = XMLHelper.get_value(hpxml, 'XMLTransactionHeaderInformation/Transaction', :string) @software_program_used = XMLHelper.get_value(hpxml, 'SoftwareInfo/SoftwareProgramUsed', :string) @software_program_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/SoftwareProgramVersion', :string) - @eri_calculation_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ERICalculation/Version', :string) - @co2index_calculation_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/CO2IndexCalculation/Version', :string) - @iecc_eri_calculation_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/IECCERICalculation/Version', :string) - @energystar_calculation_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/EnergyStarCalculation/Version', :string) - @zerh_calculation_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ZERHCalculation/Version', :string) + @eri_calculation_versions = XMLHelper.get_values(hpxml, 'SoftwareInfo/extension/ERICalculation/Version', :string) + @co2index_calculation_versions = XMLHelper.get_values(hpxml, 'SoftwareInfo/extension/CO2IndexCalculation/Version', :string) + @iecc_eri_calculation_versions = XMLHelper.get_values(hpxml, 'SoftwareInfo/extension/IECCERICalculation/Version', :string) + @energystar_calculation_versions = XMLHelper.get_values(hpxml, 'SoftwareInfo/extension/EnergyStarCalculation/Version', :string) + @zerh_calculation_versions = XMLHelper.get_values(hpxml, 'SoftwareInfo/extension/ZERHCalculation/Version', :string) @timestep = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/Timestep', :integer) @sim_begin_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/BeginMonth', :integer) @sim_begin_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/BeginDayOfMonth', :integer) @@ -1443,6 +1457,8 @@ class Building < BaseElement :pv_systems, # [HPXML::PVSystems] :inverters, # [HPXML::Inverters] :batteries, # [HPXML::Batteries] + :vehicles, # [HPXML::Vehicles] + :ev_chargers, # [HPXML::EVChargers] :generators, # [HPXML::Generators] :clothes_washers, # [HPXML::ClothesWashers] :clothes_dryers, # [HPXML::ClothesDryers] @@ -1582,6 +1598,8 @@ def to_doc(hpxml_doc) @pv_systems.to_doc(building) @inverters.to_doc(building) @batteries.to_doc(building) + @vehicles.to_doc(building) + @ev_chargers.to_doc(building) @generators.to_doc(building) @clothes_washers.to_doc(building) @clothes_dryers.to_doc(building) @@ -1668,6 +1686,8 @@ def from_doc(building) @pv_systems = PVSystems.new(self, building) @inverters = Inverters.new(self, building) @batteries = Batteries.new(self, building) + @vehicles = Vehicles.new(self, building) + @ev_chargers = ElectricVehicleChargers.new(self, building) @generators = Generators.new(self, building) @clothes_washers = ClothesWashers.new(self, building) @clothes_dryers = ClothesDryers.new(self, building) @@ -9256,6 +9276,253 @@ def from_doc(inverter) end end + # Array of HPXML::ElectricVehicleCharger objects + class ElectricVehicleChargers < BaseArrayElement + # Adds a new object, with the specified keyword arguments, to the array. + # + # @return [nil] + def add(**kwargs) + self << ElectricVehicleCharger.new(@parent_object, **kwargs) + end + + # Populates the HPXML object(s) from the XML document. + # + # @param building [Oga::XML::Element] The current Building XML element + # @return [nil] + def from_doc(building) + return if building.nil? + + XMLHelper.get_elements(building, 'BuildingDetails/Systems/ElectricVehicleChargers/ElectricVehicleCharger').each do |charger| + self << ElectricVehicleCharger.new(@parent_object, charger) + end + end + end + + # Object for /HPXML/Building/BuildingDetails/Systems/ElectricVehicleChargers/ElectricVehicleCharger. + class ElectricVehicleCharger < BaseElement + ATTRS = [:id, # [String] SystemIdentifier/@id + :location, # [String] Location (HPXML::LocationXXX) + :charging_level, # [Integer] ChargingLevel (1-3) + :charging_power] # [Double] ChargingPower (W) + attr_accessor(*ATTRS) + + # Deletes the current object from the array. + # + # @return [nil] + def delete + @parent_object.ev_chargers.delete(self) + end + + # Additional error-checking beyond what's checked in Schema/Schematron validators. + # + # @return [Array] List of error messages + def check_for_errors + errors = [] + return errors + end + + # Adds this object to the provided Oga XML element. + # + # @param building [Oga::XML::Element] The current Building XML element + # @return [nil] + def to_doc(building) + return if nil? + + chargers = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'ElectricVehicleChargers']) + charger = XMLHelper.add_element(chargers, 'ElectricVehicleCharger') + sys_id = XMLHelper.add_element(charger, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(charger, 'Location', @location, :string, @location_isdefaulted) unless @location.nil? + XMLHelper.add_element(charger, 'ChargingLevel', @charging_level, :integer, @charging_level_isdefaulted) unless @charging_level.nil? + XMLHelper.add_element(charger, 'ChargingPower', @charging_power, :float, @charging_power_isdefaulted) unless @charging_power.nil? + end + + # Populates the HPXML object(s) from the XML document. + # + # @param battery [Oga::XML::Element] The current Battery XML element + # @return [nil] + def from_doc(charger) + return if charger.nil? + + @id = HPXML::get_id(charger) + @location = XMLHelper.get_value(charger, 'Location', :string) + @charging_level = XMLHelper.get_value(charger, 'ChargingLevel', :integer) + @charging_power = XMLHelper.get_value(charger, 'ChargingPower', :float) + end + end + + # Array of HPXML::Vehicle objects. + class Vehicles < BaseArrayElement + # Adds a new object, with the specified keyword arguments, to the array. + # + # @return [nil] + def add(**kwargs) + self << Vehicle.new(@parent_object, **kwargs) + end + + # Populates the HPXML object(s) from the XML document. + # + # @param building [Oga::XML::Element] The current Building XML element + # @return [nil] + def from_doc(building) + return if building.nil? + + XMLHelper.get_elements(building, 'BuildingDetails/Systems/Vehicles/Vehicle').each do |vehicle| + self << Vehicle.new(@parent_object, vehicle) + end + end + end + + # Object for /HPXML/Building/BuildingDetails/Systems/Vehicles/Vehicle. + class Vehicle < BaseElement + ATTRS = [:id, # [String] SystemIdentifier/@id + :vehicle_type, # [String] VehicleType (HPXML::VehicleTypeXXX) + :miles_per_year, # [Double] MilesDrivenPerYear (miles) + :hours_per_week, # [Double] HoursDrivenPerWeek (hours) + :fuel_economy_combined, # [Double] FuelEconomyCombined/Value + :fuel_economy_units, # [String] FuelEconomyCombined/Units + :fraction_charged_home, # [Double] VehicleType/BatteryElectricVehicle/FractionChargedLocation[Location="Home"]/Percentage (frac) + :ev_charger_idref, # [String] VehicleType/BatteryElectricVehicle/ConnectedCharger/@idref + :battery_type, # [String] VehicleType/BatteryElectricVehicle/Battery/BatteryType (HPXML::BatteryTypeXXX) + :nominal_capacity_kwh, # [Double] VehicleType/BatteryElectricVehicle/Battery/NominalCapacity[Units="kWh"]/Value (kWh) + :nominal_capacity_ah, # [Double] VehicleType/BatteryElectricVehicle/Battery/NominalCapacity[Units="Ah"]/Value (Ah) + :usable_capacity_kwh, # [Double] VehicleType/BatteryElectricVehicle/Battery/UsableCapacity[Units="kWh"]/Value (kWh) + :usable_capacity_ah, # [Double] VehicleType/BatteryElectricVehicle/Battery/UsableCapacity[Units="Ah"]/Value (Ah) + :nominal_voltage, # [Double] VehicleType/BatteryElectricVehicle/Battery/NominalVoltage (V) + :lifetime_model, # [String] VehicleType/BatteryElectricVehicle/Battery/extension/LifetimeModel (HPXML::BatteryLifetimeModelXXX) + :ev_weekday_fractions, # [String] VehicleType/BatteryElectricVehicle/extension/WeekdayScheduleFractions + :ev_weekend_fractions, # [String] VehicleType/BatteryElectricVehicle/extension/WeekendScheduleFractions + :ev_monthly_multipliers] # [String] VehicleType/BatteryElectricVehicle/extension/MonthlyScheduleMultipliers + attr_accessor(*ATTRS) + + # Deletes the current object from the array. + # + # @return [nil] + def delete + @parent_object.vehicles.delete(self) + end + + # Additional error-checking beyond what's checked in Schema/Schematron validators. + # + # @return [Array] List of error messages + def check_for_errors + errors = [] + return errors + end + + # Adds this object to the provided Oga XML element. + # + # @param building [Oga::XML::Element] The current Building XML element + # @return [nil] + def to_doc(building) + return if nil? + + vehicles = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'Vehicles']) + vehicle = XMLHelper.add_element(vehicles, 'Vehicle') + sys_id = XMLHelper.add_element(vehicle, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', @id) + vehicle_type_element = XMLHelper.add_element(vehicle, 'VehicleType') + vehicle_type = XMLHelper.add_element(vehicle_type_element, @vehicle_type) + + if [HPXML::VehicleTypeBEV, HPXML::VehicleTypePHEV, HPXML::VehicleTypeHybrid].include? @vehicle_type + if (not @battery_type.nil?) || (not @nominal_capacity_kwh.nil?) || (not @nominal_capacity_ah.nil?) || (not @usable_capacity_kwh.nil?) || (not @usable_capacity_ah.nil?) || (not @nominal_voltage.nil?) || (not @lifetime_model.nil?) + battery = XMLHelper.add_element(vehicle_type, 'Battery') + XMLHelper.add_element(battery, 'BatteryType', @battery_type, :string, @battery_type_isdefaulted) unless @battery_type.nil? + if not @nominal_capacity_kwh.nil? + nominal_capacity = XMLHelper.add_element(battery, 'NominalCapacity') + XMLHelper.add_element(nominal_capacity, 'Units', UnitsKwh, :string) + XMLHelper.add_element(nominal_capacity, 'Value', @nominal_capacity_kwh, :float, @nominal_capacity_kwh_isdefaulted) + end + if not @nominal_capacity_ah.nil? + nominal_capacity = XMLHelper.add_element(battery, 'NominalCapacity') + XMLHelper.add_element(nominal_capacity, 'Units', UnitsAh, :string) + XMLHelper.add_element(nominal_capacity, 'Value', @nominal_capacity_ah, :float, @nominal_capacity_ah_isdefaulted) + end + if not @usable_capacity_kwh.nil? + usable_capacity = XMLHelper.add_element(battery, 'UsableCapacity') + XMLHelper.add_element(usable_capacity, 'Units', UnitsKwh, :string) + XMLHelper.add_element(usable_capacity, 'Value', @usable_capacity_kwh, :float, @usable_capacity_kwh_isdefaulted) + end + if not @usable_capacity_ah.nil? + usable_capacity = XMLHelper.add_element(battery, 'UsableCapacity') + XMLHelper.add_element(usable_capacity, 'Units', UnitsAh, :string) + XMLHelper.add_element(usable_capacity, 'Value', @usable_capacity_ah, :float, @usable_capacity_ah_isdefaulted) + end + XMLHelper.add_element(battery, 'NominalVoltage', @nominal_voltage, :float, @nominal_voltage_isdefaulted) unless @nominal_voltage.nil? + XMLHelper.add_extension(battery, 'LifetimeModel', @lifetime_model, :string, @lifetime_model_isdefaulted) unless @lifetime_model.nil? + end + end + + case @vehicle_type + when HPXML::VehicleTypeBEV + if not @fraction_charged_home.nil? + fraction_charged_location = XMLHelper.add_element(vehicle_type, 'FractionChargedLocation') + XMLHelper.add_element(fraction_charged_location, 'Location', HPXML::ElectricVehicleChargingLocationHome, :string) + XMLHelper.add_element(fraction_charged_location, 'Percentage', @fraction_charged_home, :float, @fraction_charged_home_isdefaulted) + end + if not @ev_charger_idref.nil? + charger = XMLHelper.add_element(vehicle_type, 'ConnectedCharger') + XMLHelper.add_attribute(charger, 'idref', @ev_charger_idref) + end + XMLHelper.add_extension(vehicle_type, 'WeekdayScheduleFractions', @ev_weekday_fractions, :string, @ev_weekday_fractions_isdefaulted) unless @ev_weekday_fractions.nil? + XMLHelper.add_extension(vehicle_type, 'WeekendScheduleFractions', @ev_weekend_fractions, :string, @ev_weekend_fractions_isdefaulted) unless @ev_weekend_fractions.nil? + XMLHelper.add_extension(vehicle_type, 'MonthlyScheduleMultipliers', @ev_monthly_multipliers, :string, @ev_monthly_multipliers_isdefaulted) unless @ev_monthly_multipliers.nil? + end + + XMLHelper.add_element(vehicle, 'MilesDrivenPerYear', @miles_per_year, :float, @miles_per_year_isdefaulted) unless @miles_per_year.nil? + XMLHelper.add_element(vehicle, 'HoursDrivenPerWeek', @hours_per_week, :float, @hours_per_week_isdefaulted) unless @hours_per_week.nil? + if (not @fuel_economy_units.nil?) && (not @fuel_economy_combined.nil?) + fuel_economy = XMLHelper.add_element(vehicle, 'FuelEconomyCombined') + XMLHelper.add_element(fuel_economy, 'Units', @fuel_economy_units, :string, @fuel_economy_units_isdefaulted) + XMLHelper.add_element(fuel_economy, 'Value', @fuel_economy_combined, :float, @fuel_economy_combined_isdefaulted) + end + end + + # Populates the HPXML object(s) from the XML document. + # + # @param battery [Oga::XML::Element] The current Battery XML element + # @return [nil] + def from_doc(vehicle) + return if vehicle.nil? + + @id = HPXML::get_id(vehicle) + @miles_per_year = XMLHelper.get_value(vehicle, 'MilesDrivenPeryear', :float) + @hours_per_week = XMLHelper.get_value(vehicle, 'HoursDrivenPerWeek', :float) + @fuel_economy_combined = XMLHelper.get_value(vehicle, 'FuelEconomyCombined/Value', :float) + @fuel_economy_units = XMLHelper.get_value(vehicle, 'FuelEconomyCombined/Units', :string) + @vehicle_type = XMLHelper.get_child_name(vehicle, 'VehicleType') + if @vehicle_type == HPXML::VehicleTypeBEV + battery_prefix = "VehicleType/#{@vehicle_type}/Battery" + @battery_type = XMLHelper.get_value(vehicle, "#{battery_prefix}/BatteryType", :string) + @nominal_capacity_kwh = XMLHelper.get_value(vehicle, "#{battery_prefix}/NominalCapacity[Units='#{UnitsKwh}']/Value", :float) + @nominal_capacity_ah = XMLHelper.get_value(vehicle, "#{battery_prefix}/NominalCapacity[Units='#{UnitsAh}']/Value", :float) + @usable_capacity_kwh = XMLHelper.get_value(vehicle, "#{battery_prefix}/UsableCapacity[Units='#{UnitsKwh}']/Value", :float) + @usable_capacity_ah = XMLHelper.get_value(vehicle, "#{battery_prefix}/UsableCapacity[Units='#{UnitsAh}']/Value", :float) + @nominal_voltage = XMLHelper.get_value(vehicle, "#{battery_prefix}/NominalVoltage", :float) + @fraction_charged_home = XMLHelper.get_value(vehicle, "VehicleType/#{@vehicle_type}/FractionChargedLocation[Location='#{HPXML::ElectricVehicleChargingLocationHome}']/Percentage", :float) + @ev_charger_idref = HPXML::get_idref(XMLHelper.get_element(vehicle, "VehicleType/#{@vehicle_type}/ConnectedCharger")) + @lifetime_model = XMLHelper.get_value(vehicle, "#{battery_prefix}/extension/LifetimeModel", :string) + @ev_weekday_fractions = XMLHelper.get_value(vehicle, "VehicleType/#{@vehicle_type}/extension/WeekdayScheduleFractions", :string) + @ev_weekend_fractions = XMLHelper.get_value(vehicle, "VehicleType/#{@vehicle_type}/extension/WeekendScheduleFractions", :string) + @ev_monthly_multipliers = XMLHelper.get_value(vehicle, "VehicleType/#{@vehicle_type}/extension/MonthlyScheduleMultipliers", :string) + end + end + + # Returns the EV charger for the vehicle. + # + # @return [HPXML::ElectricVehicleCharger] The connected EV charger + def ev_charger + return if @ev_charger_idref.nil? + + @parent_object.ev_chargers.each do |ev_charger| + next unless ev_charger.id == @ev_charger_idref + + return ev_charger + end + fail "Connected charger '#{@ev_charger_idref}' not found for vehicle '#{@id}'." + end + end + # Array of HPXML::Battery objects. class Batteries < BaseArrayElement # Adds a new object, with the specified keyword arguments, to the array. diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd index 642dd04fe2..8f9aa740f6 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd @@ -1751,6 +1751,7 @@ + @@ -1845,6 +1846,7 @@ + Indicates whether this water heater uses a desuperheater. The attached heat pump or air conditioner can be referenced in the @@ -2262,6 +2264,172 @@ + + + + + + + + + + + + + + + The class as defined by the U.S. Federal Highway Administration. + + + + + The gross vehicle weight rating (GVWR) as defined by the U.S. Federal Highway Administration. + + + + + [lbs] The weight of the vehicle. + + + + + Number of similar vehicles. + + + + + + + + + + + + The percentage of charging energy provided at different locations. + + + + + + + Percentage as a fraction (50% = 0.5) + + + + + + + + + + + + + + + + + + The percentage of charging energy provided at different locations. + + + + + + + Percentage as a fraction (50% = 0.5) + + + + + + + + + + Fuel type of the combustion engine + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2273,6 +2441,7 @@ + @@ -6249,6 +6418,14 @@ + + + + + + + + @@ -6267,6 +6444,51 @@ + + + + + + The total energy available when the battery is discharged starting from 100% state of charge until it reaches the cut-off voltage. + + + + + The stored energy that can actually be used. In most cases usable capacity is less than the nominal capacity. + + + + + + [W] The amount of power the battery typically generates under non-peak conditions. + + + + + [W] The peak power that the battery can generate for a short period of time. + + + + + [V] The nominal voltage is the battery voltage when the state of charge is 0.5 (midway between being fully charged, and fully discharged) + with a 0.2C discharge current. + + + + + Not all the power that is used to charge the battery is available during discharge. Round trip efficiency is the ratio of the energy put + in to the energy retrieved from storage. + + + + + [W] The maximum charging power that can be accepted by the vehicle battery. + + + + + + @@ -6460,6 +6682,18 @@ + + + + + + + + + + + + @@ -10123,6 +10357,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The class as defined by the U.S. Federal Highway Administration + + + + + + + + + + + + + + + + + + + + + + + + + + + The class as defined by the U.S. Federal Highway Administration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -10956,6 +11303,22 @@ + + + + + + + + + + + + + + + + @@ -11460,6 +11823,22 @@ + + + + + + + + + + + + + + + + diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index f7db0334d9..d1e73a253a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -69,8 +69,9 @@ Expected at maximum one heating system for each Building Expected sum(FractionHeatLoadServed) to be equal to 1 Expected sum(FractionCoolLoadServed) to be equal to 1 - TemperatureCapacitanceMultiplier should typically be greater than 1. Expected ../../SoftwareInfo/extension/SimulationControl/Timestep to be 1.0 + + TemperatureCapacitanceMultiplier should typically be greater than 1. @@ -266,6 +267,8 @@ Expected 0 or 1 element(s) for xpath: Systems/SolarThermal/SolarThermalSystem Expected 0 or more element(s) for xpath: Systems/Photovoltaics/PVSystem Expected 0 or 1 element(s) for xpath: Systems/Batteries/Battery + Expected 0 or more element(s) for xpath: Systems/Vehicles/Vehicle + Expected 0 or more element(s) for xpath: Systems/ElectricVehicleChargers/ElectricVehicleCharger Expected 0 or more element(s) for xpath: Systems/extension/Generators/Generator Expected 0 or 1 element(s) for xpath: Appliances/ClothesWasher Expected 0 or 1 element(s) for xpath: Appliances/ClothesDryer @@ -297,11 +300,16 @@ Expected sum(Zones/Zone[ZoneType="conditioned"]/Spaces/Space/FloorArea) to be equal to BuildingSummary/BuildingConstruction/ConditionedFloorArea - While multiple conditioned zones are specified, the EnergyPlus model will only include a single conditioned thermal zone. + While multiple conditioned zones are specified, the EnergyPlus model will only include a single conditioned thermal zone. No windows specified, the model will not include window heat transfer. No space heating specified, the model will not include space heating energy use. No space cooling specified, the model will not include space cooling energy use. No water heating specified, the model will not include water heating energy use. + Vehicle type 'PlugInHybridElectricVehicle' is not currently handled, the vehicle will not be modeled. + Vehicle type 'HybridElectricVehicle' is not currently handled, the vehicle will not be modeled. + Vehicle type 'InternalCombustionEngine' is not currently handled, the vehicle will not be modeled. + Vehicle type 'FuelCellElectricVehicle' is not currently handled, the vehicle will not be modeled. + Vehicle type 'Other' is not currently handled, the vehicle will not be modeled. No clothes washer specified, the model will not include clothes washer energy use. No clothes dryer specified, the model will not include clothes dryer energy use. No dishwasher specified, the model will not include dishwasher energy use. @@ -2500,6 +2508,57 @@ + + [Vehicles] + + Expected 0 or 1 element(s) for xpath: Vehicle/VehicleType/BatteryElectricVehicle + + + + + [Vehicle] + + Expected 1 element(s) for xpath: VehicleType + + + + + [VehicleType=BEV] + + Expected 0 or 1 element(s) for xpath: Battery/BatteryType[text()="Li-ion"] + Expected Battery/BatteryType to be "Li-ion" + Expected 0 or more element(s) for xpath: Battery/NominalCapacity[Units="kWh" or Units="Ah"]/Value + Expected 0 or more element(s) for xpath: Battery/UsableCapacity[Units="kWh" or Units="Ah"]/Value + Expected UsableCapacity to be less than NominalCapacity + Expected UsableCapacity to be less than NominalCapacity + Expected 0 or 1 element(s) for xpath: Battery/NominalVoltage + Expected 0 element(s) for xpath: Battery/extension/LifetimeModel + Expected Battery/extension/LifetimeModel to be 'None' or 'KandlerSmith' + Expected 0 or 1 element(s) for xpath: FractionChargedLocation[Location="Home"]/Percentage + Expected 0 or 1 element(s) for xpath: ConnectedCharger + Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions + Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions + Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers + Expected 0 or 1 element(s) for xpath: ../../MilesDrivenPerYear + Expected 0 or 1 element(s) for xpath: ../../HoursDrivenPerWeek + Expected 0 or 1 element(s) for xpath: ../../FuelEconomyCombined/Value + Expected ../../FuelEconomyCombined/Units to be "kWh/mile" or "mile/kWh" or "mpge" + + Electric vehicle charging was specified as both a PlugLoad and a Vehicle, the latter will be ignored. + Electric vehicle specified with no charger provided; home EV charging will not be modeled. + + + + + [ElectricVehicleCharger] + + Expected 0 or 1 element(s) for xpath: Location + Expected Location to be 'garage' or 'outside' + Expected 0 or 1 element(s) for xpath: ChargingLevel + Expected 0 or 1 element(s) for xpath: ChargingPower + + + [Generator] diff --git a/HPXMLtoOpenStudio/resources/lighting.rb b/HPXMLtoOpenStudio/resources/lighting.rb index 551f48acf4..b784d91eb2 100644 --- a/HPXMLtoOpenStudio/resources/lighting.rb +++ b/HPXMLtoOpenStudio/resources/lighting.rb @@ -16,7 +16,7 @@ def self.apply(runner, model, spaces, hpxml_bldg, hpxml_header, schedules_file) lighting = hpxml_bldg.lighting unit_multiplier = hpxml_bldg.building_construction.number_of_units cfa = hpxml_bldg.building_construction.conditioned_floor_area - eri_version = hpxml_header.eri_calculation_version + eri_version = hpxml_header.eri_calculation_versions[0] n_occ = hpxml_bldg.building_occupancy.number_of_residents ltg_locns = [HPXML::LocationInterior, HPXML::LocationExterior, HPXML::LocationGarage] diff --git a/HPXMLtoOpenStudio/resources/misc_loads.rb b/HPXMLtoOpenStudio/resources/misc_loads.rb index e30ce386cc..1497d98872 100644 --- a/HPXMLtoOpenStudio/resources/misc_loads.rb +++ b/HPXMLtoOpenStudio/resources/misc_loads.rb @@ -29,7 +29,7 @@ def self.apply_plug_loads(runner, model, spaces, hpxml_bldg, hpxml_header, sched obj_name = Constants::ObjectTypeMiscWellPump end if obj_name.nil? - runner.registerWarning("Unexpected plug load type '#{plug_load.plug_load_type}'. The plug load will not be modeled.") + # Warning issued by Schematron validator next end @@ -132,7 +132,7 @@ def self.apply_fuel_loads(runner, model, spaces, hpxml_bldg, hpxml_header, sched obj_name = Constants::ObjectTypeMiscFireplace end if obj_name.nil? - runner.registerWarning("Unexpected fuel load type '#{fuel_load.fuel_load_type}'. The fuel load will not be modeled.") + # Warning issued by Schematron validator next end diff --git a/HPXMLtoOpenStudio/resources/output.rb b/HPXMLtoOpenStudio/resources/output.rb index e07ae5ccb8..7b7328379b 100644 --- a/HPXMLtoOpenStudio/resources/output.rb +++ b/HPXMLtoOpenStudio/resources/output.rb @@ -2,6 +2,10 @@ # Collection of methods related to output reporting or writing output files. module Outputs + MeterCustomElectricityTotal = 'Electricity:Total' + MeterCustomElectricityNet = 'Electricity:Net' + MeterCustomElectricityPV = 'Electricity:PV' + # Add EMS programs for output reporting. In the case where a whole SFA/MF building is # being simulated, these programs are added to the whole building (merged) model, not # the individual dwelling unit models. @@ -1189,4 +1193,79 @@ def self.write_results_out_to_file(results_out, output_format, output_file_path, end end end + + # Creates custom output meters that are used across reporting measures. + # + # @param model [OpenStudio::Model::Model] OpenStudio Model object + # @return [nil] + def self.create_custom_meters(model) + # Create custom meters: + # - Total Electricity (Electricity:Facility plus EV charging, batteries, generators) + # - Net Electricity (above plus PV) + # - PV Electricity + + total_key_vars = [] + net_key_vars = [] + pv_key_vars = [] + model.getElectricLoadCenterDistributions.each do |elcd| + # Batteries & EV charging output variables + if elcd.electricalStorage.is_initialized + elcs = elcd.electricalStorage.get + if elcs.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeVehicle + net_key_vars << [elcs.name.to_s.upcase, 'Electric Storage Production Decrement Energy'] + total_key_vars << net_key_vars[-1] + elsif elcs.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeBattery + net_key_vars << [elcs.name.to_s.upcase, 'Electric Storage Production Decrement Energy'] + total_key_vars << net_key_vars[-1] + net_key_vars << [elcs.name.to_s.upcase, 'Electric Storage Discharge Energy'] + total_key_vars << net_key_vars[-1] + end + end + + # PV output meters + elcd.generators.each do |generator| + next unless generator.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypePhotovoltaics + + net_key_vars << ['', 'Photovoltaic:ElectricityProduced'] + pv_key_vars << net_key_vars[-1] + net_key_vars << ['', 'PowerConversion:ElectricityProduced'] + pv_key_vars << net_key_vars[-1] + end + + # Generator output meter + elcd.generators.each do |generator| + next unless generator.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeGenerator + + net_key_vars << ['', 'Cogeneration:ElectricityProduced'] + total_key_vars << net_key_vars[-1] + end + end + + # Create Total/Net meters + { MeterCustomElectricityTotal => total_key_vars, + MeterCustomElectricityNet => net_key_vars }.each do |meter_name, key_vars| + if key_vars.empty? + # Avoid OpenStudio warnings if nothing to decrement + meter = OpenStudio::Model::MeterCustom.new(model) + key_vars << ['', 'Electricity:Facility'] + else + meter = OpenStudio::Model::MeterCustomDecrement.new(model, 'Electricity:Facility') + end + meter.setName(meter_name) + meter.setFuelType(EPlus::FuelTypeElectricity) + key_vars.uniq.each do |key_var| + meter.addKeyVarGroup(key_var[0], key_var[1]) + end + end + + # Create PV meter + if not pv_key_vars.empty? + meter = OpenStudio::Model::MeterCustom.new(model) + meter.setName(MeterCustomElectricityPV) + meter.setFuelType(EPlus::FuelTypeElectricity) + pv_key_vars.uniq.each do |key_var| + meter.addKeyVarGroup(key_var[0], key_var[1]) + end + end + end end diff --git a/HPXMLtoOpenStudio/resources/pv.rb b/HPXMLtoOpenStudio/resources/pv.rb index 08822275c7..a96bb854f8 100644 --- a/HPXMLtoOpenStudio/resources/pv.rb +++ b/HPXMLtoOpenStudio/resources/pv.rb @@ -37,6 +37,7 @@ def self.apply_pv_system(model, hpxml_bldg, pv_system) # Apply unit multiplier max_power = pv_system.max_power_output * unit_multiplier + return if max_power <= 0 if pv_system.is_shared_system # Apportion to single dwelling unit by # bedrooms @@ -64,6 +65,7 @@ def self.apply_pv_system(model, hpxml_bldg, pv_system) gpvwatts.setSystemLosses(pv_system.system_losses_fraction) gpvwatts.setTiltAngle(pv_system.array_tilt) gpvwatts.setAzimuthAngle(pv_system.array_azimuth) + gpvwatts.additionalProperties.setFeature('ObjectType', Constants::ObjectTypePhotovoltaics) case pv_system.tracking when HPXML::PVTrackingTypeFixed diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv index 1921875f25..c3162109bf 100644 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv @@ -1,8761 +1,8761 @@ -lighting_exterior,lighting_exterior_holiday,refrigerator,extra_refrigerator,freezer,plug_loads_vehicle,plug_loads_well_pump,fuel_loads_grill,fuel_loads_lighting,fuel_loads_fireplace,pool_pump,pool_heater,permanent_spa_pump,permanent_spa_heater,hot_water_recirculation_pump,general_water_use -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,0,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.563,0,0.609,0.609,0.609,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 -0.521,0,0.594,0.594,0.594,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 -0.521,0,0.579,0.579,0.579,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 -0.507,0,0.564,0.564,0.564,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 -0.465,0,0.549,0.549,0.549,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 -0.507,0,0.549,0.549,0.549,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 -0.606,0,0.579,0.579,0.579,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 -0.662,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 -0.479,0,0.625,0.625,0.625,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 -0.324,0,0.625,0.625,0.625,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 -0.338,0,0.609,0.609,0.609,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 -0.352,0,0.609,0.609,0.609,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 -0.338,0,0.64,0.64,0.64,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 -0.394,0,0.64,0.64,0.64,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 -0.437,0,0.64,0.64,0.64,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 -0.451,0,0.625,0.625,0.625,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 -0.549,0,0.67,0.67,0.67,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 -0.746,0,0.731,0.731,0.731,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 -0.887,0,0.762,0.762,0.762,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 -0.944,0,0.731,0.731,0.731,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 -1,0,0.716,0.716,0.716,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 -0.972,0,0.701,0.701,0.701,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 -0.831,0,0.67,0.67,0.67,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 -0.704,0,0.625,0.625,0.625,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.288 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.342 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.37 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.443,0,0.791,0.791,0.791,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 -0.41,0,0.771,0.771,0.771,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 -0.41,0,0.752,0.752,0.752,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 -0.399,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 -0.366,0,0.712,0.712,0.712,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 -0.399,0,0.712,0.712,0.712,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 -0.477,0,0.752,0.752,0.752,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 -0.521,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 -0.377,0,0.811,0.811,0.811,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 -0.255,0,0.811,0.811,0.811,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 -0.266,0,0.791,0.791,0.791,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 -0.277,0,0.791,0.791,0.791,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 -0.266,0,0.831,0.831,0.831,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 -0.31,0,0.831,0.831,0.831,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 -0.344,0,0.831,0.831,0.831,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 -0.355,0,0.811,0.811,0.811,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 -0.432,0,0.87,0.87,0.87,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 -0.587,0,0.949,0.949,0.949,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 -0.698,0,0.989,0.989,0.989,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 -0.742,0,0.949,0.949,0.949,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 -0.787,0,0.93,0.93,0.93,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 -0.765,0,0.91,0.91,0.91,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 -0.654,0,0.87,0.87,0.87,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 -0.554,0,0.811,0.811,0.811,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.445,0,0.791,0.791,0.791,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 -0.412,0,0.771,0.771,0.771,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 -0.412,0,0.752,0.752,0.752,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 -0.401,0,0.732,0.732,0.732,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 -0.367,0,0.712,0.712,0.712,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 -0.401,0,0.712,0.712,0.712,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 -0.478,0,0.752,0.752,0.752,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 -0.523,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 -0.378,0,0.811,0.811,0.811,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 -0.256,0,0.811,0.811,0.811,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 -0.267,0,0.791,0.791,0.791,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 -0.278,0,0.791,0.791,0.791,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 -0.267,0,0.831,0.831,0.831,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 -0.312,0,0.831,0.831,0.831,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 -0.345,0,0.831,0.831,0.831,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 -0.356,0,0.811,0.811,0.811,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 -0.434,0,0.87,0.87,0.87,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 -0.59,0,0.949,0.949,0.949,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 -0.701,0,0.989,0.989,0.989,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 -0.745,0,0.949,0.949,0.949,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 -0.79,0,0.93,0.93,0.93,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 -0.768,0,0.91,0.91,0.91,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 -0.656,0,0.87,0.87,0.87,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 -0.556,0,0.811,0.811,0.811,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.368,0,0.8,0.8,0.8,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 -0.34,0,0.78,0.78,0.78,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 -0.34,0,0.76,0.76,0.76,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 -0.331,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 -0.304,0,0.72,0.72,0.72,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 -0.331,0,0.72,0.72,0.72,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 -0.396,0,0.76,0.76,0.76,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 -0.432,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 -0.313,0,0.82,0.82,0.82,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 -0.212,0,0.82,0.82,0.82,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 -0.221,0,0.8,0.8,0.8,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 -0.23,0,0.8,0.8,0.8,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 -0.221,0,0.84,0.84,0.84,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 -0.258,0,0.84,0.84,0.84,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 -0.285,0,0.84,0.84,0.84,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 -0.294,0,0.82,0.82,0.82,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 -0.359,0,0.88,0.88,0.88,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 -0.488,0,0.96,0.96,0.96,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 -0.58,0,1,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 -0.616,0,0.96,0.96,0.96,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 -0.653,0,0.94,0.94,0.94,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 -0.635,0,0.92,0.92,0.92,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 -0.543,0,0.88,0.88,0.88,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 -0.46,0,0.82,0.82,0.82,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.371,0,0.8,0.8,0.8,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 -0.343,0,0.78,0.78,0.78,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 -0.343,0,0.76,0.76,0.76,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 -0.334,0,0.74,0.74,0.74,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 -0.306,0,0.72,0.72,0.72,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 -0.334,0,0.72,0.72,0.72,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 -0.398,0,0.76,0.76,0.76,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 -0.436,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 -0.315,0,0.82,0.82,0.82,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 -0.213,0,0.82,0.82,0.82,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 -0.222,0,0.8,0.8,0.8,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 -0.232,0,0.8,0.8,0.8,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 -0.222,0,0.84,0.84,0.84,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 -0.259,0,0.84,0.84,0.84,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 -0.287,0,0.84,0.84,0.84,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 -0.297,0,0.82,0.82,0.82,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 -0.361,0,0.88,0.88,0.88,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 -0.491,0,0.96,0.96,0.96,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 -0.584,0,1,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 -0.621,0,0.96,0.96,0.96,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 -0.658,0,0.94,0.94,0.94,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 -0.639,0,0.92,0.92,0.92,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 -0.547,0,0.88,0.88,0.88,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 -0.463,0,0.82,0.82,0.82,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.444,0,0.68,0.68,0.68,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 -0.41,0,0.663,0.663,0.663,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 -0.41,0,0.646,0.646,0.646,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 -0.399,0,0.629,0.629,0.629,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 -0.366,0,0.612,0.612,0.612,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 -0.399,0,0.612,0.612,0.612,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 -0.477,0,0.646,0.646,0.646,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 -0.521,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 -0.377,0,0.697,0.697,0.697,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 -0.255,0,0.697,0.697,0.697,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 -0.266,0,0.68,0.68,0.68,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 -0.277,0,0.68,0.68,0.68,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 -0.266,0,0.714,0.714,0.714,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 -0.311,0,0.714,0.714,0.714,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 -0.344,0,0.714,0.714,0.714,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 -0.355,0,0.697,0.697,0.697,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 -0.433,0,0.748,0.748,0.748,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 -0.588,0,0.815,0.815,0.815,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 -0.699,0,0.849,0.849,0.849,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 -0.743,0,0.815,0.815,0.815,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 -0.788,0,0.798,0.798,0.798,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 -0.765,0,0.781,0.781,0.781,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 -0.654,0,0.748,0.748,0.748,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 -0.555,0,0.697,0.697,0.697,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.37 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.521 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.603 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.534 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.507 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.466 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.479 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.534 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.589 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.699 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.877 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.89 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.986 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,1 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,0.863 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.616 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.466 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.315 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,0,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0.0288,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0.346,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0.593,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0.683,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,1,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0.679,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0.132,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0.0658,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0.0288,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0.346,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0.593,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0.683,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,1,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0.679,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0.132,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0.0658,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.442,0,0.675,0.675,0.675,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 -0.409,0,0.658,0.658,0.658,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 -0.409,0,0.641,0.641,0.641,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 -0.398,0,0.625,0.625,0.625,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 -0.365,0,0.608,0.608,0.608,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 -0.398,0,0.608,0.608,0.608,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 -0.476,0,0.641,0.641,0.641,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 -0.52,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 -0.376,0,0.692,0.692,0.692,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 -0.254,0,0.692,0.692,0.692,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 -0.265,0,0.675,0.675,0.675,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 -0.276,0,0.675,0.675,0.675,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 -0.265,0,0.709,0.709,0.709,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 -0.31,0,0.709,0.709,0.709,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 -0.343,0,0.709,0.709,0.709,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 -0.354,0,0.692,0.692,0.692,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 -0.431,0.0288,0.743,0.743,0.743,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 -0.586,0.346,0.81,0.81,0.81,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 -0.697,0.593,0.844,0.844,0.844,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 -0.741,0.683,0.81,0.81,0.81,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 -0.785,1,0.793,0.793,0.793,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 -0.763,0.679,0.776,0.776,0.776,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 -0.652,0.132,0.743,0.743,0.743,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 -0.553,0.0658,0.692,0.692,0.692,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 -0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 -0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 -0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 -0.503,0,0.565,0.565,0.565,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 -0.461,0,0.55,0.55,0.55,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 -0.503,0,0.55,0.55,0.55,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 -0.601,0,0.58,0.58,0.58,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 -0.657,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 -0.475,0,0.626,0.626,0.626,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 -0.322,0,0.626,0.626,0.626,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 -0.336,0,0.611,0.611,0.611,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 -0.35,0,0.611,0.611,0.611,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 -0.336,0,0.641,0.641,0.641,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 -0.392,0,0.641,0.641,0.641,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 -0.433,0,0.641,0.641,0.641,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 -0.447,0,0.626,0.626,0.626,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 -0.545,0.0288,0.672,0.672,0.672,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 -0.741,0.346,0.733,0.733,0.733,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 -0.881,0.593,0.764,0.764,0.764,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 -0.937,0.683,0.733,0.733,0.733,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 -0.993,1,0.718,0.718,0.718,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 -0.965,0.679,0.703,0.703,0.703,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 -0.825,0.132,0.672,0.672,0.672,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 -0.699,0.0658,0.626,0.626,0.626,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +lighting_exterior,lighting_exterior_holiday,refrigerator,extra_refrigerator,freezer,plug_loads_well_pump,fuel_loads_grill,fuel_loads_lighting,fuel_loads_fireplace,pool_pump,pool_heater,permanent_spa_pump,permanent_spa_heater,hot_water_recirculation_pump,general_water_use +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,0,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.563,0,0.609,0.609,0.609,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,0.315 +0.521,0,0.594,0.594,0.594,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,0.288 +0.521,0,0.579,0.579,0.579,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,0.288 +0.507,0,0.564,0.564,0.564,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,0.342 +0.465,0,0.549,0.549,0.549,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,0.37 +0.507,0,0.549,0.549,0.549,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,0.521 +0.606,0,0.579,0.579,0.579,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,0.603 +0.662,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,0.534 +0.479,0,0.625,0.625,0.625,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,0.507 +0.324,0,0.625,0.625,0.625,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,1,0.507 +0.338,0,0.609,0.609,0.609,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,1,0.466 +0.352,0,0.609,0.609,0.609,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,1,0.479 +0.338,0,0.64,0.64,0.64,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,1,0.479 +0.394,0,0.64,0.64,0.64,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,1,0.479 +0.437,0,0.64,0.64,0.64,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,1,0.534 +0.451,0,0.625,0.625,0.625,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,1,0.589 +0.549,0,0.67,0.67,0.67,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,1,0.699 +0.746,0,0.731,0.731,0.731,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,1,0.877 +0.887,0,0.762,0.762,0.762,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,1,0.89 +0.944,0,0.731,0.731,0.731,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,1,0.986 +1,0,0.716,0.716,0.716,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,1,1 +0.972,0,0.701,0.701,0.701,1,0.118,1,1,0.0236,0.0236,0.273,0.26,1,0.863 +0.831,0,0.67,0.67,0.67,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,0.616 +0.704,0,0.625,0.625,0.625,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.288 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.342 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.37 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.443,0,0.791,0.791,0.791,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,0.315 +0.41,0,0.771,0.771,0.771,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,0.288 +0.41,0,0.752,0.752,0.752,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,0.288 +0.399,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,0.342 +0.366,0,0.712,0.712,0.712,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,0.37 +0.399,0,0.712,0.712,0.712,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,0.521 +0.477,0,0.752,0.752,0.752,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,0.603 +0.521,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,0.534 +0.377,0,0.811,0.811,0.811,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,0.507 +0.255,0,0.811,0.811,0.811,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,1,0.507 +0.266,0,0.791,0.791,0.791,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,1,0.466 +0.277,0,0.791,0.791,0.791,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,1,0.479 +0.266,0,0.831,0.831,0.831,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,1,0.479 +0.31,0,0.831,0.831,0.831,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,1,0.479 +0.344,0,0.831,0.831,0.831,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,1,0.534 +0.355,0,0.811,0.811,0.811,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,1,0.589 +0.432,0,0.87,0.87,0.87,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,1,0.699 +0.587,0,0.949,0.949,0.949,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,1,0.877 +0.698,0,0.989,0.989,0.989,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,1,0.89 +0.742,0,0.949,0.949,0.949,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,1,0.986 +0.787,0,0.93,0.93,0.93,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,1,1 +0.765,0,0.91,0.91,0.91,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,0.863 +0.654,0,0.87,0.87,0.87,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,0.616 +0.554,0,0.811,0.811,0.811,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.445,0,0.791,0.791,0.791,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,0.315 +0.412,0,0.771,0.771,0.771,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,0.288 +0.412,0,0.752,0.752,0.752,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,0.288 +0.401,0,0.732,0.732,0.732,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,0.342 +0.367,0,0.712,0.712,0.712,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,0.37 +0.401,0,0.712,0.712,0.712,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,0.521 +0.478,0,0.752,0.752,0.752,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,0.603 +0.523,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,0.534 +0.378,0,0.811,0.811,0.811,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,0.507 +0.256,0,0.811,0.811,0.811,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,1,0.507 +0.267,0,0.791,0.791,0.791,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,1,0.466 +0.278,0,0.791,0.791,0.791,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,1,0.479 +0.267,0,0.831,0.831,0.831,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,1,0.479 +0.312,0,0.831,0.831,0.831,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,1,0.479 +0.345,0,0.831,0.831,0.831,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,1,0.534 +0.356,0,0.811,0.811,0.811,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,1,0.589 +0.434,0,0.87,0.87,0.87,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,1,0.699 +0.59,0,0.949,0.949,0.949,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,1,0.877 +0.701,0,0.989,0.989,0.989,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,1,0.89 +0.745,0,0.949,0.949,0.949,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,1,0.986 +0.79,0,0.93,0.93,0.93,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,1,1 +0.768,0,0.91,0.91,0.91,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,1,0.863 +0.656,0,0.87,0.87,0.87,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,0.616 +0.556,0,0.811,0.811,0.811,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.368,0,0.8,0.8,0.8,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,0.315 +0.34,0,0.78,0.78,0.78,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,0.288 +0.34,0,0.76,0.76,0.76,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,0.288 +0.331,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,0.342 +0.304,0,0.72,0.72,0.72,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,0.37 +0.331,0,0.72,0.72,0.72,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,0.521 +0.396,0,0.76,0.76,0.76,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,0.603 +0.432,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,0.534 +0.313,0,0.82,0.82,0.82,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,0.507 +0.212,0,0.82,0.82,0.82,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,1,0.507 +0.221,0,0.8,0.8,0.8,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,1,0.466 +0.23,0,0.8,0.8,0.8,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,1,0.479 +0.221,0,0.84,0.84,0.84,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,1,0.479 +0.258,0,0.84,0.84,0.84,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,1,0.479 +0.285,0,0.84,0.84,0.84,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,1,0.534 +0.294,0,0.82,0.82,0.82,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,1,0.589 +0.359,0,0.88,0.88,0.88,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,1,0.699 +0.488,0,0.96,0.96,0.96,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,1,0.877 +0.58,0,1,1,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,1,0.89 +0.616,0,0.96,0.96,0.96,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,1,0.986 +0.653,0,0.94,0.94,0.94,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,1,1 +0.635,0,0.92,0.92,0.92,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,0.863 +0.543,0,0.88,0.88,0.88,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,0.616 +0.46,0,0.82,0.82,0.82,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.371,0,0.8,0.8,0.8,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,0.315 +0.343,0,0.78,0.78,0.78,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,0.288 +0.343,0,0.76,0.76,0.76,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,0.288 +0.334,0,0.74,0.74,0.74,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,0.342 +0.306,0,0.72,0.72,0.72,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,0.37 +0.334,0,0.72,0.72,0.72,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,0.521 +0.398,0,0.76,0.76,0.76,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,0.603 +0.436,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,0.534 +0.315,0,0.82,0.82,0.82,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,0.507 +0.213,0,0.82,0.82,0.82,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,1,0.507 +0.222,0,0.8,0.8,0.8,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,1,0.466 +0.232,0,0.8,0.8,0.8,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,1,0.479 +0.222,0,0.84,0.84,0.84,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,1,0.479 +0.259,0,0.84,0.84,0.84,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,1,0.479 +0.287,0,0.84,0.84,0.84,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,1,0.534 +0.297,0,0.82,0.82,0.82,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,1,0.589 +0.361,0,0.88,0.88,0.88,0.4,0.554,0.4,0.4,0.223,0.223,1,1,1,0.699 +0.491,0,0.96,0.96,0.96,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,1,0.877 +0.584,0,1,1,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,1,0.89 +0.621,0,0.96,0.96,0.96,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,1,0.986 +0.658,0,0.94,0.94,0.94,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,1,1 +0.639,0,0.92,0.92,0.92,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,1,0.863 +0.547,0,0.88,0.88,0.88,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,0.616 +0.463,0,0.82,0.82,0.82,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.444,0,0.68,0.68,0.68,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,0.315 +0.41,0,0.663,0.663,0.663,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,0.288 +0.41,0,0.646,0.646,0.646,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,0.288 +0.399,0,0.629,0.629,0.629,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,0.342 +0.366,0,0.612,0.612,0.612,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,0.37 +0.399,0,0.612,0.612,0.612,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,0.521 +0.477,0,0.646,0.646,0.646,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,0.603 +0.521,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,0.534 +0.377,0,0.697,0.697,0.697,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,1,0.507 +0.255,0,0.697,0.697,0.697,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,1,0.507 +0.266,0,0.68,0.68,0.68,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,1,0.466 +0.277,0,0.68,0.68,0.68,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,1,0.479 +0.266,0,0.714,0.714,0.714,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,1,0.479 +0.311,0,0.714,0.714,0.714,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,1,0.479 +0.344,0,0.714,0.714,0.714,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,1,0.534 +0.355,0,0.697,0.697,0.697,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,1,0.589 +0.433,0,0.748,0.748,0.748,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,1,0.699 +0.588,0,0.815,0.815,0.815,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,1,0.877 +0.699,0,0.849,0.849,0.849,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,1,0.89 +0.743,0,0.815,0.815,0.815,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,1,0.986 +0.788,0,0.798,0.798,0.798,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,1,1 +0.765,0,0.781,0.781,0.781,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,0.863 +0.654,0,0.748,0.748,0.748,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,0.616 +0.555,0,0.697,0.697,0.697,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.37 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.521 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.603 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.534 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.507 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.466 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.479 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.534 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.589 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.699 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.877 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.89 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.986 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,1 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,0.863 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.616 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.466 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.315 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,0,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0.0288,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0.346,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0.593,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0.683,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,1,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0.679,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0.132,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0.0658,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0.0288,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0.346,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0.593,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0.683,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,1,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0.679,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0.132,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0.0658,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.442,0,0.675,0.675,0.675,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,0.315 +0.409,0,0.658,0.658,0.658,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,0.288 +0.409,0,0.641,0.641,0.641,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,0.288 +0.398,0,0.625,0.625,0.625,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,0.342 +0.365,0,0.608,0.608,0.608,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,0.37 +0.398,0,0.608,0.608,0.608,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,0.521 +0.476,0,0.641,0.641,0.641,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,0.603 +0.52,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,0.534 +0.376,0,0.692,0.692,0.692,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,0.507 +0.254,0,0.692,0.692,0.692,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,1,0.507 +0.265,0,0.675,0.675,0.675,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,1,0.466 +0.276,0,0.675,0.675,0.675,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,1,0.479 +0.265,0,0.709,0.709,0.709,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,1,0.479 +0.31,0,0.709,0.709,0.709,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,1,0.479 +0.343,0,0.709,0.709,0.709,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,1,0.534 +0.354,0,0.692,0.692,0.692,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,1,0.589 +0.431,0.0288,0.743,0.743,0.743,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,1,0.699 +0.586,0.346,0.81,0.81,0.81,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,1,0.877 +0.697,0.593,0.844,0.844,0.844,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,1,0.89 +0.741,0.683,0.81,0.81,0.81,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,1,0.986 +0.785,1,0.793,0.793,0.793,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,1,1 +0.763,0.679,0.776,0.776,0.776,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,1,0.863 +0.652,0.132,0.743,0.743,0.743,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,0.616 +0.553,0.0658,0.692,0.692,0.692,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 +0.559,0,0.611,0.611,0.611,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,0.315 +0.517,0,0.596,0.596,0.596,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,0.288 +0.517,0,0.58,0.58,0.58,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,0.288 +0.503,0,0.565,0.565,0.565,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,0.342 +0.461,0,0.55,0.55,0.55,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,0.37 +0.503,0,0.55,0.55,0.55,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,0.521 +0.601,0,0.58,0.58,0.58,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,0.603 +0.657,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,0.534 +0.475,0,0.626,0.626,0.626,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,1,0.507 +0.322,0,0.626,0.626,0.626,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,1,0.507 +0.336,0,0.611,0.611,0.611,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,1,0.466 +0.35,0,0.611,0.611,0.611,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,1,0.479 +0.336,0,0.641,0.641,0.641,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,1,0.479 +0.392,0,0.641,0.641,0.641,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,1,0.479 +0.433,0,0.641,0.641,0.641,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,1,0.534 +0.447,0,0.626,0.626,0.626,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,1,0.589 +0.545,0.0288,0.672,0.672,0.672,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,1,0.699 +0.741,0.346,0.733,0.733,0.733,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,1,0.877 +0.881,0.593,0.764,0.764,0.764,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,1,0.89 +0.937,0.683,0.733,0.733,0.733,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,1,0.986 +0.993,1,0.718,0.718,0.718,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,1,1 +0.965,0.679,0.703,0.703,0.703,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,1,0.863 +0.825,0.132,0.672,0.672,0.672,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,0.616 +0.699,0.0658,0.626,0.626,0.626,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,0.466 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv index dd93ceebeb..08af87a51b 100644 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv @@ -1,52561 +1,52561 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0.8,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.165 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.0989 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0.5,0,0,0.281,0.647,0.0759,0.473,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.435,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.745,0,0.122 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.181,0.181,0,0.3,0,0,0.281,0.647,0.0759,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0.3,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.122 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0.3,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0.44,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.31,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.212,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.212,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.652,0,0 -1,0.979,0.979,0,0.8,0,0,0,0.993,0.541,0.755,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.538,0,0 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0.603,0,0.244 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0,0,0.488 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0.375,0,0 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0.239,0,0 -1,0.823,0.823,0,0.8,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.201,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.511,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.179,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.179,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.538,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0.38,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0.505,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.164 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.286 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.336 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0671 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.25 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.176 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.281 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.366 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.254 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0677 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0677 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.648 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.462 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.674,0,0 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.247,0,0.122 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.247,0,0 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.245,0,0 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.511,0,0 -0.333,0.196,0.196,0,0.8,0,0,0.281,0.647,0.0604,0.467,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.244 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.366 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.641 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.0695 -1,0.798,0.798,0.3,0,0,0,0,0.973,0.402,0,0,0.209 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.128 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.404 -1,0.979,0.979,0.3,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.169 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.101 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.161 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0965 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.158 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.063 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.287 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0.8,0,0,0,0.14,0.68,0.0551,0,0,0.0321 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0.0963 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.449,0.449,1,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,1,0,0,0,0,0.798,0.103,0,0,0.162 -1,0.449,0.449,1,0,0,0,0,0.798,0.103,0,0,0.0649 -1,0.449,0.449,0.4,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.201 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.175 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.262 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.256 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.15 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.657 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.278 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.209 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.308 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0.3,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.263,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0.488 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.244 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.669,0.669,0.8,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0.7,0,0,0,0.14,0.849,0.366,0,0,0.168 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.134 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.488 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.198 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.231 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.528 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0647 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.158 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0949 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.162 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.398 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.0352 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0.3,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.166 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0664 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.279 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.0348 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.167 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.343,0.343,0.3,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.366 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.346 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.104 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.488 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.292 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.339 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0335 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.153 -0.667,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0.061 -0.667,0.0833,0.0833,0.2,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0.219 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.148 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0.3,0,0,0,0.14,0.68,0.0551,0,0,0.299 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0.0309 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0.28 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0.9,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.334,0.334,0,0.5,0,0,0.14,0.732,0.0895,0.516,0,0.258 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.418,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.272,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.255,0,0.0642 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.44,0,0.0642 -1,0.477,0.477,0,1,0,0,0,0.818,0.126,0.171,0,0 -1,0.49,0.49,0,0.9,0,0,0,0.818,0.149,0.171,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.444 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.0654 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.465 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.137 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.122 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.307 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.343 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.244 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.687 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.36 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0.451,0,0.122 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.462,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.543,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.489,0,0 -0.667,0.418,0.418,0,0.8,0,0,0.14,0.797,0.224,0.342,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0.353,0,0.366 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0.451,0,0.122 -0.667,0.418,0.418,0.8,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0.5,0,0,0,0.973,0.402,0.467,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.321,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.462,0,0.366 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.533,0,0.488 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0.9,0,0,0,0.993,0.541,0,0,0.251 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0.511,0,0 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.217,0,0.244 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.174,0,0 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0,0,0.122 -1,0.677,0.677,0,1,0,0,0.14,0.836,0.51,0.679,0,0 -1,0.565,0.565,0,0.8,0,0,0.14,0.81,0.629,0.348,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0.386,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.366 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0947 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.0917 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.247 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.174 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.0698 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.24 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.0953 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.127 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.488 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.173 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.242 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0.8,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0.366 -0.667,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.488 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.312 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.203 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.174 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.0347 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.151 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0.3,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.181,0.181,0.2,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.488 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.122 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.244 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.366 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.244 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.122 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.177 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.0355 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.288 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.172 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.355,0.355,1,0,0,0,0,0.74,0.0747,0,0,0 -1,0.355,0.355,0.8,0,0,0,0,0.74,0.0747,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0.8,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.183,0.183,0.8,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.125 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.343,0.343,0.8,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0.272 -0.667,0.343,0.343,0.8,0,0,0,0.14,0.758,0.181,0,0,0.366 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.24 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.122 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,0.9,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.161 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.129 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.207 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.207 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.212 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.164 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0654 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0.244 -1,0.117,0.117,0.3,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,1,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0.8,0,0,0,0.14,0.68,0.0551,0,0,0.173 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0346 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.192,0.192,0.3,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.647,0.0604,0,0.309,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.647,0.0604,0,0.0386,0 -0.333,0.196,0.196,0,0,0.9,0,0.281,0.647,0.0604,0,0.567,0 -0.333,0.192,0.192,0,0,0,0.4,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,1,0.281,0.647,0.0664,0,0.309,0 -0.333,0.192,0.192,0,0,0,0.2,0.281,0.647,0.0664,0,0.185,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0.369,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0.361,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.283,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.073,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.618,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.361,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.0386,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.185,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.223,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.496,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.47,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.21,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.395,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.309,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.361,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.348,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.283,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.21,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.429,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.296,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.223,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.717,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.0601,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.309,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.369,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.249,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.433,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.618,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.0386,0.488 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.605,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.361,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.33,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.283,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.27,0.122 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0.348,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0.159,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.0386,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.0129,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.562,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.18,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.27,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.0601,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.223,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.21,0.156 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.0938 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.361,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.296,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.309,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.459,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.433,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.322,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.137,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.283,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.366 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0298 -0.333,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0.5,0,0.281,0.647,0.0604,0,0.296,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.532,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.408,0.122 -0.333,0.192,0.192,0,0,0.8,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0.5,0.281,0.647,0.0664,0,0.258,0 -0.333,0.192,0.192,0,0,0,1,0.281,0.647,0.0664,0,0.481,0 -0.333,0.192,0.192,0,0,0,1,0.281,0.647,0.0664,0,0.174,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.148,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.0987,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.348,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.335,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.296,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.309,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.0386,0 -0.333,0.181,0.181,0.8,0,0,0,0.281,0.647,0.0759,0,0.0987,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.647,0.0759,0,0.283,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0.3,0,0,0,0.14,0.732,0.153,0,0.395,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.0601,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.236,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.296,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.137,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.172,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.258,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.605,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.373,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.283,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.488 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0.5,0,0.281,0.679,0.12,0,0.15,0 -0.333,0.234,0.234,0,0,0.9,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0,0,0.4,0.14,0.836,0.273,0,0.172,0 -0.667,0.548,0.548,0,0,0,1,0.14,0.836,0.273,0,0.223,0 -1,0.798,0.798,0,0,0,1,0,0.973,0.402,0,0.137,0 -1,0.798,0.798,0,0,0,1,0,0.973,0.402,0,0.652,0 -1,0.798,0.798,0,0,0,1,0,0.973,0.402,0,0.249,0 -1,0.798,0.798,0,0,0,0.5,0,0.973,0.402,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.618,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.541,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.691,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.335,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.249,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.366 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.361,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.322,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.193,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.451,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.0386,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.412,0.122 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.451,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.609,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.446,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.369,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.27,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.395,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.369,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.318,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.421,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.361,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.348,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.137,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.369,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.172,0.488 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.249,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.0515,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.175 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.14 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.148 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0.8,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0.9,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.488 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0.8,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0.7,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.336 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.163 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.13 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.66,0.0982,0,0.446,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.66,0.0982,0,0.0601,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,1,0,0.281,0.679,0.12,0,0.137,0 -0.333,0.234,0.234,0,0,0.3,0,0.281,0.679,0.12,0,0.249,0 -0.333,0.234,0.234,0,0,0,1,0.281,0.679,0.12,0,0.481,0 -0.333,0.234,0.234,0,0,0,1,0.281,0.679,0.12,0,0.335,0 -0.333,0.234,0.234,0,0,0,1,0.281,0.679,0.12,0,0.21,0 -0.333,0.234,0.234,0,0,0,0.2,0.281,0.679,0.12,0,0.468,0 -0.333,0.299,0.299,0.8,0,0,0,0.281,0.699,0.145,0,0.283,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0.223,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.669,0.669,0.4,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.488 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.244 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0.8,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0.7,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.143 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.204 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.488 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.153 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0612 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.171 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.0684 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0301,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0301,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0301,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.122 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.335 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0.56,0,0.0335 -1,0.316,0.316,0,1,0,0,0.14,0.719,0.0799,0.446,0,0 -1,0.183,0.183,0,1,0,0,0.281,0.64,0.049,0,0,0 -1,0.477,0.477,0,1,0,0,0,0.818,0.183,0.554,0,0 -1,0.477,0.477,0,1,0,0,0,0.818,0.183,0.582,0,0.122 -1,0.477,0.477,0.8,0.8,0,0,0,0.818,0.183,0,0,0 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,0.3,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.244 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.244 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.244 -0.667,0.334,0.334,0.8,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.192,0.192,1,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,1,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0.3,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.343,0.343,0,0,0.5,0,0.14,0.758,0.343,0,0.283,0 -0.667,0.343,0.343,0,0,0.9,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0.4,0.14,0.758,0.343,0,0.283,0 -0.667,0.343,0.343,0,0,0,1,0.14,0.758,0.343,0,0.296,0 -0.667,0.343,0.343,0,0,0,1,0.14,0.758,0.343,0,0.0386,0.244 -1,0.49,0.49,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.602,0.602,0,0,0,1,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0.5,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.366 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.147 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.122 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.154 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.161 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.244 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.536 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.034 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.206 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.366 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.25 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.176 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.211 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.136 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.068 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.173 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0691 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.134 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.244 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0.8,0,0,0,0.14,0.732,0.312,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0.244 -1,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,0.8,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.244 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.366 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.366 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.488 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.173 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0691 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.165 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.264 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.334 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.1 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0.3,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0.366 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0.4,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.549,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.416,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.185,0 -0.333,0.186,0.186,0,0,1,0,0.281,0.647,0.0724,0,0.309,0 -0.333,0.186,0.186,0,0,0.3,0,0.281,0.647,0.0724,0,0.258,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.137,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.223,0.366 -0.333,0.186,0.186,0,0,0,0.2,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.652,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.318,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.438,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.27,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.185,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.438,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.391,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.18,0.18,0.8,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0.7,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.366 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.669,0.669,0,0.5,0,0,0.14,0.849,0.366,0.467,0,0 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.31,0,0 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.587,0,0.244 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.484,0,0.244 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.538,0,0 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.677,0.677,0,0.9,0,0,0.14,0.836,0.51,0.538,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.457,0,0.244 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.462,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.321,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.288,0,0 -0.667,0.565,0.565,0,0.5,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.397,0,0.366 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.473,0,0 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.408,0,0 -0.667,0.307,0.307,0,0.3,0,0,0.281,0.686,0.322,0.538,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0.261,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0.31,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0.337,0,0 -0.667,0.548,0.548,0,1,0,0,0.14,0.836,0.273,0.304,0,0.122 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.185,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.185,0,0.165 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.505,0,0.376 -1,0.979,0.979,0,0.8,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.366 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.164 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0656 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.607 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.238 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0.8,0,0,0,0.14,0.719,0.074,0,0,0.203 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.183,0.183,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0.9,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.122 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.244 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.366 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.128 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.244 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.164 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.0657 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0.408,0,0 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0.359,0,0.122 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0,0,0.338 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0.337,0,0.67 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0.679,0,0.122 -0.667,0.418,0.418,0,1,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,1,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.418,0.418,0,0.4,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0.7,0,0,0,0.14,0.836,0.273,0,0,0.244 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0.418,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.418,0,0.244 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.386,0,0.488 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.37,0,0.244 -1,0.677,0.677,0,0.8,0,0,0.14,0.836,0.51,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.244 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.488 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.165 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.033 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.315 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.168 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.134 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.33 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.236 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.244 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.122 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.325 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.261 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.12 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.648 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.25 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.408 -0.667,0.313,0.313,0.8,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.181,0.181,1,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.244 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.146 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.177 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.248 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.235 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,1,0,0.281,0.647,0.0724,0,0.361,0 -0.333,0.186,0.186,0,0,1,0,0.281,0.647,0.0724,0,0.309,0 -0.333,0.186,0.186,0,0,0.9,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0.4,0.281,0.647,0.0724,0,0.223,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.361,0.244 -0.333,0.186,0.186,0,0,0,0.2,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.488 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0.241 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.366 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,0.4,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.143 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.255 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.159 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.0952 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.164 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.0327 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.302 -1,0.316,0.316,0.8,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.334,0.334,0.7,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.244 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.315,0.315,0.3,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0.2,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.285 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.61 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0.732 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.466 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.345,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.345,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.345,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0.417 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0.417 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.188 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0938 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.276 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.122 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.122 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.0625 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.247 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.331 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.13 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.525 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.153 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.061 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.231 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.164 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.131 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.5 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.244 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.366 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.167 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0669 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.366 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.706 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.068 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.448,0.448,0,0,0.5,0,0,0.818,0.459,0,0.0601,0 -1,0.448,0.448,0,0,1,0,0,0.818,0.459,0,0.532,0 -1,0.448,0.448,0,0,1,0,0,0.818,0.459,0,0,0 -1,0.448,0.448,0,0,0.4,0,0,0.818,0.459,0,0.361,0 -1,0.448,0.448,0,0,0,0.9,0,0.818,0.459,0,0,0 -1,0.448,0.448,0,0,0,1,0,0.818,0.459,0,0.249,0 -1,0.49,0.49,0.3,0,0,1,0,0.857,0.505,0,0,0.122 -1,0.49,0.49,1,0,0,0.3,0,0.857,0.505,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0.8,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0.122 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.244 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.122 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.223,0 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.309,0.244 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.258,0 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.361,0 -1,0.979,0.979,0,0,0.3,0,0,0.993,0.647,0,0.296,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0,0.122 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.296,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.395,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.296,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.0258,0 -1,0.991,0.991,0,0,0,1,0,0.973,0.851,0,0.361,0 -1,0.991,0.991,0,0,0,0.5,0,0.973,0.851,0,0.296,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.545,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.223,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.421,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.309,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.124,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.635,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.451,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.464,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.476,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.275,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.249,0.366 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.137,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.73,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0.506,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0.356,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0.73,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0.322,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0.223,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.309,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.296,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.348,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.273,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.682,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.433,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,1,0,0.281,0.608,0.026,0,0.584,0.335 -1,0.0833,0.0833,0,0,1,0,0.281,0.608,0.026,0,0.309,0.134 -1,0.0833,0.0833,0,0,1,0,0.281,0.608,0.026,0,0.309,0 -0.667,0.151,0.151,0,0,1,0,0.281,0.621,0.0355,0,0.112,0 -0.667,0.151,0.151,0,0,0.3,0,0.281,0.621,0.0355,0,0.0129,0 -0.667,0.151,0.151,0,0,0,1,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,1,0.281,0.621,0.0355,0,0.283,0 -0.667,0.151,0.151,0,0,0,1,0.281,0.621,0.0355,0,0.283,0 -0.667,0.151,0.151,0,0,0,0.2,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.464,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.391,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.485,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.309,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0.361,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0.258,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.122 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,0.8,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0.457,0,0 -0.667,0.669,0.669,1,1,0,0,0.14,0.849,0.366,0.391,0,0 -1,0.979,0.979,1,1,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0.9,1,0,0,0,0.993,0.541,0.522,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.451,0,0 -1,0.991,0.991,0,0.8,0,0,0,0.973,0.758,0.783,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.337,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.364,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.489,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.495,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.364,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.366 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.282 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.366 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.21,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.53,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0635 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.182 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.138 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.346 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.0346 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.246 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.61 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.534 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.268 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.198 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,1,0,0.14,0.836,0.273,0,0.494,0 -0.667,0.548,0.548,0,0,0.4,0,0.14,0.836,0.273,0,0.0858,0 -0.667,0.548,0.548,0,0,0,0.9,0.14,0.836,0.273,0,0,0.122 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.532,0 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.21,0 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.464,0 -0.667,0.669,0.669,0.3,0,0,0,0.14,0.849,0.366,0,0.215,0.29 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0.361,0.303 -0.667,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0.545,0 -0.667,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0.0386,0 -1,0.991,0.991,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0.3,0,0,0,0,0.973,0.758,0,0.0258,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.27,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.0386,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.433,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.204 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.255 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.244 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.261 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0.3,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.167 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.34 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.136 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.146 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.47 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.171 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.381 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.271 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.488 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.541 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.28 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.192 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.351 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.349 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.282 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.494 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.344 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.207 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.406 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -1,0.448,0.448,0,0,0,0,0,0.818,0.235,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0.8,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0.156 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.332 -1,0.798,0.798,0.9,0,0,0,0,0.973,0.402,0,0,0.0332 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.244 -0.667,0.363,0.363,0,0.5,0,0,0.281,0.699,0.263,0.44,0,0.122 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.549,0,0.162 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.739,0,0.0323 -1,0.823,0.823,0,1,0,0,0,0.934,0.936,0.348,0,0 -1,0.823,0.823,0,1,0,0,0,0.934,0.936,0,0,0.488 -1,0.823,0.823,0,0.3,0,0,0,0.934,0.936,0,0,0.601 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0899 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.252 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.342 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.549 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0.338 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.141 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.0706 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.338 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.389 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.244 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.404 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.265 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0.5,0,0,0.818,0.149,0,0.236,0.0799 -1,0.49,0.49,0,0,0.9,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0.4,0,0.818,0.149,0,0.0258,0 -1,0.49,0.49,0,0,0,1,0,0.818,0.149,0,0.433,0.366 -1,0.49,0.49,0,0,0,1,0,0.818,0.149,0,0,0 -1,0.477,0.477,0,0,0,1,0,0.818,0.168,0,0.361,0.142 -1,0.477,0.477,0,0,0,1,0,0.818,0.168,0,0.0386,0 -1,0.477,0.477,0,0,0,0.5,0,0.818,0.168,0,0.618,0.244 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0.296,0.204 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0.545,0.122 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0.309,0.122 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0.369,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.176 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.35 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0.308 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.418,0.418,0.8,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0.5,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.732 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.473 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.176 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.351 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.246 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.374 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0.3,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0.244 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0.3,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.299,0.299,0.8,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -1,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.122 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.122 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.244 -1,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.366 -1,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.157 -1,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.0941 -1,0.991,0.991,0.7,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.191 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.136 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.238 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.244 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,1,0,0.281,0.621,0.0327,0,0.0386,0 -1,0.183,0.183,0,0,1,0,0.281,0.64,0.049,0,0.309,0 -1,0.183,0.183,0,0,0.9,0,0.281,0.64,0.049,0,0.416,0 -1,0.183,0.183,0,0,0,0.4,0.281,0.64,0.049,0,0.476,0 -1,0.183,0.183,0,0,0,1,0.281,0.64,0.049,0,0.262,0 -1,0.183,0.183,0,0,0,1,0.281,0.64,0.049,0,0.223,0 -1,0.183,0.183,0,0,0,1,0.281,0.64,0.049,0,0,0 -1,0.192,0.192,0,0,0,1,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0.5,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0.8,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,1,0,0,0,0.281,0.647,0.0731,0,0,0.154 -1,0.192,0.192,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0.9,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.366 -1,0.343,0.343,0,0.5,0,0,0.14,0.732,0.168,0.478,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.511,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.489,0,0.122 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.337,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.293,0,0 -1,0.334,0.334,0,0.3,0,0,0.14,0.732,0.198,0,0,0.366 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -1,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.416 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.206 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0.244 -1,0.49,0.49,0.8,0,0,0,0,0.857,0.505,0,0,0.193 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0.3,0,0,0,0,0.857,0.505,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.649 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.0642 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.161 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.34 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.204 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.269 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.172 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.137 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.244 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.158 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.215 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.169 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.0674 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.338 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.0338 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,1,0,0.281,0.647,0.118,0,0.0987,0 -0.667,0.313,0.313,0,0,1,0,0.14,0.732,0.233,0,0.258,0.3 -0.667,0.313,0.313,0,0,1,0,0.14,0.732,0.233,0,0,0.268 -0.667,0.313,0.313,0,0,1,0,0.14,0.732,0.233,0,0.15,0 -1,0.445,0.445,0,0,0.3,0,0,0.818,0.34,0,0.258,0 -1,0.445,0.445,0,0,0,1,0,0.818,0.34,0,0.506,0.244 -1,0.445,0.445,0,0,0,0.6,0,0.818,0.34,0,0.234,0.51 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0.582,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.159,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.15,0.477 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.519,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.21,0.122 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.244 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.335,0.794 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.0987,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.122 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0.545,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.234,0.163 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.444,0.098 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.343,0 -1,0.49,0.49,0.3,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0.34 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0.0312 -0.667,0.418,0.418,0.8,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.122 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.244 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.244 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0.122 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.244 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.167 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.167 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.196 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.117 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.174 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0695 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.188 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.153 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.0306 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.732 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.366 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.105 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.318 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.104 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0634 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.144 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0.8,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0.3,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.643 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0622 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.326 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.353 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.0353 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.348 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.367 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.244 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.31 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.163 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.163 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0.8,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0.7,0,0,0,0.281,0.647,0.0724,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0.386,0,0 -0.333,0.182,0.182,0,1,0,0,0.281,0.647,0.0888,0.375,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.364,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.429,0,0 -0.667,0.343,0.343,0,0.8,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.488 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.242 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.161 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.0644 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.207 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.334 -1,0.253,0.253,0,0,0.5,0,0.14,0.68,0.0551,0.505,0.421,0.1 -1,0.253,0.253,0,1,0.9,0,0.14,0.68,0.0551,0.511,0,0 -0.667,0.253,0.253,0,1,0,0.4,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,1,0,1,0.14,0.68,0.0551,0.418,0,0.188 -0.667,0.253,0.253,0,1,0,1,0.14,0.68,0.0551,0.348,0,0 -0.667,0.316,0.316,0.8,0.8,0,1,0.14,0.719,0.074,0.348,0,0 -0.667,0.316,0.316,1,0,0,1,0.14,0.719,0.074,0.299,0,0 -0.667,0.316,0.316,1,1,0,1,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0.3,1,0,1,0.14,0.719,0.074,0.37,0,0 -0.667,0.316,0.316,0,1,0,0.1,0.14,0.719,0.074,0.332,0,0 -0.667,0.316,0.316,0,1,0,0,0.14,0.719,0.074,0.484,0,0 -0.667,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.723,0,0 -0.667,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0.4,0,0,0.14,0.732,0.0895,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.429,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.413,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.467,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.538,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.19,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.19,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0.5,0,0,0.281,0.647,0.0759,0.402,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.717,0,0.122 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.679,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.242,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.242,0,0 -0.333,0.181,0.181,0,0.3,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0.3,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.488 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.161 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0624 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.187 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.238 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.034 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0651 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.26 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.225 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.154 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.431 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.374 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.169 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0671 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.336 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.216 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0.5,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.736,0.128,0,0,0.191 -0.667,0.316,0.316,1,0,0,0,0.14,0.736,0.128,0,0,0.274 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.178,0.178,0.1,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.244 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.488 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.595,0.595,0.5,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.246 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.105 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.366 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0.196,0,0.239 -0.667,0.67,0.67,0,0.7,0,0,0.14,0.841,0.507,0.196,0,0 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.435,0,0 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.342,0,0.348 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.402,0,0.0691 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.576,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.233 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.247 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.141 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0438 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.246 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.176 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.122 -0.667,0.181,0.181,1,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0.5,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.366 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0.258,0,0.122 -1,0.674,0.674,0,0.7,0,0,0,0.98,0.399,0.258,0,0 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.397,0,0 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.489,0,0.122 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.424,0,0.122 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.516,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.22,0,0.488 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.22,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.488 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.122 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.122 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.366 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.189 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.1 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0.2,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.0987,0 -0.667,0.0495,0.0495,0,0,0.3,0,0.421,0.562,0.0159,0,0.0987,0 -0.667,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -1,0.246,0.246,0,0,0,1,0.281,0.636,0.188,0,0.446,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0.571,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0.738,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0.0386,0 -1,0.116,0.116,0,0,0,0.3,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.0999 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.333 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0.8,0,0.281,0.61,0.0215,0,0.296,0 -1,0.0513,0.0513,0,0,1,0,0.281,0.61,0.0215,0,0.627,0 -1,0.0513,0.0513,0,0,1,0,0.281,0.61,0.0215,0,0.605,0 -1,0.0513,0.0513,0,0,0.2,0.1,0.281,0.61,0.0215,0,0.073,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0.369,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0.309,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0,0 -1,0.116,0.116,0,0,0,0.6,0.14,0.658,0.0299,0,0.249,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.0299,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0.106 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0.177 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.15 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0.446,0,0.1 -0.667,0.177,0.177,0,0.8,0,0,0.281,0.649,0.145,0.223,0,0 -0.667,0.177,0.177,0,1,0,0,0.281,0.649,0.145,0.489,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.736,0.272,0.505,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.736,0.272,0.429,0,0 -0.667,0.305,0.305,0,0.9,0,0,0.14,0.736,0.272,0.467,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.207,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.207,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0.1,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.164,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.179,0,0,0 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0.122 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.488 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.458 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.28 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.242 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.0349 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.471 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.0349 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0.13 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0.122 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0.262,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0.185,0 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.122 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.222 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.1 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.268 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.0926 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.278 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.122 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.599 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0323 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.259 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.122 -0.667,0.322,0.322,0.6,0,0,0,0.14,0.762,0.34,0,0,0.61 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0.4,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.488 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.366 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.366 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.092 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.214 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.0633 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.127 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.232 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0662 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.139 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.315 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.355 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.106 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.244 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0682 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0341 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.284 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0473 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.377 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.462 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0.7,0,0.14,0.736,0.0889,0,0.0987,0.229 -0.667,0.33,0.33,0,0,1,0,0.14,0.736,0.0889,0,0.0987,0.0983 -0.667,0.33,0.33,0,0,1,0,0.14,0.736,0.0889,0,0.605,0.122 -0.667,0.337,0.337,0,0,1,0,0.14,0.736,0.104,0,0.433,0 -0.667,0.337,0.337,0,0,0.8,0,0.14,0.736,0.104,0,0.27,0.0695 -0.667,0.337,0.337,0,0,0,0.5,0.14,0.736,0.104,0,0.348,0.47 -0.667,0.337,0.337,0,0,0,1,0.14,0.736,0.104,0,0.494,0.0695 -0.667,0.337,0.337,0,0,0,1,0.14,0.736,0.104,0,0.27,0 -0.667,0.337,0.337,0,0,0,1,0.14,0.736,0.104,0,0.0258,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.249,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0.8,0.281,0.649,0.066,0,0.498,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.395,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.579,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.395,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.322,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.309,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.0386,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.322,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.258,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.137,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.369,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.532,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.249,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.296,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.172,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.27,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.27,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.335,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.0987,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.459,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.185,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.258,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.223,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.609,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.172,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.558,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.0644,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.112,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.236,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.815,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.429,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.322,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.356,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.361,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.584,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.609,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.172,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.224 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0962 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0.5,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.243 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0.1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0657 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.131 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.182 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.245 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0701 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.128 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.481 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.417 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.135 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.0335 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.268 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.37 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.427 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.325 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.432 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.477 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.105 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.134 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.201 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0622 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.215 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.366 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.228 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0325 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0.1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.243 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.244 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0668 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.234 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0678 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0.413 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0.284 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.237 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0.2,0,0.14,0.723,0.0735,0,0,0.132 -0.667,0.313,0.313,0,0,1,0,0.14,0.723,0.0735,0,0.644,0.0661 -0.667,0.313,0.313,0,0,1,0,0.14,0.723,0.0735,0,0.322,0 -0.667,0.313,0.313,0,0,0.8,0,0.14,0.723,0.0735,0,0.285,0 -0.667,0.313,0.313,0,0,0,0.5,0.14,0.723,0.0735,0,0.135,0.122 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0.137,0.122 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0.455,0 -0.333,0.19,0.19,0,0,0,1,0.281,0.649,0.0524,0,0.236,0 -0.333,0.19,0.19,0,0,0,1,0.281,0.649,0.0524,0,0.27,0 -0.333,0.19,0.19,0,0,0,0.2,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.382,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.704,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.335,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.197,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.283,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.455,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.322,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.309,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,1,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.481,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.366 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0645 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.129 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.244 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0.19,0,0 -0.333,0.208,0.208,0,0.7,0,0,0.281,0.682,0.119,0.19,0,0 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0.56,0,0 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0.576,0,0.122 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0.511,0,0 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0,0,0.227 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0.283,0,0.675 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.366 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.435,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.571,0,0.265 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.353,0,0.188 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.366 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.49 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.401 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.063 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.189 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.141 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0704 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.126 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.268 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0.5,0,0,0,0,0.745,0.0742,0,0,0.367 -1,0.351,0.351,1,0,0,0,0,0.745,0.0742,0,0,0.137 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.326,0,0.122 -0,0.0495,0.0495,0,0.7,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.603,0,0.122 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.793,0,0 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.348,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.245,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.582,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.397,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.636,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.554,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.185,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.185,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.647,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.386,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.538,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0682 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.341 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.204 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0577 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0866 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0.7,0,0.421,0.562,0.0159,0,0.361,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.296,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.27,0 -0.333,0.178,0.178,0,0,0.3,0,0.281,0.649,0.0882,0,0.0601,0 -0.333,0.178,0.178,0,0,0,1,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,1,0.281,0.649,0.0882,0,0.0601,0.122 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0.309,0.122 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0,0.244 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0.567,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0.369,0 -0.333,0.186,0.186,0,0,0,0.3,0.281,0.662,0.0976,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.124,0.122 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0.0987,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0.197,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0.481,0.122 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0.0129,0.122 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0.373,0 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0.554,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0.21,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -0.667,0.466,0.466,0.2,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0651 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.35 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.366 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.24 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0701 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.175 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.165 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0658 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.329 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.167 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0661 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.33 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0661 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.122 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.122 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.61 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0.122 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.244 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.131 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.667,0.466,0.466,1,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.0912 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.0608 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0.6,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.189 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.234 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.302 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0504 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0641 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.16 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.389 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0321 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0671 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.29 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0646 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0969 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.533,0,0 -1,0.0495,0.0495,0,0.8,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.549,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.554,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.516,0,0 -1,0.0495,0.0495,0,0.9,0,0,0.421,0.562,0.0181,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.193,0.193,0.6,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.193,0.193,1,0,0,0,0.281,0.649,0.0923,0,0,0.0976 -1,0.193,0.193,1,0,0,0,0.281,0.649,0.0923,0,0,0.0976 -1,0.193,0.193,0.4,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.242 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.138 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.0974 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.162 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0.435,0,0 -0.667,0.305,0.305,0,0.8,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.736,0.272,0.402,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.649,0.145,0.402,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.649,0.145,0.478,0,0 -0.333,0.177,0.177,0,0.9,0,0,0.281,0.649,0.145,0.283,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.315,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.462,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.723,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.467,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.234,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0.435,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0.745,0,0 -0.333,0.186,0.186,0.6,0,0.8,0,0.281,0.662,0.179,0,0.369,0 -0.333,0.186,0.186,0.9,0,0.7,0,0.281,0.662,0.179,0,0.335,0 -0.333,0.186,0.186,0,0,0,0.6,0.281,0.662,0.179,0,0.558,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.179,0,0.296,0 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.258,0.244 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.249,0 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.348,0 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.545,0.122 -1,0.526,0.526,0,0,0,0.7,0,0.922,0.527,0,0.197,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0.519,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.27,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.283,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.592,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.201 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.0593 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.363 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.366 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.366 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.122 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.371 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.244 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.122 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.366 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0.3,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,1,0,0,0.784,0.578,0,0.249,0 -1,0.638,0.638,0,0,0.2,0.1,0,0.784,0.578,0,0.283,0 -1,0.638,0.638,0,0,0,1,0,0.784,0.578,0,0.0601,0.106 -1,0.638,0.638,0,0,0,1,0,0.784,0.578,0,0.283,0.106 -1,0.638,0.638,0,0,0,1,0,0.784,0.578,0,0.0515,0 -1,0.183,0.183,0,0,0,1,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0.6,0.14,0.671,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.188 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.0994 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.0994 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.35 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.366 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.244 -0.667,0.189,0.189,0,0,0.8,0,0.281,0.649,0.108,0,0.296,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.584,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.579,0 -0.333,0.0495,0.0495,0,0,0.2,0.1,0.421,0.562,0.0181,0,0.446,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.27,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.258,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.283,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.369,0 -0.667,0.307,0.307,0,0,0,1,0.14,0.736,0.231,0,0,0.122 -0.667,0.307,0.307,0,0,0,0.8,0.14,0.736,0.231,0,0.567,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.0987,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.366 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.0258,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.369,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.0258,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.0129,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.395,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.0987,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.0386,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.249,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.249,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.21,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.0601,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.249,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.343,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.21,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.163,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.506,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.506,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0.322,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0.0987,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.309,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.644,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.249,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.27,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.322,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.322,0.366 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.122 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.124,0.488 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.21,0 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.519,0.122 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.185,0 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.249,0.122 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.0386,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.27,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.459,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.236,0 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.366 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0.485,0 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0.283,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0.27,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.0626 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.0605 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.121 -1,0.0495,0.0495,0.5,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0649 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.224 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.122 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.34 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.258 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.61 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.122 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,0.5,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.244 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,1,0,0,0,0.14,0.841,0.271,0,0,0.244 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.61 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,1,0,0.2,0,0.14,0.854,0.364,0,0,0.187 -0.667,0.595,0.595,0.1,0,1,0,0.14,0.854,0.364,0,0.506,0.0651 -0.667,0.67,0.67,0.5,0,1,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,1,0,0.8,0,0.14,0.841,0.507,0,0,0.122 -0.667,0.67,0.67,0,0,0,0.5,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.244 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.239 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0341 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0703 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.233 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.0639 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.16 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.482 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.242 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.243 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.102 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.224 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.244 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.366 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.239 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.341 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.136 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0697 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.209 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.5,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,1,0,0.7,0,0.281,0.623,0.0353,0,0.137,0 -0.667,0.15,0.15,1,0,1,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,1,0,1,0,0.281,0.623,0.0353,0,0.0386,0 -0.667,0.181,0.181,1,0,1,0,0.281,0.642,0.0447,0,0.348,0 -0.667,0.181,0.181,1,0,0.8,0,0.281,0.642,0.0447,0,0.485,0 -0.667,0.181,0.181,1,0,0,0.5,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,1,0,0,1,0.281,0.642,0.0447,0,0.322,0 -0.667,0.181,0.181,1,0,0,1,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,1,0,0,1,0.281,0.642,0.0447,0,0.283,0 -0.667,0.33,0.33,1,0,0,1,0.14,0.736,0.0889,0,0.309,0.228 -0.667,0.33,0.33,1,0,0,0.2,0.14,0.736,0.0889,0,0.236,0.13 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.472,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.498,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.395,0.0698 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.0601,0.0349 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0.137,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0.27,0 -0.333,0.193,0.193,1,0,0,0,0.281,0.649,0.0601,0,0.395,0.233 -0.333,0.193,0.193,1,0,0,0,0.281,0.649,0.0601,0,0.481,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.446,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.532,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.667,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.32,0.244 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.657,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.309,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.309,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.61 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.61 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.232 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.565 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0615 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0615 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.386 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.066 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0.242,0,0 -0.333,0.19,0.19,0,0.7,0,0,0.281,0.649,0.0524,0.242,0,0.122 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.435,0,0.122 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.375,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.424,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.538,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.255,0,0 -0.333,0.193,0.193,0,0.6,0,0,0.281,0.649,0.0601,0.511,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0.5,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0.5,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0611 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0306 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.868,0.868,0.5,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0,0.244 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.61 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0.6,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.243 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0694 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.61 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0.7,0,0.281,0.61,0.0183,0,0.0987,0 -1,0.0495,0.0495,1,0,1,0,0.281,0.61,0.0183,0,0.0987,0 -1,0.0495,0.0495,1,0,1,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,1,0,1,0,0.281,0.61,0.0183,0,0.249,0 -1,0.0495,0.0495,1,0,0.8,0,0.281,0.61,0.0183,0,0.309,0 -1,0.0495,0.0495,1,0,0,0.5,0.281,0.61,0.0183,0,0.356,0 -1,0.0495,0.0495,0.7,0,0,1,0.281,0.61,0.0165,0,0.258,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0.6,0.281,0.61,0.0165,0,0.275,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.0627 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.122 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0.136 -1,0.444,0.444,0,0,0.2,0,0,0.804,0.102,0,0,0 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0.288,0 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0.236,0 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0,0.0676 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0.67,0.203 -1,0.47,0.47,0,0,0.3,0,0,0.824,0.125,0,0.296,0 -1,0.47,0.47,0,0,0,1,0,0.824,0.125,0,0.249,0 -1,0.47,0.47,0,0,0,1,0,0.824,0.125,0,0.597,0 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0.446,0.191 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0.7,0.14,0.736,0.0889,0,0.395,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.185,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.223,0.0665 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.249,0.2 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.283,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.112,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.27,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.236,0.171 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.288,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.768,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0515,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.755,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.223,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.382,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.283,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.592,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.137,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.0386,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.421,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.408,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.455,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.309,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.618,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.618,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0.25,0,0 -0.667,0.178,0.178,0,0.7,0,0,0.281,0.649,0.0882,0.25,0,0 -0.667,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.516,0,0 -0.667,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.37,0,0 -0.667,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.37,0,0 -0.667,0.322,0.322,0,1,0,0,0.14,0.762,0.179,0.576,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.366 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,0.5,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.281,0.701,0.144,0,0,0.122 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -1,0.67,0.67,1,0,0,0,0.14,0.841,0.507,0,0,0.61 -1,0.67,0.67,1,0,0,0,0.14,0.841,0.507,0,0,0.366 -1,0.98,0.98,0.2,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.366 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.244 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0.0645 -1,0.625,0.625,1,0,0,0,0.14,0.815,0.625,0,0,0.226 -1,0.727,0.727,0.6,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0958 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.21 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.133 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -1,0.328,0.328,0,0.3,0,0,0.14,0.736,0.197,0.397,0,0 -1,0.328,0.328,0,1,0,0,0.14,0.736,0.197,0.386,0,0 -1,0.328,0.328,0,1,0,0,0.14,0.736,0.197,0.31,0,0 -1,0.328,0.328,0,1,0.8,0,0.14,0.736,0.197,0.462,0.223,0 -1,0.316,0.316,0,1,0.7,0,0.14,0.736,0.216,0,0,0 -1,0.316,0.316,0,0.4,0,0.6,0.14,0.736,0.216,0,0.481,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.137,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.408,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.395,0 -0.667,0.178,0.178,0,0,0,1,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0.7,0.281,0.649,0.125,0,0.369,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.172,0.244 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.421,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.67,0.122 -0.667,0.178,0.178,0.6,0,0,0,0.281,0.649,0.125,0,0.361,0.244 -0.667,0.177,0.177,1,0,0,0,0.281,0.649,0.145,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.649,0.145,0,0.567,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.649,0.145,0,0.137,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0.296,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.545,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.519,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.369,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.433,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.0987,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.73,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.258,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.197,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.283,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.395,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.459,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.309,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.488 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.073,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.0858,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.498,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.236,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.592,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.249,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.15,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0.373,0 -1,0.868,0.868,0,0.3,0,0,0,1,0.642,0.342,0.296,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.332,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.315,0.408,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.489,0.124,0 -1,0.98,0.98,0,1,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0.4,0,0,0,0.98,0.845,0,0.0987,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.0386,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.275,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.296,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.258,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.433,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.223,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.592,0.366 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.249,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.395,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.579,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.322,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.481,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.61 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.122 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.102 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0342 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.269 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.303 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.468,0.468,0,0,0.3,0,0,0.824,0.287,0,0,0 -1,0.468,0.468,0,0,1,0,0,0.824,0.287,0,0.335,0 -1,0.468,0.468,0,0,1,0,0,0.824,0.287,0,0.137,0 -1,0.468,0.468,0,0,0.7,0,0,0.824,0.287,0,0.258,0 -1,0.468,0.468,0,0,0,0.6,0,0.824,0.287,0,0.0386,0 -1,0.468,0.468,0,0,0,1,0,0.824,0.287,0,0.185,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0.21,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0.249,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0.485,0 -1,0.449,0.449,0,0,0,0.7,0,0.824,0.315,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.824,0.315,0,0.395,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.275,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.275,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.618,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.366 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -1,0.305,0.305,0.6,0,0,0,0.14,0.736,0.272,0,0,0 -1,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0,0.122 -1,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0,0.366 -1,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0,0.366 -1,0.307,0.307,1,0,0,0,0.14,0.736,0.31,0,0,0.366 -1,0.307,0.307,1,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.307,0.307,0.5,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.122 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.122 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.366 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.346 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.325 -1,0.674,0.674,0,0.3,0,0,0,0.98,0.545,0.435,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.348,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.272,0,0.122 -1,0.868,0.868,0,1,0,0,0,1,0.642,0,0,0.755 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.37,0,0.154 -1,0.868,0.868,0,0.4,0,0,0,1,0.642,0,0,0.132 -1,0.868,0.868,0,0,0,0,0,1,0.642,0.56,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0.375,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0.424,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.196 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.462 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.16 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.488 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.376 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.0318 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0654 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.262 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.206 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.138 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.415 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.1 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.201 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.366 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.366 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.185 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0627 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.274 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.206 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.189 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0354 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.177 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.067 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.201 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.24 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.351 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.315 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.229 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.131 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.2 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0.0667 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0.7,0,0,0,0.281,0.649,0.0524,0,0,0.0917 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.244 -0.333,0.193,0.193,0,0,0.2,0,0.281,0.649,0.0601,0,0,0.0692 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.528,0.208 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.361,0 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.0258,0 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.369,0.261 -0.333,0.189,0.189,0,0,0.3,0,0.281,0.649,0.066,0,0.0386,0.0694 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.309,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.283,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.605,0 -0.333,0.189,0.189,0,0,0,0.7,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.0987,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.361,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.0987,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.309,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.605,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.631,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.369,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.296,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.369,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0.135 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.536 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.033 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.122 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.366 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.241 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.138 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.244 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0.2,0,0.421,0.562,0.0159,0,0,0.0619 -1,0.0495,0.0495,1,0,1,0,0.421,0.562,0.0159,0,0.335,0.124 -1,0.351,0.351,1,0,1,0,0,0.745,0.0742,0,0.532,0 -1,0.351,0.351,1,0,1,0,0,0.745,0.0742,0,0.309,0 -1,0.351,0.351,1,0,1,0,0,0.745,0.0742,0,0,0 -0.667,0.251,0.251,1,0,0.3,0,0.14,0.684,0.0548,0,0,0.162 -0.667,0.251,0.251,1,0,0,1,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,1,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,1,0,0,1,0.14,0.723,0.0735,0,0.296,0.0698 -0.667,0.313,0.313,1,0,0,1,0.14,0.723,0.0735,0,0.309,0.349 -0.667,0.313,0.313,1,0,0,0.7,0.14,0.723,0.0735,0,0.21,0.174 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0.223,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0.373,0 -0.333,0.19,0.19,0.8,0,0,0,0.281,0.649,0.0524,0,0.322,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.283,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.0987,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.249,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.0858,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.296,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.335,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.137,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.395,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.0515,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.481,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0987,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0987,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0601,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.708,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.283,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.296,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.446,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.262,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.258,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.876,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.249,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.0601,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.249,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.528,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.258,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.296,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.567,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.27,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.704,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.373,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.283,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.532,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.309,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.356,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.567,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.185,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0.5,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0696 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.139 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.197 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0986 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.191 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0.5,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,1,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,1,0,0,0,0.14,0.658,0.036,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.17 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.667,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.667,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.0694 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0,0.278 -1,0.674,0.674,0.6,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.192 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.139 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.366 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.237 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.203 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0,0,0 -1,0.638,0.638,1,0,0,0,0,0.784,0.532,0,0,0 -1,0.638,0.638,1,0,0,0,0,0.784,0.532,0,0,0.0641 -1,0.638,0.638,1,0,0,0,0,0.784,0.532,0,0,0.0962 -1,0.442,0.442,1,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,1,0,0,0,0.14,0.71,0.36,0,0,0.122 -1,0.246,0.246,0.1,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.242 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0693 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0666 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0333 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.366 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,0.5,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,1,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,1,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,0.1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.244 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0.6,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -0.667,0.15,0.15,1,0,0,0,0.281,0.623,0.0326,0,0,0 -0.667,0.15,0.15,1,0,0,0,0.281,0.623,0.0326,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.122 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.22 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.594 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.369 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.243 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.194 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.355 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.295 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.226 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.173 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.24 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,1 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.195 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.142 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.0958 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.0639 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.22 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0.1,0,0.3,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,1,0,1,0,0.14,0.802,0.358,0,0.348,0 -0.667,0.367,0.367,1,0,1,0,0.14,0.802,0.358,0,0.567,0 -0.667,0.466,0.466,1,0,1,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,1,0,1,0,0.14,0.841,0.369,0,0.494,0 -1,0.674,0.674,1,0,0.2,0.1,0,0.98,0.545,0,0.197,0 -1,0.674,0.674,1,0,0,1,0,0.98,0.545,0,0,0.366 -1,0.674,0.674,1,0,0,1,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,1,0,0,1,0,0.98,0.545,0,0,0 -1,0.868,0.868,1,0,0,1,0,1,0.642,0,0,0 -1,0.868,0.868,0.1,0,0,0.6,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0.8,0,0,1,0.642,0,0.073,0 -1,0.868,0.868,0,0,1,0,0,1,0.642,0,0.27,0 -1,0.868,0.868,0,0,1,0,0,1,0.642,0,0.348,0 -1,0.868,0.868,0,0,1,0,0,1,0.642,0,0.283,0 -1,0.98,0.98,0,0,0.7,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0.6,0,0.98,0.845,0,0.249,0 -1,0.98,0.98,0,0,0,1,0,0.98,0.845,0,0.236,0 -1,0.98,0.98,0,0,0,1,0,0.98,0.845,0,0.137,0.122 -1,0.98,0.98,0,0,0,0.5,0,0.98,0.845,0,0,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.0601,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.73,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.361,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.236,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.335,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0.348,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.217 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.0949 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.236 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.202 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.206 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0997 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.266 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.122 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.488 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.488 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.122 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.488 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.122 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.488 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.244 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.366 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0.8,0,0.14,0.854,0.434,0,0.249,0 -0.667,0.67,0.67,0,0,0.7,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0.6,0.14,0.841,0.569,0,0.519,0 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0.366 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0 -0.667,0.625,0.625,0,0,0,1,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0.7,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.283 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.283 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0.0657 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0.328 -1,0.15,0.15,0.5,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,1,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,1,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,0.5,0,0,0,0,0.706,0.0461,0,0,0.162 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.0611 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.204 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.136 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.139 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.519 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.206 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.172 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.171 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.205 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.366 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0671 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.168 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.466 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0635 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.244 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.366 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0.2,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,1,0,0,0.941,0.929,0,0.618,0 -1,0.913,0.913,0,0,1,0,0,0.941,0.929,0,0.369,0 -1,0.913,0.913,0,0,0.8,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0.5,0,0.941,0.929,0,0.258,0.122 -1,0.727,0.727,0,0,0,1,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,1,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,1,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,1,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0.2,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.233 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.0691 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.345 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0.0345 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0673 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.303 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0324 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.13 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0503 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.201 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.431 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0.5,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,1,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0.5,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0.255,0,0.244 -1,0.868,0.868,0,0.7,0,0,0,1,0.537,0.255,0,0.122 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.5,0,0.122 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.435,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.522,0,0 -1,0.98,0.98,0,1,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.248,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.496,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.614,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.375,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.397,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0.375,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0.5,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0.223,0,0 -1,0.727,0.727,1,0.7,0,0,0,0.863,0.88,0.223,0,0 -1,0.727,0.727,0.6,1,0,0,0,0.863,0.88,0.505,0,0 -1,0.727,0.727,0,1,0,0,0,0.863,0.88,0.603,0,0.122 -1,0.275,0.275,0,1,0,0,0.281,0.662,0.304,0.429,0,0 -1,0.246,0.246,0,1,0,0,0.281,0.636,0.188,0.408,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0.37,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0.386,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0.321,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.168,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.168,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.56,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.69,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.342,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.37,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.277,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.717,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.288,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.288,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0674 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.135 -0.667,0.251,0.251,0.5,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.366 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0.244 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.205 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.0308 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.154 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.33,0.33,0.6,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.165 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.0992 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0.2,0,0,0.281,0.649,0.0882,0.424,0,0 -0.333,0.178,0.178,0,1,0,0,0.281,0.649,0.0882,0.462,0,0 -0.333,0.178,0.178,0,1,0,0,0.281,0.649,0.0882,0.451,0,0.122 -0.333,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.592,0,0 -0.333,0.186,0.186,0,0.5,0,0,0.281,0.662,0.0976,0.283,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.366 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.304,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.304,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.353 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.0707 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0.3,0,0,0,0.14,0.559,0.0314,0,0,0.167 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0.267 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0.0688 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.172 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.175 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.245 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.406 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.162 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0.5,0,0.14,0.621,0.0764,0,0.296,0 -0.667,0.318,0.318,0,0,1,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.318,0.318,0,0,1,0,0.14,0.621,0.0764,0,0.223,0 -0.667,0.318,0.318,0,0,1,0,0.14,0.621,0.0764,0,0.348,0.488 -0.333,0.184,0.184,0,0,0.9,0,0.281,0.591,0.0462,0,0.421,0.244 -0.333,0.185,0.185,0,0,0,0.4,0.281,0.591,0.0527,0,0.21,0 -0.333,0.185,0.185,0,0,0,1,0.281,0.591,0.0527,0,0.159,0 -0.333,0.185,0.185,0,0,0,1,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0.7,0.281,0.591,0.0527,0,0.459,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0.354,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0.217,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0.236,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.366 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.61 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0.413,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.321,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.226,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.226,0,0 -0.667,0.395,0.395,0.8,1,0,0,0.14,0.704,0.232,0.353,0,0.244 -0.667,0.507,0.507,0,0.6,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.538,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.571,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.549,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.429,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.663,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.234,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.176 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.211 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.488 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.467 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.173 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.0345 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.269 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.279 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.244 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.366 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0.8,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0.1,0.5,0,0,0.281,0.591,0.0658,0.603,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.527,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.5,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.288,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.288,0,0 -0.333,0.171,0.171,0,0.1,0,0,0.281,0.591,0.0658,0.321,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0.321,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.115 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.162 -0.667,0.395,0.395,0.3,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.244 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.615 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.164 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0328 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.114 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.203 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.338 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.135 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.612 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.102 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.237 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.304 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.344 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.435 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.173 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.311 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.162 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0972 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.157 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.0656 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.463 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.0681 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.244 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.281 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0651 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0976 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.171 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.316 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.122 -0.333,0.171,0.171,0,0.5,0,0,0.281,0.591,0.108,0.62,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.108,0.516,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.108,0.245,0,0.122 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.108,0.277,0,0.144 -0.667,0.292,0.292,0,1,0.5,0,0.14,0.621,0.198,0.603,0.0987,0.122 -1,0.409,0.409,0,1,1,0,0,0.651,0.34,0.223,0,0.244 -1,0.409,0.409,0,0.6,1,0,0,0.651,0.34,0.223,0.451,0.526 -1,0.409,0.409,0.3,0,0.4,0,0,0.651,0.34,0,0.292,0.122 -0.667,0.289,0.289,1,0,0,0.9,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,1,0,0,1,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,1,0,0,1,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,1,0,0,1,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,1,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,1,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0.3,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.244 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0.3,0,0,0,0.14,0.642,0.291,0,0,0.366 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0.1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0.799,0,0 -0.667,0.326,0.326,0,1,0,0,0.14,0.673,0.305,0.277,0,0 -0.667,0.326,0.326,0,1,0,0,0.14,0.673,0.305,0.554,0,0 -0.667,0.326,0.326,0,1,0,0,0.14,0.673,0.305,0.386,0,0 -0.667,0.395,0.395,0,1,0,0,0.14,0.704,0.315,0.283,0,0 -0.667,0.395,0.395,0,0.6,0,0,0.14,0.704,0.315,0.342,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.366 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0.5,0,0.14,0.704,0.315,0.321,0.283,0 -0.667,0.507,0.507,0,1,1,0,0.14,0.714,0.371,0.391,0.195,0.122 -0.667,0.507,0.507,0,1,1,0,0.14,0.714,0.371,0,0.47,0 -0.667,0.507,0.507,0,1,0.4,0,0.14,0.714,0.371,0.56,0.567,0.122 -0.667,0.507,0.507,0,1,0,0.9,0.14,0.714,0.371,0.25,0.418,0.366 -0.667,0.507,0.507,0,1,0,1,0.14,0.714,0.371,0.304,0.431,0 -1,0.736,0.736,0,1,0,1,0,0.79,0.547,0,0,0 -1,0.895,0.895,0,0.1,0,1,0,0.774,0.719,0.255,0,0 -1,0.895,0.895,0,0,0,0.7,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0.668,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0.245,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0.245,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0.5,0,0,0,0.682,0.78,0.304,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.533,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.473,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.533,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.315,0,0 -1,0.5,0.5,0,1,0,0,0,0.62,0.492,0.196,0,0 -1,0.5,0.5,0,0.6,0,0,0,0.62,0.492,0.196,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.408,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.277,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.174,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.174,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.391,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.337,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.408,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.522,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.424,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.223,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.62,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.222 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0923 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0923 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.228 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.0958 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.128 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.172 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.141 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.206 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.0344 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.154 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,1,0,0.421,0.562,0.0181,0,0.236,0 -0.667,0.0495,0.0495,1,0,0.4,0,0.421,0.562,0.0181,0,0.137,0 -0.667,0.171,0.171,1,0,0,0.9,0.281,0.591,0.108,0,0.27,0 -0.667,0.171,0.171,1,0,0,1,0.281,0.591,0.108,0,0.601,0 -0.667,0.171,0.171,1,0,0,1,0.281,0.591,0.108,0,0.202,0 -0.667,0.171,0.171,1,0,0,1,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0.7,0.281,0.591,0.108,0,0.322,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0.0129,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.249,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.21,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.382,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.309,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.244 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.122 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,1,0,0.14,0.642,0.526,0,0.532,0 -0.667,0.555,0.555,0,0,0.4,0,0.14,0.642,0.526,0,0.459,0 -0.667,0.35,0.35,0,0,0,0.9,0.14,0.6,0.334,0,0.348,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.6,0.334,0,0.185,0 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0.0987,0 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0,0.244 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0.309,0 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0.348,0 -1,0.249,0.249,0,0,0,0.3,0,0.573,0.224,0,0.27,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0.309,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0.0601,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0.438,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0.533,0,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.206,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.567,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.283,0.61 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.386,0.122 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.335,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.506,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.433,0.122 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.421,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.309,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0.361,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.258,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.283,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.258,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.0601,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.185,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.283,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.172,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.189,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.468,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.481,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0.3,0,0,0,0.281,0.571,0.0316,0,0,0.122 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0316,0,0,0.122 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.122 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0.9,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0.5,0,0,0.14,0.621,0.0895,0.228,0,0 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.457,0,0.176 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.413,0,0.282 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.342,0,0 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0.1,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.204 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.415 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.343 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.343 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.244 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.488 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.165 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0.277 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.29,0.29,0,0,1,0,0.14,0.621,0.137,0,0.0601,0 -0.667,0.29,0.29,0,0,1,0,0.14,0.621,0.137,0,0.21,0 -0.667,0.29,0.29,0,0,0.9,0,0.14,0.621,0.137,0,0.506,0.244 -0.667,0.298,0.298,0,0,0,0.4,0.14,0.642,0.153,0,0.519,0.366 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.27,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.296,0.122 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.348,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.348,0 -0.667,0.298,0.298,0,0,0,0.2,0.14,0.642,0.153,0,0.0129,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.185,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.369,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0.8,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0.5,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.366 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.457,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.37,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.332,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.62,0,0 -0.667,0.555,0.555,0,0.6,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.864,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.261,0,0.366 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.56,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.625,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.462,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.488 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.153 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.405 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.244 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.244 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.194 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.513,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.577,0 -0.333,0.181,0.181,0,0,1,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,1,0,0.281,0.591,0.0578,0,0.0987,0 -0.333,0.181,0.181,0,0,0.4,0,0.281,0.591,0.0578,0,0.348,0.488 -0.333,0.181,0.181,0,0,0,0.9,0.281,0.591,0.0578,0,0.309,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.665,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.644,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.464,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.292,0 -0.333,0.175,0.175,0,0,0,0.3,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.348,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.309,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.258,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.288,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.0258,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.21,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.382,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.283,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.249,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.369,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.0987,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.408,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.258,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.382,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.348,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.073,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.558,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.258,0.122 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.618,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.15,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.137,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.137,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.0987,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.395,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.283,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.567,0.567,0,0.5,0,0,0,0.774,0.34,0.451,0.609,0 -1,0.567,0.567,0,1,0,0,0,0.774,0.34,0.446,0.124,0 -1,0.567,0.567,0,1,0,0,0,0.774,0.34,0.37,0,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.364,0.223,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.255,0.27,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.255,0.159,0 -1,0.736,0.736,0,0.6,0,0,0,0.79,0.457,0.582,0.249,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.364,0.408,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.603,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.506,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.348,0.373,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.402,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.476,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.353,0.438,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.462,0.665,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.223,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.31,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.533,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.37,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.717,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.353,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.543,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.293,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.511,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.56,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.315,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.516,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.543,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.511,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0.511,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0.8,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0.6,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.333 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.173 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0.3,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.244 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.608 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.102 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.171 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.244 -0.333,0.185,0.185,0,0.5,0,0,0.281,0.591,0.0527,0.321,0,0.244 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.299,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.511,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.69,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.478,0,0 -0.333,0.185,0.185,0,0.1,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0.3,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0.429,0,0 -0.333,0.171,0.171,1,1,0,0,0.281,0.591,0.0658,0.453,0,0 -0.333,0.169,0.169,1,1,0,0,0.281,0.591,0.073,0.226,0,0 -0.333,0.169,0.169,0.4,1,0,0,0.281,0.591,0.073,0.321,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.424,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.255,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.353,0,0 -0.333,0.169,0.169,0,0.1,0,0,0.281,0.591,0.073,0.31,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.424,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.315,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.304,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.304,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.364,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.5,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.446,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.761,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0.8,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0.6,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.395,0.395,0,0,1,0,0.14,0.704,0.232,0,0.223,0 -0.667,0.395,0.395,0,0,0.4,0,0.14,0.704,0.232,0,0.0601,0 -0.667,0.395,0.395,0,0,0,0.9,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,1,0.14,0.704,0.232,0,0.309,0 -0.667,0.395,0.395,0,0,0,1,0.14,0.704,0.232,0,0.27,0.244 -0.667,0.395,0.395,0,0,0,0.2,0.14,0.704,0.232,0,0.0129,0.244 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0.137,0.488 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0.236,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.418,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.333,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.567,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.0129,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.335,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.249,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.519,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.459,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.21,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.223,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.459,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.27,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.742,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.459,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.361,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.163 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.13 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.121 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.253 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.166 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0332 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0.6,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.488 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -1,0.736,0.736,0.8,0,0,0,0,0.79,0.457,0,0,0.153 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.165 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.197 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.193 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.307 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.0463 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0.8,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.131 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.169 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.0676 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.127 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.366 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.171 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.274 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.488 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.672 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.155 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.366 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,1,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0.397,0,0 -1,0.318,0.318,0,1,0,0,0.14,0.621,0.0764,0.507,0,0 -1,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.254,0,0 -1,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.56,0,0 -1,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.451,0,0.244 -1,0.456,0.456,0,0.6,0,0,0,0.651,0.126,0.658,0,0.42 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0.304,0,0 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.38,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.364,0,0.164 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.326,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0.397,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.366 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.473,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.326,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.522,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.424,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.429,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0.62,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.177 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.177 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.446,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.228,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.375,0,0 -1,0.326,0.326,0,1,0,0,0.14,0.673,0.19,0.495,0,0 -1,0.326,0.326,0,1,0,0,0.14,0.673,0.19,0.467,0,0 -1,0.464,0.464,0,0.1,0,0,0,0.728,0.277,0,0,0.244 -1,0.464,0.464,0.8,0,0,0,0,0.728,0.277,0,0,0 -1,0.464,0.464,0.6,0,0,0,0,0.728,0.277,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0.3,0,0,0,0,0.744,0.791,0,0,0.488 -0.667,0.635,0.635,1,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0.6,0,0,0,0,0.744,0.791,0,0,0.0852 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.17 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.38 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.332 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.157 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0.3,0,0,0,0.14,0.621,0.143,0,0,0.244 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0.5,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.122 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.0988 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.342 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.0683 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.159 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.0952 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.354 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.142 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.244 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.366 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0.3,0,0,0,0.14,0.673,0.305,0,0,0.488 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.315,0,0,0.122 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0.6,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.366 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.366 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.234 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.122 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.165 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.165 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.169 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.169 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.153 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.0306 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0.5,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0.1,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.316 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.418 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.0348 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0.3,0,0,0,0.14,0.621,0.198,0,0,0.244 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.198,0,0,0.346 -0.667,0.292,0.292,0.6,0,0,0,0.14,0.621,0.198,0,0,0.346 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.523 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.488 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.254 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.411 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.0668 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.244 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0.5,0,0,0.774,0.464,0,0.073,0 -1,0.736,0.736,0,0,1,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,1,0,0,0.79,0.547,0,0.0386,0 -1,0.736,0.736,0,0,1,0,0,0.79,0.547,0,0.0386,0 -1,0.736,0.736,0,0,0.9,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0.4,0,0.79,0.547,0,0.519,0 -1,0.736,0.736,0,0,0,1,0,0.79,0.547,0,0.249,0.366 -1,0.895,0.895,0,0,0,1,0,0.774,0.719,0,0,0.244 -1,0.895,0.895,0,0,0,0.7,0,0.774,0.719,0,0.494,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.258,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.288,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.348,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.665,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.605,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.73,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.236,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.554,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.234,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.135,0.366 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.56 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.164 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.0328 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.347 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0.3,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.245,0.245,1,0.5,0,0,0.14,0.58,0.0474,0.359,0,0 -0.667,0.245,0.245,1,1,0,0,0.14,0.58,0.0474,0.397,0,0 -0.667,0.245,0.245,1,1,0,0,0.14,0.58,0.0474,0.484,0,0 -0.667,0.305,0.305,1,1,0,0,0.14,0.611,0.0634,0.489,0,0 -0.667,0.305,0.305,0.5,1,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0.1,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.165 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.295 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.104 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.24 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.206 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.488 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.524 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.115 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0.1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.397,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.359,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0.168 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.37,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.598,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.38,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.467,0,0 -1,0.928,0.928,0,0.1,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.13 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.345 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.276 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.068 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.068 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.439 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.349 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.279 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.159 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0317 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0.5,0,0,0.281,0.591,0.0462,0.37,0,0.198 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0.391,0,0.122 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0.272,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0.321,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0.6,0,0,0.281,0.591,0.0527,0.408,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.489,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.364,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.446,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.321,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.31,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.505,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.413,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.37,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.31,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.397,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.255,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.488 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0.3,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.298 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.159 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.127 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.156 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.576,0,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.533,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0.182 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.359,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.478,0,0 -1,0.895,0.895,0,0.6,1,0,0,0.774,0.64,0,0.335,0 -1,0.895,0.895,0,0,1,0,0,0.774,0.64,0,0.369,0 -1,0.895,0.895,0,0,0.9,0,0,0.774,0.64,0,0.446,0 -1,0.928,0.928,0,0,0,0.4,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.073,0.122 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0,0.244 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.545,0.122 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.309,0 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.0386,0 -1,0.302,0.302,0,0,0,0.8,0.281,0.602,0.26,0,0.0386,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0.0601,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.122 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0.361,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0.0858,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.309,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.309,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.249,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.171 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0.102 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.534 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.0325 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.27 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0.3,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0.5,0,0,0.281,0.591,0.0658,0.277,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.212,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.625,0,0.366 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.304,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0.1,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0.5,0,0.281,0.591,0.073,0,0.0258,0.122 -0.333,0.169,0.169,0,0,1,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.17,0.17,0,0,1,0,0.281,0.591,0.0767,0,0.506,0 -0.333,0.17,0.17,0,0,0.4,0,0.281,0.591,0.0767,0,0.433,0 -0.333,0.17,0.17,0,0,0,0.9,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0767,0,0.21,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0767,0,0.223,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0.7,0.281,0.602,0.0846,0,0.481,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.27,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.236,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.532,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.0386,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.209 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0523 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.278,0.278,0,0.5,0,0,0.281,0.638,0.163,0.402,0,0 -0.667,0.278,0.278,0,1,0,0,0.281,0.638,0.163,0.38,0,0 -0.667,0.507,0.507,0,1,0,0,0.14,0.714,0.31,0.446,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.228,0,0.309 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0.1,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.462,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.522,0,0.166 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.543,0,0.277 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.277,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.342,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.221,0,0 -1,0.928,0.928,0,0,0.5,0,0,0.744,0.791,0.442,0.137,0 -1,0.928,0.928,0,0,0.9,0,0,0.744,0.791,0.462,0.0987,0 -1,0.807,0.807,0,0,0,0.4,0,0.682,0.749,0.685,0.296,0.351 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0.69,0.27,0.0703 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0,0.386,0 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0,0.309,0 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0,0.258,0.296 -1,0.807,0.807,0,0,0,0.2,0,0.682,0.749,0,0,0.105 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.208 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.144 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.161 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.215 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.158 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0315 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0.27,0 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0.356,0.366 -0.333,0.175,0.175,0,0,0.9,0,0.281,0.591,0.0629,0,0.073,0.366 -0.333,0.175,0.175,0,0,0,0.4,0.281,0.591,0.0629,0,0.223,0.122 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.197,0.122 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.621,0.116,0,0.369,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.621,0.116,0,0.249,0.122 -0.667,0.292,0.292,0,0,0,0.2,0.14,0.621,0.116,0,0.498,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.283,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.296,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.263 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.174,0.174,0.6,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0.3,0,0,0,0.14,0.704,0.232,0,0,0.486 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.333,0.278,0.278,1,0,0,0,0.281,0.638,0.163,0,0,0 -0.333,0.278,0.278,1,0,0,0,0.281,0.638,0.163,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.299 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -0.667,0.507,0.507,1,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.162 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.173 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0345 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.586,0.0396,0,0,0.172 -1,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.0344 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.488 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.511,0,0 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.31,0,0 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.473,0,0 -0.333,0.188,0.188,0,1,0,0,0.281,0.617,0.103,0.353,0,0 -0.333,0.188,0.188,0,1,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0.1,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.44,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.332,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.391,0,0.244 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.435,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.146 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.163 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0325 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.641,0,0.122 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0,0,0.244 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.511,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.38,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.462,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.527,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.321,0,0 -0.667,0.302,0.302,0,0.1,0,0,0.281,0.602,0.26,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.244 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.488 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.488 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.283 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.0965 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.491 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.318 -1,0.507,0.507,0.3,0,0,0,0.14,0.714,0.371,0,0,0.122 -1,0.507,0.507,1,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,1,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,0.6,0,0,0,0.14,0.714,0.371,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.366 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0.8,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.333,0.185,0.185,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.333,0.185,0.185,0.1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0.277,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.359,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.261,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.261,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.75,0,0 -0.667,0.312,0.312,0,0.6,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0.533,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.924,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.457,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.315,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.353,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.174,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0.174,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.366 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.366 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.168 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.223 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.192 -1,0.736,0.736,0.8,0,0,0,0,0.79,0.547,0,0,0 -0.667,0.278,0.278,0.6,0,0,0,0.281,0.638,0.194,0,0,0.366 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.122 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.122 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.244 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.122 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.488 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.102 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.335 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.167 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0864 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.477 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.0325 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0.8,0,0,0,0.281,0.591,0.0658,0,0,0.347 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0.8,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.122 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.488 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0.5,0,0.14,0.704,0.232,0,0.0515,0 -1,0.567,0.567,0,0,1,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,1,0,0,0.774,0.34,0,0.614,0 -1,0.567,0.567,0,0,1,0,0,0.774,0.34,0,0.378,0 -1,0.567,0.567,0,0,0.9,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0.5,0,0.4,0,0.79,0.457,0.255,0.0987,0 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0.234,0.27,0.122 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0.321,0.408,0.122 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0.375,0.644,0 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0,0,0.244 -1,0.736,0.736,0,1,0,0.2,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0.6,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.348 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.505 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0701 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.164 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.17 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.34 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0.3,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.151 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.0303 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0.5,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.351 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.154 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.143 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.488 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.174,0.174,0.8,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.488 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.488 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.122 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.565,0,0 -0.667,0.613,0.613,0,1,0,0,0.14,0.704,0.432,0.457,0,0.244 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.462,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.261,0,0 -1,0.928,0.928,0,0.6,0,0,0,0.744,0.791,0.505,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.418,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.366 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.267 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.0341 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.144 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0.3,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0.292 -0.667,0.305,0.305,0.6,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.157 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.0314 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.141 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.389 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.584 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.326 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.61 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.488 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.488 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,1,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0.6,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.399 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.174 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.153 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.478 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.2 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.337 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.589 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0.5,0,0.281,0.591,0.0629,0,0.223,0 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0.433,0 -0.333,0.175,0.175,0,0,0.4,0,0.281,0.591,0.0629,0,0.258,0 -0.333,0.175,0.175,0,0,0,0.9,0.281,0.591,0.0629,0,0.0987,0 -0.333,0.171,0.171,0,0,0,1,0.281,0.591,0.0658,0,0.309,0 -0.333,0.171,0.171,0,0,0,1,0.281,0.591,0.0658,0,0.185,0 -0.333,0.171,0.171,0,0,0,0.2,0.281,0.591,0.0658,0,0.112,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.258,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.223,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.0601,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.223,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.361,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.223,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.421,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.395,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.0987,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.322,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0.5,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,1,0,0,0,0.281,0.633,0.124,0,0,0.122 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0.5,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.273 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0.3,0,0,0,0.14,0.611,0.0634,0,0,0.163 -1,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0.229 -1,0.305,0.305,0.1,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.31 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0.5,0,0.281,0.591,0.0462,0,0.258,0.17 -0.667,0.184,0.184,0,0,1,0,0.281,0.591,0.0462,0,0,0.34 -0.667,0.321,0.321,0,0,1,0,0.14,0.621,0.0895,0,0.0601,0.102 -0.667,0.321,0.321,0,0,1,0,0.14,0.621,0.0895,0,0.249,0 -0.667,0.321,0.321,0,0,0.9,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0.4,0.14,0.621,0.0895,0,0.112,0 -0.667,0.321,0.321,0,0,0,1,0.14,0.621,0.0895,0,0.21,0.148 -0.667,0.321,0.321,0,0,0,1,0.14,0.621,0.0895,0,0,0.0297 -0.667,0.312,0.312,0,0,0,1,0.14,0.621,0.0997,0,0.335,0 -0.667,0.312,0.312,0,0,0,1,0.14,0.621,0.0997,0,0.395,0 -0.667,0.312,0.312,0,0,0,0.2,0.14,0.621,0.0997,0,0.446,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.275,0.139 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.286 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.164 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.187 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.173 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.313 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.352 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.297 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.105 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0.3,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,1,0,1,0,0.14,0.642,0.153,0,0.395,0 -0.667,0.298,0.298,0.6,0,1,0,0.14,0.642,0.153,0,0.309,0 -1,0.422,0.422,0,0,0.9,0,0,0.682,0.222,0,0,0 -1,0.422,0.422,0,0,0,0.4,0,0.682,0.222,0,0.618,0 -1,0.422,0.422,0,0,0,1,0,0.682,0.222,0,0.27,0 -1,0.422,0.422,0,0,0,1,0,0.682,0.222,0,0,0 -1,0.464,0.464,0,0,0,0.7,0,0.728,0.277,0,0.418,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.496,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.408,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.137,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.27,0.122 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.348,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.468,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.429,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.249,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.249,0.61 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.223,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.249,0.366 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.524,0.488 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.365,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.0386,0.209 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.541,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.335,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.488 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.23 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.61 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.426,0.426,1,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.185 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.177 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0.0355 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0.25 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0.068 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0.272 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.41,0.41,0.8,0,0,0,0,0.651,0.388,0,0,0 -1,0.41,0.41,0.6,0,0,0,0,0.651,0.388,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.324 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.122 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.127 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.523 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.299 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.161 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.0642 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.2 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.61 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.253 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.122 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.164 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.131 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.116 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0.8,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,1,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,1,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0.1,0,0,0,0,0.651,0.268,0,0,0.34 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,1,0,0.14,0.621,0.265,0,0.27,0.306 -0.667,0.29,0.29,0,0,0.4,0,0.14,0.621,0.265,0,0.197,0 -0.667,0.298,0.298,0,0,0,0.9,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.291,0,0.0129,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.291,0,0.369,0.171 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.291,0,0.073,0.19 -0.667,0.298,0.298,0,0,0,0.7,0.14,0.642,0.291,0,0.309,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0.369,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.137,0.326 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.236,0.309 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.519,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.073,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.0987,0.128 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.249,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.361,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.283,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.137,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.073,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0.309,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.0258,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.137,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.386,0.122 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.244 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.335,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0.296,0.244 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.406,0.157 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.384,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.275,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.343,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.122 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.366 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.308 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0.3,0,0,0,0.281,0.56,0.0236,0,0,0.157 -1,0.0816,0.0816,1,0,0,0,0.281,0.56,0.0236,0,0,0.0941 -1,0.342,0.342,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,1,0,0,0,0,0.589,0.0632,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.205 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.161 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.0642 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.168 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.394 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.156 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.345 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.276 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.241 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0991 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.254 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.169 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.169 -0.333,0.171,0.171,0.8,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0,0.153 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0.0612 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.169,0.169,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0.5,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.366 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.696,0,0.366 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.179,0,0.122 -1,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.179,0,0 -1,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.332,0,0 -1,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.505,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.418,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0.1,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.174 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.174 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.33 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.033 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.159 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.0637 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.433,0.433,0,0,0.5,0,0,0.635,0.0871,0,0.283,0 -1,0.433,0.433,0,0,1,0,0,0.635,0.0871,0,0,0.19 -0.667,0.305,0.305,0,0,1,0,0.14,0.611,0.0634,0,0.249,0 -0.667,0.305,0.305,0,0,0.4,0,0.14,0.611,0.0634,0,0.137,0 -0.667,0.305,0.305,0,0,0,0.9,0.14,0.611,0.0634,0,0.0258,0 -0.667,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0.0386,0.254 -0.667,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0.236,0 -0.667,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0.7,0.14,0.621,0.0764,0,0.236,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0.0987,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.382,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.618,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.283,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.296,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.356,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.0601,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.0601,0.185 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.361,0.488 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.361,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.309,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.27,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.27,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.18,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.476,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.605,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.309,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.159,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.609,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.309,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.481,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.395,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.137,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.481,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.279,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.155,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.159,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.309,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.236,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.283,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.444,0.244 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.148,0.366 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.335,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.137,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.236,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.0386,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.124,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0.8,0,0,0,0.14,0.704,0.232,0,0.685,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0.5,0.366 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0.296,0 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0.446,0 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0.159,0.488 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.431,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.457,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.588,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.219,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0.343,0.122 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.524 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.0634 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.317 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.807,0.807,1,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,1,0,0,0,0,0.682,0.749,0,0,0.17 -1,0.807,0.807,1,0,0,0,0,0.682,0.749,0,0,0.482 -1,0.555,0.555,1,0,0,0,0.14,0.642,0.505,0,0,0.488 -1,0.555,0.555,1,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0.4,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.247 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.102 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.17 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.198 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.141 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0706 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.157 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0314 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.332 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.17,0.17,0.1,0,0,0,0.281,0.591,0.0767,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0.8,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0.5,0,0,0,0.774,0.64,0.435,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.386,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.658,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.462,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0.1,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.289 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.334 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.0625 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0.221 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0.3,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.324 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.0324 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.144 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.173 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.301 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.0893 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0.297 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0.7,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.667,0.395,0.395,0.8,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0.446,0,0 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0.446,0,0.122 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0.587,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.478,0,0 -0.667,0.507,0.507,1,1,0,0,0.14,0.714,0.31,0.478,0,0 -0.667,0.507,0.507,1,1,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0.9,0.1,0,0,0.14,0.714,0.31,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.804,0,0.252 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.554,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.56,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.446,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.326,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.522,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.418,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.277,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.332,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.413,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.679,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.467,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.652,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.297 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.165 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0661 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0.5,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0.3,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.222,0.222,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0.9,0,0,0,0,0.79,0.457,0,0,0.122 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0.3,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,1,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0.1,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0.243 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.347 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0694 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.177 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.142 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.314 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.167 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.133 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.193 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.128 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0.186 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0.275 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.17 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -1,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.29,0.29,0.8,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0.122 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0.244 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.174,0.174,1,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,1,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0.5,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.244 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.366 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.122 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.366 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.244 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.333 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.488 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0.172 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.13 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.134 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.323 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.276 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.103 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.102 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.34 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.102 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.0914 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0.0305 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.163 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0.6,0,0,0,0.14,0.619,0.144,0,0,0.25 -1,0.299,0.299,0.8,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.103 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.191 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.264 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.0989 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.488 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.366 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.61 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.319 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.488 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.101 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.202 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.129 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.0322 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.122 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.122 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.601,0.274,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.601,0.274,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.122 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.343 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.386 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.244 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.245 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0.4,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0.3,0,0,0,0.14,0.578,0.0478,0,0,0.161 -0.667,0.143,0.143,1,0,0,0,0.281,0.57,0.0318,0,0,0.161 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0.9,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.488 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.245 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0.5,0,0,0.281,0.59,0.0582,0.478,0,0.101 -0.333,0.17,0.17,0,1,0,0,0.281,0.59,0.0582,0.397,0,0 -0.333,0.17,0.17,0,1,0,0,0.281,0.59,0.0582,0.435,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.59,0.0633,0.223,0,0 -0.333,0.164,0.164,0,0.9,0,0,0.281,0.59,0.0633,0.571,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0.614,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0.462,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0.332,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0.31,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0.299,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0.342,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0.391,0,0.122 -0.333,0.159,0.159,0,0.4,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.516,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.435,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.489,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.261,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.755,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.397,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.37,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.473,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0.293,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.826,0,0 -1,0.379,0.379,0,0,0,0,0,0.679,0.224,0.28,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.28,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.592,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.212,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.467,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.244 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.353,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.467,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.408,0,0 -1,0.291,0.291,0.8,0,0,0,0.14,0.701,0.234,0.44,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0.166,0,0.244 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0.166,0,0.122 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.366 -1,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0.2,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.488 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.159 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.34 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.223 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0318 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.258 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.339 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.442 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.0341 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.177 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.345 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.148 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.34 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0679 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.185 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.123 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.277 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.175 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.35 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0.3,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0.244 -0.333,0.162,0.162,0.9,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.334 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.167 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.366 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.35 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.147 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.266 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.527 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.19 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.138 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.345 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.191 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.154 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.2 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0499 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.345 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.155 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.062 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.263 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0987 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.303 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0321 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.571 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.169 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.122 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.348 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.47 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.0348 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.503 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.61 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.244 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.289 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0.8,0,0,0,0.14,0.701,0.436,0,0,0.0313 -0.667,0.429,0.429,1,0,0,0,0.14,0.701,0.436,0,0,0.156 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.336 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.134 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.16 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0641 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.197 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.162 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0969 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.176 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.105 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.243 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.106 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.283 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0.3,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.64,0.155,0,0,0.244 -0.667,0.274,0.274,0.1,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.366 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.261,0,0.122 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.408,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0,0,0 -1,0.619,0.619,0,0.4,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0.3,0,0,0,0,0.771,0.646,0,0,0.104 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.382 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.167 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.333 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.0333 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0.6,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0.3,0,0.14,0.619,0.11,0,0,0 -1,0.299,0.299,0,0,1,0,0.14,0.619,0.144,0,0.137,0 -1,0.299,0.299,0,0,0.2,0.1,0.14,0.619,0.144,0,0.408,0 -1,0.299,0.299,0,0,0,1,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0.3,0.14,0.619,0.144,0,0.296,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0.618,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.0386,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.433,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.15,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0.395,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.418,0,0.244 -0.333,0.16,0.16,0,0.8,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.109,0.587,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.109,0.359,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,1,0.8,0,0.281,0.59,0.109,0,0.322,0 -0.333,0.16,0.16,0,1,1,0,0.281,0.59,0.109,0,0,0 -1,0.269,0.269,0,0.1,1,0,0.14,0.619,0.234,0,0.532,0 -1,0.269,0.269,0,0,1,0,0.14,0.619,0.234,0,0.519,0 -1,0.269,0.269,0,0,0.8,0,0.14,0.619,0.234,0,0,0 -1,0.269,0.269,0,0,0,0.5,0.14,0.619,0.234,0,0.15,0.122 -1,0.269,0.269,0,0,0,1,0.14,0.619,0.234,0,0.0258,0.488 -1,0.269,0.269,0,0,0,1,0.14,0.619,0.234,0,0,0 -1,0.268,0.268,0,0,0,1,0.14,0.619,0.267,0,0.468,0 -1,0.268,0.268,0,0,0,0.9,0.14,0.619,0.267,0,0.361,0 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.122 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0.446,0 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0.614,0,0 -1,0.412,0.412,0,0.8,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.468,0.484,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.468,0.418,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.31,0,0.122 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0,0,0.244 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.495,0,0 -1,0.484,0.484,0,0.1,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0.576,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0.359,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.402,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.283 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.106 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.471 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.507 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.122 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.122 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.274 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.342 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.101 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.101 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.259 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.0971 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.105 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.105 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.261 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.0326 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.304 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0.1,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.281,0.59,0.109,0,0,0.122 -0.667,0.16,0.16,1,0,0,0,0.281,0.59,0.109,0,0,0.366 -1,0.271,0.271,0.7,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.122 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.104 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.487 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.102 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.204 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.488 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0.1,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0.244 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0.8,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.488 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.488 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.109 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.0652 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.229 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.434 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.163 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0976 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.122 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.488 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0.8,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0.3,0,0,0,0,0.771,0.343,0,0,0.175 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.175 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.243 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.488 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0.653 -1,0.484,0.484,0.7,0,0,0,0,0.787,0.461,0,0,0.254 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.354 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0354 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.62,0,0.177 -1,0.619,0.619,0,1,0,0,0,0.771,0.646,0.38,0,0.177 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.386,0,0.244 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.658,0,0.401 -1,0.783,0.783,0,1,1,0,0,0.741,0.797,0,0.0258,0.397 -1,0.783,0.783,0,0.9,1,0,0,0.741,0.797,0.674,0.249,0 -1,0.783,0.783,0,0,1,0,0,0.741,0.797,0.321,0,0 -1,0.88,0.88,0,0,0.1,0.2,0,0.679,0.756,0.321,0.236,0 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.707,0,0.289 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.413,0,0.266 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.261,0,0 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.353,0,0 -1,0.603,0.603,0,0,0,1,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0.7,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.156 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.172 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.172 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.331 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.132 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.162 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.174 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.203 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.203 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.254 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.488 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0.8,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0.205 -0.667,0.162,0.162,0.4,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0.3,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.667,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.488 -1,0.291,0.291,0.9,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.122 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.167 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.456 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.212 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.184 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.046 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.105 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.14 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.224 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.164 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.22 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.283 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.488 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.366 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.295 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.313 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.366 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.335 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.0669 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.488 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.278 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0697 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.349 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0349 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.854 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0.538,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.601,0.0853,0.576,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.601,0.0853,0.288,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.601,0.0853,0.478,0,0 -0.667,0.269,0.269,0,1,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0.4,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0.337,0,0 -0.333,0.17,0.17,0,1,0,0,0.281,0.631,0.125,0.56,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.413,0,0.122 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.543,0,0 -0.667,0.339,0.339,0,0.4,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0.3,0,0,0,0.14,0.712,0.313,0,0,0.26 -0.667,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.154 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.222 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.353 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0.2,0,0,0,0,0.741,0.797,0,0,0.406 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.353 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.122 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,0.7,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.57 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.171 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0937 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0625 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0.3,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0.122 -0.667,0.301,0.301,1,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.619,0.077,0,0,0.175 -0.667,0.301,0.301,1,0,0,0,0.14,0.619,0.077,0,0,0.035 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0.6,0,0,0,0.281,0.59,0.0465,0,0,0.143 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0.3,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0.1,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.61 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.122 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.488 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.366 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0.3,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0.5,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.175 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.297 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.366 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.122 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.122 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0964 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.0964 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.27 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.203 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.172,0.172,0.1,0,0,0,0.281,0.585,0.0436,0,0,0.135 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.0641,0,0,0.271 -0.667,0.175,0.175,0.3,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0.565,0,0 -0.667,0.175,0.175,0,0.8,0,0,0.281,0.59,0.0641,0.283,0,0 -0.667,0.175,0.175,0,1,0,0,0.281,0.59,0.0641,0.402,0,0 -0.667,0.175,0.175,0,1,0,0,0.281,0.59,0.0641,0.533,0,0 -0.667,0.299,0.299,0,1,0,0,0.14,0.619,0.144,0.685,0,0 -0.667,0.299,0.299,0,0.6,0,0,0.14,0.619,0.144,0.408,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0.299,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0.348,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0.277,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.266,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.255,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.435,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.342,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.424,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.266,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.266,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.418,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.533,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.418,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.451,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.272,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.408,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.473,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0.6,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0.6,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.366 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.122 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.488 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.244 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.102 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.34 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0.1,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.424,0.424,1,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,1,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,0.7,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,0,0.3,0,0,0,0.648,0.206,0.342,0,0 -1,0.424,0.424,0,1,0,0,0,0.648,0.206,0.402,0,0 -1,0.411,0.411,0,1,0,0,0,0.648,0.246,0.397,0,0 -1,0.411,0.411,0,1,0,0,0,0.648,0.246,0.28,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.619,0.17,0.28,0,0 -0.667,0.291,0.291,0,0.1,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0.478,0,0.122 -0.333,0.159,0.159,0,0.8,0,0,0.281,0.59,0.126,0,0,0.244 -0.333,0.159,0.159,0,1,0,0,0.281,0.59,0.126,0.424,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.59,0.126,0.37,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.59,0.142,0.462,0,0 -0.333,0.159,0.159,0,0.6,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0.435,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0.342,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0.505,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0.359,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0.457,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0.488 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.366 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.61 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.122 -1,0.412,0.412,0.6,0,0,0,0,0.771,0.468,0,0,0.488 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0.244 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0.6,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0.6,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.488 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.732 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.366 -1,0.88,0.88,1,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,1,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0.4,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.0936 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.4 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.488 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.488 -0.667,0.17,0.17,0,0,0.5,0,0.281,0.631,0.125,0,0.0129,0 -0.667,0.17,0.17,0,0,1,0,0.281,0.631,0.125,0,0.236,0 -1,0.291,0.291,0,0,0,0.3,0.14,0.701,0.234,0,0.421,0 -1,0.291,0.291,0,0,0,1,0.14,0.701,0.234,0,0.283,0 -1,0.291,0.291,0,0,0,1,0.14,0.701,0.234,0,0,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.322,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.309,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.309,0.244 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.137,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.283,0.488 -1,0.339,0.339,0,0,0,0.1,0.14,0.712,0.313,0,0.283,0.122 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.348,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.296,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.122 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.519,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.421,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.618,0.366 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.0987,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.378,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.189,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0.3,0,0,0,0.14,0.681,0.537,0,0,0.122 -1,0.538,0.538,1,0,0,0,0.14,0.681,0.537,0,0,0.244 -1,0.88,0.88,0.1,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.244 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.244 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.488 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.23 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.154 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0309 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0.1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,1,0,0.281,0.59,0.0633,0,0.283,0 -0.333,0.164,0.164,0,0,0.5,0,0.281,0.59,0.0633,0,0.249,0 -0.333,0.164,0.164,0,0,0,0.8,0.281,0.59,0.0633,0,0.223,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0.0129,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0.296,0 -0.333,0.16,0.16,0,0,0,0.6,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0.3,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0.5,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.488 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.248 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.172 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.191 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.189 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.122 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.244 -1,0.538,0.538,0,0.5,0,0,0.14,0.681,0.537,0.364,0,0.488 -1,0.538,0.538,0,1,0,0,0.14,0.681,0.537,0.37,0,0.122 -1,0.538,0.538,0,1,0,0,0.14,0.681,0.537,0.462,0,0 -1,0.538,0.538,0,1,0,0,0.14,0.681,0.537,0.69,0,0 -1,0.538,0.538,0,0.9,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.732 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.195 -1,0.0798,0.0798,0.3,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.11,0.11,1,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,1,0,0,0,0.14,0.557,0.0316,0,0,0.164 -1,0.11,0.11,0.9,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.324 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.204 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.102 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.231 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.167 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0.5,0,0,0.281,0.59,0.053,0.353,0,0 -0.333,0.174,0.174,0,1,0,0,0.281,0.59,0.053,0.223,0,0.122 -0.333,0.174,0.174,0,1,0,0,0.281,0.59,0.053,0.5,0,0 -0.333,0.17,0.17,0,1,0,0,0.281,0.59,0.0582,0.31,0,0 -0.333,0.17,0.17,0,0.9,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0.3,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0.122 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0.3,0,0,0,0.14,0.619,0.117,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.61 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.541,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.309,0 -0.667,0.339,0.339,0,0,1,0,0.14,0.712,0.313,0,0.369,0 -0.667,0.339,0.339,0,0,0.1,0.2,0.14,0.712,0.313,0,0.369,0 -0.667,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.223,0 -0.667,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0,0.244 -0.667,0.429,0.429,0,0,0,1,0.14,0.701,0.436,0,0.532,0.122 -0.667,0.429,0.429,0,0,0,1,0.14,0.701,0.436,0,0.296,0 -0.667,0.429,0.429,0,0,0,1,0.14,0.701,0.436,0,0.433,0 -0.667,0.429,0.429,0,0,0,0.7,0.14,0.701,0.436,0,0.571,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.567,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.223,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.348,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.369,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.124,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.356,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.296,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.244 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0.219 -1,0.236,0.236,0.5,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.122 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.354 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0354 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.169 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.305 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.248 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.484,0.484,0,0.5,0,0,0,0.787,0.461,0.402,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.38,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.391,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.424,0,0 -1,0.484,0.484,0.3,0.9,0,0,0,0.787,0.461,0.31,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0.31,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0.5,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.176 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.278 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.157 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0629 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0.246 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,1,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0.3,0,0,0,0.281,0.57,0.0318,0,0,0.168 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0673 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.35 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0.5,0,0,0.14,0.701,0.234,0.277,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.386,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.571,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.332,0,0 -1,0.412,0.412,0,0.9,0,0,0,0.771,0.343,0.359,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.516,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.326,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.337,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.174,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.174,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.587,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.375,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.364,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.413,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.418,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.538,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.31,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.366 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.227 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.366 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.106 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.353 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.106 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.122 -0.667,0.279,0.279,0.6,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0.8,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.366 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.244 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.488 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0.6,0,0,0,0.14,0.671,0.308,0,0,0.488 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0.198 -1,0.412,0.412,0.6,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.0626 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.188 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.105 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.35 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.315 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.0985 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.164 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.366 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.104 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.104 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0.205 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,0.6,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0.2,0.3,0,0,0,0.787,0.551,0.641,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.364,0,0.122 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.342,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.293,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0,0,0.122 -1,0.619,0.619,0,1,0,0,0,0.771,0.725,0.413,0,0.122 -1,0.619,0.619,0,0.6,0,0,0,0.771,0.725,0.424,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.239,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.603,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.283,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.418,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.25,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.609,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.533,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.266,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.342,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.81,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.435,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.293,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.527,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.495,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.277,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.543,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.44,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.391,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.505,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.166,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.166,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.33 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.132 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.249,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,1,0,0.14,0.578,0.0478,0,0.446,0.296 -1,0.236,0.236,0.3,0,0.6,0,0.14,0.578,0.0478,0,0.0601,0 -1,0.236,0.236,1,0,0,0.7,0.14,0.578,0.0478,0,0,0 -1,0.417,0.417,1,0,0,1,0,0.633,0.0879,0,0.532,0.0329 -1,0.417,0.417,1,0,0,1,0,0.633,0.0879,0,0.361,0.197 -1,0.417,0.417,1,0,0,0.2,0,0.633,0.0879,0,0.249,0 -1,0.417,0.417,1,0,0,0,0,0.633,0.0879,0,0.309,0 -1,0.417,0.417,1,0,0,0,0,0.633,0.0879,0,0.236,0 -1,0.417,0.417,0.7,0,0,0,0,0.633,0.0879,0,0.618,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.309,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.137,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.0386,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.073,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.249,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.185,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.361,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.635,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.425,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.143,0,0.464,0 -1,0.411,0.411,0.3,0,0,0,0,0.648,0.143,0,0.403,0 -1,0.411,0.411,1,0,0,0,0,0.648,0.143,0,0.815,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0.283,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0.283,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0.296,0 -0.667,0.279,0.279,1,0,0,0,0.14,0.619,0.111,0,0.453,0 -0.667,0.279,0.279,1,0,0,0,0.14,0.619,0.111,0,0.453,0.488 -0.667,0.279,0.279,0.7,0,0,0,0.14,0.619,0.111,0,0,0.122 -0.667,0.279,0.279,0,0.5,0,0,0.14,0.619,0.111,0.522,0.309,0 -0.667,0.279,0.279,0,1,0,0,0.14,0.619,0.111,0.353,0,0 -0.667,0.279,0.279,0,1,0,0,0.14,0.619,0.111,0.842,0,0.122 -0.667,0.271,0.271,0,1,0,0,0.14,0.619,0.117,0.359,0,0 -0.667,0.271,0.271,0,0.9,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.122 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.616,0.104,0,0,0.244 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,1,0,1,0,0.281,0.631,0.125,0,0.584,0 -0.333,0.17,0.17,0.5,0,1,0,0.281,0.631,0.125,0,0.0601,0.122 -0.667,0.291,0.291,0,0,1,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,1,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0.6,0,0.14,0.701,0.234,0,0,0.61 -0.667,0.291,0.291,0,0,0,0.7,0.14,0.701,0.234,0,0,0.122 -1,0.484,0.484,0,0,0,0.7,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.359,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.315,0,0.122 -1,0.484,0.484,0,1,1,0,0,0.787,0.461,0.207,0.369,0 -1,0.484,0.484,0,1,1,0,0,0.787,0.461,0.207,0.459,0 -1,0.484,0.484,0,1,1,0,0,0.787,0.461,0.603,0.18,0 -1,0.619,0.619,0,1,0.1,0.2,0,0.771,0.646,0.402,0.438,0 -1,0.619,0.619,0,0.9,0,1,0,0.771,0.646,0.554,0.0386,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0.424,0.395,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0,0.369,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0.217,0.309,0 -1,0.619,0.619,0,0,0,0.2,0,0.771,0.646,0.533,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.587,0.421,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.397,0.335,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.0258,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.348,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.309,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.174 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0349 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.479 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.149 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0299 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.385 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.292 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.34 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.488 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.244 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0.5,0,0.14,0.619,0.077,0,0.361,0 -0.333,0.175,0.175,0,0,1,0,0.281,0.59,0.0465,0,0,0.122 -0.333,0.174,0.174,0,0,0,0.3,0.281,0.59,0.053,0,0.21,0 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0.27,0 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0.0901,0.244 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0,0.488 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0.0987,0.122 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0.6,0.281,0.59,0.0582,0,0.283,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0.283,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0.234,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0.384,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0.3,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0.9,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,1,0,0.14,0.64,0.155,0,0.725,0 -0.667,0.269,0.269,0,0,0.5,0,0.14,0.64,0.155,0,0.137,0 -0.667,0.269,0.269,0,0,0,0.8,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,1,0.14,0.671,0.191,0,0.451,0 -0.667,0.274,0.274,0,0,0,1,0.14,0.671,0.191,0,0.464,0 -1,0.386,0.386,0,0,0,1,0,0.725,0.279,0,0,0.244 -1,0.386,0.386,0,0,0,1,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,1,0,0.725,0.279,0,0,0.366 -1,0.386,0.386,0,0,0,0.1,0,0.725,0.279,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.61 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.25 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.155 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.031 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0.3,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.314 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.0697 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,1,0.5,0,0,0,0.741,0.797,0.315,0,0 -1,0.783,0.783,0.3,1,0,0,0,0.741,0.797,0.446,0,0.176 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.592,0,0.282 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.418,0,0 -1,0.783,0.783,0,0.9,0,0,0,0.741,0.797,0.288,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.258,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0.258,0,0.276 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.171 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.239 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0.122 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.4,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.278 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.196 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.245 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.61 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.133 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.244 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.244 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.161 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.366 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.244 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.322 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.361,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.393,0.244 -0.333,0.159,0.159,0,0,1,0,0.281,0.601,0.0853,0,0.135,0 -0.333,0.159,0.159,0,0,0.6,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0.7,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0.7,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0.366 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.244 -0.667,0.291,0.291,0.5,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.488 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.403 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.0637 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.488 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.366 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.59 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.0692 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.145 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.169 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.236 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.185 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0941 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.282 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.366 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0.3,0,0,0,0.14,0.671,0.191,0,0,0.244 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.191,0,0,0.366 -0.667,0.274,0.274,0.1,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0.5,0,0,0.14,0.701,0.234,0.391,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.304,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.527,0,0 -0.667,0.339,0.339,0,1,0,0,0.14,0.712,0.313,0.424,0,0 -0.667,0.339,0.339,0,0.9,0,0,0.14,0.712,0.313,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.484,0.484,0.8,0,0,0,0,0.787,0.461,0.359,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0.5,0,0.122 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0.266,0,0.366 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0.429,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0.429,0,0 -1,0.619,0.619,0.2,0,0,0,0,0.771,0.646,0.685,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0.446,0,0.122 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.348,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.745,0,0.122 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -0.667,0.603,0.603,0,0,1,0,0.14,0.64,0.509,0,0.369,0 -0.667,0.603,0.603,0,0,1,0,0.14,0.64,0.509,0,0.0601,0 -0.667,0.603,0.603,0,0,1,0,0.14,0.64,0.509,0,0,0 -0.667,0.415,0.415,0,0,0.1,0.2,0.14,0.599,0.31,0,0.425,0 -0.667,0.415,0.415,0,0,0,1,0.14,0.599,0.31,0,0.18,0 -1,0.597,0.597,0,0,0,0.2,0,0.617,0.457,0,0.348,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0.309,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0.137,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0.185,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.353 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.169 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.237 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.1 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.167 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.189 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.236 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.163 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.163 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.175,0.175,0.1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.338 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.535 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.347 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0694 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0.3,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0.5,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0.5,0,0,0,0.771,0.343,0.478,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.63,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.467,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.386,0,0 -1,0.484,0.484,0,0.9,0.5,0,0,0.787,0.461,0.247,0.283,0 -1,0.484,0.484,0,0,1,0,0,0.787,0.461,0.247,0,0 -1,0.484,0.484,0,0,1,0,0,0.787,0.461,0.283,0.433,0 -1,0.484,0.484,0,0,0.6,0,0,0.787,0.461,0,0.513,0 -1,0.484,0.484,0,0,0,0.7,0,0.787,0.461,0,0.513,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0,0.361,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0,0.258,0 -1,0.619,0.619,0,0,0,0.2,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0.481,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.334 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.244 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0.489,0,0 -0.667,0.174,0.174,0,0.8,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.413,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.348,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.321,0,0.244 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.489,0,0.366 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0,0,0.122 -0.667,0.17,0.17,0,0.1,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0.478,0,0 -0.667,0.164,0.164,0,0.8,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,1,0,0,0.281,0.59,0.102,0.342,0,0 -0.667,0.164,0.164,0,1,0,0,0.281,0.59,0.102,0.505,0,0.122 -0.667,0.164,0.164,0,1,0,0,0.281,0.59,0.102,0.56,0,0.122 -0.667,0.164,0.164,0,0.6,0,0,0.281,0.59,0.102,0.429,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.272,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.446,0,0.61 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.315,0,0.488 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.266,0,0.244 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.598,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.185,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0.185,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0.696,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.6,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.8,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.222 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.168,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.168,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.168,0,0,0.366 -0.333,0.194,0.194,1,0,0,0,0.281,0.637,0.196,0,0,0.244 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.106 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.176 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.277 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.0346 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.1 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.099 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.231 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.105 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.245 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.102 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.17 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.6,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.8,0,0,0,0.14,0.619,0.234,0,0,0.122 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0.122 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.366 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.122 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.122 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.244 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.244 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -1,0.538,0.538,0,0,0.3,0,0.14,0.681,0.574,0,0,0 -1,0.538,0.538,0,0,1,0,0.14,0.681,0.574,0,0.468,0 -1,0.538,0.538,0,0,1,0,0.14,0.681,0.574,0,0.283,0 -1,0.538,0.538,0,0,0.8,0,0.14,0.681,0.574,0,0,0 -1,0.603,0.603,0,0,0,0.5,0.14,0.64,0.53,0,0.309,0.122 -1,0.603,0.603,0,0,0,1,0.14,0.64,0.53,0,0.137,0 -1,0.603,0.603,0,0,0,1,0.14,0.64,0.53,0,0,0.488 -1,0.603,0.603,0,0,0,0.4,0.14,0.64,0.53,0,0.348,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0.592,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0.406,0.105 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.195,0.07 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.597,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.275,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0.6,0,0,0,0,0.617,0.496,0,0,0 -1,0.415,0.415,1,0,0,0,0.14,0.599,0.337,0,0,0.122 -1,0.183,0.183,1,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.568,0.157,0,0,0.265 -1,0.183,0.183,0.6,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.244 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.122 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.158 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.185 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.122 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0.3,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,1,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0.5,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.125,0,0,0.244 -0.667,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0.5,0,0,0,0.14,0.712,0.313,0,0,0.244 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0.5,0,0,0,0.741,0.797,0.255,0,0 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.473,0,0 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.402,0,0.122 -1,0.603,0.603,0,1,0,0,0.14,0.64,0.509,0.402,0,0 -1,0.603,0.603,0,1,0,0,0.14,0.64,0.509,0.5,0,0 -1,0.603,0.603,0,1,0,0,0.14,0.64,0.509,0,0,0.366 -1,0.603,0.603,0,0.4,0,0,0.14,0.64,0.509,0.543,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.128 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.196 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.343 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.0343 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.183 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.307 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.128 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.335 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.244 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.177 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0.318 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0.3,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0.4,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.0386,0.122 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0.3,0.281,0.591,0.0767,0,0.562,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.0767,0,0.3,0.122 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0.6,0.281,0.591,0.0767,0,0.567,0 -0.333,0.149,0.149,0.3,0,0,0,0.281,0.591,0.0767,0,0.223,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0.1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.682,0.222,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.25 -1,0.353,0.353,0.3,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,1,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,1,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,0.5,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.169 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.339 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0678 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0.5,0,0,0.774,0.64,0,0.249,0 -1,0.523,0.523,0,0,1,0,0,0.774,0.64,0,0,0 -1,0.464,0.464,0,0,1,0,0.14,0.683,0.532,0,0.526,0 -1,0.464,0.464,0,0,1,0,0.14,0.683,0.532,0,0.23,0 -1,0.464,0.464,0,0,1,0,0.14,0.683,0.532,0,0,0.244 -1,0.464,0.464,0,0,0,0.3,0.14,0.683,0.532,0,0,0.103 -1,0.464,0.464,0,0,0,1,0.14,0.683,0.532,0,0,0.732 -1,0.464,0.464,0,0,0,1,0.14,0.683,0.532,0,0,0.366 -1,0.549,0.549,0,0,0,1,0.14,0.642,0.505,0,0,0.134 -1,0.549,0.549,0,0,0,1,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0.1,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.211 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.353 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.165 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.0659 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.295 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.177 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.208 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.158 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.126 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.183 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.366 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.169 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.101 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.25 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.61 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.484 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.171 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.167 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.854 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.273 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.534 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.235 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.126 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0316 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.366 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.3,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0.5,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0.359,0,0.403 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0.647,0,0 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0,0,0 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0.696,0,0 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0.364,0,0 -1,0.464,0.464,0,0.3,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.163 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0652 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.122 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.366 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.172 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.172 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.318 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.113 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0.5,0,0,0.281,0.591,0.073,0.451,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.073,0.522,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.073,0.288,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.0767,0.625,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0.3,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.366 -1,0.371,0.371,1,0.5,0,0,0,0.774,0.34,0.451,0,0 -1,0.371,0.371,1,1,0,0,0,0.774,0.34,0.353,0,0 -1,0.371,0.371,1,1,0,0,0,0.774,0.34,0.413,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0.8,0,0,0,0.79,0.457,0.424,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0.44,0,0.366 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0.38,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0.56,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.288,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.332,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.174,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.174,0,0 -1,0.523,0.523,0.4,0,0,0,0,0.774,0.64,0.386,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.408,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.31,0,0.157 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0941 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.412 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.412 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.366 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.334 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0667 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0.402,0,0.211 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.832,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.848,0,0 -0.667,0.278,0.278,0,1,0,0,0.14,0.621,0.143,0.234,0,0 -0.667,0.278,0.278,0,0.8,0,0,0.14,0.621,0.143,0.234,0,0.16 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0.484,0,0.0639 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0.234,0,0 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0,0,0 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0,0,0 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.536 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.069 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.138 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.0692 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0.177 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.142 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0.8,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0.5,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.366 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.366 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.287 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0661 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.34 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.299 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0.519 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.143,0,0,0.162 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.143,0,0,0.0649 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.27,0.27,0.6,0,0,0,0.14,0.621,0.169,0,0,0.268 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.167 -0.667,0.27,0.27,0,0,0.5,0,0.14,0.621,0.169,0,0.309,0 -0.667,0.27,0.27,0,0,1,0,0.14,0.621,0.169,0,0,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.335,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.249,0.163 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0.3,0.14,0.621,0.185,0,0.0987,0 -0.667,0.259,0.259,0,0,0,1,0.14,0.621,0.185,0,0.309,0.366 -0.667,0.259,0.259,0,0,0,1,0.14,0.621,0.185,0,0.21,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.382,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.309,0.488 -0.667,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0,0.122 -0.667,0.15,0.15,0,0,0,0.6,0.281,0.591,0.108,0,0.159,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0.296,0.122 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.15,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.408,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.567,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.412,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0.402,0,0 -0.667,0.149,0.149,0,1,0,0,0.281,0.591,0.141,0.451,0,0 -0.667,0.149,0.149,0,1,0,0,0.281,0.602,0.154,0,0,0.18 -0.667,0.149,0.149,0,1,0,0,0.281,0.602,0.154,0.467,0,0 -0.667,0.149,0.149,0,1,0,0,0.281,0.602,0.154,0.478,0,0 -0.667,0.149,0.149,0,0.3,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.171 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.0342 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.0982 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.305,0,0,0.488 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.264,0.264,1,0,1,0,0.14,0.704,0.315,0,0.322,0.231 -0.667,0.264,0.264,0.5,0,1,0,0.14,0.704,0.315,0,0.536,0.122 -0.667,0.264,0.264,0,0,1,0,0.14,0.704,0.315,0,0.455,0 -0.667,0.264,0.264,0,0,0,0.3,0.14,0.704,0.315,0,0.373,0 -0.667,0.264,0.264,0,0,0,1,0.14,0.704,0.315,0,0.322,0.527 -1,0.371,0.371,0,0,0,1,0,0.774,0.464,0,0.309,0.0967 -0.667,0.296,0.296,0,0,0,1,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,1,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0.1,0.14,0.714,0.371,0,0,0.486 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.382 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.244 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.244 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.122 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.244 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.122 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.148 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.116,0.116,1,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,1,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,0.9,0,0,0,0.281,0.565,0.0869,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.221 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.329 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.0659 -0.667,0.228,0.228,0.8,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,1,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,1,0,0,0,0.14,0.58,0.0474,0,0,0.306 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.238 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.114 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.0335 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.268 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0.5,0,0.281,0.591,0.0767,0,0.283,0.0323 -0.333,0.149,0.149,0,0,1,0,0.281,0.591,0.0767,0,0.361,0.129 -0.333,0.149,0.149,0,0,0,0.3,0.281,0.602,0.0846,0,0.369,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0.468,0.244 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0.446,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0.1,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.333,0.151,0.151,0.8,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.296,0.296,0.7,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.162 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.276 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.118 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.16 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0641 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0956 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.32 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0.4,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0.8,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.244 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.366 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.247 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0.5,0,0,0,0.744,0.791,0.348,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.304,0,0.122 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.505,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.478,0,0 -1,0.671,0.671,0,0.8,0,0,0,0.744,0.791,0.527,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.467,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.321,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.386,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.168,0,0.342 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.168,0,0.19 -1,0.799,0.799,0,1,0,0,0,0.682,0.749,0.451,0,0 -1,0.405,0.405,0,1,0,0,0.14,0.6,0.307,0.571,0,0 -1,0.405,0.405,0,1,0,0,0.14,0.6,0.307,0.5,0,0.145 -1,0.405,0.405,0,1,0,0,0.14,0.6,0.307,0.299,0,0 -1,0.405,0.405,0.8,1,0,0,0.14,0.6,0.307,0.31,0,0 -1,0.405,0.405,1,0.8,0,0,0.14,0.6,0.307,0.31,0,0 -1,0.405,0.405,1,0,0,0,0.14,0.6,0.307,0.402,0,0.122 -1,0.183,0.183,1,0,0,0,0.14,0.569,0.136,0.245,0,0 -1,0.183,0.183,0.5,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0923 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.299 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.0708 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.156 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0415 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.253 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0.413,0,0 -0.333,0.139,0.139,0,1,0,0,0.281,0.571,0.0316,0.375,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.342,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.478,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.614,0,0 -0.333,0.167,0.167,0,0.8,0,0,0.281,0.586,0.0396,0.663,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.402,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.462,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.587,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.375,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.326,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0.527,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.101 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.234 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.265 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.323 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.398 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.203 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0.8,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0.6,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.732 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0.5,0,0,0.774,0.64,0,0.361,0 -1,0.523,0.523,0,0,1,0,0,0.774,0.64,0,0,0.244 -1,0.671,0.671,0,0,1,0,0,0.744,0.791,0,0.504,0 -1,0.671,0.671,0,0,1,0,0,0.744,0.791,0,0.53,0 -1,0.671,0.671,0,0,1,0,0,0.744,0.791,0,0.73,0 -1,0.671,0.671,0,0,0,0.3,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,1,0,0.744,0.791,0,0.185,0.244 -1,0.671,0.671,0,0,0,1,0,0.744,0.791,0,0.573,0 -1,0.799,0.799,0,0,0,1,0,0.682,0.749,0,0.204,0 -1,0.799,0.799,0,0,0,1,0,0.682,0.749,0,0.322,0 -1,0.799,0.799,0,0,0,0.1,0,0.682,0.749,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0.249,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.348 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.276 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.103 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.148 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.208 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.104 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.61 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0.3,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0.488 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0.366 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0.9,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.276 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.244 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.192 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.14 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0.3,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0.341 -1,0.523,0.523,0.4,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.175 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.105 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.327 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.155 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.731 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.227 -1,0.0495,0.0495,0.3,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0503,0.0503,0.1,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.33 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.207 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.155 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.176 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.351 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.141 -1,0.317,0.317,0.3,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.402,0.402,0.1,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.244 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0923 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.366 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.366 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.244 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.337 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.244 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.191 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.123 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.0617 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.366 -0.333,0.154,0.154,0.3,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0.4,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.244 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.366 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.244 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.122 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.122 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.366 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.151 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,1,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0223,0,0,0.308 -1,0.0781,0.0781,0.5,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0264,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0264,0,0,0.333 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0264,0,0,0.435 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0.333 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0.0666 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.24 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,0.3,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,1,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.286,0.286,0.1,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.333,0.164,0.164,0,0.5,0,0,0.281,0.591,0.0803,0.489,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0803,0.375,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0803,0.359,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.591,0.0934,0.522,0,0 -0.333,0.16,0.16,0,0.8,0,0,0.281,0.591,0.0934,0.293,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0.293,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.335,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.21,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.322,0 -0.667,0.251,0.251,0,0,1,0,0.14,0.621,0.198,0,0.408,0 -0.667,0.251,0.251,0,0,0.5,0,0.14,0.621,0.198,0,0.309,0 -0.333,0.15,0.15,0,0,0,0.8,0.281,0.591,0.108,0,0.361,0.244 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.232,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.249,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0,0.244 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.125,0,0.309,0.167 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.125,0,0.309,0.488 -0.333,0.149,0.149,0,0,0,0.1,0.281,0.591,0.125,0,0.27,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.0987,0.132 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.309,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.0258,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.408,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.296,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.395,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.318,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.223,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.348,0 -0.667,0.249,0.249,0.3,0,0,0,0.14,0.642,0.291,0,0.073,0.244 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.249,0.249,0.1,0,0,0,0.14,0.642,0.291,0,0.472,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.584,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.661,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.618,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.283,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.137,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.236,0.488 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.348,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.21,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.612,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.539,0.244 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.296,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0.545,0.488 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0.618,0.366 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0.5,0,0,0.14,0.714,0.371,0.457,0.472,0 -0.667,0.296,0.296,0,1,0,0,0.14,0.714,0.371,0.348,0.476,0 -0.667,0.296,0.296,0,1,0,0,0.14,0.714,0.371,0.364,0.253,0 -0.667,0.365,0.365,0,1,0,0,0.14,0.704,0.485,0.63,0,0 -0.667,0.365,0.365,0,1,0,0,0.14,0.704,0.485,0.179,0,0 -1,0.523,0.523,0,1,0,0,0,0.774,0.719,0.179,0,0 -1,0.523,0.523,0,0.3,0,0,0,0.774,0.719,0.478,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0.3,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0.122 -0.667,0.259,0.259,0.9,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0.249,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0.249,0.244 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0.348,0 -0.667,0.249,0.249,0,0,0.5,0,0.14,0.621,0.13,0,0.197,0 -0.667,0.249,0.249,0,0,0,0.8,0.14,0.621,0.13,0,0,0.366 -0.667,0.249,0.249,0,0,0,1,0.14,0.621,0.137,0,0,0.366 -0.667,0.249,0.249,0,0,0,1,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,1,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0.6,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.488 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.3,0,0,0,0.14,0.704,0.232,0,0,0.488 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0.244 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.35 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.203 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.518 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0.3,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.346 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.592 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.17 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.339 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0339 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.281,0.56,0.0171,0,0.309,0 -1,0.0495,0.0495,0,0,1,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0.3,0.281,0.56,0.0171,0,0.47,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0171,0,0.273,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0171,0,0.296,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0157,0,0.361,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0157,0,0.309,0 -1,0.0495,0.0495,0,0,0,0.1,0.281,0.56,0.0157,0,0.0515,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.494,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.137,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.336 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.328 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0657 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.14 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.348 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.177 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0354 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.146 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.303 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.488 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0.6,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0.5,0,0,0,0.79,0.457,0.304,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.457,0.337,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.457,0.38,0,0.244 -1,0.42,0.42,0,1,0,0,0,0.79,0.457,0.37,0,0 -1,0.42,0.42,0,0.8,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.614,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.56,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.598,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.386,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.299,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.435,0,0.154 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.299,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.527,0,0.122 -1,0.671,0.671,0.8,0,0,0,0,0.744,0.791,0.215,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0.215,0,0.122 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.424,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.255,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.348,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.603,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.121 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.165 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0.132 -1,0.228,0.228,0.1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.208 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.743 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.163 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.163 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.19,0,0,0.366 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.366 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.366 -0.667,0.252,0.252,0.5,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.8,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.6,0,0,0,0.14,0.704,0.232,0,0,0.366 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.464,0.464,0,0.5,0,0,0.14,0.683,0.532,0.332,0,0 -1,0.464,0.464,0,1,0,0,0.14,0.683,0.532,0.293,0,0 -1,0.464,0.464,0,1,0,0,0.14,0.683,0.532,0.397,0,0.122 -1,0.464,0.464,0,1,0,0,0.14,0.683,0.532,0.859,0,0 -1,0.464,0.464,0,0.8,0,0,0.14,0.683,0.532,0.209,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0.209,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.366 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.451,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.418,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.853,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.31,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0.38,0,0.287 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.166 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0666 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.205 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0.9,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0.3,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0.4,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0.3,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,1,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.5,0,0,0,0,0.774,0.64,0.505,0,0 -1,0.523,0.523,0,1,0,0,0,0.774,0.64,0.266,0,0.122 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.226,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.226,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.755,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.293,0,0 -1,0.671,0.671,0,0.8,0,0,0,0.744,0.791,0.424,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.582,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.473,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.446,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.337,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.366 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.444 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.541 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0351 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.233 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.177 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0706 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.457 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.287 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.465 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.175 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.14 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0.3,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0.332,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0.413,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0.696,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0.408,0,0 -1,0.523,0.523,1,0.3,0,0,0,0.774,0.64,0.495,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.424,0,0.488 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.272,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.366 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.246 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0637 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.354 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.0354 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.337 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.0337 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.166 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.288 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.122 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.255 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.206 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.154 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.244 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.473 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.156 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.156 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.0934 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.122 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.349,0.349,0.3,0,0,0,0,0.682,0.427,0,0,0 -1,0.349,0.349,1,0,0,0,0,0.682,0.427,0,0,0 -1,0.349,0.349,1,0,1,0,0,0.682,0.427,0,0.283,0 -1,0.349,0.349,1,0,1,0,0,0.682,0.427,0,0.249,0 -1,0.349,0.349,1,0,1,0,0,0.682,0.427,0,0,0 -1,0.353,0.353,1,0,1,0,0,0.728,0.449,0,0.21,0 -1,0.353,0.353,1,0,0.5,0,0,0.728,0.449,0,0.249,0 -1,0.353,0.353,1,0,0,0.8,0,0.728,0.449,0,0,0.244 -1,0.353,0.353,1,0,0,1,0,0.728,0.449,0,0.223,0 -1,0.353,0.353,1,0,0,1,0,0.728,0.449,0,0.296,0 -1,0.353,0.353,0.8,0,0,1,0,0.728,0.449,0,0.0987,0 -1,0.371,0.371,0,0,0,1,0,0.774,0.464,0,0.296,0 -1,0.371,0.371,0,0,0,1,0,0.774,0.464,0,0.459,0 -1,0.371,0.371,0,0,0,0.1,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0.283,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0.296,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.0386,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.197,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.249,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.483,0.366 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.298,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.296,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.159,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.459,0.488 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.545,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.137,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.361,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.288,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.236,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.249,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0.8,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0.6,0,0,0,0,0.682,0.78,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.227 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.101 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.101 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.339 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0.8,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0.189 -1,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0.5,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.244 -1,0.352,0.352,0,0,0,0,0,0.651,0.288,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.366 -0.667,0.249,0.249,0.8,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,1,0,0.5,0,0.14,0.673,0.305,0,0.0601,0.244 -1,0.353,0.353,1,0,1,0,0,0.728,0.449,0,0,0 -1,0.353,0.353,1,0,1,0,0,0.728,0.449,0,0,0 -1,0.353,0.353,1,0,0.5,0,0,0.728,0.449,0.37,0,0.244 -1,0.353,0.353,0.8,1,0,0.8,0,0.728,0.449,0.408,0,0 -1,0.371,0.371,0,1,0,1,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,1,0,1,0,0.774,0.464,0.701,0,0.366 -1,0.371,0.371,0,1,0,1,0,0.774,0.464,0.272,0,0.122 -1,0.371,0.371,0,1,0,0.6,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0.8,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0.3,0,0,0,0,0.744,0.845,0,0,0.528 -1,0.671,0.671,1,0,0,0,0,0.744,0.845,0,0,0.194 -1,0.799,0.799,0.1,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.366 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.366 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.244 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.244 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.122 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.244 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0.122 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0.488 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0.4,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.3 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.161 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.0642 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.273 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.377 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.035 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.315 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.518 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.0305 -0.667,0.249,0.249,0.8,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0.6,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.301 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.0335 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.339 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.271 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.276 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.068 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.068 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.165 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.132 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.108 -0.667,0.296,0.296,0.3,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.464,0.464,1,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0.1,0,0,0,0.14,0.683,0.532,0,0,0.122 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.341 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.127 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0.3,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0.1,0,0,0,0,0.589,0.0632,0,0,0.109 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.167 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.334 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.403 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.249 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.35 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.156 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0936 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.333 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.667,0.259,0.259,0.8,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0.6,0,0,0,0.14,0.621,0.11,0,0,0.291 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.156 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.159 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.157,0.157,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.366 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.6,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.154 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.366 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.232 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.158 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.169 -0.667,0.139,0.139,0.3,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0.155 -0.667,0.139,0.139,0.5,0,0.5,0,0.281,0.571,0.0316,0,0.0601,0.031 -0.667,0.139,0.139,0,0,1,0,0.281,0.571,0.0316,0,0,0 -0.667,0.167,0.167,0,0,1,0,0.281,0.586,0.0396,0,0.296,0 -0.667,0.167,0.167,0,0,1,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,1,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0.3,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,1,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0,0.336 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0,0.168 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0.6,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.488 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.221 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.153 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.427 -1,0.371,0.371,0.8,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0.4,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.268 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.488 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.335 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.401 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0.1 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.161 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.0642 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.336 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.189 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.542 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0353 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.218 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.488 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.488 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0.8,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,1,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,1,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.147 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.197 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.246 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0.299 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.0318 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.127 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.366 -0.667,0.16,0.16,0.8,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.366 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.122 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.185 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.174 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.174 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.244 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.697 -0.667,0.296,0.296,0.3,0,0,0,0.14,0.714,0.371,0,0,0.437 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.547,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.24 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.204 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.224 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.134 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.136 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.235 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.122 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.122 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0.31,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.418,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.326,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.571,0,0 -1,0.0495,0.0495,0,0.8,0,0,0.421,0.562,0.0181,0.359,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.326,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0.3,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,1,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.168,0.168,0.1,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0.5,0,0.281,0.591,0.0636,0,0.0601,0 -1,0.168,0.168,0,0,1,0,0.281,0.591,0.0636,0,0.236,0 -1,0.404,0.404,0,0,0,0.3,0,0.651,0.155,0,0.124,0 -1,0.404,0.404,0,0,0,1,0,0.651,0.155,0,0.0987,0 -1,0.404,0.404,0,0,0,1,0,0.651,0.155,0,0.408,0 -0.667,0.278,0.278,0,0,0,0.6,0.14,0.621,0.143,0,0.322,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0.258,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0.262,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0.369,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.335,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.223,0.488 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.172,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.558,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.296,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.296,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.283,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.0258,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.258,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0.3,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,1,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.151,0.151,1,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,1,0,0,0,0.281,0.617,0.162,0,0,0.732 -0.667,0.151,0.151,1,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.244 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.488 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0.652,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0.337,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0.701,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0,0,0.122 -1,0.523,0.523,0,0.3,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.209 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.134 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.168 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.351 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0351 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.168 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0335 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0.5,0,0,0.281,0.586,0.0396,0.489,0,0.148 -0.667,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.391,0,0 -0.667,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.592,0,0 -0.667,0.284,0.284,0,1,0,0,0.14,0.611,0.0634,0.397,0,0.171 -0.667,0.284,0.284,0,0.8,0,0,0.14,0.611,0.0634,0.261,0,0.171 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0.261,0,0 -0.667,0.286,0.286,0,0,1,0,0.14,0.621,0.0764,0.397,0.494,0 -0.667,0.286,0.286,0,0,0.5,0,0.14,0.621,0.0764,0,0.309,0 -0.667,0.286,0.286,0,0,0,0.8,0.14,0.621,0.0764,0,0.442,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0.468,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0.433,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0.0987,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.591,0.0527,0,0.249,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.591,0.0527,0,0.283,0.122 -0.333,0.164,0.164,0,0,0,0.1,0.281,0.591,0.0527,0,0.195,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.135,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.486,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.243,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.283,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.361,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.137,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.395,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.309,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.137,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.236,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.073,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.0515,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.0129,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.433,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.571,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.21,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.502,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.313,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.597,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.283,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.384,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.234,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.631,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.258,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.249,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.236,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.309,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.361,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.506,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.8,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.366 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.1,0,0,0,0,0.774,0.64,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.27 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.683 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.24 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.173 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.173 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0.5,0,0.281,0.591,0.0527,0,0.309,0.122 -0.333,0.164,0.164,0,0,1,0,0.281,0.591,0.0527,0,0.416,0.244 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0578,0,0.18,0.244 -0.333,0.16,0.16,0,0,0.5,0,0.281,0.591,0.0578,0,0.236,0 -0.667,0.27,0.27,0,0,0,0.8,0.14,0.621,0.0997,0,0.197,0.244 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0578,0,0.481,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0578,0,0.249,0 -0.667,0.27,0.27,0,0,0,1,0.14,0.621,0.0997,0,0.0515,0.122 -0.667,0.259,0.259,0,0,0,0.6,0.14,0.621,0.11,0,0.296,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.112,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.137,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.15,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.309,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.532,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.481,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.296,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.223,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.369,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.283,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.27,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.335,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.532,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.283,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0.5,0,0.14,0.642,0.153,0,0.309,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.642,0.153,0,0,0.122 -0.667,0.252,0.252,0,0,1,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0.5,0,0.14,0.673,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0.8,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0.8,0,0,1,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,1,0,0,1,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,1,0,0,1,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,1,0,0,1,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,1,0.14,0.704,0.232,0,0,0.301 -0.667,0.264,0.264,1,0,0,0.1,0.14,0.704,0.232,0,0,0.334 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,0.4,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.337 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.303 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,1,0,0,0.79,0.457,0,0.459,0 -1,0.42,0.42,0,0,1,0,0,0.79,0.457,0,0.258,0 -1,0.42,0.42,0,0,1,0,0,0.79,0.457,0,0.444,0 -1,0.523,0.523,0,0,1,0,0,0.774,0.64,0,0.148,0 -1,0.523,0.523,0,0,0.5,0,0,0.774,0.64,0,0.27,0 -0.667,0.365,0.365,0,0,0,0.8,0.14,0.704,0.432,0,0.258,0 -0.667,0.365,0.365,0,0,0,1,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,1,0.14,0.704,0.432,0,0,0.366 -0.667,0.365,0.365,0,0,0,1,0.14,0.704,0.432,0,0,0 -1,0.671,0.671,0,0,0,0.6,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.488 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0945 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.177 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.158 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.0316 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.17 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.339 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.102 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.167 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.134 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0.6,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.296 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0.8,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.799,0.799,1,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0.5,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.244 -1,0.799,0.799,0,0.5,0,0,0,0.682,0.749,0.647,0,0.366 -1,0.799,0.799,0,1,0,0,0,0.682,0.749,0.353,0,0.417 -1,0.799,0.799,0,1,0,0,0,0.682,0.749,0.304,0,0.0347 -1,0.582,0.582,0,1,0,0,0,0.62,0.453,0.473,0,0 -1,0.582,0.582,0,0.8,0,0,0,0.62,0.453,0.582,0,0.122 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0.44,0,0 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.136 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.337 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.2 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.207 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.142 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.248 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.349 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0349 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.154 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0309 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.177 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.204 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.154 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.3,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.264,0.264,0.5,0,0,0,0.14,0.704,0.232,0,0,0.366 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.142 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.342 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.631 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.196 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.139 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.209 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.257 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.327 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.196 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.193 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.0643 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.312 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.193 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.381 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0651 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.366 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.263,0.263,0.8,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.263,0.263,1,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.263,0.263,1,0,0,0,0.421,0.548,0.147,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0.3,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,1,0,0.5,0,0.421,0.591,0.315,0,0.249,0 -1,0.238,0.238,0.3,0,1,0,0.421,0.591,0.315,0,0,0 -1,0.247,0.247,0,0,1,0,0.421,0.617,0.326,0,0.296,0 -1,0.247,0.247,0,0,1,0,0.421,0.617,0.326,0,0.348,0 -1,0.247,0.247,0,0,1,0,0.421,0.617,0.326,0,0.408,0 -1,0.345,0.345,0,0,0,0.3,0.421,0.645,0.479,0,0.592,0 -1,0.345,0.345,0,0,0,1,0.421,0.645,0.479,0,0.408,0.122 -1,0.345,0.345,0,0,0,1,0.421,0.645,0.479,0,0.296,0 -1,0.384,0.384,0,0,0,1,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,1,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.386 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.488 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.244 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.244 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.286 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.23 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.366 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.366 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.488 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.122 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.122 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.122 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.244 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.244 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.244 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.244 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.235,0.235,0.3,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.235,0.235,1,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.235,0.235,1,0,0,0,0.421,0.548,0.24,0,0,0.337 -1,0.235,0.235,0.5,0,0,0,0.421,0.548,0.24,0,0,0.0337 -1,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.168 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.606 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.158 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.154 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.366 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.366 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.488 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.66 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.398 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0.3,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.743,0,0,0.244 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0.122 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0.9,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.219,0.219,0,0.5,0,0,0.614,0.546,0.182,0.299,0,0 -0.667,0.219,0.219,0,1,0,0,0.614,0.546,0.182,0.435,0,0.122 -1,0.388,0.388,0,1,0,0,0.807,0.531,0.345,0.397,0,0 -1,0.388,0.388,0,1,0,0,0.807,0.531,0.345,0.446,0,0 -1,0.388,0.388,0,0.7,0,0,0.807,0.531,0.345,0.609,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0.359,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.336 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0671 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.157 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0314 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.297 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0329 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.244 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0.9,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0.5,0,0,0.421,0.617,0.239,0.25,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.435,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.38,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.554,0,0 -0.667,0.247,0.247,0,0.7,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.273,0.273,0,0.5,0,0,0.749,0.626,0.32,0.315,0,0 -0.667,0.273,0.273,0,1,0,0,0.749,0.626,0.32,0.359,0,0.122 -0.667,0.273,0.273,0,1,0,0,0.749,0.626,0.32,0.386,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0.7,0,0,0.912,0.658,0.473,0.326,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.478,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.253,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.253,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.554,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.543,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.31,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.495,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.207 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.289 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.167 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.135 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.189 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.343 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0241,0,0,0.137 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0.195 -1,0.104,0.104,0.9,0,0,0,0.807,0.497,0.0323,0,0,0.0649 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0.5,0,0.807,0.514,0.0488,0,0.283,0 -1,0.222,0.222,0,0,1,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,1,0,0.807,0.514,0.0488,0,0.481,0 -1,0.222,0.222,0.3,0,1,0,0.807,0.514,0.0488,0,0.0601,0 -1,0.222,0.222,1,0,1,0,0.807,0.514,0.0488,0,0,0 -0.667,0.277,0.277,1,0,0,0.3,0.421,0.54,0.0653,0,0.451,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.451,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.283,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.159,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.0987,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,1,0,0,0.5,0.421,0.548,0.0788,0,0.373,0 -0.667,0.274,0.274,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0.6,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.488 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0.3,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.345,0.345,0.1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.488 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0.3,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,1,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.244 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,1,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0.2,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.628 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.143 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.305 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.34 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.17 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.34 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.136 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.204 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.102 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0.3,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.39,0.39,0.1,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0.122 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0.5,0,0,0.421,0.548,0.0788,0.348,0,0.281 -0.667,0.274,0.274,0,1,0,0,0.421,0.548,0.0788,0.408,0,0.366 -0.667,0.274,0.274,0,1,0,0,0.421,0.548,0.0788,0.473,0,0 -0.333,0.162,0.162,0,1,0,0,0.421,0.555,0.0473,0.543,0,0.0669 -0.333,0.162,0.162,0,1,0,0,0.421,0.555,0.0473,0.285,0,0.335 -0.333,0.162,0.162,0,1,0,0,0.421,0.555,0.0473,0.285,0,0 -0.333,0.156,0.156,0,0.1,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.484,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.565,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.348,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.446,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0.478,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0.473,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.366 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0751,0,0.0515,0 -0.667,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0,0.122 -0.667,0.142,0.142,0,0,0,0.3,0.421,0.555,0.0789,0,0.644,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.0987,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.309,0.122 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.532,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.309,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0,0.244 -0.667,0.142,0.142,0,0,0,0.5,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.488 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0.3,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -1,0.345,0.345,0.1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.488 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.366 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.366 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.214 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.172 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.0343 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.354 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.598 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.349 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.175 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0.3,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.328,0.328,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0.9,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.137 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.157 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.0945 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.488 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.181 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.175 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.169 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.236 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0.342 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0.103 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.136,0.136,0,0.5,1,0,0.614,0.538,0.0323,0.353,0.0858,0 -0.667,0.136,0.136,0,1,1,0,0.614,0.538,0.0323,0.315,0,0 -0.667,0.136,0.136,0,1,1,0,0.614,0.538,0.0323,0.402,0,0 -0.667,0.136,0.136,0,1,0,0.3,0.614,0.538,0.0323,0.478,0,0 -0.667,0.136,0.136,0,1,0,1,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,1,0,1,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0.1,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0.3,0,0,0.9,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0.9,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.254 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.244 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.122 -0.667,0.256,0.256,0.8,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0.348,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0.44,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0.516,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0.478,0,0 -0.667,0.235,0.235,0,0.2,0,0,0.421,0.548,0.134,0.217,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0.3,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,0.1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0,0.163,0 -1,0.467,0.467,0,0,0.5,0,1,0.645,0.662,0,0.597,0 -1,0.467,0.467,0,0,0,0.8,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0.6,1,0.645,0.662,0,0.356,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.0258,0.366 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.283,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.21,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.335,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.073,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.0987,0.122 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.137,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.361,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.421,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.283,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0.236,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.173 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.277 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.166 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.166 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.548 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.125 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.0625 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.274,0.274,0.3,0,0,0,0.421,0.548,0.113,0,0,0.279 -1,0.274,0.274,1,0,0,0,0.421,0.548,0.113,0,0,0.23 -1,0.274,0.274,1,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.274,0.274,0.5,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.551 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.414 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.166 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.0994 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.409 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.244 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.147 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.331 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.266 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.506 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.0984 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.189 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.151 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.173 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.488 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.238 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0.3,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.244 -0.667,0.328,0.328,1,0,1,0,0.807,0.617,0.501,0,0.515,0.366 -0.667,0.328,0.328,1,0,1,0,0.807,0.617,0.501,0,0.155,0 -1,0.467,0.467,1,0,1,0,1,0.645,0.743,0,0,0 -1,0.595,0.595,1,0,1,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0.3,0,0.5,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0.8,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0.6,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0.3,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,1,0,1,0,0.421,0.548,0.147,0,0.296,0 -1,0.263,0.263,0.5,0,1,0,0.421,0.548,0.147,0,0.137,0 -1,0.263,0.263,0,0,1,0,0.421,0.548,0.147,0,0,0 -1,0.37,0.37,0,0,0,0.3,0.421,0.542,0.212,0,0.386,0 -1,0.37,0.37,0,0,0,1,0.421,0.542,0.212,0,0.21,0 -1,0.37,0.37,0,0,0,1,0.421,0.542,0.212,0,0,0 -1,0.359,0.359,0,0,0,1,0.421,0.542,0.252,0,0.369,0 -1,0.359,0.359,0,0,0,1,0.421,0.542,0.252,0,0.361,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0.309,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0.0901,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0.459,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.348,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.137,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.421,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.408,0.488 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.122 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.159,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.223,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.258,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.73,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.519,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.361,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.0987,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.348,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.395,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.519,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.262,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.27,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.309,0.122 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.0987,0.122 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.421,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.366 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.488 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.488 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.467,0.467,0.8,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.743,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.366 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.244 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0.366 -0.667,0.413,0.413,0.3,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0.433,0 -1,0.0768,0.0768,0,0,0.5,0,0.614,0.529,0.0241,0,0.073,0 -1,0.0768,0.0768,0,0,0,0.8,0.614,0.529,0.0241,0,0.0386,0 -1,0.136,0.136,0,0,0,1,0.614,0.538,0.0323,0,0.21,0 -1,0.136,0.136,0,0,0,1,0.614,0.538,0.0323,0,0.283,0 -1,0.136,0.136,0,0,0,1,0.614,0.538,0.0323,0,0.481,0 -1,0.136,0.136,0,0,0,0.5,0.614,0.538,0.0323,0,0.532,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0.176,0.204 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0.296,0.102 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0.249,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.296,0.27 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.249,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.1 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.262 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.167 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.0334 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.429 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.341 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.366 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.283 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.175 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.414 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0426 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.292 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.366 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.61 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.366 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.488 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.366 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.244 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.244 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.488 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.345 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.103 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.159 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.0318 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.506,0.167 -0.667,0.163,0.163,0,0,1,0,0.421,0.551,0.0406,0,0.172,0.234 -0.667,0.277,0.277,0,0,1,0,0.421,0.54,0.0653,0,0.481,0 -0.667,0.277,0.277,0,0,0.5,0,0.421,0.54,0.0653,0,0.21,0 -0.667,0.277,0.277,0,0,0,0.8,0.421,0.54,0.0653,0,0.249,0 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.283,0.35 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.569,0.663 -0.333,0.162,0.162,0,0,0,1,0.421,0.555,0.0473,0,0.135,0.244 -0.333,0.162,0.162,0,0,0,0.5,0.421,0.555,0.0473,0,0.361,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0.185,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0.455,0.167 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.0129,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.27,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.223,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.459,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.21,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0.3,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.345,0.345,0.1,0,0,0,0.421,0.645,0.351,0,0,0.189 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.137 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0.467,0,0.102 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.326,0,0.122 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.22,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.22,0,0.158 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.364,0,0.0634 -1,0.384,0.384,0,0.2,0,0,0.912,0.658,0.473,0.734,0,0 -1,0.384,0.384,0.3,0,0,0,0.912,0.658,0.473,0.538,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.398 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.184 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.488 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.244 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.164 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.156 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0624 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0.9,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0.489,0,0.244 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.565,0,0.122 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.783,0,0.244 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.446,0,0 -0.667,0.273,0.273,0,0.2,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0.3,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,1,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.384,0.384,0.1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.156 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0936 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.472 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.244 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.308 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.244 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.165 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.198 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.226 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.167 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.1 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.349 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.349 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.14 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.312 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0352 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.211 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.122 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0.124,0 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0.249,0 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0.3,0.421,0.548,0.134,0,0.0258,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.134,0,0.172,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.134,0,0.541,0.122 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0.0386,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0.249,0 -0.667,0.235,0.235,0.3,0,0,0.9,0.421,0.548,0.142,0,0.249,0.172 -1,0.327,0.327,1,0,0,0,0.421,0.542,0.205,0,0.545,0.191 -1,0.328,0.328,0.1,0,0,0,0.421,0.568,0.23,0,0.459,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.605,0.244 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.223,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.148,0.148,0.3,0,0,0,0.421,0.589,0.128,0,0,0 -1,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.244 -1,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.366 -1,0.247,0.247,0.5,0,0,0,0.421,0.617,0.239,0,0,0.488 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.244 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0.489,0,0 -1,0.273,0.273,0,1,0,0,0.749,0.626,0.32,0.478,0,0 -1,0.328,0.328,0,1,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,1,0,0,0.807,0.617,0.446,0.788,0,0 -1,0.328,0.328,0,1,0,0,0.807,0.617,0.446,0.511,0,0 -1,0.328,0.328,0,0.2,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0.8,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.295 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.26 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.349 -0.667,0.274,0.274,0,0,0.5,0,0.421,0.548,0.0788,0,0.0386,0.174 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0.3,0.421,0.548,0.0788,0,0.408,0 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.369,0.17 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.309,0.0339 -0.333,0.156,0.156,0,0,0,1,0.421,0.555,0.0541,0,0.159,0 -0.333,0.156,0.156,0,0,0,1,0.421,0.555,0.0541,0,0.361,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.309,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.506,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.309,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.223,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.0129,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.629,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.444,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.605,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.112,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0987,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.249,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0129,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.283,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0987,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.0129,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.309,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.309,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.283,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.558,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.309,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.172,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.309,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.137,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.0987,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.258,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.21,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.341 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.3 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.488 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.214 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.157 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.0941 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.366 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.488 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.332 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0663 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0.3,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0.122 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0.3,0,0.5,0,0.421,0.555,0.0654,0,0.0258,0.366 -1,0.162,0.162,1,0,1,0,0.421,0.555,0.0654,0,0.494,0 -1,0.156,0.156,1,0,0,0.3,0.421,0.555,0.0826,0,0.185,0.24 -1,0.156,0.156,0.5,0,0,1,0.421,0.555,0.0826,0,0.382,0.122 -1,0.156,0.156,0,0,0,1,0.421,0.555,0.0826,0,0,0.122 -1,0.37,0.37,0,0,0,0.6,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.643 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.153 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.245 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.169 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.101 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.343 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.587 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.323 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.0323 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0.5,0,0,0.421,0.548,0.24,0.337,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.24,0.391,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.24,0.255,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.273,0.462,0,0 -0.667,0.235,0.235,0,0.7,0,0,0.421,0.548,0.273,0.391,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0.397,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0.321,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0.386,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0.212,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0.212,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0.467,0,0 -0.667,0.235,0.235,0.8,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,0.6,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.366 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.366 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0.488 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0.488 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0.554,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0.424,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0.473,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0.489,0,0.244 -1,0.557,0.557,0,0.2,0,0,1,0.516,0.509,0.467,0,0.244 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0.418,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0.429,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.244 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.265 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.066 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.33 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0.3,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.156,0.156,1,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,0.3,0,0,0,0.421,0.555,0.0961,0,0,0.488 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.244 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.244 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.488 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0.122 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0.4,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.244 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.244 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.34 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.102 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.12 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.207 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.164 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.164 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.337 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.101 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.17 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.536 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0.3,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0.1,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.488 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0.1,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0.5,0,0,1,0.645,0.662,0.332,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.5,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.658,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.636,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0,0,0 -0.667,0.413,0.413,0,0.1,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.284 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0969 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.225 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.174 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0695 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.329 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0987 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.614,0.529,0.0158,0,0,0.244 -1,0.0495,0.0495,1,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.301 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.288 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.222,0.222,0.1,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.144 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.279 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.071 -0.667,0.247,0.247,0.3,0,0,0,0.421,0.617,0.239,0,0,0.248 -0.667,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.467,0.467,0.6,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.331 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.176 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.106 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.222 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.166 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.233 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.488 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.253 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.334 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.191 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.239 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.107 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0328 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.197 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.238 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.101 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.337 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.467 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.205 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0751,0,0.283,0 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0789,0,0.519,0 -0.333,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0789,0,0.446,0.244 -0.333,0.142,0.142,0,0,0,0.8,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0.6,0.421,0.555,0.0789,0,0.0258,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.0386,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.408,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.0129,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.489,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.142,0 -0.333,0.142,0.142,0.3,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,1,0.5,0,0,0.421,0.645,0.351,0.685,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.391,0,0.366 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.527,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.435,0,0 -1,0.384,0.384,0,0.7,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.516,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.37,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.576,0,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.418,0.532,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.226,0,0.122 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.226,0,0.122 -0.667,0.328,0.328,0,0,0,0.3,0.807,0.617,0.446,0.44,0,0 -0.667,0.328,0.328,0,0,0,1,0.807,0.617,0.446,0,0,0.122 -1,0.328,0.328,0,0,0,0.1,0.807,0.617,0.446,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.157 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0629 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.488 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.61 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0.289 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0.168 -1,0.0768,0.0768,0.6,0,0,0,0.614,0.529,0.0241,0,0,0.201 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.216 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.199 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0498 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.61 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.366 -0.667,0.163,0.163,0.8,0,0,0,0.421,0.551,0.0406,0,0,0.507 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0.366 -0.667,0.163,0.163,0.8,0,0,0,0.421,0.551,0.0406,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.239 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.1 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.301 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.342 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.137 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.498 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0341 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.154 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0615 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.177 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0.5,0,0.421,0.548,0.0788,0,0.0858,0.165 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0,0.0329 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0.558,0 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0.519,0 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0.223,0 -0.667,0.263,0.263,0,0,0,0.3,0.421,0.548,0.0923,0,0.468,0.141 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.348,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.519,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.0258,0.101 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.545,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.309,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.574,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.431,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.296,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0258,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.309,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.283,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.159,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.579,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.541,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.0386,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.73,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.18,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.24,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.421,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.0258,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.506,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.249,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.348,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.309,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.526,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.255,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.524,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.155,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.244 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.488 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0.473,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.37,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.435,0,0.122 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.625,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0.6,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.34 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.204 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0.8,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.366 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.679,0,0 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.177,0,0 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.177,0,0 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.565,0,0.488 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.565,0,0.122 -1,0.275,0.275,0,0.2,0,0,0.614,0.564,0.269,0.429,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0.353,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.167 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.234 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.21 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.138 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,0.3,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0.366 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.122 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.244 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.244 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.366 -0.667,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.366 -0.667,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.244 -0.667,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.366 -0.667,0.148,0.148,0.9,0,0,0,0.421,0.589,0.172,0,0,0 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.366 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.488 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.244 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.175 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.246 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.488 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.323 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.168 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.337 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.135 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.336 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.14 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.213 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.213 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.157 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.0627 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.156 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.326 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.364 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.506 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.244 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.114 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.207 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.225 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.244 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.0954 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.159 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.366 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.501,0.501,0,0.5,0,0,0.807,0.566,0.543,0.679,0,0 -0.667,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.304,0,0 -0.667,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.614,0,0.122 -0.667,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.571,0,0 -0.667,0.501,0.501,0,0.7,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.122 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.258,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.137,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0.433,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0.0858,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0.3,0.807,0.514,0.0488,0,0.433,0.23 -1,0.222,0.222,0.3,0,0,1,0.807,0.514,0.0488,0,0.0129,0 -1,0.222,0.222,1,0,0,1,0.807,0.514,0.0488,0,0.185,0 -1,0.308,0.308,0.1,0,0,1,1,0.49,0.0653,0,0.137,0 -1,0.308,0.308,0,0,0,1,1,0.49,0.0653,0,0.309,0.154 -1,0.308,0.308,0,0,0,1,1,0.49,0.0653,0,0,0.0617 -1,0.39,0.39,0,0,0,0.5,0.421,0.529,0.09,0,0.262,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.0601,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.322,0.212 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.249,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.309,0.141 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.0386,0.281 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.442,0 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.438,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0.502,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.0601,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.137,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.0129,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.541,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.249,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.283,0.61 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.47,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.655,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.33,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.309,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.408,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.408,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.433,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.498,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.476,0.244 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.464,0.366 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.536,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.348,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.444,0 -0.667,0.237,0.237,0.3,0,0,0,0.421,0.548,0.119,0,0.457,0.122 -0.667,0.237,0.237,1,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.134,0,0.446,0 -0.667,0.235,0.235,0.5,0,0,0,0.421,0.548,0.134,0,0.395,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.519,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.408,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.361,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.468,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.223,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.0987,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.249,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.205,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.438,0.236 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.253,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.0858,0.122 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.361,0.104 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.258,0.173 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.558,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.137,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.258,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.451,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.18,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.366 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.244 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.262 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0689 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.345 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.103 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.164 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.176 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.475 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.141 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.158 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0315 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0.348,0.122 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0.309,0.298 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0,0.247 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0789,0,0.223,0 -0.333,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0789,0,0.361,0 -0.333,0.142,0.142,0,0,0,0.8,0.421,0.555,0.0789,0,0.309,0.104 -0.333,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.283,0.173 -0.333,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.258,0 -0.333,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.283,0 -0.333,0.142,0.142,0,0,0,1,0.421,0.564,0.0871,0,0.159,0 -0.333,0.142,0.142,0,0,0,1,0.421,0.564,0.0871,0,0.0386,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.691,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.348,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.137,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0.519,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0.296,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.8,0,0,0,0.421,0.576,0.106,0,0.558,0 -0.333,0.144,0.144,0.6,0,0,0,0.421,0.576,0.106,0,0.283,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.236,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.27,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.236,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.0386,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.296,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.21,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.488 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.488 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.275,0.275,0.8,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0.6,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.163 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.586 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.61 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.183 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.122 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0336 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.336 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0316 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0.5,0,0,0.614,0.529,0.0188,0.234,0,0 -1,0.05,0.05,1,1,0,0,0.614,0.529,0.0188,0.408,0,0 -1,0.05,0.05,1,1,0,0,0.614,0.529,0.0188,0.326,0,0 -1,0.0768,0.0768,1,1,0,0,0.614,0.529,0.0241,0.299,0,0 -1,0.0768,0.0768,1,1,0,0,0.614,0.529,0.0241,0,0,0.177 -1,0.104,0.104,1,1,0,0,0.807,0.497,0.0323,0,0,0.0355 -1,0.104,0.104,1,0.1,0,0,0.807,0.497,0.0323,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.104,0.104,0.6,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.548 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0341 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.34 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.17 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.488 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.488 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.2 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0501 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.324 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.488 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0.5,0,0,0.421,0.645,0.351,0.473,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.451,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.473,0,0.244 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.484,0,0.122 -1,0.384,0.384,0.3,1,0,0,0.912,0.658,0.473,0.179,0,0 -1,0.384,0.384,1,1,0,0,0.912,0.658,0.473,0.179,0,0.122 -1,0.384,0.384,1,0.1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0.288,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0.25,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0.397,0,0 -1,0.467,0.467,0.3,0,0.5,0,1,0.645,0.662,0,0.236,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.337,0,0.244 -1,0.467,0.467,0,0,0,0.3,1,0.645,0.662,0.462,0.438,0.366 -1,0.467,0.467,0,0,0,1,1,0.645,0.662,0,0.567,0 -1,0.467,0.467,0,0,0,1,1,0.645,0.662,0,0.206,0.244 -1,0.595,0.595,0,0,0,1,1,0.619,0.817,0,0.579,0.244 -1,0.595,0.595,0,0,0,1,1,0.619,0.817,0,0.361,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.249,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.27,0.488 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.296,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.309,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.433,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.446,0.366 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.249,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.836 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.296 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.243 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.173 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.139 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0.1,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0751 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.353 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.21 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.325 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.159 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.175 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.349 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.182 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0.3,0,0,0,0.421,0.548,0.113,0,0,0.122 -0.667,0.245,0.245,1,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,1,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0.5,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.153 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.238,0.238,0.8,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.366 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.244 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.259 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.139 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.087 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.332 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.106 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.199 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.366 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.248 -0.667,0.263,0.263,0.3,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,1,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0.5,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.5,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.244 -0.333,0.144,0.144,0,0,1,0,0.421,0.576,0.106,0,0.223,0 -0.333,0.144,0.144,0,0,1,0,0.421,0.576,0.106,0,0.309,0 -0.667,0.238,0.238,0,0,1,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0.3,0.421,0.617,0.239,0,0.455,0 -0.667,0.247,0.247,0,0,0,1,0.421,0.617,0.239,0,0.309,0 -0.667,0.247,0.247,0,0,0,0.1,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.0858,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.249,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.738,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.283,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.223,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.408,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.361,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.283,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.486,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.492,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.244 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.211 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.17 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.102 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.366 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.177 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.344 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.103 -1,0.256,0.256,0,0,0.5,0,0.421,0.548,0.174,0,0.369,0 -1,0.256,0.256,0,0,1,0,0.421,0.548,0.174,0,0.309,0 -1,0.343,0.343,0,0,1,0,0.421,0.542,0.277,0,0.369,0 -1,0.343,0.343,0,0,0.5,0,0.421,0.542,0.277,0,0.249,0.165 -1,0.343,0.343,0,0,0,0.8,0.421,0.542,0.277,0,0,0.0661 -1,0.343,0.343,0,0,0,1,0.421,0.542,0.277,0,0.249,0 -1,0.343,0.343,0,0,0,1,0.421,0.542,0.277,0,0,0 -0.667,0.245,0.245,0,0,0,0.1,0.421,0.548,0.191,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -1,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.122 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.122 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.244 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.488 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.177 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.071 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.273 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.61 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.488 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.244 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.244 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.488 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0.31,0,0 -0.667,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.435,0,0 -0.667,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.228,0,0 -0.667,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.228,0,0 -0.667,0.23,0.23,0,1,0,0,0.421,0.563,0.301,0.315,0,0 -0.667,0.23,0.23,0,0.1,0,0,0.421,0.563,0.301,0.587,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0.478,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0.489,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0.391,0,0.488 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0.429,0,0.122 -0.667,0.233,0.233,0.8,0,0,0,0.421,0.588,0.316,0.37,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.316,0.198,0,0.122 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0.198,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0.366 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.366 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.108 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.163 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.327 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.155 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.605,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.309,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0.1,0.2,0.421,0.554,0.0595,0,0.361,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.554,0.0595,0,0.369,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0.361,0 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0.258,0.244 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0.3,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.61 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.366 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.202 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.202 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.239 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.299 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.354 -1,0.338,0.338,0.8,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,1,0,1,0,0.912,0.653,0.474,0,0.408,0 -1,0.377,0.377,1,0,0.5,0,0.912,0.653,0.474,0,0.27,0 -1,0.377,0.377,1,0,0,0.8,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,1,0,0,1,0.912,0.653,0.474,0,0.0858,0 -1,0.377,0.377,0.2,0,0,1,0.912,0.653,0.474,0,0.0515,0 -1,0.377,0.377,0,0,0,1,0.912,0.653,0.474,0,0.296,0 -1,0.461,0.461,0,0,0,1,1,0.64,0.664,0,0.648,0.134 -1,0.461,0.461,0,0,0,0.7,1,0.64,0.664,0,0.352,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.0601,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.193 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.193 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.145 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.268 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.338 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.162 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0972 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.222 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.157 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0629 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.16 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.096 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.138 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.734,0,0 -0.667,0.233,0.233,0,1,0,0,0.421,0.588,0.196,0.185,0,0.488 -0.667,0.233,0.233,0,1,0,0,0.421,0.588,0.196,0.185,0,0 -0.667,0.233,0.233,0,1,0,0,0.421,0.588,0.196,0.266,0,0.171 -1,0.324,0.324,0,1,0,0,0.421,0.602,0.287,0.418,0,0.343 -1,0.338,0.338,0,0.1,0,0,0.421,0.64,0.352,0.424,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.242,0.242,0.8,0,0,0,0.421,0.614,0.24,0,0,0.205 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0.4,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.159 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0.5,0,1,0.64,0.664,0,0.137,0.17 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.0129,0.0339 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.309,0 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.223,0.244 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0.2,0.1,1,0.615,0.82,0,0.433,0.277 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.283,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.579,0.122 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.283,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.459,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.571,0.219 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.309,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.185,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.0515,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.27,0.167 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.0129,0.334 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.124,0.0334 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.283,0.366 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0.249,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0.137,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.296,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.481,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.236,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.149 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.161 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.202 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.253 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.162 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0.5,0,0.421,0.554,0.0678,0,0.249,0.122 -0.333,0.141,0.141,0,0,1,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.135,0,0.567,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.135,0,0.421,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.135,0,0.506,0 -0.667,0.23,0.23,0,0,0.2,0.1,0.421,0.546,0.135,0,0.446,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.135,0,0.309,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.135,0,0.361,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.142,0,0.249,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.142,0,0.369,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.283,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.197,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.258,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.309,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.0987,0.366 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0.3,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.9,0,0,0,0.421,0.588,0.196,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.25 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.488 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.366 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.244 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.16 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0.5,0,0.421,0.554,0.0753,0,0.27,0 -0.333,0.14,0.14,0,0,1,0,0.421,0.554,0.0753,0,0.27,0.122 -0.333,0.14,0.14,0,0,1,0,0.421,0.554,0.0753,0,0.0601,0 -0.333,0.14,0.14,0,0,0.6,0,0.421,0.554,0.0753,0,0.249,0 -0.333,0.14,0.14,0,0,0,0.7,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.382,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.283,0.244 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.0987,0 -0.333,0.14,0.14,0,0,0,0.4,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.124,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.322,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.0601,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0.3,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.122 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.122 -0.667,0.233,0.233,0.7,0,0,0,0.421,0.588,0.196,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.366 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.61 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.375,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.359,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.435,0,0.366 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.353,0,0 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.625,0,0 -1,0.461,0.461,0,0.5,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.37,0,0 -1,0.59,0.59,0,1,0,0,1,0.615,0.82,0.467,0,0.122 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0.375,0,0 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0.283,0,0.122 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0.511,0,0 -1,0.273,0.273,0,0.5,0,0,0.614,0.562,0.269,0.652,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.168 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.177 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.355 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0355 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.115 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0.3,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.168 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.324 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,0.3,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0.244 -0.667,0.232,0.232,1,0.5,0,0,0.421,0.546,0.12,0.364,0,0.244 -0.667,0.232,0.232,1,1,0,0,0.421,0.546,0.12,0.446,0,0 -0.667,0.232,0.232,0.9,1,0,0,0.421,0.546,0.12,0.549,0,0 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.12,0.348,0,0 -0.667,0.232,0.232,0,0.6,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.331 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.221 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0.5,0,0,0.912,0.653,0.474,0.647,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.478,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.408,0,0 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.424,0,0 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.236,0,0.122 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.236,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.375,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.438,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.219,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.435,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.658,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.451,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.538,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.484,0,0.163 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.326,0,0.0326 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.478,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.435,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.227 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0.5,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.122 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.244 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.209 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.244 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.253 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.122 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.0676 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.257 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.244 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.159 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.0637 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.279 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.0698 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.488 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.488 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.488 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.122 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.122 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.122 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.122 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.244 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.244 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.366 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.122 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0.244 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.292 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.0339 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.237 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.597 -1,0.22,0.22,0.3,0,0,0,0.807,0.512,0.0489,0,0,0.344 -1,0.22,0.22,1,0,0,0,0.807,0.512,0.0489,0,0,0.0689 -1,0.305,0.305,1,0,0,0,1,0.487,0.0655,0,0,0 -1,0.305,0.305,0.5,0,0,0,1,0.487,0.0655,0,0,0 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.128 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.196 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0652 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.189 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.364 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.165 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0659 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.122 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.128 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.488 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.121 -1,0.0763,0.0763,0,0,0.5,0,0.614,0.528,0.0241,0,0.348,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0.391,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0.253,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0.571,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0,0 -1,0.22,0.22,0,0,0.2,0.1,0.807,0.512,0.0489,0,0.309,0 -1,0.22,0.22,0,0,0,1,0.807,0.512,0.0489,0,0.073,0.161 -1,0.22,0.22,0,0,0,1,0.807,0.512,0.0489,0,0.506,0.0646 -1,0.22,0.22,0,0,0,0.6,0.807,0.512,0.0489,0,0.408,0.258 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0.395,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.167 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.234 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.533,0,0 -0.333,0.141,0.141,0,1,0,0,0.421,0.575,0.106,0.315,0,0 -0.333,0.146,0.146,0,1,0,0,0.421,0.588,0.128,0.299,0,0 -0.333,0.146,0.146,0,1,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.242,0.242,0,1,0,0,0.421,0.614,0.24,0.25,0,0 -0.667,0.242,0.242,0,1,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0.5,0,0,0.421,0.614,0.24,0.505,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0.277,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.277,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.408,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.473,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.413,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.375,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.473,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.554,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.304,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.614,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.31,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.353,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.511,0,0.122 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.364,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.732 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.157 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.0629 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.117 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.209 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.14 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.209 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.174 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.261 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.202 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0.3,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,1,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.9,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0.5,0,0,0.421,0.64,0.352,0.571,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.326,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.489,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.663,0,0 -1,0.338,0.338,0,0.6,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.17 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.224 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.301 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.898 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.355 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.419 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.649 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.161 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.295 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.104 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.311 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.332 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.133 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.209 -0.333,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0.5,0,0.421,0.554,0.0791,0,0.283,0 -0.667,0.14,0.14,0,0,1,0,0.421,0.554,0.0791,0,0.373,0 -0.333,0.14,0.14,0,0,1,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0.6,0,0.421,0.562,0.0873,0,0.0987,0 -0.333,0.14,0.14,0,0,0,0.7,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.562,0.0873,0,0.0386,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.562,0.0873,0,0.249,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.249,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.159,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.657,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.309,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.223,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.0129,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.0386,0.174 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.262 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0.245,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0.335,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0.348,0.219 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.395,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.0515,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.283,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.369,0.344 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.322,0.566 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.35 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.33,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.309,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.0601,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.137,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.0644,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0.361,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0.223,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.122 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.172,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.223,0.122 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.249,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.296,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.185,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.223,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.472,0.366 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.639,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.283,0.122 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0.421,0.244 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.471 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.133 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.167 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.134 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.292 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0339 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.258,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.395,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.288,0 -0.333,0.15,0.15,0,0,0.7,0,0.421,0.554,0.0595,0,0.444,0 -0.333,0.15,0.15,0,0,0,0.6,0.421,0.554,0.0595,0,0.444,0 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0.399,0 -0.333,0.145,0.145,0.3,0,0,1,0.421,0.554,0.0648,0,0.137,0.122 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0.488 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,1,0,0,0.3,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0.5,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.244 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.244 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.179 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.244 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.156 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.0625 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.365 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.244 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.488 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.142 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.188 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.235 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.344 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.655 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.511 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.394 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.165 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.198 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0.8,0,0,0,0.421,0.549,0.0444,0,0,0.169 -1,0.162,0.162,0.6,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.124 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.521 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.231 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.131 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.287 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.19 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.0474 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.244 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.244 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.61 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0.3,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.301,0,0,0.244 -0.667,0.23,0.23,0.1,0,0,0,0.421,0.563,0.301,0,0,0.244 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.488 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.244 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.147 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.169 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.0678 -1,0.162,0.162,0,0.5,0,0,0.421,0.549,0.0444,0.587,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.549,0.0444,0.446,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.549,0.0444,0.293,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.549,0.0444,0.533,0,0 -1,0.162,0.162,0,0.6,0,0,0.421,0.549,0.0444,0,0,0.166 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.0331 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.53 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.0668 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.131 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.23 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.244 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0.8,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.301,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0.244 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0.122 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0.6,0,0,0,0.421,0.64,0.481,0,0,0.244 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.263 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.366 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.294 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0344 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.659 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.0341 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.158 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.0947 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.241 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.206 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.244 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.241 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.3,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.244 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.122 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.259 -1,0.377,0.377,0.1,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.122 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.366 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.366 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.224 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.488 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.366 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.207 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.128 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.128 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.344 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.0688 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.169 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.337 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.273 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0.9,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.488 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.667,0.242,0.242,0.8,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.122 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.244 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.244 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0.2,0,0,0,0.912,0.653,0.474,0.571,0,0.122 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.554,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.549,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.516,0,0 -1,0.461,0.461,0,0.1,0,0,1,0.64,0.664,0.522,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.679,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0.488 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.384 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.1 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.147 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.177 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.353 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.366 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.244 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0.3,0,0,0,0.421,0.588,0.128,0,0,0.244 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.321,0,0,0.122 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.227 -1,0.377,0.377,0.3,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.167 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.167 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.252 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.068 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.34 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.102 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.343 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.24 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.279 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.166 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.176 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.488 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0.1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0.3,0,0,0,0.421,0.588,0.128,0,0,0.488 -0.333,0.146,0.146,1,0,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0.5,0,0,0,0.421,0.614,0.24,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.332 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.155 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.924,0,0.156 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.272,0,0.0938 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0.457,0,0 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0.533,0,0.361 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0,0,0.137 -0.667,0.41,0.41,0,0.5,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.213 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.35 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.158 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0632 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.236,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.137,0 -1,0.0499,0.0499,0,0,1,0,0.614,0.528,0.0189,0,0.579,0 -1,0.0499,0.0499,0,0,1,0,0.614,0.528,0.0189,0,0.223,0 -1,0.0499,0.0499,0,0,0.7,0,0.614,0.528,0.0189,0,0.322,0 -1,0.0499,0.0499,0,0,0,0.6,0.614,0.528,0.0189,0,0.348,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.489,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.588,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.382,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.481,0 -1,0.0763,0.0763,0,0,0,0.9,0.614,0.528,0.0241,0,0.27,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0.296,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.0987,0.171 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.0258,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.296,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.177 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.177 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.325 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.175 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.0701 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.262 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0328 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.122 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.138 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.244 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.366 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0.5,0,0.421,0.554,0.0791,0,0.0258,0.244 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0.6,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0.7,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.159,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0.3,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0.1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.299 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.475 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.402 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.0947 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.342 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0684 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.171 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0.5,0,0.421,0.546,0.113,0,0.369,0 -1,0.258,0.258,1,0,1,0,0.421,0.546,0.148,0,0.208,0 -1,0.258,0.258,1,0,1,0,0.421,0.546,0.148,0,0.148,0 -1,0.258,0.258,1,0,0.6,0,0.421,0.546,0.148,0,0.283,0 -1,0.362,0.362,1,0,0,0.7,0.421,0.538,0.212,0,0.73,0 -1,0.362,0.362,1,0,0,1,0.421,0.538,0.212,0,0.382,0 -0.667,0.258,0.258,1,0,0,1,0.421,0.546,0.148,0,0.0601,0 -0.667,0.25,0.25,1,0,0,1,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,1,0.421,0.546,0.175,0,0.644,0 -0.667,0.25,0.25,1,0,0,0.8,0.421,0.546,0.175,0,0.0515,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0.5,0,0,0,0.421,0.546,0.175,0,0.137,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0.361,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.249,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.0987,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.519,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.309,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0.359,0,0 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.205,0.587,0,0.122 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.205,0.685,0,0 -0.333,0.141,0.141,0,1,0,0,0.421,0.554,0.111,0.391,0,0.122 -0.333,0.141,0.141,0,0.1,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0.266,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.511,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.182,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.182,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0.842,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0.484,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0.505,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0.473,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0.457,0,0.366 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.274,0.533,0.249,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.274,0,0.258,0.488 -0.667,0.23,0.23,0,0,1,0,0.421,0.563,0.301,0,0,0.122 -0.667,0.23,0.23,0,0,0.1,0.2,0.421,0.563,0.301,0,0.506,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.301,0,0.457,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.301,0,0.135,0 -0.667,0.23,0.23,0,0,0,0.5,0.421,0.563,0.301,0,0.554,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0.433,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.556,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.53,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.395,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.488 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0946 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.143 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.528 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0972 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.454 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.488 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.244 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.244 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.345 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.0689 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.2 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0499 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.242 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.171 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.0683 -1,0.258,0.258,0.8,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0.6,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.245 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.0997 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.0665 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.333,0.145,0.145,0.3,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.205,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.538,0.298,0,0,0.122 -1,0.324,0.324,1,0,0,0,0.421,0.538,0.298,0,0,0 -1,0.324,0.324,0.3,0,0,0,0.421,0.538,0.298,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,1,0,0.421,0.538,0.352,0,0.519,0 -1,0.32,0.32,0,0,0.5,0,0.421,0.538,0.352,0,0.0858,0 -1,0.32,0.32,0,0,0,0.8,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,1,0.421,0.538,0.352,0,0.258,0 -1,0.32,0.32,0,0,0,0.9,0.421,0.538,0.352,0,0.0858,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0.488 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.27,0.244 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.421,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.373,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.223,0.244 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.249,0.366 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.223,0.366 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.137,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0.122 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0.8,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.61 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.191 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.402 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.276 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.387 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.421,0.549,0.0407,0,0,0.244 -0.333,0.162,0.162,1,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0.122 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0.7,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.488 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.61 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0.414 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.318 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.192 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.0775 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.122 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0.5,0,0,0.749,0.623,0.321,0.5,0,0 -0.667,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.353,0,0.122 -0.667,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.582,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.448,0.266,0,0 -0.667,0.324,0.324,0,0.6,0,0,0.807,0.614,0.448,0.424,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.353,0,0.194 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.429,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.347 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.353 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.244 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.122 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.34 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.34 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.068 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.466 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0334 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.213 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.355 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.106 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.234 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.104 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.209 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0.3,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,1,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.5,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0.332,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.402,0,0 -1,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0,0,0 -1,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.636,0,0 -1,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.424,0,0.122 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.326,0,0 -1,0.377,0.377,0,0.5,0,0,0.912,0.653,0.474,0.408,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.418,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.266,0,0.488 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.408,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.799,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.258,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.258,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.44,0,0.366 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.592,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.255,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.734,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.332,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.326,0,0.244 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.766,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.435,0,0.19 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.236,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.236,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0988 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.488 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.332 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.0663 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.169 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.338 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.168 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.202 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.349 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.279 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0.5,0,0,0.421,0.554,0.0542,0.359,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.554,0.0542,0.25,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.554,0.0542,0.799,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0.6,0.5,0,0.421,0.554,0.0595,0,0.309,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.309,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.382,0 -0.333,0.15,0.15,0,0,0.6,0,0.421,0.554,0.0595,0,0.519,0 -0.667,0.25,0.25,0,0,0,0.7,0.421,0.546,0.103,0,0,0 -0.667,0.24,0.24,0,0,0,1,0.421,0.546,0.114,0,0.382,0 -0.667,0.24,0.24,0,0,0,1,0.421,0.546,0.114,0,0.369,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.425,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.227,0.122 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.275,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.433,0 -0.667,0.232,0.232,0.3,0,0,0,0.421,0.546,0.12,0,0.21,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0.244 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0.137,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0.0987,0 -0.667,0.232,0.232,0.9,0,0,0,0.421,0.546,0.12,0,0.309,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.476,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.464,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.442,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.0858,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.399,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.395,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.0601,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.366 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.319 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.197 -1,0.338,0.338,0,0.5,0,0,0.421,0.64,0.352,0.429,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.571,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.625,0,0.244 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.424,0,0.612 -1,0.377,0.377,0,0.6,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.549,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.277,0,0.171 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.522,0,0.0342 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.315,0,0 -1,0.461,0.461,0.3,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0.529 -1,0.41,0.41,0.5,0,0,0,0.807,0.597,0.552,0,0,0.0652 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0537 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.168 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.223 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.732 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -0.667,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.112 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.173 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.104 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.184 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.122 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.366 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.366 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.3,0,0,0,0.421,0.588,0.196,0,0,0.488 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.488 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0.5,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.324,0.324,0.8,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,1,0,0,0,0.807,0.614,0.448,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.244 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.366 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0.8,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,1,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.103,0.103,1,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0.8,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0.2,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.122 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.122 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.134 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.349 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.331 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.14 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.297 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.33 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.033 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.167 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.445 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0.38,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.554,0.146,0,0,0.377 -0.333,0.14,0.14,0,1,0,0,0.421,0.554,0.146,0.462,0,0.2 -0.333,0.14,0.14,0,1,0,0,0.421,0.554,0.146,0.533,0,0.244 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.62,0,0 -0.333,0.14,0.14,0,0.1,0,0,0.421,0.562,0.16,0.37,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0.571,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0.571,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0.337,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0.408,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0.8,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0.6,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0.5,0,0,0.421,0.614,0.327,0.473,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.481,0.636,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0.6,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0.5,0,0,0.807,0.614,0.503,0.435,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.503,0.402,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.503,0.228,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.503,0.37,0,0 -0.667,0.324,0.324,0,0.6,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.366 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.366 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.189 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0946 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.159 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0.13 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0.8,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0.5,0,0.421,0.546,0.113,0,0.0129,0 -1,0.381,0.381,1,0,1,0,0.421,0.538,0.16,0,0,0 -1,0.381,0.381,1,0,1,0,0.421,0.538,0.16,0,0.373,0 -1,0.381,0.381,1,0,1,0,0.421,0.538,0.16,0,0.0987,0 -1,0.362,0.362,1,0,1,0,0.421,0.538,0.212,0,0,0 -1,0.362,0.362,1,0,0.2,0.1,0.421,0.538,0.212,0,0.356,0 -1,0.362,0.362,1,0,0,1,0.421,0.538,0.212,0,0.414,0 -1,0.362,0.362,0.6,0,0,1,0.421,0.538,0.212,0,0.23,0.244 -1,0.362,0.362,0,0,0,1,0.421,0.538,0.212,0,0.27,0 -1,0.362,0.362,0,0,0,1,0.421,0.538,0.212,0,0.137,0.122 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.431,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.384,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.361,0.488 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.361,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.0386,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.262,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.335,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.47,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.431,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.163,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.163,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.309,0.61 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.322,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.309,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.309,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.369,0.122 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.219,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.33,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.283,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.283,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.356,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.156 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.244 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0.8,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0.244 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.61 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.876,0,0,0.244 -1,0.59,0.59,0.5,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.244 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.295 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.159 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.128 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.337 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.236 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.298 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.342 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.173 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.158 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.366 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.259 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0.402,0,0.122 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.315,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.234,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.234,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.647,0,0 -0.333,0.141,0.141,0,0.1,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.478,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.484,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.467,0,0.31 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.435,0,0.356 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0.516,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.345 -1,0.338,0.338,0.3,0,0,0,0.421,0.64,0.352,0,0,0.138 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.312 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.307 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0.3,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0.5,0,1,0.64,0.664,0,0.0987,0 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.506,0 -1,0.59,0.59,0,0,0,0.3,1,0.615,0.82,0,0.425,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.464,0.488 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.382,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.73,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.309,0 -1,0.41,0.41,0,0,0,1,0.807,0.597,0.552,0,0.361,0 -1,0.496,0.496,0,0,0,0.2,0.807,0.563,0.523,0,0.348,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.321 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.168 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.0671 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.297 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.187 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0.0935 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.157 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.156 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0624 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0.8,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0.6,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.488 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.366 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,0.8,0.5,0,0,0.912,0.653,0.474,0.353,0,0.193 -1,0.377,0.377,1,1,0,0,0.912,0.653,0.474,0.554,0,0 -0.667,0.268,0.268,1,1,0,0,0.749,0.623,0.321,0.451,0,0 -1,0.377,0.377,1,1,0,0,0.912,0.653,0.474,0.527,0,0 -1,0.377,0.377,1,0.6,0,0,0.912,0.653,0.474,0.274,0,0 -1,0.377,0.377,0.8,0,0,0,0.912,0.653,0.474,0.274,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.366 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.326 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.0652 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.122 -1,0.72,0.72,0,0,1,0,1,0.563,0.777,0,0.519,0 -1,0.72,0.72,0,0,1,0,1,0.563,0.777,0,0.236,0.271 -1,0.496,0.496,0,0,1,0,0.807,0.563,0.523,0,0.309,0.0339 -1,0.386,0.386,0,0,0.1,0.2,0.807,0.529,0.318,0,0.459,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.112,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.283,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.296,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.296,0 -1,0.183,0.183,0,0,0,1,0.807,0.503,0.141,0,0.309,0 -1,0.183,0.183,0,0,0,1,0.807,0.503,0.141,0,0.322,0 -1,0.116,0.116,0,0,0,1,0.614,0.532,0.0783,0,0,0.122 -1,0.116,0.116,0,0,0,0.1,0.614,0.532,0.0783,0,0.369,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.348,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.369,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.322,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.348,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.309,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.296,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.472,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.309,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.309,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.369,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.232,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.236,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.558,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.0987,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.249,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.361,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.468,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.309,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.361,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.382,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.631,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.309,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.396 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.153 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.0612 -0.333,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0.4,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0.3,0,0,0,0.421,0.563,0.153,0,0,0.122 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.153,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.488 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.122 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.196 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.136 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.36 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.339 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0677 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0.3,0,0,0,0.614,0.537,0.0316,0,0,0.149 -0.667,0.136,0.136,1,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.34 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.34 -0.333,0.163,0.163,0.9,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.558 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.1 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.575 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.237 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.135 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.275 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.309 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.337 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.167 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0668 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.264 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0659 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.138 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.142 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.198 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.234 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.352 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.341 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.0682 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.281 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0956 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0.8,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0.6,0,0,0,0.749,0.623,0.31,0.364,0,0 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.647,0,0.122 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.359,0,0.244 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.342,0,0 -0.667,0.362,0.362,0,0.1,0,0,0.807,0.614,0.432,0.391,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.366 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.337 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.303 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.366 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.299 -1,0.397,0.397,0.3,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,1,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0.5,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.312 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.285 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.22 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.134 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.31 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0335 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.201 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.344 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.103 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0.5,0,0,1,0.615,0.79,0.473,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.761,0,0.283 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.435,0,0.161 -1,0.788,0.788,0,1,0,0,1,0.563,0.749,0.549,0,0 -1,0.788,0.788,0,0.6,0,0,1,0.563,0.749,0,0,0.488 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.337,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.527,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0.5,0,0.421,0.546,0.142,0,0.296,0 -1,0.263,0.263,0,0,1,0,0.421,0.546,0.142,0,0.309,0 -1,0.256,0.256,0,0,0,0.3,0.421,0.546,0.169,0,0.137,0 -1,0.256,0.256,0,0,0,1,0.421,0.546,0.169,0,0.309,0 -1,0.256,0.256,0,0,0,1,0.421,0.546,0.169,0,0,0 -0.667,0.153,0.153,0,0,0,1,0.421,0.554,0.0933,0,0.373,0 -0.667,0.153,0.153,0,0,0,1,0.421,0.554,0.0933,0,0.0601,0 -0.667,0.153,0.153,0,0,0,1,0.421,0.554,0.0933,0,0,0 -0.667,0.147,0.147,0,0,0,0.1,0.421,0.554,0.101,0,0.369,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.369,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.0258,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.348,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.472,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.249,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.258,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.73,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.408,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.0601,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.543,0.366 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.47,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.249,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.0515,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.0601,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.0987,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.575,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.313,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.631,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.193,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.451,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.579,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.159,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.309,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.0601,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.0258,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.408,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.382,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.137,0.244 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.407 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.098 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.315,0,0,0.122 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.289,0.289,0.1,0,0,0,0.749,0.623,0.37,0,0,0.334 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.244 -0.667,0.289,0.289,0,0.5,0,0,0.749,0.623,0.37,0.37,0,0 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.37,0.38,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.546,0.418,0,0.244 -1,0.518,0.518,0,1,0,0,1,0.64,0.718,0.293,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.718,0.321,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.718,0,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.315,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.446,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.473,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.457,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.582,0,0.488 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0.339 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0.3,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,1,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0.5,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.488 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.366 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.488 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.366 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.427,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.488 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.488 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.366 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.341 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.0341 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0.3,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0,0 -1,0.788,0.788,0.1,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.244 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.366 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.217 -1,0.571,0.571,0,0,0.5,0,1,0.512,0.492,0,0.137,0 -1,0.571,0.571,0,0,1,0,1,0.512,0.492,0,0.236,0 -1,0.183,0.183,0,0,0,0.3,0.807,0.503,0.155,0,0.124,0 -1,0.183,0.183,0,0,0,1,0.807,0.503,0.155,0,0.421,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0.545,0.349 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0.459,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.309,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.0386,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0.433,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0.0386,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0.345 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.192 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.353 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0353 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.333 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.2 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.339 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.0678 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.244 -0.333,0.163,0.163,0,0.5,0,0,0.421,0.549,0.0396,0.462,0,0 -0.333,0.163,0.163,0,1,0,0,0.421,0.549,0.0396,0.625,0,0 -0.333,0.163,0.163,0,1,0,0,0.421,0.549,0.0396,0.408,0,0 -0.333,0.162,0.162,0,1,0,0,0.421,0.554,0.0461,0.495,0,0 -0.333,0.162,0.162,0,0.6,0,0,0.421,0.554,0.0461,0.234,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0.234,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0.299,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.114 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.333 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0998 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0.366 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0.5,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0.6,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,1,0.5,0,0,0.421,0.614,0.232,0.391,0,0 -0.667,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.44,0,0 -0.667,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.332,0,0.122 -0.667,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.413,0,0 -0.667,0.252,0.252,1,0.6,0,0,0.421,0.614,0.232,0.215,0,0 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0.215,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0.467,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0.8,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.488 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.273 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.147 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.147 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.441 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.246 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.158 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0.5,0,0,0.421,0.64,0.339,0.462,0,0 -1,0.353,0.353,0,1,0,0,0.421,0.64,0.339,0.565,0,0 -1,0.353,0.353,0,1,0,0,0.421,0.64,0.339,0.549,0,0.122 -1,0.408,0.408,0.8,1,0,0,0.912,0.653,0.457,0.429,0,0 -1,0.408,0.408,1,0.6,0,0,0.912,0.653,0.457,0.286,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0.572,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0.38,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.279 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0941 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.326 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.0326 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.328 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.207 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.164 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.352 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.211 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0.3,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.143,0.143,0.1,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.366 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.174 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.348 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.104 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.366 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.173 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.328 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.262 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.228 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.0652 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.193 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.0964 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.199 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.244 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.122 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.122 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.244 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.417 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.244 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.244 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.135 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.0327 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.327 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0327 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.306 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.283 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.113 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.166 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.199 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0.102 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.155 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.0311 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.301 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.0334 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.17 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.278 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.366 -0.667,0.274,0.274,0.3,0,0,0,0.421,0.546,0.0764,0.288,0,0.122 -0.333,0.162,0.162,1,1,0,0,0.421,0.554,0.0461,0.571,0,0 -0.667,0.274,0.274,1,1,0,0,0.421,0.546,0.0764,0.168,0,0 -0.667,0.274,0.274,1,1,0,0,0.421,0.546,0.0764,0.168,0,0 -0.667,0.274,0.274,1,1,0,0,0.421,0.546,0.0764,0.457,0,0 -0.667,0.263,0.263,1,0.1,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,1,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.156,0.156,0.9,0,0,0,0.421,0.554,0.0526,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0.244 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0.5,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.366 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0.5,0,0,1,0.64,0.64,0.63,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.397,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.598,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.424,0,0 -1,0.518,0.518,0,0.6,0,0,1,0.64,0.64,0.277,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.277,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.337,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.603,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.177 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.0354 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.366 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.442 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.122 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.236,0 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.258,0 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.519,0 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.309,0 -1,0.408,0.408,0,0,0.5,0,0.912,0.653,0.546,0,0.0601,0 -1,0.408,0.408,0,0,0,0.8,0.912,0.653,0.546,0,0,0.122 -1,0.518,0.518,0,0,0,1,1,0.64,0.718,0,0.421,0 -1,0.518,0.518,0.3,0,0,1,1,0.64,0.718,0,0.309,0 -1,0.518,0.518,1,0,0,1,1,0.64,0.718,0,0.369,0 -1,0.518,0.518,1,0,0,0.2,1,0.64,0.718,0,0.554,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0.262,0.122 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0.283,0.244 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.429,0.366 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.631,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.223,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.27,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.296,0.122 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0.524,0 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0.476,0 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0.122 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0.151 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,1,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,1,0,0,0,1,0.512,0.492,0,0,0.244 -1,0.571,0.571,1,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0.9,0,0,0,1,0.512,0.492,0,0,0.407 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.526 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.248 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.218 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.178 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.127 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.203 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.184 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.138 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.236 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0.462,0,0 -0.667,0.237,0.237,0,1,0,0,0.421,0.546,0.198,0.565,0,0.244 -0.667,0.237,0.237,0.8,1,0,0,0.421,0.546,0.198,0,0,0.366 -0.667,0.237,0.237,1,1,0,0,0.421,0.546,0.198,0.446,0,0 -0.667,0.237,0.237,1,1,0,0,0.421,0.546,0.198,0.38,0,0.244 -0.667,0.235,0.235,1,1,0,0,0.421,0.546,0.232,0.554,0,0 -0.667,0.235,0.235,1,0.5,0,0,0.421,0.546,0.232,0,0,0.244 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0.587,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0.375,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0.609,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.435,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.236,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.236,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.424,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.429,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.29,0.429,0,0 -0.667,0.236,0.236,0.1,0,0,0,0.421,0.563,0.29,0.587,0,0.244 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0.321,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0.364,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0.549,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.446,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.397,0,0.244 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.397,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.62,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.236,0,0.122 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.236,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.495,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.37,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.505,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.451,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0.38,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.554,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.321,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.337,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.446,0,0.488 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.326,0,0.122 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.429,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.44,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.25,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.457,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.435,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.582,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.582,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.435,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.153 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.061 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.264 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.281 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.0956 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.354 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0354 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.165 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.132 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.488 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0.3,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0.5,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0.5,0,0,0.912,0.653,0.457,0.5,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.408,0,0.122 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.375,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.418,0,0 -1,0.518,0.518,0,0.6,0,0,1,0.64,0.64,0.277,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.533,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.467,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.533,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.182,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.182,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.413,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.527,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.359,0,0.488 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.408,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.359,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.587,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.326,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.386,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.576,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.446,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0.244 -0.667,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.342 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.348 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.032 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.288 -0.667,0.222,0.222,0,0,0.5,0,0.807,0.512,0.0474,0,0.361,0 -0.667,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0.5,0,0.807,0.512,0.0474,0,0,0.17 -0.333,0.136,0.136,0,0,0,0.8,0.614,0.537,0.0316,0,0,0.238 -0,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0.9,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.488 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0.3,0,0,0,0.421,0.64,0.339,0.44,0,0 -1,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.337,0,0 -1,0.289,0.289,1,1,0,0,0.749,0.623,0.31,0,0,0 -1,0.289,0.289,1,1,0,0,0.749,0.623,0.31,0.56,0,0.366 -1,0.408,0.408,1,1,0,0,0.912,0.653,0.457,0.375,0,0.244 -1,0.408,0.408,1,0.1,0,0,0.912,0.653,0.457,0.38,0,0 -1,0.408,0.408,0.4,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.446,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.462,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.353,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.321,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.219 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.171 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.308 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0.3,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.366 -0.333,0.142,0.142,0,0.5,0,0,0.421,0.554,0.0766,0.489,0,0 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.0766,0.473,0,0.366 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.0766,0.56,0,0 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.0766,0.658,0,0 -0.333,0.142,0.142,0,0.6,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0.685,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.522,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.462,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.418,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.446,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.304,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0.652,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.366 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0.587,0,0.488 -1,0.353,0.353,0,1,0,0,0.421,0.64,0.339,0.391,0,0.244 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.484,0,0.366 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.609,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.37,0,0 -1,0.408,0.408,0,0.5,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.533,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.467,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.522,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.418,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.179,0,0.17 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.179,0,0.0681 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.538,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.5,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.293,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.511,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.473,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.647,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.353,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.264,0,0.421 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.264,0,0.106 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0.402,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0.728,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.246 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.17 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.202 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.208 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.162 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.341 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.341 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.102 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.175 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.035 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.165 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.287 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.168 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.202 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.538,0.198,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.167 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.338 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0.488 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0.244 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0.9,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.366 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.366 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.366 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.488 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.211 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.134 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.26 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.161 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.161 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.342 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.308 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0312 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.218 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.34 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.034 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.204 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.488 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.245 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0925 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0.3,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,1,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0.4,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.183 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.185 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.337 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.333 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.654 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.385 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.353,0.353,0,0,1,0,0.421,0.64,0.339,0,0.21,0 -1,0.353,0.353,0,0,1,0,0.421,0.64,0.339,0.457,0.249,0 -1,0.353,0.353,0,1,1,0,0.421,0.64,0.339,0.418,0,0.122 -1,0.353,0.353,0.8,1,0,0.3,0.421,0.64,0.339,0,0.185,0 -1,0.353,0.353,1,1,0,1,0.421,0.64,0.339,0.255,0.309,0 -1,0.353,0.353,1,1,0,1,0.421,0.64,0.339,0.522,0,0.122 -1,0.408,0.408,0,0.1,0,1,0.912,0.653,0.457,0,0.408,0 -1,0.408,0.408,0,0,0,0.7,0.912,0.653,0.457,0.408,0.309,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.283,0.427,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.171,0.217,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.171,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.522,0,0 -1,0.518,0.518,0,0.1,0,0,1,0.64,0.64,0.592,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.457,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.462,0,0.122 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.609,0,0 -1,0.788,0.788,0,0.1,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.366 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.235,0.235,0,0.5,0,0,0.421,0.546,0.232,0.348,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.685,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.538,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.299,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.19,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.19,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.488 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.366 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.488 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0.3,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.366 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.61 -1,0.518,0.518,0.4,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.333 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.0999 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.366 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.122 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.163 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.195 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.122 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.105 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.1 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.147 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0.3,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.245,0.245,1,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0.5,0,0,0,0.421,0.546,0.184,0.402,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0.592,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0.462,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0.435,0,0 -0.667,0.237,0.237,0,0.1,0,0,0.421,0.546,0.198,0.332,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0.353,0,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.366 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.287,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.17 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.549 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0.5,0,0,0.421,0.563,0.29,0.418,0,0 -0.667,0.236,0.236,0,1,0,0,0.421,0.563,0.29,0.326,0,0 -1,0.329,0.329,0,1,0,0,0.421,0.563,0.427,0.38,0,0 -1,0.334,0.334,0,1,0,0,0.421,0.602,0.448,0.402,0,0 -1,0.334,0.334,0,0.6,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.31,0,0.218 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.5,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.457,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0.364,0,0 -0.333,0.151,0.151,0,0,0.5,0,0.421,0.588,0.167,0.326,0.223,0.174 -0.667,0.252,0.252,0,0,1,0,0.421,0.614,0.315,0.182,0,0.4 -0.667,0.252,0.252,0,0,0,0.3,0.421,0.614,0.315,0.182,0.249,0 -0.667,0.252,0.252,0,0,0,1,0.421,0.614,0.315,0,0.124,0.488 -0.667,0.252,0.252,0,0,0,1,0.421,0.614,0.315,0,0.223,0.366 -0.667,0.289,0.289,0,0,0,1,0.749,0.623,0.37,0,0.567,0.15 -0.667,0.289,0.289,0,0,0,1,0.749,0.623,0.37,0,0.348,0 -0.667,0.289,0.289,0,0,0,1,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0.1,0.749,0.623,0.37,0,0.172,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0.0258,0.488 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.322,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.433,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.185,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.112,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.164 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.488 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.163 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.0978 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.172 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.103 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.163 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.354 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.0354 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.172 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.069 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.205 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.488 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.247 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.291 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.237 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.224 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.339 -1,0.408,0.408,0.5,0,0,0,0.912,0.653,0.457,0,0,0.224 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.332 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.219 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.303 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0674 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.527 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.161 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.17 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0679 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0733 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.288 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.351 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.158 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.063 -0.667,0.277,0.277,0,0,1,0,0.421,0.537,0.0633,0,0.309,0 -0.667,0.277,0.277,0,0,1,0,0.421,0.537,0.0633,0.418,0.309,0 -0.667,0.277,0.277,0,1,1,0,0.421,0.537,0.0633,0.402,0.309,0 -0.667,0.277,0.277,0,1,0,0.3,0.421,0.537,0.0633,0,0.506,0 -0.667,0.277,0.277,0,1,0,1,0.421,0.537,0.0633,0.364,0.395,0 -0.667,0.277,0.277,0,1,0,0,0.421,0.537,0.0633,0.38,0,0 -0.667,0.274,0.274,0,1,0,0,0.421,0.546,0.0764,0,0.575,0 -0.667,0.274,0.274,0,0.5,0,0,0.421,0.546,0.0764,0.511,0.412,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0.462,0.296,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0.459,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0.348,0.15,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0.446,0.476,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.167,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.296,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.283,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.309,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.283,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.0515,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.472,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.631,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.309,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.433,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.112,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.258,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.408,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.459,0.244 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.258,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.395,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.496,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.521,0.61 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.369,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.159,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.0386,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0.366 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.244 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.366 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.366 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0.322 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.167 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.1 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.172 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0.8,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.488 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.244 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0.5,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.134 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.17 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.4 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.168 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.171 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.136 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.124,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,1,0,0.421,0.554,0.0657,0,0.296,0 -0.667,0.143,0.143,0,0,0.5,0,0.421,0.554,0.0657,0,0.391,0.122 -0.667,0.143,0.143,0,0,0,0.8,0.421,0.554,0.0657,0,0.313,0 -0.667,0.142,0.142,0,0,0,0.5,0.421,0.554,0.073,0,0.236,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.309,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.296,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.258,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.249,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.159,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.472,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.0386,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0.283,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0.0258,0 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.519,0 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.275,0 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.335,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.124,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.0386,0.488 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.614,0.366 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.155,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.296,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.408,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.185,0.291 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0338 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.373,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.249,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.137,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.21,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.519,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.122 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.05,0.05,1,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0.5,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.179 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0.5,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.222 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.156 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.0312 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.488 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,1,0,0.244 -0.333,0.151,0.151,0,1,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0,1,0,0,0.585,0.592,0.163,0.326,0,0 -0.333,0.169,0.169,0,1,0,0,0.585,0.592,0.163,0.418,0,0.488 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.326,0,0 -0.667,0.289,0.289,0,0.1,0,0,0.749,0.623,0.31,0.451,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.244 -0.667,0.362,0.362,0,0.5,0,0,0.807,0.614,0.432,0.636,0,0.122 -0.667,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0.489,0,0.122 -0.667,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0.587,0,0 -0.667,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0.6,0,0,0.807,0.614,0.432,0.364,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.283,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0.8,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.614,0.562,0.26,0,0,0.122 -0.667,0.296,0.296,1,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,0.9,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.333 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.2 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.129 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.0966 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.547 -1,0.104,0.104,0.3,0,0,0,0.807,0.495,0.0314,0,0,0.104 -1,0.104,0.104,1,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.222,0.222,0.1,0,0,0,0.807,0.512,0.0474,0,0,0.137 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.309 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.366 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.488 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.315 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.341 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0.8,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.64,0.397,0,0.122 -1,0.518,0.518,1,1,0,0,1,0.64,0.64,0.533,0,0.244 -1,0.668,0.668,1,1,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0.5,1,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.337,0,0 -1,0.462,0.462,0,0.1,0,0,0.807,0.597,0.532,0.56,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.239,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.848,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.478,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.527,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.239,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.366 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0.31,0,0.488 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0.451,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.375,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.467,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.554,0.0636,0.413,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.554,0.0636,0.174,0,0 -0.667,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.174,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.23 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.104 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.173 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0.3,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.359,0.359,1,0,0,0,0.421,0.538,0.244,0,0,0 -1,0.343,0.343,0.1,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.122 -0.333,0.144,0.144,0.8,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.162,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.305,0,0,0.244 -0.667,0.239,0.239,0.9,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.732 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.122 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.366 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.244 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0.122 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0.154 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.306 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.288 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.35 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.15 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.244 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.257 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.0679 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.34 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.136 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.284 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.176 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.0703 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.366 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.244 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.244 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.732 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.244 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.244 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0.3,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,1,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0.366 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0.244 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0.122 -0.667,0.223,0.223,0.4,0,0,0,0.614,0.545,0.176,0,0,0.156 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.366 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.122 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.244 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.341 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.156 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.122 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.341 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.334 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.14 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.194 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.13 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -1,0.334,0.334,1,0,0,0,0.421,0.602,0.276,0,0,0.316 -1,0.334,0.334,1,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,1,0,0,0,0.421,0.602,0.276,0,0,0.244 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0.122 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0.162 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0.0649 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0.3,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.121 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.212 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.716 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.284 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.276 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.295 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.244 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.234 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.285 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0.3,0,0,0,0.421,0.546,0.0894,0,0,0.177 -0.667,0.263,0.263,1,0,0,0,0.421,0.546,0.0894,0,0,0.141 -0.667,0.263,0.263,0.1,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.329 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0658 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.273 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.19 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0.3,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,1,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,1,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0.9,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0.397,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.554,0.0657,0.438,0,0.122 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.073,0.219,0,0 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.073,0.484,0,0.366 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.073,0.212,0,0.122 -0.333,0.142,0.142,0,0.1,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.24 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.658 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.55 -0.667,0.289,0.289,0.8,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.0353 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.353 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.353 -1,0.408,0.408,0.9,0,0,0,0.912,0.653,0.457,0,0,0.141 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.49 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -0.333,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0.9,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0.5,0,0.421,0.554,0.0577,0,0.309,0 -0.333,0.153,0.153,0,0,1,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,1,0,0.421,0.554,0.0577,0,0.446,0 -0.333,0.153,0.153,0,0,0.5,0,0.421,0.554,0.0577,0,0.249,0 -0.333,0.153,0.153,0,0,0,0.8,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,1,0.421,0.554,0.0628,0,0.408,0 -0.333,0.147,0.147,0,0,0,1,0.421,0.554,0.0628,0,0.27,0 -0.333,0.147,0.147,0,0,0,1,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0.2,0.421,0.554,0.0628,0,0.421,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0.258,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0.232,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0.296,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.333 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.41 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.247 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0985 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.652 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.366 -0.667,0.239,0.239,0.3,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.244 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.244 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.366 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.488 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.61 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.206,0.206,0.8,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,1,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,1,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.256,0.256,1,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0.5,0,0,0,0.614,0.579,0.274,0,0,0.244 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.432 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0917 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0.356,0 -1,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0.223,0.175 -1,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0,0.175 -1,0.222,0.222,0,0,0,0.3,0.807,0.512,0.0474,0,0.283,0 -1,0.222,0.222,0,0,0,1,0.807,0.512,0.0474,0,0.0987,0 -1,0.222,0.222,0,0,0,1,0.807,0.512,0.0474,0,0,0 -1,0.39,0.39,0,0,0,1,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,1,0.421,0.525,0.087,0,0,0.34 -1,0.39,0.39,0,0,0,1,0.421,0.525,0.087,0,0,0.34 -1,0.39,0.39,0,0,0,0.1,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.271 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.175 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.035 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0.3,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0.5,0,0.5,0,0.421,0.546,0.116,0,0.395,0 -0.667,0.237,0.237,0,0,1,0,0.421,0.546,0.116,0,0.0644,0 -0.667,0.235,0.235,0,0,0,0.3,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.546,0.13,0,0.296,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.546,0.13,0,0.309,0 -0.667,0.235,0.235,0,0,0,0.7,0.421,0.546,0.13,0,0.296,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.506,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.352,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.142,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.485,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.236,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.185,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.519,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.427,0.488 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.217,0.122 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.348,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.395,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.223,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.459,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.223,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.073,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.0258,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.353,0.353,0.8,0,0,0,0.421,0.64,0.339,0,0.236,0 -1,0.353,0.353,0.6,0,0,0,0.421,0.64,0.339,0,0.236,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0.258,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.636 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.274 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.594 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.122 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0627 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.533,0,0.0941 -1,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0.315,0,0 -1,0.462,0.462,0,1,0,0,0.807,0.597,0.532,0.264,0,0 -1,0.462,0.462,0,1,0,0,0.807,0.597,0.532,0.264,0,0 -1,0.462,0.462,0,1,0,0,0.807,0.597,0.532,0.424,0,0 -1,0.462,0.462,0,0.1,0,0,0.807,0.597,0.532,0.571,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.777,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.312,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.312,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.353,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.359,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.353,0,0.706 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.386,0,0.102 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.488 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.324 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.0324 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.17 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.272 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.122 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.386 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.177 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.0706 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.178 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.335 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0.5,0,0,0.421,0.588,0.19,0.304,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0.315,0,0 -0.333,0.144,0.144,0,1,0,0,0.421,0.575,0.103,0.516,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0.527,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0.511,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.5,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.256 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.117 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0351 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.351 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.122 -1,0.286,0.286,0.8,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.457 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.539 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.034 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0.14 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0.244 -1,0.392,0.392,0.4,0,0,0,0.421,0.542,0.212,0,0,0.195 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.0974 -1,0.392,0.392,0.8,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0.1,0,0,0,0.421,0.542,0.252,0,0,0.4 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.488 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.122 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0.402,0,0 -0.667,0.251,0.251,0,1,0,0,0.421,0.548,0.204,0.293,0,0.122 -0.667,0.251,0.251,0,1,0,0,0.421,0.548,0.204,0.166,0,0 -0.667,0.249,0.249,0,1,0,0,0.421,0.548,0.24,0.166,0,0.244 -0.667,0.249,0.249,0,1,0,0,0.421,0.548,0.24,0.522,0,0.122 -0.667,0.249,0.249,0.8,0.2,0,0,0.421,0.548,0.24,0.571,0,0 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.24,0.277,0,0 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.149,0.149,0.1,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0.8,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0.488 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0.385 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0.0701 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.0701 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.28 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0.295 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0.138 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,1,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,1,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0.9,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.16 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.462 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.244 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.129 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0.18 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.732 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,1,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,1,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,1,0,0,0,0.421,0.555,0.0654,0,0,0.327 -1,0.286,0.286,0.5,0,0,0,0.421,0.548,0.113,0,0,0.0327 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.488 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.488 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.488 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.244 -0.667,0.249,0.249,0,0,1,0,0.421,0.548,0.24,0,0.361,0 -0.667,0.249,0.249,0,0,1,0,0.421,0.548,0.273,0,0.309,0 -0.667,0.249,0.249,0,0,1,0,0.421,0.548,0.273,0,0.0987,0.244 -0.667,0.249,0.249,0,0,0,0.3,0.421,0.548,0.273,0,0.262,0 -0.667,0.249,0.249,0,0,0,1,0.421,0.548,0.273,0,0.433,0.488 -0.667,0.249,0.249,0,0,0,1,0.421,0.548,0.273,0,0.0601,0.244 -0.667,0.249,0.249,0,0,0,0.4,0.421,0.548,0.273,0,0.421,0.122 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0.249,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0.8,0,0,0,0.421,0.564,0.159,0,0.519,0 -0.667,0.15,0.15,1,0,0,0,0.421,0.564,0.159,0,0.283,0 -0.667,0.15,0.15,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,1,0,0,0,0.421,0.564,0.159,0,0.408,0 -0.667,0.259,0.259,0.5,0,0,0,0.421,0.591,0.315,0,0.288,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.236,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.369,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.309,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.348,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.459,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.421,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.556,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.423,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.369,0.244 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.0258,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.27,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.283,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.159,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.369,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.392,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.587,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0.408,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.168 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.379 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.289 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.417 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0346 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.339 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.203 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.312 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.149,0.149,0.1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.219 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.154 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.49 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.488 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0.5,0,0,0.807,0.6,0.55,0.511,0,0 -0.667,0.554,0.554,0,1,0,0,0.807,0.6,0.55,0.397,0,0.244 -0.667,0.554,0.554,0,1,0,0,0.807,0.6,0.55,0.527,0,0 -1,0.851,0.851,0,1,0,0,1,0.568,0.774,0.342,0,0 -1,0.851,0.851,0,0.7,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.139,0.139,0.8,0.5,0,0,0.614,0.538,0.0323,0.826,0,0.366 -1,0.139,0.139,1,1,0,0,0.614,0.538,0.0323,0.402,0,0 -1,0.139,0.139,1,1,0,0,0.614,0.538,0.0323,0.668,0,0.305 -1,0.228,0.228,0.1,1,0,0,0.807,0.514,0.0488,0.204,0,0 -1,0.228,0.228,0,1,0,0,0.807,0.514,0.0488,0.204,0,0 -1,0.228,0.228,0,1,0,0,0.807,0.514,0.0488,0.375,0,0 -0.667,0.167,0.167,0,0.1,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.543,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.62,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.44,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.522,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0.272,0,0.336 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.168 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.366 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.273 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.148 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0297 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.122 -0.667,0.286,0.286,0.8,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.539 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.244 -1,0.501,0.501,0.1,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.366 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.244 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.366 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.137 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.457 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.807,0.497,0.0158,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.161 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.161 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0642 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.292 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0311 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0932 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.334 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.27 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.7 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.105 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.246 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.351 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0.8,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0.9,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0.8,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.488 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.806,0.806,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0.1,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.339 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.373 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.207 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0.207 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.177 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.142 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.177 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.244 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.249,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.0515,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0.3,0.421,0.555,0.0676,0,0.0987,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.555,0.0676,0,0.137,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.555,0.0676,0,0,0.244 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0.15,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0.296,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0.0987,0 -0.333,0.149,0.149,0,0,0,0.2,0.421,0.555,0.0751,0,0.399,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0.137,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.236,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.309,0.366 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.249,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.258,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0.5,0,0,0.421,0.564,0.0871,0.766,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.564,0.0871,0.315,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.564,0.0871,0.364,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.576,0.106,0.418,0,0 -0.333,0.154,0.154,0,0.7,0,0,0.421,0.576,0.106,0.239,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.239,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.321,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.478,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.364,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0.3,0,0,0,0.421,0.617,0.239,0.446,0,0.122 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0.467,0,0.244 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0.701,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.435,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.359,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.467,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.625,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.307,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.307,0,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.435,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.28 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.231 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.169 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.27 -1,0.0781,0.0781,0.8,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0.6,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.363 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.195 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0.0486 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.334 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.278 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.197 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.61 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.461 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.244 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0.3,0,0,0,0.421,0.542,0.11,0,0,0.323 -1,0.404,0.404,1,0,0,0,0.421,0.542,0.11,0,0,0.259 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.228 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.244 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0627 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0.8,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0.6,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.149,0.149,0.1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.366 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.244 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.278 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0313 -0.667,0.554,0.554,0.8,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.55,0,0,0.244 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0.5,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.191 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.287 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.31 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0.172 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0.103 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0.249 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0.066 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.264 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.345 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0345 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.244 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0.8,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.168,0.168,0.5,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.244 -1,0.392,0.392,0.8,0,0,0,0.421,0.542,0.212,0,0,0.122 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0.244 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.244 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.122 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.122 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0.7,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.167 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.189 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.397 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0.16 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0.128 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0.3,0,0,0,0.421,0.542,0.401,0,0,0.168 -1,0.349,0.349,1,0,0,0,0.421,0.542,0.401,0,0,0.134 -1,0.349,0.349,1,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0.355 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0.9,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.176 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.141 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.1 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.169 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.0337 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.278 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.244 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.291 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.0676 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.122 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.122 -0.667,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0,0.0987,0.174 -0.667,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0,0.159,0 -0.667,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0,0,0.122 -0.667,0.454,0.454,0,0,0,0.3,0.807,0.617,0.501,0,0.258,0 -0.667,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.137,0.488 -0.667,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.296,0.122 -0.667,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.0601,0 -0.667,0.554,0.554,0,0,0,0.8,0.807,0.6,0.588,0,0.0987,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0.348,0.122 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0.356,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0.416,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0.425,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.276 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.244 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.213 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.196 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.166 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.0996 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.161 -1,0.164,0.164,0.8,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,1,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,1,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,1,0,0,0,0.421,0.555,0.0826,0,0,0.231 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0.168 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0.302 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.364,0.364,1,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0.8,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.215 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0.5,0,0,0.421,0.542,0.277,0.587,0,0 -1,0.352,0.352,0,1,0,0,0.421,0.542,0.297,0.446,0,0.172 -1,0.352,0.352,0,1,0,0,0.421,0.542,0.297,0.391,0,0.0343 -1,0.352,0.352,0.8,1,0,0,0.421,0.542,0.297,0.554,0,0 -1,0.352,0.352,0.6,1,0,0,0.421,0.542,0.297,0.223,0,0 -1,0.352,0.352,0,1,0,0,0.421,0.542,0.297,0.223,0,0 -0.667,0.251,0.251,0,0.1,0,0,0.421,0.548,0.204,0.5,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0.74 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0.488 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.244 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.122 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.244 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.488 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.293 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0329 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.329 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0329 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.508 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.122 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0.3,0,0,0,0.421,0.555,0.0473,0,0,0.103 -0.333,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0.324 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.398 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.0617 -0.333,0.16,0.16,1,0.5,0,0,0.421,0.555,0.0593,0.402,0,0 -0.333,0.16,0.16,1,1,0,0,0.421,0.555,0.0593,0.565,0,0 -0.333,0.16,0.16,1,1,0,0,0.421,0.555,0.0593,0.582,0,0 -0.333,0.16,0.16,1,1,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,1,0.7,0,0,0.421,0.555,0.0593,0.533,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.555,0.0593,0.212,0,0.122 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.207,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.207,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.332,0,0.122 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.489,0,0 -0.333,0.154,0.154,0.4,0,0,0,0.421,0.555,0.0646,0.598,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.299,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.435,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.451,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.647,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.467,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.3,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0.1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.404,0.404,0,0,1,0,0.421,0.645,0.351,0,0.395,0 -1,0.404,0.404,0,0,0.5,0,0.421,0.645,0.351,0,0.305,0 -1,0.404,0.404,0,0,0,0.8,0.421,0.645,0.351,0,0.155,0.244 -1,0.404,0.404,0,0.5,0,1,0.421,0.645,0.351,0.342,0.15,0 -1,0.404,0.404,0,1,0,0.9,0.421,0.645,0.351,0.804,0.236,0 -1,0.404,0.404,0,1,0,0,0.421,0.645,0.351,0.549,0,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0.353,0.429,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0,0.27,0.122 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0.1,0,0,0.912,0.658,0.473,0,0.506,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.249,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.137,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.409 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.265 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.957 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.191 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.173 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.167 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.1 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.243 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.199 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.249 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0635 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.107 -0.667,0.286,0.286,0.8,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.106 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.286 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.319 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.366 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.324 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.231 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.366 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0.5,0,0.614,0.538,0.0323,0,0.309,0 -1,0.139,0.139,0,0,1,0,0.614,0.538,0.0323,0,0,0 -1,0.284,0.284,0,0,0,0.3,0.421,0.54,0.0653,0,0.438,0 -1,0.284,0.284,0,0,0,1,0.421,0.54,0.0653,0,0.313,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0.322,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0.137,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0.249,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.073,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.455,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.395,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.275,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.348,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.584,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.356,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.732 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.41 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.321,0,0 -0.667,0.259,0.259,0,1,0,0,0.421,0.591,0.196,0.402,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.304,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0,0,0.169 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.505,0,0.169 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0.6,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.175 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.349 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.0349 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.176 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.282 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.316 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.17 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.19 -1,0.806,0.806,0.8,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0.6,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.287 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.419 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.541 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0.451,0,0 -1,0.391,0.391,0,1,0,0,0.807,0.531,0.317,0.587,0,0 -1,0.391,0.391,0,1,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,1,0,0,0.807,0.531,0.317,0.62,0,0 -1,0.22,0.22,0,1,0,0,0.614,0.546,0.167,0.408,0,0.366 -1,0.116,0.116,0,0.2,0,0,0.614,0.533,0.0781,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0.5,0,0.421,0.555,0.0593,0,0.296,0 -0.333,0.16,0.16,0,0,1,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,1,0,0.421,0.555,0.0593,0,0.361,0 -0.333,0.16,0.16,0,0,0.5,0,0.421,0.555,0.0593,0,0.0129,0 -0.333,0.16,0.16,0,0,0,0.8,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,1,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0.9,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0.5,0,0.421,0.548,0.113,0,0.258,0 -0.667,0.259,0.259,0,0,1,0,0.421,0.548,0.113,0,0.459,0 -0.667,0.251,0.251,0,0,0,0.3,0.421,0.548,0.119,0,0,0 -0.667,0.251,0.251,0,0,0,1,0.421,0.548,0.119,0,0.0386,0 -0.667,0.251,0.251,0,0,0,1,0.421,0.548,0.119,0,0,0 -0.667,0.251,0.251,0,0,0,1,0.421,0.548,0.119,0,0.644,0 -0.667,0.251,0.251,0,0,0,0.8,0.421,0.548,0.119,0,0.348,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.073,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.335,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.296,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.335,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.27,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.296,0.366 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.0987,0.488 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.258,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.0386,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.27,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.283,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.258,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0.421,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0.258,0.122 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.351,0.351,0.8,0,0,0,0.421,0.568,0.23,0,0.514,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0.465,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.363,0.363,0.1,0,0,0,0.421,0.606,0.286,0,0.159,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0.249,0.244 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0.309,0 -1,0.363,0.363,0.8,0,0,0,0.421,0.606,0.286,0,0.446,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0.288,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0.159,0.366 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.61 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0.249,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0.0515,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0.296,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0.283,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.296,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.322,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.0987,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.732 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.173 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.191 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.338 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.188 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0942 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0339 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.313 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.104 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.348 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.278 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.21 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.105 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.161 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.161 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0.3,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0.134 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0.63,0,0 -0.667,0.286,0.286,1,1,0,0,0.421,0.548,0.0788,0.429,0,0.244 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0,0,0.451 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0.457,0,0.278 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0.337,0,0 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0.457,0,0 -0.667,0.278,0.278,1,0.6,0,0,0.421,0.548,0.0923,0.288,0,0.19 -0.667,0.278,0.278,0.8,0,0,0,0.421,0.548,0.0923,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.538,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.592,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.353,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.511,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,0.8,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.128,0,0,0.244 -0.333,0.2,0.2,0.1,0,0,0,0.585,0.594,0.168,0,0,0.366 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.244 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.171 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.341 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.102 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.366 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.168 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.35 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.245 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,0.3,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0.6,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.186 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.215 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.344 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.344 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.466 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.122 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.122 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.165 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.197 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.324 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.414 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.34 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.102 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.176 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.352 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.0352 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.0976 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,1,0,1,0.645,0.743,0,0.494,0 -1,0.656,0.656,0,0,0.5,0,1,0.645,0.743,0,0.309,0.366 -1,0.656,0.656,0,0,0,0.8,1,0.645,0.743,0,0.137,0 -1,0.656,0.656,0,0,0,0.5,1,0.645,0.743,0,0.0129,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.0129,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.249,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.361,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.363,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.405,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.545,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.488 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.122 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.17 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.245 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.207 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.103 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.122 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.29 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.122 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.0341 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.341 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.136 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.122 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -1,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.122 -1,0.154,0.154,0.8,0,0,0,0.421,0.555,0.104,0,0,0 -1,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.122 -1,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0 -1,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.15,0.15,0.5,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.244 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.244 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.155 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.0619 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.354 -0.667,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0.391,0,0.244 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0.353,0,0 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0.826,0,0 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0.505,0,0 -0.667,0.168,0.168,0,0.2,0,0,0.421,0.589,0.172,0.31,0,0 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.209,0,0 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.209,0,0.244 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.61 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.516,0,0.122 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.402,0,0.244 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0.446,0,0 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0.565,0,0 -0.667,0.252,0.252,0,0,1,0,0.614,0.589,0.26,0,0.296,0 -0.667,0.252,0.252,0,0,0.5,0,0.614,0.589,0.26,0,0.27,0 -0.667,0.252,0.252,0,0,0,0.8,0.614,0.589,0.26,0,0,0 -0.667,0.252,0.252,0,0,0,1,0.614,0.589,0.26,0,0.532,0 -1,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.137,0 -1,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0,0 -1,0.554,0.554,0,0,0,0.3,0.807,0.6,0.588,0,0.258,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.481,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.202,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.142,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.366 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.41 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0331 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0.8,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0.6,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.8,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0.1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0.473,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.446,0,0 -0.333,0.2,0.2,0,1,0,0,0.585,0.594,0.168,0,0,0 -0.333,0.2,0.2,0,1,0,0,0.585,0.594,0.168,0.435,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.32,0.467,0,0 -0.667,0.351,0.351,0,0.2,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.244 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.244 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.16 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.032 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.333 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.155 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.273 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0943 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.161 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.736 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.354 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.0709 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.7 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.159 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.249 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.667,0.27,0.27,0,0.5,0,0,0.421,0.548,0.103,0.457,0,0.246 -0.667,0.27,0.27,0,1,0,0,0.421,0.548,0.103,0.462,0,0 -0.667,0.27,0.27,0,1,0,0,0.421,0.548,0.103,0.56,0,0 -0.667,0.259,0.259,0,1,0,0,0.421,0.548,0.113,0.239,0,0 -0.667,0.259,0.259,0,0.7,0,0,0.421,0.548,0.113,0.266,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.293,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.462,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.457,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0.554,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0.293,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.249,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.283,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.369,0 -0.333,0.149,0.149,0,0,0,0.3,0.421,0.555,0.0751,0,0.223,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.8,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0.2,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.174 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.453 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.136 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.204 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0348 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.272 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0.3,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,1,0,1,0,0.614,0.538,0.0323,0,0.283,0 -0.667,0.139,0.139,1,0,1,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,1,0,1,0,0.614,0.538,0.0323,0,0,0 -0.667,0.228,0.228,1,0,0,0.3,0.807,0.514,0.0488,0,0,0.236 -0.667,0.228,0.228,1,0,0,1,0.807,0.514,0.0488,0,0,0 -0.333,0.139,0.139,1,0,0,1,0.614,0.538,0.0323,0,0,0 -0.333,0.167,0.167,1,0,0,1,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0.4,0,0,0.8,0.421,0.551,0.0406,0,0,0.163 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.13 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.488 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.333 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.155 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.653 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.188 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.339 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.237 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.201 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.366 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.173 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.433 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.168 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.134 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.199 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0331 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.8,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.6,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.149 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0299 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.231 -0.667,0.286,0.286,0,0.5,0,0,0.421,0.617,0.239,0.353,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.598,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.364,0,0.122 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.489,0,0 -0.667,0.286,0.286,0,0.7,0,0,0.421,0.617,0.239,0.193,0,0.366 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0.193,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.288,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.435,0,0.488 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.424,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.277,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.353,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.375,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.408,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0.576,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0.56,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0.473,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.609,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0.864,0,0 -1,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0.397,0,0.244 -1,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0.435,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.177 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.177 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.296 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.148 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.0297 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.283 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0.6,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0.5,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.488 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0.5,0,0.421,0.617,0.239,0,0.395,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.0987,0.122 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0.5,0,0.421,0.617,0.239,0,0,0 -1,0.404,0.404,0,0,0,0.8,0.421,0.645,0.351,0,0,0.122 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0.7,0.912,0.658,0.473,0.223,0,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0.332,0,0 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.236,0,0 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.471,0,0.122 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.516,0,0 -1,0.656,0.656,0,0.2,0,0,1,0.645,0.662,0.641,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.44,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.446,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.408,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.446,0,0.122 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0.293,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0.375,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0.489,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.179 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0.9,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0.429,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.402,0,0 -0.333,0.167,0.167,0,1,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,1,0,0,0.421,0.551,0.0406,0.31,0,0 -0.333,0.167,0.167,0,1,0,0,0.421,0.551,0.0406,0.38,0,0 -0.333,0.167,0.167,0,0.2,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.244 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.366 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.3,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.404,0.404,0,0,1,0,0.421,0.645,0.351,0,0.496,0.122 -1,0.404,0.404,0,0,0.5,0,0.421,0.645,0.351,0,0.273,0 -1,0.404,0.404,0,0,0,0.8,0.421,0.645,0.351,0,0.249,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.446,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.236,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.275,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.296,0 -1,0.501,0.501,0,0,0,0.7,0.912,0.658,0.473,0,0.0987,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.438,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.142,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.186 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.142 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.122 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.117 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.0342 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.342 -1,0.286,0.286,0.8,0,0,0,0.421,0.548,0.113,0,0,0.103 -1,0.286,0.286,0.6,0,0,0,0.421,0.548,0.113,0,0,0.366 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.244 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.167 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.0333 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.313 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.366 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.333,0.15,0.15,0.8,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.244 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.173 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.33 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.244 -0.333,0.168,0.168,0.8,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.383,0,0,0.122 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0.4,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0.8,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0.5,0,0,1,0.645,0.743,0.37,0,0 -1,0.656,0.656,1,1,0,0,1,0.645,0.743,0.467,0,0 -1,0.656,0.656,1,1,0,0,1,0.645,0.743,0.533,0,0 -1,0.656,0.656,1,1,0,0,1,0.645,0.743,0.228,0,0.35 -1,0.806,0.806,0.4,1,0,0,1,0.619,0.873,0.348,0,0.245 -1,0.806,0.806,0,1,0,0,1,0.619,0.873,0,0,0.366 -1,0.806,0.806,0,0.1,0,0,1,0.619,0.873,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.159 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.127 -1,0.851,0.851,0,0,1,0,1,0.568,0.806,0,0.0129,0 -1,0.851,0.851,0,0,0.5,0,1,0.568,0.806,0,0.348,0.122 -1,0.851,0.851,0,0,0,0.8,1,0.568,0.806,0,0,0.122 -1,0.584,0.584,0,0,0,1,0.807,0.566,0.543,0,0.382,0 -1,0.391,0.391,0,0,0,1,0.807,0.531,0.345,0,0.433,0 -1,0.391,0.391,0,0,0,1,0.807,0.531,0.345,0,0.236,0 -1,0.391,0.391,0,0,0,1,0.807,0.531,0.345,0,0.395,0 -1,0.391,0.391,0,0,0,0.7,0.807,0.531,0.345,0,0.309,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.309,0.244 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.197,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0.485,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.176 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.368 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0.349 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0.105 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.284,0.284,1,0.5,0,0,0.421,0.54,0.0706,0.592,0,0 -1,0.286,0.286,1,1,0,0,0.421,0.548,0.113,0.527,0,0 -1,0.286,0.286,1,1,0,0,0.421,0.548,0.113,0.554,0,0 -1,0.286,0.286,1,1,0,0,0.421,0.548,0.113,0.625,0,0 -1,0.286,0.286,1,0.7,0,0,0.421,0.548,0.113,0.242,0,0 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0.242,0,0 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0.554,0,0 -1,0.278,0.278,0.1,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0.8,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.244 -0.667,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.366 -0.667,0.154,0.154,0.5,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.645 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.249,0.249,1,0,0.5,0,0.421,0.548,0.24,0,0.369,0 -0.667,0.249,0.249,1,0,1,0,0.421,0.548,0.24,0,0,0.177 -1,0.349,0.349,1,0,1,0,0.421,0.542,0.351,0,0.361,0 -1,0.349,0.349,1,0,1,0,0.421,0.542,0.351,0,0.309,0 -1,0.349,0.349,1,0,1,0,0.421,0.542,0.351,0,0.494,0 -0.667,0.249,0.249,1,0,0,0.3,0.421,0.548,0.24,0,0.433,0 -1,0.349,0.349,1,0,0,1,0.421,0.542,0.401,0,0.27,0.488 -1,0.349,0.349,0.8,0,0,1,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0,0,0,1,0.421,0.542,0.401,0,0.429,0 -1,0.349,0.349,0,0,0,0.8,0.421,0.542,0.401,0,0.296,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0.223,0.122 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0.296,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0.605,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0.283,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.363,0.363,0.8,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0.244 -1,0.404,0.404,0.1,0,0,0,0.421,0.645,0.479,0,0,0.366 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0.614,0,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.565,0.524,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.383,0.524,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.383,0.522,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.383,0.614,0,0.366 -0.667,0.351,0.351,0,0.2,0,0,0.749,0.626,0.383,0.402,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.451,0,0.244 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.366 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.248 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.308 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.6,0,0.5,0,0.421,0.562,0.0159,0,0.258,0 -0.667,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -0.333,0.167,0.167,0,0,0,0.3,0.421,0.551,0.0406,0,0.258,0 -0.333,0.167,0.167,0,0,0,1,0.421,0.551,0.0406,0,0.27,0 -0.333,0.167,0.167,0,0,0,1,0.421,0.551,0.0406,0,0.309,0 -0.333,0.167,0.167,0,0,0,1,0.421,0.551,0.0406,0,0.348,0 -0.333,0.167,0.167,0,0,0,0.8,0.421,0.551,0.0406,0,0.283,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.137,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.296,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.189,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.296,0.244 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.283,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.27,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.438,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.464,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.162 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.187 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.58 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.223 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.238 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.501,0.501,0.8,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0.1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.366 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.228,0.228,1,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0.5,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,1,0,0.421,0.54,0.0653,0,0.0129,0 -0.667,0.284,0.284,0,0,1,0,0.421,0.54,0.0653,0,0.223,0 -0.667,0.284,0.284,0,0,1,0,0.421,0.54,0.0653,0,0.112,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.548,0.0788,0,0.627,0 -0.667,0.286,0.286,0,0,0.5,0,0.421,0.548,0.0788,0,0.296,0 -0.667,0.286,0.286,0,0,0,0.8,0.421,0.548,0.0788,0,0.579,0 -0.667,0.286,0.286,0,0,0,1,0.421,0.548,0.0788,0,0.348,0 -0.667,0.286,0.286,0,0,0,1,0.421,0.548,0.0788,0,0.137,0 -0.667,0.286,0.286,0,0,0,1,0.421,0.548,0.0788,0,0.262,0 -0.667,0.278,0.278,0,0,0,1,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0.7,0.421,0.548,0.0923,0,0.309,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.408,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.395,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.0601,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.335,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.309,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.262,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.732 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0.44,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.555,0.0646,0.38,0,0.122 -0.333,0.15,0.15,0,1,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.555,0.0676,0.418,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.555,0.0676,0.462,0,0 -0.333,0.15,0.15,0,0.2,0,0,0.421,0.555,0.0676,0.408,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.348,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.565,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.418,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.707,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.61 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0.321,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0.342,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0.473,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.421,0.555,0.0789,0.397,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0.397,0,0.122 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0.4,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.489,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.279,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.418,0 -1,0.501,0.501,0,0,0,0.3,0.912,0.658,0.473,0,0.418,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.0386,0.244 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.361,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.137,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0.2,1,0.645,0.662,0,0.481,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.366 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.164 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.196 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.351 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.494 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.171 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.103 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.618 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.0646 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.422 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.293 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.345 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.1 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.487 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.556 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.261,0,0.488 -0.667,0.259,0.259,0,1,0,0,0.421,0.591,0.196,0.5,0,0.122 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.179,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.179,0,0.418 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0,0,0.192 -1,0.404,0.404,0,0.2,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.266 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.167 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.165 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.033 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.186 -1,0.656,0.656,0.8,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0.1,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.488 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.107,0.107,0.1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.12 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.165 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0992 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.211 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.247 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.167 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.1 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.316 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.167 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.478 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,1,0,0.421,0.555,0.0789,0,0.236,0 -0.333,0.149,0.149,0,0,1,0,0.421,0.555,0.0789,0,0.0987,0 -0.333,0.149,0.149,0,0,1,0,0.421,0.555,0.0789,0,0.309,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.564,0.0871,0,0.506,0 -0.333,0.15,0.15,0,0,0.5,0,0.421,0.564,0.0871,0,0.382,0 -0.333,0.15,0.15,0,0,0,0.8,0.421,0.564,0.0871,0,0.27,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.564,0.0871,0,0.421,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.564,0.0871,0,0.185,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,1,0.421,0.576,0.106,0,0.172,0 -0.333,0.154,0.154,0,0,0,0.7,0.421,0.576,0.106,0,0.236,0.572 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0.348,0.257 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0.382,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0.236,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.15,0.34 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.296,0.278 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.0386,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.0601,0.161 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.373 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.0386,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.361,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.27,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.288,0.343 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.82,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.206,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.0987,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.663 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.105 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.256 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.435 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.343 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0686 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.226 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.175 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.14 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.162 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.8,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0.488 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0.4,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,1,0,1,0.645,0.662,0,0.236,0 -1,0.656,0.656,0,0,1,0,1,0.645,0.662,0,0.309,0.122 -1,0.656,0.656,0,0,1,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0.3,1,0.619,0.817,0,0.567,0 -1,0.806,0.806,0,0,0,1,1,0.619,0.817,0.527,0.27,0 -1,0.806,0.806,0,1,0,1,1,0.619,0.817,0.435,0.361,0 -1,0.806,0.806,0,1,0,1,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,1,0,0.8,1,0.619,0.817,0.505,0.0515,0 -1,0.806,0.806,0,1,0,0,1,0.619,0.817,0.37,0,0 -1,0.851,0.851,0,0.2,0,0,1,0.568,0.774,0.321,0.137,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0.505,0.137,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.275,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.343,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.249,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.309,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0.609,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0.223,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.542,0.16,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.542,0.16,0,0,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0.489,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0.635,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0.283,0 -1,0.392,0.392,0,0,0.5,0,0.421,0.542,0.212,0,0.322,0 -1,0.392,0.392,0,0,0,0.8,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,1,0.421,0.542,0.212,0,0.369,0 -1,0.392,0.392,0,0,0,1,0.421,0.542,0.212,0,0.378,0 -1,0.392,0.392,0,0,0,1,0.421,0.542,0.212,0,0.464,0 -1,0.392,0.392,0,0,0,0.3,0.421,0.542,0.212,0,0.124,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.258,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.0386,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.0901,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.172,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.0601,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.446,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.258,0.366 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.309,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.249,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.258,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.27,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.27,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.369,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.309,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.223,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.459,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.464,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.403,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.223,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.0386,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.472,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.356,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.073,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.296,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.236,0.366 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0.27,0.244 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.244 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0.506,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.0386,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.528,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.373,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.0601,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.309,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.369,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.249,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.361,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.174 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.715 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.157 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0.8,0,0,0,0.421,0.548,0.113,0,0,0.219 -0.667,0.164,0.164,0.6,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,0,0.5,0,0,0.421,0.555,0.104,0.668,0,0 -0.667,0.154,0.154,0,1,0,0,0.421,0.555,0.104,0.505,0,0 -0.667,0.154,0.154,0,1,0,0,0.421,0.555,0.104,0.533,0,0 -0.667,0.154,0.154,0,1,0,0,0.421,0.555,0.104,0.457,0,0 -1,0.352,0.352,0,0.7,0,0,0.421,0.542,0.297,0.228,0,0 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.297,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.488 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.366 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.581 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.348 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.0695 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0.228,0,0.307 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.391,0,0 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.166,0,0 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.166,0,0.122 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.473,0,0 -1,0.363,0.363,0.8,0.2,0,0,0.421,0.606,0.464,0,0,0.252 -1,0.404,0.404,0.6,0,0,0,0.421,0.645,0.479,0.408,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.402,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.0634 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.467,0,0.0951 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.489,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.5,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.293,0,0.244 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.291,0,0.366 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.291,0,0.122 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.386,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.364,0,0 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.348,0,0.122 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.462,0,0 -1,0.454,0.454,0,0,0.5,0,0.807,0.617,0.501,0.571,0.0515,0 -1,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0.473,0,0.244 -1,0.656,0.656,0,0,1,0,1,0.645,0.743,0.293,0,0 -1,0.806,0.806,0,0,1,0,1,0.619,0.873,0.484,0,0 -1,0.806,0.806,0,0,1,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0.3,1,0.619,0.873,0.353,0,0 -1,0.806,0.806,0,0,0,1,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,1,1,0.619,0.873,0,0,0.244 -1,0.806,0.806,0,0,0,0.4,1,0.619,0.873,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.266 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0.19 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.324 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.232 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.194 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0.3,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,1,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0.2,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0.565,0,0 -0.333,0.0495,0.0495,1,1,0,0,0.421,0.562,0.0159,0.408,0,0 -0.333,0.162,0.162,0.2,1,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,1,0,0,0.281,0.601,0.0774,0.418,0,0 -0.333,0.162,0.162,0,1,0,0,0.281,0.601,0.0774,0.359,0,0 -0.333,0.162,0.162,0,1,0,0,0.281,0.601,0.0774,0.679,0,0 -0.333,0.162,0.162,0,0.9,0,0,0.281,0.601,0.0774,0.353,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.8,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.7,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.491 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.349 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.21 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.269 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0633 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.493 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.115 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0.318,0 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0.481,0 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0.361,0 -0.333,0.174,0.174,0,0,0.2,0.1,0.281,0.591,0.0486,0,0.21,0.244 -0.333,0.174,0.174,0,0,0,1,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.504,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.444,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.283,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.27,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.0386,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.366 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.488 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0.3,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.122 -1,0.501,0.501,0.2,0.5,0,0,0,0.772,0.307,0.484,0,0 -1,0.501,0.501,0,1,0,0,0,0.772,0.307,0.467,0,0 -1,0.501,0.501,0,1,0,0,0,0.772,0.307,0.375,0,0.244 -1,0.501,0.501,0,1,0,0,0,0.772,0.307,0.299,0,0 -1,0.501,0.501,0,0.9,0,0,0,0.772,0.307,0.386,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.429,0,0.343 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.259 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.175 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.245 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.402 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.175 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.105 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.244 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.183 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.169 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.203 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.344 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.0687 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.172,0.172,1,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0.7,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.265 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.288 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.343 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.244 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.244 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.348 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.104 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.174 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.209 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.245 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.101 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.268 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.348 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.174 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.248 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.088 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0587 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.8,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.16,0.16,0.2,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.244 -0.667,0.294,0.294,0.8,0,0,0,0.14,0.671,0.172,0,0,0.366 -0.667,0.294,0.294,0.7,0,0,0,0.14,0.671,0.172,0,0,0.244 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.522,0,0.122 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.527,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.505,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.402,0,0.122 -1,0.829,0.829,0,0.4,0,0,0,0.772,0.578,0.364,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.299,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.318 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.244 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.366 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.144 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.337 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.231 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.854 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.235 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.188 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.172 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.172 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.33 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.033 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.176 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.0352 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.244 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.401 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.366 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0644 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.405 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.488 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.244 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.331 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.132 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.244 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.488 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.106 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.488 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.244 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.35,0.35,0.3,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.453,0.453,0.2,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.488 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0.3,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,1,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0.224 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0.366 -1,0.356,0.356,1,0,0,0,0.14,0.599,0.278,0,0,0.244 -1,0.356,0.356,1,0,0,0,0.14,0.599,0.278,0,0,0.121 -1,0.203,0.203,1,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.273 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0584 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.295,0.295,1,0,0,0,0.14,0.609,0.0624,0,0,0 -1,0.295,0.295,1,0,0,0,0.14,0.609,0.0624,0,0,0 -1,0.295,0.295,1,0,0,0,0.14,0.609,0.0624,0,0,0 -0.667,0.175,0.175,0.2,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.122 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.122 -0.667,0.174,0.174,0,0.5,0,0,0.281,0.591,0.0737,0.533,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.591,0.0737,0.505,0,0.366 -0.667,0.174,0.174,0,1,0,0,0.281,0.591,0.0737,0.63,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.582,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.302,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.302,0,0 -0.667,0.17,0.17,0,0.4,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.17 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.238 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.192 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.129 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.785 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.66 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.366 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.133 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.16 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.16 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.169 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.15 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.0301 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.228,0,0,0 -0.333,0.309,0.309,0.3,0,0,0,0.281,0.632,0.228,0,0,0 -0.333,0.309,0.309,1,0,0,0,0.281,0.632,0.228,0,0,0 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.62,0.62,1,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0.7,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0.244 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0.366 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.333,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.122 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -0.667,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0.253 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.158 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0632 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.16 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.171 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.137 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.122 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.17,0.17,0,0.5,0,0,0.281,0.591,0.0855,0.402,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.5,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.44,0,0.244 -0.667,0.291,0.291,0,1,0,0,0.14,0.62,0.153,0.315,0,0 -0.667,0.291,0.291,0,0.9,0,0,0.14,0.62,0.153,0.402,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.467,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.364,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.418,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.467,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.237,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.475,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,1,0,0.14,0.62,0.179,0,0.532,0 -0.667,0.271,0.271,0,0,1,0,0.14,0.62,0.179,0,0.258,0.122 -0.667,0.271,0.271,0,0,1,0,0.14,0.62,0.179,0,0.322,0 -0.667,0.269,0.269,0,0,1,0,0.14,0.62,0.21,0,0.197,0 -0.667,0.269,0.269,0,0,0.2,0.1,0.14,0.62,0.21,0,0.0987,0.122 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0,0.244 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0.382,0.122 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0.21,0 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0.223,0 -0.667,0.269,0.269,0,0,0,0.1,0.14,0.62,0.239,0,0.665,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.361,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.309,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.373,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.309,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.244 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0.258,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0.309,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0.528,0 -0.667,0.274,0.274,0.3,0,0,0,0.14,0.64,0.263,0,0.541,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0.7,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.327 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.171 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.341 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.0341 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.0542 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.232 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.366 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.13 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.2,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0.266,0,0 -1,0.0798,0.0798,0,1,0,0,0.281,0.56,0.0224,0.505,0,0 -1,0.236,0.236,0,1,0,0,0.14,0.578,0.0433,0.245,0,0.327 -1,0.236,0.236,0,1,0.5,0,0.14,0.578,0.0433,0.245,0.0386,0.0327 -1,0.236,0.236,0,1,1,0,0.14,0.578,0.0433,0.462,0,0 -1,0.236,0.236,0,1,1,0,0.14,0.578,0.0433,0,0.296,0 -1,0.236,0.236,0.3,0.9,0.3,0,0.14,0.578,0.0433,0,0.348,0.154 -1,0.236,0.236,1,0,0,1,0.14,0.578,0.0433,0,0.455,0.0615 -1,0.417,0.417,0.2,0,0,1,0,0.633,0.0786,0,0.197,0 -1,0.417,0.417,0,0,0,1,0,0.633,0.0786,0,0.21,0 -0.667,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.421,0 -0.667,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0,0 -0.667,0.295,0.295,0,0,0,0.7,0.14,0.609,0.0577,0,0.283,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0.288,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0.167,0 -0.667,0.301,0.301,0.3,0,0,0,0.14,0.62,0.0695,0,0.425,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0.446,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0.7,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0.2,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.8,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0.7,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0.3,0,0,0,0.14,0.62,0.118,0,0,0.122 -1,0.269,0.269,1,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0.7,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0.5,0,0.14,0.64,0.139,0,0.0129,0.122 -0.667,0.274,0.274,0,0,1,0,0.14,0.64,0.139,0,0.348,0 -0.667,0.274,0.274,0,0,1,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0.3,0,0.14,0.64,0.139,0,0.309,0 -0.667,0.274,0.274,0,0,0,1,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0.361,0 -0.667,0.294,0.294,0,0,0,0.8,0.14,0.671,0.172,0,0.369,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0.275,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0.172,0 -0.667,0.294,0.294,0.3,0,0,0,0.14,0.671,0.172,0,0,0.154 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0.0617 -0.667,0.35,0.35,0.2,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.255 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.177 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.279 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.308 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.164 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.31 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0.262 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,1,0,0.5,0,0.281,0.57,0.0296,0,0.0601,0.167 -1,0.143,0.143,1,0,1,0,0.281,0.57,0.0296,0,0.335,0.234 -1,0.172,0.172,1,0,1,0,0.281,0.585,0.0368,0,0.446,0 -1,0.172,0.172,0.7,0,0.3,0,0.281,0.585,0.0368,0,0.137,0 -1,0.172,0.172,0,0,0,1,0.281,0.585,0.0368,0,0.408,0 -1,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.0987,0.225 -1,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.172,0 -1,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.708,0 -1,0.427,0.427,0,0,0,1,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0.7,0,0.649,0.0963,0,0,0.17 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0.34 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.125 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.18 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.488 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.244 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.255 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.233 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.61 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.196 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.488 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0.353,0,0 -0.667,0.453,0.453,0,1,0,0,0.14,0.712,0.28,0.304,0,0.244 -0.667,0.453,0.453,0,1,0,0,0.14,0.712,0.28,0.19,0,0 -0.667,0.453,0.453,0,1,0,0,0.14,0.712,0.28,0.19,0,0.122 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.37,0,0.122 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,0.9,0,0,0,0.772,0.578,0.745,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.473,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.315,0,0.366 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.478,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.391,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.488 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.634 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.0353 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.517 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.726 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.346 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.138 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.156 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.212 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.0354 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.342 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.163 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.098 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.416 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.347 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.453,0.453,0,0,1,0,0.14,0.712,0.28,0,0.0601,0.234 -0.667,0.453,0.453,0,0,1,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.453,0.453,0,0,1,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.569,0.569,0,0,1,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0.2,0.1,0.14,0.702,0.39,0,0,0.149 -0.667,0.569,0.569,0,0,0,1,0.14,0.702,0.39,0,0,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.713,0,0,0.457 -1,0.905,0.905,0,0,0,0.6,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.351 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.351 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.351 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.211 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.137 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.172 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.348 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.0348 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0887 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.167 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.1 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.962 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0704 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.54 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0696 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0.163 -0.667,0.279,0.279,1,0,0,0,0.14,0.62,0.0996,0,0,0.0651 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.7,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.178 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.126 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.551 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.322 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0.5,0,0,0.14,0.671,0.172,0.571,0,0.168 -0.667,0.294,0.294,0,1,0,0,0.14,0.671,0.172,0.429,0,0 -0.667,0.294,0.294,0,1,0,0,0.14,0.671,0.172,0.446,0,0 -0.667,0.35,0.35,0,1,0,0,0.14,0.702,0.21,0.402,0,0 -0.667,0.35,0.35,0,0.9,0,0,0.14,0.702,0.21,0.323,0,0.401 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.323,0,0.338 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.462,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.44,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0.451,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.181 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0.5,0,0,0,0.772,0.578,0.342,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.478,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.609,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.576,0,0 -1,0.829,0.829,0,0.9,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.149 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.29 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.357 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.087 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.029 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0.7,0,0,0,0.281,0.56,0.0152,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.14,0.558,0.0145,0,0,0.197 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.331 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0662 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.17 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.346 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.366 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.33 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.132 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.161 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.0321 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.249 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.7,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.107 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.366 -0.333,0.162,0.162,0.8,0,0,0,0.281,0.601,0.0774,0,0,0.122 -0.333,0.162,0.162,0.7,0,0,0,0.281,0.601,0.0774,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.523 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.19 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.488 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.61 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.337 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.0337 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.175 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.035 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.17,0.17,0.2,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -1,0.394,0.394,0,0,0,0,0,0.649,0.242,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.732 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.244 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.61 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0.5,0,0,0.741,0.763,0,0.0858,0 -1,0.905,0.905,0,0,1,0,0,0.741,0.763,0,0,0.122 -1,0.905,0.905,0,0,1,0,0,0.741,0.763,0,0.678,0 -1,0.905,0.905,0,0,0.3,0,0,0.741,0.763,0,0.421,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,1,0,0.679,0.704,0,0.356,0 -1,0.821,0.821,0,0,0,1,0,0.679,0.704,0,0.283,0.122 -1,0.821,0.821,0,0,0,1,0,0.679,0.704,0,0.395,0 -1,0.564,0.564,0,0,0,0.2,0.14,0.64,0.475,0,0.258,0.132 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0.0987,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0.0987,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.309,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.309,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.485,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.506,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.0601,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.455,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.339,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.464,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.0987,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.382,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0.468,0.248 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0.283,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.122 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.244 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.244 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.366 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.122 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0.7,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.168 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.412 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.202 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.403 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.127 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.122 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.179 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.173 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.173 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.338 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.338 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.101 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.156 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0625 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.253 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.073,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.296,0 -0.333,0.16,0.16,0,0,0.8,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0.5,0.281,0.591,0.0669,0,0.541,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.395,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.506,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.618,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.0258,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0702,0,0.618,0 -0.333,0.159,0.159,0,0,0,0.6,0.281,0.591,0.0702,0,0.361,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.451,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.536,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.0258,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.283,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.296,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.361,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.296,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.309,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.395,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.361,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.283,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0,0.5,0,0,0.281,0.632,0.113,0.342,0.322,0 -0.333,0.2,0.2,0,1,0,0,0.281,0.632,0.113,0.402,0.163,0.488 -0.333,0.2,0.2,0,1,0,0,0.281,0.632,0.113,0.495,0,0.122 -0.667,0.35,0.35,0,1,0,0,0.14,0.702,0.21,0.75,0,0 -0.667,0.35,0.35,0,0.9,0,0,0.14,0.702,0.21,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.413,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.522,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.283,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.19,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.19,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.44,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.386,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,1,0,0,0.772,0.578,0,0.356,0.256 -1,0.829,0.829,0,0,1,0,0,0.772,0.578,0,0.27,0.185 -1,0.829,0.829,0,0,0.8,0,0,0.772,0.578,0,0.369,0 -1,0.905,0.905,0,0,0,0.5,0,0.741,0.713,0,0.0601,0 -1,0.905,0.905,0,0,0,0.9,0,0.741,0.713,0,0.124,0.488 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.585 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.136 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.122 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0.3,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,1,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0.2,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.257 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.253 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.531 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0661 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.304 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0.5,0,0,0.281,0.591,0.0577,0.44,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.435,0,0.366 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.451,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.353,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.193,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.193,0,0.122 -0.333,0.16,0.16,0,0.4,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.3,0,0,0,0.14,0.702,0.21,0,0,0.122 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0.2,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.212 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.137 -1,0.905,0.905,0,0,0.5,0,0,0.741,0.713,0,0.309,0.591 -1,0.905,0.905,0,0,0.9,0,0,0.741,0.713,0,0.283,0.122 -1,0.905,0.905,0,0,0,0.4,0,0.741,0.713,0,0.236,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.713,0,0.309,0.169 -1,0.905,0.905,0,0,0,1,0,0.741,0.713,0,0.0601,0.257 -1,0.821,0.821,0,0,0,0.4,0,0.679,0.676,0,0.223,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.412,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.601,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.464,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.227,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.481,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.296,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.369,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.249,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.283,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.339 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.339 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0678 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0.125 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.667,0.236,0.236,0.8,0,0,0,0.14,0.578,0.0433,0,0,0.317 -0.667,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0.7,0,0,0,0.14,0.578,0.0433,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.61 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,1,0,0.5,0,0.14,0.64,0.139,0,0.249,0 -0.667,0.274,0.274,1,0,1,0,0.14,0.64,0.139,0,0,0.244 -0.667,0.294,0.294,0.2,0,1,0,0.14,0.671,0.172,0,0.382,0.244 -0.667,0.294,0.294,0,0,1,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0.7,0,0.14,0.671,0.172,0,0,0.122 -0.667,0.294,0.294,0,0,0,0.6,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0.6,0.14,0.702,0.21,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.241 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.319 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.372 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.154 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.349 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.343 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0343 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.395 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.488 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.338 -0.667,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.0338 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.591,0.0486,0,0,0.244 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.2,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.159,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.369,0 -0.333,0.16,0.16,0,0,0.8,0,0.281,0.591,0.0604,0,0.0386,0 -0.333,0.16,0.16,0,0,0,0.5,0.281,0.591,0.0604,0,0.309,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0604,0,0.335,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0604,0,0.485,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0.7,0.281,0.591,0.0669,0,0.21,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.322,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.296,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.283,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.185,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.159,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.0601,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.122 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.244 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.122 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.19 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -1,0.655,0.655,0,0.5,0,0,0,0.788,0.413,0.288,0,0.122 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.511,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.37,0,0.488 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.603,0,0.61 -1,0.829,0.829,0,0.9,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.266,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.375,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.413,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.489,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.338 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0.3,0,0,0,0.281,0.56,0.0224,0,0,0.161 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0224,0,0,0.0644 -1,0.33,0.33,0.2,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.266 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.0333 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.128 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.325 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0325 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.174 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.14 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.109 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.465 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0.3,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,1,0,0,0,0.281,0.591,0.0702,0,0,0 -1,0.274,0.274,0.2,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.366 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.122 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.122 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0.3,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.154 -1,0.417,0.417,0.7,0,0,0,0,0.726,0.25,0,0,0.61 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0.5,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.321,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.505,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.375,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0,0,0.244 -1,0.905,0.905,0,0.4,0,0,0,0.741,0.713,0.364,0,0.555 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.484,0,0.0481 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.359,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.571,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.228,0,0.292 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.457,0,0.136 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.326,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.446,0,0.0799 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.188,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.188,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.315,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.304,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.652,0,0.244 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.495,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.424,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.522,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.478,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.332,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.413,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.264,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.264,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0.2,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.337 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.101 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,0.7,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.854 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0.3,0,0.5,0,0,0.788,0.493,0,0.236,0 -1,0.655,0.655,1,0,1,0,0,0.788,0.493,0,0.412,0.122 -1,0.829,0.829,1,0,1,0,0,0.772,0.649,0,0.425,0 -1,0.829,0.829,0.7,0,1,0,0,0.772,0.649,0,0.85,0 -1,0.829,0.829,0,0,0.7,0,0,0.772,0.649,0,0,0.122 -1,0.829,0.829,0,0,0,0.6,0,0.772,0.649,0,0.545,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.649,0,0.309,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.649,0,0,0.244 -1,0.905,0.905,0,0,0,0.2,0,0.741,0.763,0,0.481,0.366 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.481,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.618,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.373,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.197,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.322,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.361,0.488 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.481,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.112,0.122 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.348,0 -1,0.51,0.51,0.3,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0.122 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0 -1,0.249,0.249,1,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,1,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,1,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,0.2,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.202,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0205,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0205,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.295,0.295,0,0.5,0,0,0.14,0.609,0.0624,0.636,0,0 -0.667,0.295,0.295,0,1,0,0,0.14,0.609,0.0624,0.364,0,0 -0.667,0.295,0.295,0,1,0,0,0.14,0.609,0.0624,0.429,0,0 -0.667,0.301,0.301,0,1,0,0,0.14,0.62,0.0991,0.484,0,0 -0.667,0.301,0.301,0,0.9,0,0,0.14,0.62,0.0991,0.234,0,0.488 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0.234,0,0.366 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0.122 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.244 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0.5,0,0.14,0.62,0.21,0,0.369,0.122 -0.667,0.269,0.269,0,0,1,0,0.14,0.62,0.21,0,0,0 -1,0.378,0.378,0,0,1,0,0,0.649,0.307,0,0.459,0 -1,0.378,0.378,0,0,0.3,0,0,0.649,0.307,0,0.369,0 -1,0.378,0.378,0,0,0,1,0,0.649,0.307,0,0.73,0 -1,0.379,0.379,0,0,0,0.4,0,0.649,0.35,0,0.584,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0.433,0.244 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0.309,0.122 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0.296,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0,0.244 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.366 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.408,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.223,0 -0.333,0.309,0.309,0,0,1,0,0.281,0.632,0.228,0,0.249,0.122 -0.333,0.309,0.309,0,0,1,0,0.281,0.632,0.228,0,0.0386,0 -0.333,0.309,0.309,0,0,0.2,0.1,0.281,0.632,0.228,0,0.223,0.244 -0.333,0.309,0.309,0,0,0,1,0.281,0.632,0.228,0,0,0 -0.333,0.335,0.335,0,0,0,0.3,0.281,0.621,0.266,0,0.21,0 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.266,0,0.296,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.172 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.15 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.336 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.0672 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.172 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.294 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.61 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.488 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0.3,0,0,0,0.14,0.671,0.172,0,0,0.532 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.299 -1,0.417,0.417,0.2,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.3,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.655,0.655,1,0.5,0,0,0,0.788,0.413,0.413,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.429,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.658,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.516,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0,0,0.366 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,1,0.4,0,0,0,0.772,0.578,0.353,0,0 -1,0.829,0.829,0.7,0,0,0,0,0.772,0.578,0.457,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.451,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.457,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.353,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.418,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.397,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.418,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.244 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.156 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.127 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.8,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0.2,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.122 -0.333,0.2,0.2,0.8,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,1,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0.2,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.174 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.154 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.157 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.0629 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.244 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.167 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.343 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.137 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.522,0,0.212 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.277,0,0 -0.333,0.172,0.172,0,1,0,0,0.281,0.585,0.0368,0.234,0,0 -0.333,0.172,0.172,0.3,1,0,0,0.281,0.585,0.0368,0.234,0,0 -0.333,0.172,0.172,1,1,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,1,0.4,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0.2,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.138 -1,0.501,0.501,0.3,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0.462,0,0 -1,0.501,0.501,1,1,0,0,0,0.772,0.307,0.397,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.44,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.348,0,0 -1,0.655,0.655,0.2,0.4,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.366 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.488 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.249,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.481,0 -1,0.0798,0.0798,0,0,1,0,0.281,0.56,0.0224,0,0.481,0 -1,0.0798,0.0798,0,0,1,0,0.281,0.56,0.0224,0,0.348,0 -1,0.0798,0.0798,0,0,0.7,0,0.281,0.56,0.0224,0,0.296,0 -1,0.11,0.11,0,0,0,0.6,0.14,0.558,0.0289,0,0.236,0.203 -1,0.11,0.11,0,0,0,1,0.14,0.558,0.0289,0,0.369,0 -1,0.11,0.11,0,0,0,1,0.14,0.558,0.0289,0,0,0 -1,0.236,0.236,0,0,0,1,0.14,0.578,0.0433,0,0.112,0.133 -1,0.236,0.236,0,0,0,0.6,0.14,0.578,0.0433,0,0.185,0.133 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.176,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.258,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.258,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0.348,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.309,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.468,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.223,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.137,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.0987,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.348,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.618,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.0386,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.519,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.21,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.69,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.486,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.164 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.168 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.168 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.263 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.172 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0688 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.105 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.244 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.366 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0.8,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.122 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.655,0.655,1,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0.7,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0.5,0,0,0.772,0.578,0,0.249,0.244 -1,0.829,0.829,0,0,1,0,0,0.772,0.578,0,0.395,0.122 -1,0.569,0.569,0,0,1,0,0.14,0.702,0.39,0,0.236,0 -1,0.569,0.569,0,0,1,0,0.14,0.702,0.39,0,0.296,0 -1,0.569,0.569,0,0,0.7,0,0.14,0.702,0.39,0,0,0 -1,0.62,0.62,0,0,0,0.6,0.14,0.681,0.481,0,0.283,0 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0.348,0.488 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0,0.122 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0.506,0 -1,0.62,0.62,0,0,0,0.6,0.14,0.681,0.481,0,0.249,0.122 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.073,0.353 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.0858,0.212 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.476,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.155,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.309,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.249,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.309,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.296,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.168 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.168 -1,0.236,0.236,0.8,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.633,0.0786,0,0,0.264 -1,0.417,0.417,0.7,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0658 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0987 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.244 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.732 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0.3,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,1,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.7,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.488 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.571,0,0 -1,0.905,0.905,0,1,0,0,0,0.741,0.713,0.5,0,0.122 -1,0.821,0.821,0,1,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,1,0,0,0,0.679,0.676,0.5,0,0 -1,0.821,0.821,0,1,0,0,0,0.679,0.676,0.554,0,0.244 -1,0.821,0.821,0,0.4,0,0,0,0.679,0.676,0,0,0.244 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0.315,0,0.169 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0.424,0,0.19 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.217,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.217,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.342,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.354 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0708 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.159 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.323 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.647 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.127 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.372 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.176 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.246 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.276 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.0694 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.139 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.412 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.278 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.244 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.366 -0.333,0.159,0.159,0.8,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0.7,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0.5,0,0,0.772,0.419,0,0.283,0 -1,0.501,0.501,0,0,0.9,0,0,0.772,0.419,0,0.361,0.122 -0.667,0.35,0.35,0,0,0,0.4,0.14,0.702,0.285,0,0.0858,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.702,0.285,0,0.249,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0.575,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0.391,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.27,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.223,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.309,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0.395,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.366 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.488 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.122 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.139 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.142 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.199 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0994 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.122 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.244 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.202 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.136 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.102 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -1,0.382,0.382,0,0,0,0,0,0.649,0.259,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -1,0.269,0.269,0,0,0.5,0,0.14,0.62,0.239,0,0.0258,0.244 -0.667,0.159,0.159,0,0,0.9,0,0.281,0.591,0.129,0,0,0 -0.667,0.269,0.269,0,0,0,0.4,0.14,0.62,0.239,0,0.283,0 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.239,0,0.408,0 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.239,0,0,0 -1,0.387,0.387,0,0,0,0.4,0,0.679,0.385,0,0.504,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.457,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.309,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.0601,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.0386,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.197,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.0386,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.309,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.258,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.236,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.483,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.582,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.369,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0.44,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0.375,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0.337,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0,0,0.122 -1,0.829,0.829,0,1,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0.9,0.5,0,0,0.772,0.649,0,0.0386,0 -1,0.829,0.829,0,0,1,0,0,0.772,0.649,0,0,0.244 -1,0.829,0.829,0,0,1,0,0,0.772,0.649,0,0.506,0 -1,0.829,0.829,0,0,0.3,0,0,0.772,0.649,0,0.382,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.649,0,0.345,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0.135,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0.309,0.122 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0.2,0,0.741,0.763,0,0.309,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.348,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.122 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.545,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.369,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.545,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.0386,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.5,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.268,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.421,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.691,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.322,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.258,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.361,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.309,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.0296 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.118 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0.8,0,0,0,0.281,0.57,0.0296,0,0,0.344 -0.667,0.143,0.143,0.7,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.165 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0992 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.238 -0.333,0.172,0.172,0.8,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0.7,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.321 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.304 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.283 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0668 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.356 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.278 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.164 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.263 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.286 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.347 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0.455 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.0706 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.114 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.297 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.28 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.198 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.171 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0683 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.467 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.069 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.162,0.162,0.8,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0.7,0,0.5,0,0.14,0.671,0.172,0,0.309,0 -0.667,0.294,0.294,0,0,0.9,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0.4,0.14,0.671,0.172,0,0.343,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0.361,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0.258,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.702,0.21,0,0.494,0 -0.667,0.35,0.35,0,0,0,0.8,0.14,0.702,0.21,0,0.481,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.0386,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.283,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.309,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.244 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.244 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.488 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.177 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.476 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0354 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.301 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.189 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.655 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.344 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.347 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0.478,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0.473,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0.516,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0.549,0,0 -0.667,0.172,0.172,0,0.4,0,0,0.281,0.585,0.0368,0.353,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0.366 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0.7,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.543,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.38,0,0 -0.667,0.569,0.569,0,1,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,1,0,0,0.14,0.702,0.39,0.397,0,0 -0.667,0.569,0.569,0,1,0,0,0.14,0.702,0.39,0.375,0,0.244 -0.667,0.569,0.569,0,0.4,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.244 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0887 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.234 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.1 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0647 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.162 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.171 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.274 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0629 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0944 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.132 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.492 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.161 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.318,0.318,0,0,0.7,0,0.14,0.618,0.069,0,0.159,0 -1,0.452,0.452,0,0,1,0,0,0.647,0.0955,0,0.644,0.0659 -1,0.452,0.452,0,0,1,0,0,0.647,0.0955,0,0,0.264 -1,0.452,0.452,0,0,1,0,0,0.647,0.0955,0,0.309,0 -1,0.456,0.456,0,0,0.5,0,0,0.647,0.113,0,0.395,0 -1,0.456,0.456,0,0,0,0.8,0,0.647,0.113,0,0.592,0.122 -1,0.456,0.456,0,0,0,1,0,0.647,0.113,0,0.468,0.229 -1,0.456,0.456,0,0,0,1,0,0.647,0.113,0,0.275,0.155 -1,0.456,0.456,0,0,0,1,0,0.647,0.113,0,0.27,0.122 -0.667,0.321,0.321,0,0,0,1,0.14,0.618,0.0807,0,0.27,0.366 -0.667,0.312,0.312,0,0,0,1,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0.4,0.14,0.618,0.0898,0,0.421,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.468,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.073,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.433,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0685 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.24 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.365 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.157 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.244 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0.5,0,0,0,0.14,0.711,0.278,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.244 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.61 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0.4,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0692 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.33 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.263 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.35 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.244 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.2,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.249,0 -1,0.0495,0.0495,0,0,0.2,0.1,0.421,0.562,0.0159,0,0.369,0 -1,0.147,0.147,0,0,0,1,0.281,0.569,0.0294,0,0,0.069 -1,0.147,0.147,0,0,0,0.4,0.281,0.569,0.0294,0,0.335,0.345 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0.309,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,1,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,1,0,0,0,0,0.631,0.078,0,0,0.353 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0,0,0.0706 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0.0652 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0.228 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0.2,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.221 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0671 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.268 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0704 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.211 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0588 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0294 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.224 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0.142 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.063 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.117,0,0,0.158 -0.667,0.289,0.289,0.6,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.244 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -1,0.946,0.946,0,0.2,0,0,0,0.785,0.409,0.315,0,0.366 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.435,0,0.182 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.63,0,0.121 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.326,0,0.193 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0.5,0,0,0,0.77,0.573,0.315,0,0.122 -1,0.919,0.919,0,0.2,0,0,0,0.77,0.573,0.397,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.592,0,0.054 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.31,0,0.149 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,1,0,0,0,0.739,0.708,0.19,0,0 -1,0.747,0.747,0,0.5,0,0,0,0.739,0.708,0.19,0,0.282 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.489,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.484,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.315,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.461 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0677 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.838 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.122 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.189 -0.667,0.175,0.175,0.3,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.092,0,0,0.122 -0.667,0.292,0.292,0.3,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.488 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.168 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.0671 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.366 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.366 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -0.667,0.321,0.321,0,0,0.5,0,0.14,0.618,0.128,0,0.249,0 -0.667,0.321,0.321,0,0,1,0,0.14,0.618,0.128,0,0.348,0 -0.667,0.321,0.321,0,0,1,0,0.14,0.618,0.128,0,0.361,0 -0.667,0.321,0.321,0.3,0,0.3,0,0.14,0.618,0.128,0,0.0858,0 -0.667,0.321,0.321,1,0,0,1,0.14,0.618,0.128,0,0,0 -0.667,0.312,0.312,1,0,0,0.5,0.14,0.618,0.152,0,0.283,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.152,0,0.361,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0.6,0,0,0,0.14,0.618,0.152,0,0.0386,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,1,0,0.14,0.618,0.166,0,0.27,0 -0.667,0.3,0.3,0,0,0.4,0,0.14,0.618,0.166,0,0.0258,0 -0.667,0.3,0.3,0,0,0,0.9,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0.27,0 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0.433,0 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,0.7,0.14,0.618,0.178,0,0.21,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.236,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.446,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.506,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.249,0 -0.667,0.289,0.289,0.3,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.209,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0.9,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.0858 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.244 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.315 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.386,0,0.159 -0.667,0.647,0.647,0,1,0,0,0.14,0.711,0.332,0.533,0,0.186 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.435,0.5,0,0.122 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.435,0.321,0,0.144 -0.667,0.629,0.629,0,0.7,0,0,0.14,0.7,0.435,0.413,0,0 -0.667,0.629,0.629,0.3,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.435,0,0,0.244 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0.122 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0.122 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0.9,0,0,0,0,0.677,0.698,0,0,0.25 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.224 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.556 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.126 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.126 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.189 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0.7,0,0.281,0.559,0.0223,0,0.21,0 -1,0.0816,0.0816,0,0,0.7,0,0.281,0.559,0.0223,0,0,0.122 -1,0.0816,0.0816,0,0,0,0.6,0.281,0.559,0.0223,0,0.618,0.244 -1,0.0816,0.0816,0,0,0,1,0.281,0.559,0.0223,0,0.185,0.122 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0.704,0 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0.395,0 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0.249,0 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0,0.6,0.14,0.577,0.043,0,0.605,0 -1,0.245,0.245,0.6,0,0,0,0.14,0.577,0.043,0,0.0987,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.132 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0698 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.349 -0.667,0.184,0.184,0.6,0,0,0,0.281,0.59,0.0424,0,0,0.14 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.122 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.122 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0662 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.321 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0643 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.193 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.645 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.465 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0988 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.103 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.333,0.194,0.194,0,0,0.7,0,0.281,0.6,0.0769,0,0.0601,0 -0.333,0.237,0.237,0,0,1,0,0.281,0.616,0.0931,0,0,0.489 -0.333,0.237,0.237,1,0,1,0,0.281,0.616,0.0931,0,0,0.214 -0.667,0.425,0.425,1,0,1,0,0.14,0.67,0.17,0,0,0 -1,0.612,0.612,1,0,0.5,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0.8,0,0.724,0.248,0,0,0.244 -1,0.612,0.612,0.9,0,0,1,0,0.724,0.248,0,0,0.214 -1,0.804,0.804,0,0,0,1,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0.3,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0.2,0,0,0,0.77,0.304,0.342,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.56,0,0.3 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.364,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.565,0,0 -1,0.946,0.946,0,0.5,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.244 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.066 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.066 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.244 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.245 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.349 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.31 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.259 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0646 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.194 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.24 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.119 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0.9,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.488 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.122 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.235 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.445 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.211 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0327 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.327 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0.2,0,0,0.281,0.59,0.0424,0.37,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.457,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.429,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.397,0,0 -0.333,0.185,0.185,0,0.5,0,0,0.281,0.59,0.0483,0.549,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.467,0,0.176 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0696 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.104 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.366 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0.2,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0.2,0,0,0.14,0.67,0.17,0.353,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.484,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.386,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.293,0,0.244 -0.667,0.553,0.553,0,0.5,0,0,0.14,0.7,0.208,0.446,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0.451,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.366 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.488 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0.226,0,0 -1,0.946,0.946,0,0.7,0,0,0,0.785,0.409,0.226,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.549,0,0.117 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.462,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.538,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.533,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0.207,0,0.502 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0.207,0,0.672 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.61 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.699 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.366 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.366 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.242 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.276 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0678 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0339 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.231 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.132 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.213 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0.6,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0.2,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,1,0,0.281,0.59,0.06,0,0.21,0 -0.333,0.171,0.171,0,0,0.2,0.1,0.281,0.59,0.06,0,0.421,0 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0.532,0 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0,0.122 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0.283,0.122 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0.5,0.281,0.59,0.0665,0,0.678,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.283,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.0386,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.459,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.309,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.433,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.0515,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.258,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.185,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.408,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.0987,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0.433,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0.223,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0.545,0.122 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0.618,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.244 -0.667,0.553,0.553,0.5,0,0,0,0.14,0.7,0.208,0,0.506,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.369,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.249,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.223,0.244 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.0601,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.0386,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.0601,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.395,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0.166,0,0.244 -1,0.946,0.946,0,0.7,0,0,0,0.785,0.409,0.166,0.0386,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.348,0.27,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.348,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.511,0.159,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.446,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.426 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.333 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0671 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0335 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.207,0,0 -0.667,0.0495,0.0495,1,0.7,0,0,0.421,0.562,0.0159,0.207,0,0 -0.667,0.0495,0.0495,1,1,0,0,0.421,0.562,0.0159,0.37,0,0 -0.667,0.184,0.184,1,1,0,0,0.281,0.59,0.0424,0.457,0,0 -0.667,0.184,0.184,1,1,0,0,0.281,0.59,0.0424,0.424,0,0 -0.667,0.184,0.184,1,1,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.122 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.61 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.312,0.312,0.8,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,1,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0.2,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.069 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.172 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.152 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0305 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.425,0.425,0.5,0,0,0,0.14,0.67,0.17,0,0,0.223 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0.398 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0.4,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0.2,0,0,0.14,0.7,0.208,0.337,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.375,0,0.244 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.418,0,0.122 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.375,0,0 -1,0.946,0.946,0,0.5,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.126 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.0874 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0291 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.366 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.244 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.624 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.142 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.343 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.172 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.178 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.161 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.332 -0.333,0.185,0.185,0.3,0,0,0,0.281,0.59,0.0732,0,0,0.133 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0.488 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0.244 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.366 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.122 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.333,0.175,0.175,1,0,1,0,0.281,0.59,0.092,0,0.429,0 -0.333,0.175,0.175,0.2,0,1,0,0.281,0.59,0.092,0,0.0258,0 -0.333,0.175,0.175,0,0,0.8,0,0.281,0.59,0.092,0,0.0987,0 -0.333,0.175,0.175,0,0,0,0.5,0.281,0.59,0.092,0,0.361,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.59,0.092,0,0.468,0.122 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.178,0,0.0987,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.178,0,0.159,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.178,0,0.335,0 -0.667,0.292,0.292,0,0,0,0.7,0.14,0.618,0.178,0,0.249,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.373,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.468,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.322,0.366 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.258,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.395,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0.386,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0.296,0.122 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0.0258,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0.361,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.488 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,0.3,0,0,0,0.281,0.616,0.146,0,0,0.244 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0.122 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -1,0.553,0.553,0.6,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.244 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.488 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.135 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.165 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.165 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.122 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.186 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.45 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.206 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.218 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0.625,0,0.122 -0.667,0.338,0.338,0,1,0,0,0.14,0.639,0.261,0.473,0,0 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.274,0.543,0,0.165 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.274,0.429,0,0.352 -0.667,0.425,0.425,0,0.7,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0.527,0,0.122 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0.527,0,0.0909 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.0303 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0.435,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0.364,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0.326,0,0 -1,0.553,0.553,0.3,0,0,0,0.14,0.7,0.283,0,0,0.732 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0.244 -1,0.946,0.946,1,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0.9,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.244 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.366 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.244 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.556 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.156 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.0624 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0905 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0678 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.229 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.342 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.0691 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.346 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0593 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.119 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.233 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.266 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0.6,0,0,0,0.281,0.585,0.0366,0,0,0.218 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.237 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.47 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.227 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0.242,0,0.0972 -0.667,0.3,0.3,0,0.7,0,0,0.14,0.618,0.0989,0.242,0,0.122 -0.667,0.3,0.3,0,1,0,0,0.14,0.618,0.0989,0.587,0,0 -0.667,0.292,0.292,0,1,0,0,0.14,0.618,0.104,0.598,0,0.0698 -0.667,0.292,0.292,0,1,0,0,0.14,0.618,0.104,0.37,0,0.349 -0.667,0.292,0.292,0,1,0,0,0.14,0.618,0.104,0.364,0,0.0698 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0.315,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.475 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.066 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0.6,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.61 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0.277,0,0.122 -0.667,0.647,0.647,0,0.7,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,1,0,0,0.14,0.711,0.278,0.457,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.353,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.625,0,0.122 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.598,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0.6,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.244 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.122 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0.2,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0.2,0,1,0,0.14,0.577,0.043,0,0.223,0 -1,0.245,0.245,0,0,0.2,0.1,0.14,0.577,0.043,0,0.0386,0 -1,0.433,0.433,0,0,0,1,0,0.631,0.078,0,0.21,0 -1,0.433,0.433,0,0,0,0.4,0,0.631,0.078,0,0.631,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0.296,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0.545,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0.172,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.232 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0695 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.243 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.105 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.315 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.366 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.244 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0.2,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.223 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.0638 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.582 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0687 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.397 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.244 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.245 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.035 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.226 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0647 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.0643 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.193 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0.9,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0625 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0937 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -1,0.482,0.482,1,0,0,0,0,0.677,0.199,0,0,0 -1,0.482,0.482,1,0,0,0,0,0.677,0.199,0,0,0.122 -1,0.482,0.482,0.9,0,0,0,0,0.677,0.199,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.122 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0.8,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.287 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.218 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.307 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.222 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.229 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.277 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.228 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.198 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0.2,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.244 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.157 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.366 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,1,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0.2,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.23 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.146 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.191 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0631 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.126 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.225 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.28 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.366 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.366 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0.6,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.174 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.473 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.399 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.366 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0673 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.269 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0.6,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.223 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.153 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.0612 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.264 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.172 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.137 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.199 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0.3,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,0.9,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.366 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.244 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.647,0.347,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.647,0.347,0.467,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0.413,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0.516,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0,0,0 -1,0.482,0.482,0,0.7,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.122 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.244 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0.375,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.457,0,0.244 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.228,0,0.244 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.255,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.527,0,0.122 -1,0.946,0.946,0,0.7,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.505,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.429,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.429,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.342,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.478,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.342,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0.478,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0.549,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.153 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.061 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.189 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.585,0.04,0,0,0.184 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.244 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.244 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0.8,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0.8,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0.122 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0.122 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.244 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.244 -1,0.804,0.804,0,0.5,0,0,0,0.77,0.415,0.609,0,0.244 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.712,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.62,0,0.244 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.337,0,0.488 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0.8,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.488 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.366 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.61 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.366 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.493,0.493,0,0.5,0,0,0,0.616,0.441,0.234,0,0 -1,0.493,0.493,0,1,0,0,0,0.616,0.441,0.332,0,0 -1,0.493,0.493,0,1,0,0,0,0.616,0.441,0.489,0,0 -1,0.345,0.345,0,1,0,0,0.14,0.598,0.3,0.38,0,0 -1,0.345,0.345,0,1,0,0,0.14,0.598,0.3,0.495,0,0 -1,0.345,0.345,0,1,0,0,0.14,0.598,0.3,0,0,0 -1,0.116,0.116,0,0.8,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.675 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.21 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.122 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.216 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.313 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0521 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0681 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.238 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0.2,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.435 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.521 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.224 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.032 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.0623 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.309 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.219 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.153 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.488 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.428 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.102 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.387,0,0,0.244 -0.667,0.629,0.629,0.1,0,0,0,0.14,0.7,0.387,0,0,0.122 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.145 -0.667,0.394,0.394,0,0,0.2,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,1,0,0.14,0.639,0.452,0,0.0515,0 -0.667,0.394,0.394,0,0,1,0,0.14,0.639,0.452,0,0.0858,0 -0.667,0.345,0.345,0,0,0.6,0,0.14,0.598,0.276,0,0,0.061 -0.667,0.345,0.345,0,0,0,0.7,0.14,0.598,0.276,0,0.0386,0.0916 -0.667,0.345,0.345,0,0,0,1,0.14,0.598,0.276,0,0.223,0 -0.667,0.345,0.345,0,0,0,1,0.14,0.598,0.276,0,0,0 -0.667,0.345,0.345,0,0,0,1,0.14,0.598,0.276,0,0,0.156 -0.667,0.197,0.197,0,0,0,1,0.281,0.58,0.146,0,0,0 -0.667,0.116,0.116,0,0,0,1,0.281,0.564,0.0691,0,0,0 -0.667,0.116,0.116,0,0,0,0.5,0.281,0.564,0.0691,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.204 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0 -1,0.114,0.114,0.5,0,0,0,0.14,0.557,0.0287,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0.0683 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0.205 -1,0.245,0.245,0.7,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.236 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.236 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0665 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0997 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.366 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.231 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.221 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0.7,0,0.281,0.6,0.0769,0,0.408,0 -0.333,0.194,0.194,0,0,1,0,0.281,0.6,0.0769,0,0.717,0 -0.333,0.194,0.194,0,0,1,0,0.281,0.6,0.0769,0,0.27,0 -0.667,0.338,0.338,0,0,0.1,0.2,0.14,0.639,0.138,0,0.519,0 -0.667,0.425,0.425,0,0,0,1,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,1,0.14,0.67,0.17,0,0.249,0 -0.667,0.425,0.425,0,0,0,0.9,0.14,0.67,0.17,0,0.322,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.172,0.279 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.455,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.223,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.0987,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.233 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.133 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.195 -1,0.946,0.946,0.2,0,0,0,0,0.785,0.409,0,0,0.13 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0.7,0,0,0.77,0.573,0,0.283,0 -1,0.747,0.747,0,0,0.7,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0.6,0,0.739,0.708,0,0.494,0 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0.0258,0 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0.545,0.244 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0.348,0.736 -1,0.566,0.566,0,0,0,1,0,0.677,0.671,0,0.472,0.441 -1,0.566,0.566,0,0,0,0.6,0,0.677,0.671,0,0.498,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0.0129,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0.309,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0.0987,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.558,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.322,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.0858,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.348,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.296,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.21,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.0258,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.408,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.742,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0.425,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0618 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0618 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.235 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.168 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.071 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.142 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.122 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.283,0,0.244 -0.333,0.185,0.185,0,0.7,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.342,0,0.122 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.739,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.391,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.299,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0653 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.294 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.305 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0674 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.169 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.144 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.244 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.228 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.155 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.112,0,0,0.122 -0.333,0.301,0.301,0.2,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.122 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.61 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.122 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.451,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.245 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.0699 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.063 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.063 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.122 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0962 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.224 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.129 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.258 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.194 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0324 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.366 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0662 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0994 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.232 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.232 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.366 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.366 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.423 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.574 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.16 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0657 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0657 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.244 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.122 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.228 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0675 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.338 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.213 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0665 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.333 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.225 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0322 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0694 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.139 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.222 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.066 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.264 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.163 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0655 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.229 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0958 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.128 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.173 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.356 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.603 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.136 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.366 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.244 -0.667,0.647,0.647,0.5,0,0,0,0.14,0.711,0.278,0,0,0.122 -0.333,0.348,0.348,1,0,0,0,0.281,0.636,0.147,0,0,0 -0.333,0.348,0.348,0.1,0,0,0,0.281,0.636,0.147,0,0,0.122 -0.667,0.647,0.647,0,0.2,0,0,0.14,0.711,0.278,0.772,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.625,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.255,0,0.122 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.255,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.629,0.629,0,0.5,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.294 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.44 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.142 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.244 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.488 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.488 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.247 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0353 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0651 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.26 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.206 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.165 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.198 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.213 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.118 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.164 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.0328 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.244 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.488 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,0.3,0,0,0,0.281,0.616,0.146,0,0,0.488 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0.122 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0.366 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.804,0.804,0.9,0.5,0,0,0,0.77,0.415,0.44,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.408,0,0.122 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.418,0,0.122 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.511,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.177,0,0 -1,0.946,0.946,0,0.2,0,0,0,0.785,0.489,0.177,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.429,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.172 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.244 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.188 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.13 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.0325 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0.5,0,0.281,0.59,0.0732,0,0.309,0 -0.667,0.185,0.185,0,0,1,0,0.281,0.59,0.0732,0,0,0 -0.667,0.312,0.312,0,0,1,0,0.14,0.618,0.152,0,0.605,0 -0.667,0.312,0.312,0,0,1,0,0.14,0.618,0.152,0,0.309,0 -0.667,0.312,0.312,0,0,0.7,0,0.14,0.618,0.152,0,0.258,0 -0.667,0.312,0.312,0,0,0,0.6,0.14,0.618,0.152,0,0.236,0 -0.667,0.312,0.312,0,0,0,0.9,0.14,0.618,0.152,0,0.309,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0.348,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.275,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.249,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.519,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.408,0.122 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.234 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.284 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.0969 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.244 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.128 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.2 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.255 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.122 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.122 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0.3,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0.9,0,0,0,0.14,0.7,0.435,0,0,0.488 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.344 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.343 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.366 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.488 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0686 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.172 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.218 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0312 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.302 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,0.5,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,1,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,1,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,1,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.0568 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.0568 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.804,0.804,0.9,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.402 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.384 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0.5,0,0,0,0.14,0.711,0.278,0,0,0 -0.333,0.348,0.348,1,0,0,0,0.281,0.636,0.147,0,0,0.122 -0.333,0.348,0.348,1,0,0,0,0.281,0.636,0.147,0,0,0 -0.667,0.647,0.647,0.7,0,0,0,0.14,0.711,0.278,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.224 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.446 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.219 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.234 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0669 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.244 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.121 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0941 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.157 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.0495,0.0495,0,0.2,0,0,0.421,0.562,0.0159,0.38,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.402,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.255,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.28,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.59,0.0424,0.28,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.59,0.0424,0.38,0,0 -0.333,0.184,0.184,0,0.1,0,0,0.281,0.59,0.0424,0.397,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0.391,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.424,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0.2,0,0,0.281,0.59,0.0483,0.375,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.223,0,0.244 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0.1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0.2,0,0,0.281,0.616,0.0931,0.609,0,0 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.527,0,0.122 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.62,0,0.122 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0,1,0,0,0.281,0.631,0.112,0.516,0,0.244 -0.333,0.301,0.301,0,1,0,0,0.281,0.631,0.112,0.505,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.571,0,0.135 -1,0.804,0.804,0,0.1,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.103 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.214 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.171 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.366 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.229 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.342 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.313 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.173 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.139 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0946 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.383 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.064 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0 -1,0.342,0.342,0,0,0.7,0,0,0.585,0.0565,0,0.382,0 -1,0.342,0.342,0,0,1,0,0,0.585,0.0565,0,0,0.202 -1,0.342,0.342,0,0,1,0,0,0.585,0.0565,0,0.249,0 -1,0.342,0.342,0,0,0.1,0.2,0,0.585,0.0565,0,0.361,0 -1,0.433,0.433,0,0,0,1,0,0.631,0.078,0,0.657,0.0603 -1,0.433,0.433,0,0,0,1,0,0.631,0.078,0,0,0.0905 -0.667,0.305,0.305,0,0,0,1,0.14,0.608,0.0573,0,0.27,0 -0.667,0.305,0.305,0,0,0,1,0.14,0.608,0.0573,0,0.361,0.366 -0.667,0.305,0.305,0,0,0,0.4,0.14,0.608,0.0573,0,0.335,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0.0987,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.494,0.366 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.0987,0.854 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.382,0.122 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.395,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.223,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.309,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.618,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.541,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.618,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.361,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.283,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.309,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.876,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.258,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0.249,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0.309,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0.2,0,0,0.281,0.6,0.0769,0.375,0,0 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.304,0,0 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.467,0,0.122 -0.333,0.237,0.237,0.5,1,0,0,0.281,0.616,0.0931,0.277,0,0.366 -0.667,0.425,0.425,1,1,0,0,0.14,0.67,0.17,0.277,0,0 -0.667,0.425,0.425,0.1,1,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.553,0.553,0,0.1,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0.2,0,0,0.14,0.711,0.278,0.31,0,0.244 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.337,0,0.105 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.429,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.299,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.549,0,0 -1,0.747,0.747,0,0.1,0,0,0,0.739,0.708,0.598,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.516,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.359,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.435,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.348,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.122 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0.9,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.122 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.366 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.366 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0.2,0,0,0,0.785,0.409,0.359,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0.31,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0.386,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0.299,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,1,0.5,0,0,0,0.77,0.573,0.375,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0.359,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.296,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.296,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.391,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.505,0,0.244 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.348,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,1,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0.7,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.186 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.225 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.366 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.241 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.103 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0627 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.125 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.116 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0.217,0,0 -0.333,0.181,0.181,0,0.7,0,0,0.281,0.59,0.0528,0.217,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0.283,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0.511,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0.489,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,1,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0.6,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.232 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.166 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0.2,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.366 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.13 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.366 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0698 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.227 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.241 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.332 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.24 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.155 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.287 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.176 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.0352 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.168 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0.3,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.118,0,0,0.244 -0.333,0.183,0.183,0.3,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.244 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.366 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.244 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.366 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.366 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0.122 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.732 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.332 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0996 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.169 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0674 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.117 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.138 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.167 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.189 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.122 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.236 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.161 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.244 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.195 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.244 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0.3,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,1,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.116,0.116,1,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,1,0,0,0,0.281,0.614,0.101,0,0,0.244 -1,0.116,0.116,0.4,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.481 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.317 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.0327 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.294 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.16 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.16 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.156 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0312 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0.8,0,0,0,0.281,0.699,0.145,0,0,0.457 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0.0508 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0.169 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0.0678 -1,1,1,0.9,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.189 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.115 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.488 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.366 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.386,0.386,0.3,0,0,0,0.14,0.758,0.596,0,0,0.122 -0.667,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0.25,0,0.61 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.495,0,0.366 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.168,0,0.122 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.168,0,0.122 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.288,0,0 -1,0.116,0.116,0,0.9,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.38,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.418,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.462,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.418,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0.462,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0.5,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.153 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0306 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0.3,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0.3,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.122 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.366 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0.8,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0.8,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0.5,0,0,0.14,0.849,0.366,0.533,0,0.289 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.495,0,0.366 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.413,0,0.244 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.467,0,0 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.258,0,0 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.258,0,0.244 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.299,0,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.272,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.293,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.44,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.582,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.364,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.257 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.187 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.244 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.134 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.302 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0.337,0,0 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0.484,0,0.122 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0.348,0,0 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0,0.9,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.164 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.0654 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.347 -0.667,0.337,0.337,0.3,0,0,0,0.14,0.732,0.105,0,0,0.0347 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0.552 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.278 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.488 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0.5,0,0,0.281,0.66,0.0982,0.391,0,0 -0.333,0.204,0.204,0,1,0,0,0.281,0.66,0.0982,0.326,0,0 -0.667,0.359,0.359,0,1,0,0,0.14,0.758,0.181,0.337,0,0 -0.667,0.457,0.457,0,1,0,0,0.14,0.797,0.224,0.37,0,0 -0.667,0.457,0.457,0,1,0,0,0.14,0.797,0.224,0.649,0,0 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0.324,0,0 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0.326,0,0 -1,0.661,0.661,0.3,0,0,0,0,0.915,0.327,0,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.327,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0.1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.154 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0615 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.335 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.266 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.277 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.031 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.488 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.244 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.254 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.345 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.322 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.173 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.18 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.116 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.0291 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.169 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.337 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.409 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.198 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.291 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.164 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.164 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.343 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.137 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.333 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.316 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.366 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0.5,0,0,0.14,0.836,0.273,0.505,0,0 -0.667,0.596,0.596,0,1,0,0,0.14,0.836,0.273,0.337,0,0.61 -0.667,0.596,0.596,0,1,0,0,0.14,0.836,0.273,0.484,0,0.366 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.408,0,0 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.312,0,0.244 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.312,0,0.122 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0.5,0,0.14,0.836,0.51,0,0.249,0 -0.667,0.638,0.638,0,0,1,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,1,0,0.14,0.836,0.51,0,0.309,0 -0.667,0.638,0.638,0,0,1,0,0.14,0.836,0.51,0,0.395,0 -0.667,0.638,0.638,0,0,0.9,0,0.14,0.836,0.51,0,0.124,0 -0.667,0.504,0.504,0,0,0,0.4,0.14,0.81,0.629,0,0.309,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0.244 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0.244 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0,0.366 -1,0.554,0.554,0,0,0,0.2,0,0.857,0.887,0,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.341 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0341 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.169 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.339 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.135 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.174 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0348 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.198 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.242 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.256 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.163 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.163 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.278 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.166 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0331 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.304 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.237 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.167 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.134 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.232 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.208 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.156 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.182 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.124 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.337 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.172 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.24 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.661 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.328 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.474 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.38 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.33 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.296 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.308 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.278 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.309,0 -1,0.732,0.732,0,0,0.4,0,0,0.934,0.936,0,0.309,0.122 -1,0.504,0.504,0,0,0,0.9,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0.0258,0 -1,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0.137,0 -1,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0.122 -1,0.386,0.386,0,0,0,1,0.14,0.758,0.596,0,0.605,0 -1,0.386,0.386,0,0,0,1,0.14,0.758,0.596,0,0.361,0 -1,0.386,0.386,0,0,0,0.7,0.14,0.758,0.596,0,0.511,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.309,0.366 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.212 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.165 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.033 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.193,0.193,0,0,1,0,0.281,0.647,0.0928,0,0.519,0 -1,0.193,0.193,0,0,1,0,0.281,0.647,0.0928,0,0.185,0 -1,0.193,0.193,0,0,0.9,0,0.281,0.647,0.0928,0,0.382,0 -1,0.189,0.189,0,0,0,0.4,0.281,0.647,0.108,0,0,0 -1,0.189,0.189,0,0,0,1,0.281,0.647,0.108,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0.244 -1,0.449,0.449,0.8,0,0,1,0,0.818,0.317,0,0,0.195 -1,0.449,0.449,1,0,0,0.2,0,0.818,0.317,0,0,0.488 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0.244 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0.176 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0.385 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.244 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.122 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.205 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0 -1,0.432,0.432,1,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0.7,0,0,0,0,0.818,0.402,0,0,0.177 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.141 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.219 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.488 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.244 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.244 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.122 -0.333,0.323,0.323,0.3,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.366,0.366,1,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.366,0.366,1,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.488 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.366 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.366 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.244 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.167 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.134 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.197 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.23 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.488 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.488 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.168 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.202 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.29 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0272 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0816 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.169 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0676 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.337 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.0337 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.167 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.167 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.303 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.488 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.366 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.0322 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.258 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.244 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.332 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.0332 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.608 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.0309 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.52 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0.122 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0.122 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.183 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.355 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.071 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.299 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.283 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.188 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.329 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.0329 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.543 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.421 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.328 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.22 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.416 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.137 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.227 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.157 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.0945 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.318 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.158 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0316 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.333 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0665 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.177 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.212 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.343 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.409 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.255 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.209 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.156 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.315 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.0327 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.693 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.122 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.117 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.173 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.104 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.508 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.101 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.202 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.257 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.366 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.366 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.272 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0,0.122 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.661,0.661,0.3,0,0,0,0,0.915,0.327,0,0,0.122 -1,0.661,0.661,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0.7,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0.3,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.342,0.342,1,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0.4,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0.609 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0.3,0,0,0,0,0.74,0.0747,0,0,0.329 -1,0.351,0.351,1,0,0,0,0,0.74,0.0747,0,0,0.233 -1,0.444,0.444,0.3,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,1,0,0.14,0.732,0.105,0,0.296,0 -0.667,0.337,0.337,0,0,1,0,0.14,0.732,0.105,0,0.249,0 -0.667,0.337,0.337,0,0,0.9,0,0.14,0.732,0.105,0,0.605,0 -0.333,0.193,0.193,0,0,0,0.4,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,1,0.281,0.647,0.0604,0,0.159,0 -0.333,0.193,0.193,0,0,0,1,0.281,0.647,0.0604,0,0.249,0.244 -0.333,0.189,0.189,0,0,0,0.9,0.281,0.647,0.0664,0,0.309,0.244 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0.309,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.33 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.132 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.176 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.247 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.205 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.127 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.307 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.0449 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,1,0,0,0.973,0.758,0,0.442,0 -1,0.933,0.933,0,0,1,0,0,0.973,0.758,0,0.502,0 -1,0.933,0.933,0,0,1,0,0,0.973,0.758,0,0.305,0 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.0386,0 -1,0.732,0.732,0,0,0.4,0,0,0.934,0.936,0,0.249,0 -1,0.732,0.732,0,0,0,0.9,0,0.934,0.936,0,0.21,0 -1,0.732,0.732,0,0,0,0.7,0,0.934,0.936,0,0.0515,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0.0987,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0.433,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0.309,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.137,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.309,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.307 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.156 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.0624 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.522,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.842,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.679,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0.201,0,0 -0.333,0.181,0.181,0.3,1,0,0,0.281,0.64,0.0449,0.201,0,0 -0.333,0.181,0.181,1,0.4,0,0,0.281,0.64,0.0449,0.435,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0.1,0,0,0,0.281,0.647,0.0527,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.177,0.177,0.7,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.366 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0.5,0,0,0.14,0.797,0.224,0.473,0,0 -0.667,0.457,0.457,0,1,0,0,0.14,0.797,0.224,0.321,0,0 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0,0,0 -1,0.869,0.869,0.8,1,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,1,0,0,0,0.973,0.402,0,0,0.366 -1,0.869,0.869,1,0.4,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0.122 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.366 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.366 -0.667,0.386,0.386,0,0,0.5,0,0.14,0.758,0.596,0,0.223,0 -1,0.554,0.554,0,0,1,0,0,0.857,0.887,0,0,0.122 -1,0.554,0.554,0,0,1,0,0,0.857,0.887,0,0.249,0 -1,0.554,0.554,0,0,1,0,0,0.857,0.887,0,0.0129,0 -1,0.554,0.554,0,0,0.9,0,0,0.857,0.887,0,0.395,0 -1,0.342,0.342,0,0,0,0.4,0.14,0.706,0.363,0,0.249,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.27,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.322,0.122 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.21,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.0386,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0,0.122 -1,0.183,0.183,0,0,0,1,0.14,0.667,0.16,0,0.309,0 -1,0.183,0.183,0,0,0,1,0.14,0.667,0.16,0,0.172,0 -1,0.183,0.183,0,0,0,0.9,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.408,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.27,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.545,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.309,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.0601,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.283,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.369,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.0601,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.519,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.296,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.682,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0.0386,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0.335,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0.0601,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.244 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.15 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.166 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0331 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.732 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.251 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.457,0.457,0.8,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0.5,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.488 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.933,0.933,0.8,0.5,0,0,0,0.973,0.758,0.402,0,0.366 -1,0.933,0.933,0.8,1,0,0,0,0.973,0.758,0.31,0,0 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.533,0,0.366 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.375,0,0.244 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.522,0,0 -1,0.933,0.933,0,0.4,0,0,0,0.973,0.758,0.261,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.554,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.07 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.128 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.172 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.138 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.204 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.034 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.366 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.218 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.169 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.169 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.327 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0327 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.336 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.0336 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.122 -1,0.446,0.446,0,0.5,0,0,0,0.818,0.459,0.408,0,0 -1,0.446,0.446,0,1,0,0,0,0.818,0.459,0.37,0,0 -1,0.446,0.446,0,1,0,0,0,0.818,0.459,0.408,0,0 -1,0.513,0.513,0,1,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,1,0,0,0,0.857,0.505,0.571,0,0 -1,0.513,0.513,0,0.4,0,0,0,0.857,0.505,0.467,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0.625,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0.342,0,0.122 -1,0.661,0.661,0.8,0,0,0,0,0.915,0.531,0.386,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0 -1,0.869,0.869,0.9,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.258 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.244 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.288 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.0332 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.335 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.356 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.104 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.348 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.244 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.267 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.0697 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.279 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.426 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0894 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.225 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.0322 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.279 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0.3,0,0,0,0.281,0.647,0.0731,0,0,0.119 -0.667,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.419 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.468,0.468,1,0,0,0,0,0.818,0.289,0,0,0 -1,0.468,0.468,0.1,0,0,0,0,0.818,0.289,0,0,0.177 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.142 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.196 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.0652 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.164 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.164 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.334 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.131 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.032 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.288 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0.244 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.352 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.122 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0.425,0 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0.549,0.272 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0,0.244 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0.408,0 -0.667,0.683,0.683,0,0,0.4,0,0.14,0.849,0.437,0,0.592,0 -0.667,0.683,0.683,0,0,0,0.9,0.14,0.849,0.437,0,0.0386,0.244 -0.667,0.638,0.638,0,0,0,0.7,0.14,0.836,0.573,0,0,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0.8,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.573,0,0,0.244 -0.667,0.504,0.504,0.5,0.5,0,0,0.14,0.81,0.673,0.576,0,0 -0.667,0.504,0.504,0,1,0,0,0.14,0.81,0.673,0.451,0,0.366 -0.667,0.504,0.504,0,1,0,0,0.14,0.81,0.673,0.255,0,0 -0.667,0.504,0.504,0,1,1,0,0.14,0.81,0.673,0,0.455,0 -0.667,0.504,0.504,0,1,1,0,0.14,0.81,0.673,0,0.112,0.366 -1,0.732,0.732,0,0.4,1,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,1,0,0,0.857,0.923,0,0.73,0 -1,0.554,0.554,0,0,0.4,0,0,0.857,0.923,0,0.296,0.122 -1,0.554,0.554,0,0,0,0.9,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0.459,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0.0129,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0.481,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.394,0,0.236,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0.236,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0.0386,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0.369,0.488 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0.15,0.164 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0.137,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.326 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.518 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.25 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.169 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.27 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.312 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.156 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0.3,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0.189 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.237 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.167 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.294 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.24 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.345 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.61 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.596 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0.467,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0.353,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0.429,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0.576,0,0.244 -0.667,0.638,0.638,1,1,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,1,1,0,0,0.14,0.836,0.51,0,0,0.198 -0.667,0.638,0.638,1,0.5,0,0,0.14,0.836,0.51,0,0,0.172 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.933,0.933,0.1,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.332 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.133 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.206 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0.3,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0.3,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.164 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.35 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.035 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.172 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0686 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.488 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0.3,0,0,0,0.14,0.797,0.224,0,0,0.61 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0.5,0,0,0.973,0.402,0,0.137,0.17 -1,0.869,0.869,1,0,0.9,0,0,0.973,0.402,0,0,0.462 -1,0.869,0.869,0.7,0,0,0.4,0,0.973,0.402,0,0.296,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.402,0,0.249,0 -0.667,0.596,0.596,0,0,0,1,0.14,0.836,0.273,0,0.283,0 -0.667,0.683,0.683,0,0,0,0.9,0.14,0.849,0.366,0,0.618,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0.421,0.244 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0.12,0 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0.249,0 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0.309,0.286 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.488 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.528,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.296,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.0386,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.33 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.188 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.171 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.137 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0.276 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0.7,0,0,0,0.14,0.68,0.0551,0,0,0.067 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.1 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.159 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.0956 -1,0.444,0.444,0,0.5,0,0,0,0.798,0.103,0.386,0,0 -1,0.444,0.444,0,1,0,0,0,0.798,0.103,0.565,0,0 -1,0.444,0.444,0,1,0,0,0,0.798,0.103,0.364,0,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.413,0,0.274 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.188,0,0 -1,0.47,0.47,0,0.4,0,0,0,0.818,0.126,0.188,0,0 -1,0.47,0.47,0,0,1,0,0,0.818,0.126,0.239,0.296,0.0707 -1,0.47,0.47,0,0,1,0,0,0.818,0.126,0,0.487,0.353 -1,0.47,0.47,0,0,0.9,0,0,0.818,0.126,0,0.453,0.106 -1,0.481,0.481,0,0,0,0.4,0,0.818,0.149,0,0.416,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0.408,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0.27,0.274 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0.0987,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0,0 -1,0.468,0.468,0,0,0,1,0,0.818,0.168,0,0.506,0 -1,0.468,0.468,0,0,0,0.2,0,0.818,0.168,0,0.21,0.169 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.682,0.102 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0.421,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0.369,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.159 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.133,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.369,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.273,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.135,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.412,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.266,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.366 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.61 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0.244 -1,0.661,0.661,0,0.5,0,0,0,0.915,0.327,0.364,0,0.122 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0.478,0,0 -0.333,0.253,0.253,0,1,0,0,0.281,0.679,0.12,0.538,0,0.122 -0.333,0.253,0.253,0,1,0,0,0.281,0.679,0.12,0.413,0,0 -0.333,0.253,0.253,0,1,0,0,0.281,0.679,0.12,0.204,0,0 -0.667,0.457,0.457,0,0.4,0,0,0.14,0.797,0.224,0.204,0,0 -0.667,0.596,0.596,0.8,0,0,0,0.14,0.836,0.273,0.701,0,0 -0.667,0.596,0.596,0.8,0,0,0,0.14,0.836,0.273,0,0,0.244 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.488 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.488 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.176 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.196 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.147 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0173,0,0,0.102 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.267 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.122 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.174 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.349 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0349 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.309,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.223,0 -0.333,0.177,0.177,0,0,0.9,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0.4,0.281,0.647,0.0845,0,0.275,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0.618,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0.283,0 -0.333,0.182,0.182,0,0,0,0.9,0.281,0.647,0.0888,0,0.399,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.678,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.0515,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.258,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.502,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.425,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.0987,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.61 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.366 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.424 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.507 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.228 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.243 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.277 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.0627 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.188 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.269 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0697 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.349 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0697 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.1 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.125 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0.424,0,0 -0.333,0.178,0.178,0,1,0,0,0.281,0.647,0.0759,0.408,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.647,0.0845,0.326,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.732,0.153,0,0,0.122 -0.667,0.305,0.305,0,1,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.177,0.177,0,0.5,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.61 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0.3,0,0,0,0.14,0.836,0.273,0,0,0.488 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.244 -1,1,1,0.3,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.157 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.0314 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.386,0.386,0.3,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.218,0.218,1,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,1,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,1,0,0,0,0.281,0.66,0.306,0,0,0.244 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0.1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.343 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.177 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.248 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.322 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.328 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.263 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.186 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.334 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.0667 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.367 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.366 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.122 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0.3,0,0,0,0.14,0.797,0.36,0,0,0.366 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.36,0,0,0.244 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.366 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.122 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.732 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.244 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0.366 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0.488 -1,1,1,0.5,0,0,0,0,0.993,0.647,0,0,0.166 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.0662 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.348 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.24 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.314 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0.8,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,0.5,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.263 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.0594 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.0594 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.34 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.19 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0.8,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,1,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,1,0,0,0,0.281,0.647,0.0928,0,0,0.244 -0.667,0.328,0.328,0.5,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.244 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.488 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.171 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.205 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.488 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0.3,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,1,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,1,0,1,0,0.14,0.732,0.312,0,0.369,0 -0.667,0.314,0.314,1,0,1,0,0.14,0.732,0.312,0,0.159,0 -1,0.446,0.446,1,0,0.9,0,0,0.818,0.459,0,0,0 -1,0.513,0.513,1,0,0,0.4,0,0.857,0.505,0,0.258,0 -1,0.513,0.513,1,0,0,1,0,0.857,0.505,0,0.369,0 -1,0.513,0.513,0.4,0,0,1,0,0.857,0.505,0,0,0.244 -1,0.513,0.513,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.661,0.661,0,0,0,1,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0.2,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.122 -1,0.596,0.596,0.8,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0.366 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.366 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.342 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.137 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.189 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.152 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.274 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.17 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.354 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.299 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.258 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.122 -0.667,0.596,0.596,0,0,1,0,0.14,0.836,0.273,0,0.21,0 -0.667,0.596,0.596,0,0,1,0,0.14,0.836,0.273,0,0,0.257 -1,0.869,0.869,0,0,1,0,0,0.973,0.402,0,0,0 -1,1,1,0,0,1,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0.4,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0.9,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,1,0,0.993,0.541,0,0,0.531 -1,1,1,0,0,0,1,0,0.993,0.541,0,0,0.122 -1,1,1,0,0,0,1,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,1,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.316 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.383 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.675 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.222 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.177 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.0354 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.185 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.366 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0.356,0 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0.348,0 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0.262,0.244 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0,0 -0.667,0.178,0.178,0,0,0.4,0,0.281,0.647,0.0759,0,0.124,0 -0.667,0.178,0.178,0,0,0,0.9,0.281,0.647,0.0759,0,0.618,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0.8,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0.5,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.488 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0.3,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.366 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0.366 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0.2,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.549,0,0 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.489,0,0 -1,0.732,0.732,0,1,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0.3,1,0,0,0,0.934,0.936,0.598,0,0 -1,0.732,0.732,1,1,0,0,0,0.934,0.936,0.429,0,0 -1,0.732,0.732,1,0.9,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0.505,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.402,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.435,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.413,0,0.366 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.489,0,0.251 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.674,0,0.179 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.455 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.335 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.067 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.354 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0354 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.314 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.157 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.0627 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0.3,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0.135 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.403 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.584 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.177 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.35 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.189 -0.333,0.189,0.189,0.3,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0.1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.488 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.732 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0.3,0,0,0,0.281,0.699,0.145,0,0,0.488 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0.244 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.351 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.0351 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.61 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0.5,0,0,0.934,0.936,0,0.137,0.244 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.425,0.122 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.142,0 -1,0.732,0.732,0,0,0.4,0,0,0.934,0.936,0,0.296,0 -1,0.732,0.732,0,0,0,0.9,0,0.934,0.936,0,0.403,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0.438,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0.296,0.488 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0.0386,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0.7,0,0.857,0.887,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.219 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.312 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.0624 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.351,0.351,0.8,0,0,0,0,0.74,0.0747,0,0,0.255 -1,0.351,0.351,0.8,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.175 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.245 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.19 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,1,0,0.281,0.647,0.0845,0,0.296,0 -0.333,0.177,0.177,0,0,1,0,0.281,0.647,0.0845,0,0.236,0 -0.333,0.177,0.177,0,0,0.9,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0.4,0.281,0.647,0.0888,0,0.27,0 -0.333,0.182,0.182,0,0,0,1,0.281,0.647,0.0888,0,0.361,0 -0.333,0.182,0.182,0,0,0,1,0.281,0.647,0.0888,0,0.167,0 -0.667,0.314,0.314,0,0,0,1,0.14,0.732,0.162,0,0.155,0.143 -0.667,0.314,0.314,0,0,0,1,0.14,0.732,0.162,0,0.283,0 -0.667,0.314,0.314,0,0,0,0.5,0.14,0.732,0.162,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.502,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.451,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.369,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.532,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.296,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0.579,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0.245,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.309,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.309,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.0386,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.249,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.296,0.122 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.258,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.341 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.273 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0632 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.158 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.344 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.147 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.333 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.222 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.535 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.237 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.347 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.518 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.172 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.138 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.444 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0334 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.313 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0696 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0.3,0,0.5,0,0.281,0.608,0.026,0,0.0987,0 -1,0.0829,0.0829,1,0,1,0,0.281,0.608,0.026,0,0.223,0 -1,0.251,0.251,1,0,1,0,0.14,0.68,0.0551,0,0.605,0 -1,0.251,0.251,1,0,0.4,0,0.14,0.68,0.0551,0,0.0386,0.163 -1,0.351,0.351,0,0,0,0.9,0,0.74,0.0747,0,0,0.163 -1,0.351,0.351,0,0,0,1,0,0.74,0.0747,0,0.309,0 -1,0.351,0.351,0,0,0,1,0,0.74,0.0747,0,0.466,0 -1,0.351,0.351,0,0,0,1,0,0.74,0.0747,0,0.367,0 -1,0.444,0.444,0,0,0,1,0,0.798,0.103,0,0.841,0.12 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0.236,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0.421,0.196 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0.359,0.283,0.0654 -1,0.444,0.444,0,1,0,0,0,0.798,0.103,0.551,0.236,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.275,0.0386,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.375,0.159,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.299,0,0 -1,0.47,0.47,0,0.9,0,0,0,0.818,0.126,0.63,0.631,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0.435,0.0601,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.382,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.172,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.584,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.309,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.236,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.0987,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.283,0.283 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.405 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.519,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.21,0.366 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.567,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.446,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.532,0.244 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.275,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.459,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.27,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.236,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.0858,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.21,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.0386,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.223,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.575,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.502,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.197,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.395,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.0386,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.442,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.159,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.296,0.122 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.73,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.309,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.258,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.457,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.148,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.0858,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.421,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.159,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.21,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.296,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.136 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.61 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.488 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.122 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.366 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0.122 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.348 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.169 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0338 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.289 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0321 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0.172 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0.276 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.33 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.033 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.244 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.122 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.171 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.605 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.316,0.316,1,0,0,0,0.14,0.732,0.217,0,0,0.195 -1,0.316,0.316,1,0,0,0,0.14,0.732,0.217,0,0,0.366 -1,0.316,0.316,0.5,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0.392 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0.0297 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0.3,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,1,0,0,0,0.14,0.758,0.343,0,0,0.244 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.36,0,0,0.366 -0.667,0.457,0.457,1,0,0.5,0,0.14,0.797,0.36,0,0.309,0 -1,0.661,0.661,1,0,1,0,0,0.915,0.531,0,0.309,0 -1,0.661,0.661,1,0,1,0,0,0.915,0.531,0,0.0987,0 -1,0.661,0.661,1,0,1,0,0,0.915,0.531,0,0.309,0 -1,0.661,0.661,0.4,0,0.9,0,0,0.915,0.531,0,0,0 -1,0.869,0.869,0,0,0,0.4,0,0.973,0.549,0,0.605,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0.395,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0.468,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0,0.122 -1,0.869,0.869,0,0,0,0.5,0,0.973,0.549,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.488 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.337,0.337,0.3,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.201 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.146 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.24 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0982 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.196 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.488 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.17 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.237 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.488 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.488 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.163 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.0651 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0.0848 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0.478,0,0 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0.359,0,0 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0.402,0,0.166 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0.538,0,0.0331 -1,0.444,0.444,0,0.9,0,0,0,0.798,0.103,0.283,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0.3,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0.4,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.488 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0.3,0,0,0,0.14,0.732,0.117,0.603,0,0.122 -0.667,0.328,0.328,1,1,0,0,0.14,0.732,0.117,0.489,0,0 -0.667,0.316,0.316,0.3,1,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0.3,1,0,0,0.14,0.732,0.129,0.592,0,0 -0.667,0.316,0.316,1,1,0,0,0.14,0.732,0.129,0.543,0,0 -0.667,0.316,0.316,1,1,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,1,1,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,1,0.5,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0.366 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0.1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.244 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.244 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.122 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.33 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.31 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.177 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.35 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,clothes_dryer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.165 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.254 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.254 +1,0.608,0.026,0.0833,0,0,0,0,0,0.3,0.148 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.331 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.449,0.9,0,0,0,0,0.165 +0.333,0.647,0.0759,0.181,0.54,0.7,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.398,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.528,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.9,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,1,0.165 +1,0.915,0.327,0.602,0,0,0,0,0,1,0 +1,0.915,0.327,0.602,0,0,0,0,0,1,0 +1,0.915,0.327,0.602,0,0,0,0,0,1,0 +1,0.915,0.327,0.602,0,0,0,0,0,0.8,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.331 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0.335,0.4,0,0,0,0,0.165 +1,0.993,0.541,0.979,0.278,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.318,1,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0.241,0.8,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0.241,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.352,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0.761,0.4,0,0,0,0,0 +1,0.973,0.758,0.991,0.256,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.256,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.312,0.8,0,0,0,0,0 +1,0.934,0.936,0.823,0.42,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.483,0,0,0,0,0,0.165 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.341,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.301,0,0,0,0,0,0 +1,0.857,0.887,0.621,0.545,0,0,0,0,0,0 +1,0.857,0.887,0.621,0.438,0,0,0,0,0,0 +1,0.857,0.887,0.621,0.307,0,0,0,0,0,0.101 +1,0.758,0.596,0.43,0.278,0,0,0,0,0,0.151 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.168 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.0486 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.17 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0827 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.174 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.264 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.132 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.606 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.193 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.216 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0978 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0733 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0.5,0.4,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0.511,1,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,1,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0.489,0.8,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0.455,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.184 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.109 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.259 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0259 +1,0.973,0.402,0.798,0,0,0,0,0,0.9,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.6,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0979 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0979 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.162 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0515 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.34 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.257 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.588 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.103 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.064 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.4,0 +1,0.68,0.0551,0.253,0,0,0,0,0,1,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.1,0.417 +1,0.68,0.0551,0.253,0,0,0,0,0,0.4,0 +1,0.798,0.103,0.449,0,0,0,0,0,1,0 +1,0.798,0.103,0.449,0,0,0,0,0,0.1,0.051 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.0765 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.0987 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0493 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.205 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.0261 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.131 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0958 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0479 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.224 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0747 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.287 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.481 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.217 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.27 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0261 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.131 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.9,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,1,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,1,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,1,0.248 +1,0.857,0.263,0.49,0,0,0,0,0,1,0.496 +1,0.915,0.327,0.602,0,0,0,0,0,1,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0.3,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.4,0.0973 +0.667,0.849,0.366,0.669,0,0,0,0,0,1,0.0973 +0.667,0.849,0.366,0.669,0,0,0,0,0,1,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,1,0 +1,0.973,0.758,0.991,0,0,0,0,0,1,0 +1,0.973,0.758,0.991,0,0,0,0,0,0.2,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0.165 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.248 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.102 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.102 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.103 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.103 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.1 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.15 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.331 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0968 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0726 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.348 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0.0827 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.0979 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.147 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0982 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.221 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.413 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.9,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.6,0.0827 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.331 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.235 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0923 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0461 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.152 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.248 +0.667,0.608,0.02,0.0513,0,0,0,0,0,1,0.203 +0.667,0.608,0.026,0.0833,0,0,0,0,0,1,0.128 +0.667,0.608,0.026,0.0833,0,0,0,0,0,1,0.248 +1,0.654,0.0362,0.117,0,0,0,0,0,0.7,0.0827 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.118 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.102 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.134 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.9,0 +1,0.68,0.0551,0.253,0,0,0,0,0,1,0.0979 +1,0.719,0.074,0.316,0,0,0,0,0,1,0.0245 +1,0.719,0.074,0.316,0,0,0,0,0,1,0 +1,0.719,0.074,0.316,0,0,0,0,0,0.7,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.212 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.0827 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0.364,0.9,0,0,0,0,0 +1,0.732,0.0895,0.334,0.381,0.7,0,0,0,0,0.0965 +1,0.732,0.0895,0.334,0.642,0,0,0,0,0,0.0241 +1,0.732,0.0895,0.334,0.869,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0.386,0,0,0,0,0,0 +1,0.818,0.149,0.49,0.494,0,0,0,0,0,0.59 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.133 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.452 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.253 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0722 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0963 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.186,0.458,0,0,0,0,0,0,0 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.206 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.412 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.0971 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.0971 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.597,0.4,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.625,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.455,0.8,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.46,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0.403,0,0,0,0,0.4,0 +0.667,0.797,0.224,0.418,0.318,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0.185,0,0,0,0,0.1,0.0827 +0.667,0.797,0.224,0.418,0.185,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.46,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.585,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0.506,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0.517,0.9,0,0,0,0,0.165 +1,0.973,0.402,0.798,0.534,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.409,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.483,0.3,0,0,0,0,0.0945 +1,0.993,0.541,0.979,0.247,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.247,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.625,0,0,0,0,0,0.128 +1,0.993,0.541,0.979,0.364,0,0,0,0,0,0.255 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0.102 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.33,0.4,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.449,1,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.259,1,0,0,0,0,0 +1,0.836,0.51,0.677,0.259,0.8,0,0,0,0,0 +1,0.81,0.629,0.565,0.653,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.165 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.268 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0771 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.229 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.0509 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.086 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.0215 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.137 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.181 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0493 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.131 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.4,0.331 +0.333,0.647,0.165,0.182,0,0,0,0,0,1,0 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.1,0.0827 +0.333,0.66,0.18,0.196,0,0,0,0,0,0,0.0827 +0.667,0.66,0.18,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0.0827 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.331 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.243 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.121 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.101 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0814 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.104 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.104 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.407 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.104 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.182 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0.248 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.9,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.6,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.441,0,0,0,0,0,0,0 +1,0.818,0.402,0.441,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.441,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.441,0,0,0,0,0,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.413 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.331 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.165 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.849,0.437,0.669,0,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.0874 +1,0.934,1,0.823,0,0,0,0,0,0,0.0437 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.195 +1,0.857,0.923,0.621,0,0,0,0,0,0,0.0243 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.126 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.74,0.0747,0.355,0,0,0,0,0,1,0 +1,0.74,0.0747,0.355,0,0,0,0,0,1,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0.8,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0.4,0.0827 +0.667,0.719,0.074,0.316,0,0,0,0,0,1,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.1,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.0827 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0,0.165 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.331 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.101 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.177 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.4,0.165 +0.667,0.758,0.181,0.343,0,0,0,0,0,1,0.248 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.1,0.215 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.0239 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.4,0.0827 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.1,0.223 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.132 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.208 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.234 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0827 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.098 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.147 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.151 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.159 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0993 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0496 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.142 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0.9,0 +1,0.654,0.0362,0.117,0,0,0,0,0,1,0.269 +1,0.68,0.0551,0.253,0,0,0,0,0,1,0.134 +1,0.68,0.0551,0.253,0,0,0,0,0,0.2,0.148 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.413 +0.333,0.647,0.0604,0.196,0,0,0.126,0.4,0,0,0.165 +0.333,0.647,0.0604,0.196,0,0,0,1,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0.295,0,1,0,0 +0.333,0.647,0.0604,0.196,0,0,0.283,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.236,0,0.2,0,0 +0.333,0.647,0.0664,0.192,0,0,0.398,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.488,0,0,0,0.331 +0.333,0.647,0.0664,0.192,0,0,0.319,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.283,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.205,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.26,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.236,0,0,0,0.165 +0.333,0.647,0.0759,0.181,0,0,0.445,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.181,0,0,0.5,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.634,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.0354,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.157,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.236,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.339,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.319,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.236,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.559,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0.283,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.665,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.394,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0.205,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.0354,0,0,0,0.248 +0.667,0.758,0.181,0.343,0,0,0.0906,0,0,0,0.0827 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0.374,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0.205,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.205,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0.236,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.0472,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.126,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.906,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.402,0,0,0,0.165 +0.667,0.836,0.273,0.548,0,0,0.244,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.374,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.272,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.205,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.398,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.433,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.441,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.0551,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.681,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0.0669,0,0,0,0.101 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.126 +1,0.973,0.758,0.991,0,0,0.339,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.0906,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.283,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.26,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.319,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.307,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.433,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.283,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.184 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0254 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.333,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.333,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.331 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.248 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0.236,0.9,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0.272,0.5,0.5,0,0 +0.333,0.647,0.0664,0.192,0,0,0.205,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.543,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.0354,0,1,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.102,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.283,0,1,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0.205,0,1,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0.272,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.193,0,1,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0.0906,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.283,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.228,0,1,0,0 +0.333,0.647,0.0759,0.181,0,0,0.26,0,1,0,0 +0.333,0.647,0.0759,0.181,0,0,0.476,0,1,0,0.0827 +0.333,0.647,0.0759,0.181,0,0,0.307,0,0.2,0.4,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.181,0,0,0.0551,0,0,1,0.0827 +0.667,0.732,0.136,0.313,0,0,0.283,0,0,1,0 +0.667,0.732,0.153,0.311,0,0,0.169,0,0,1,0 +0.667,0.732,0.153,0.311,0,0,0.264,0,0,0.2,0 +0.667,0.732,0.153,0.311,0,0,0.476,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0.0472,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0.327,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0.0236,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0.339,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0.0354,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0.0827 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.248 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.465,0.9,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.386,0.5,0.5,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,1,0,0 +0.667,0.836,0.273,0.548,0,0,0.236,0,0.1,0,0 +1,0.973,0.402,0.798,0,0,0.441,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0.161,0,0,0,0 +1,0.973,0.402,0.798,0,0,0.409,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.386,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0.0236,0,0,0,0.165 +1,0.993,0.541,0.979,0,0,0.181,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.26,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.283,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.228,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.531,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.354,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.236,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.228,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.331,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.315,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.0906,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.236,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.465,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.0906,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.421,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.205,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.638,0,0,0,0.0827 +1,0.706,0.363,0.374,0,0,0.248,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.0354,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.126,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0954 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.143 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.227 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0252 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.219 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0488 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.4,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.0827 +0.667,0.732,0.162,0.315,0,0,0,0,0,1,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.2,0.0827 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.248 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.165 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +1,0.857,0.263,0.49,0,0,0,0,0,0,0.248 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.331 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.4,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,1,0 +1,0.993,0.541,0.979,0,0,0,0,0,0.1,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.44 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.303 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.218 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.7,0.165 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.277 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.207 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.26,0.4,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.398,1,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,1,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0.283,0,1,0,0.165 +0.333,0.679,0.12,0.234,0,0,0.102,0,1,0,0 +0.333,0.679,0.12,0.234,0,0,0.472,0,1,0,0.165 +0.333,0.679,0.12,0.234,0,0,0.445,0,0.9,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.0551,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.4,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,1,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.1,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.165 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.0827 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.0827 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0827 +1,0.934,0.936,0.823,0,0,0,0,0,0.4,0 +1,0.934,0.936,0.823,0,0,0,0,0,1,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.1,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.103 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0774 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0,0.222 +0.667,0.758,0.596,0.43,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0.248 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0.267 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.254 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.127 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0.0968 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0.0242 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.654,0.0301,0.117,0,0,0,0,0,0,0 +1,0.654,0.0301,0.117,0,0,0,0,0,0,0.0827 +1,0.654,0.0301,0.117,0,0,0,0,0,0,0 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.165 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.165 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.0827 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0.225 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0.208 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0.364,0.4,0,0,0,0,0 +1,0.64,0.049,0.183,0.483,1,0,0,0,0,0 +1,0.818,0.183,0.477,0,1,0,0,0,0,0 +1,0.818,0.183,0.477,0.352,0.8,0,0,0,0.4,0 +1,0.818,0.183,0.477,0.807,0,0,0,0,1,0 +0.667,0.732,0.128,0.334,0.699,0,0,0,0,1,0 +0.667,0.732,0.128,0.334,0.54,0,0,0,0,1,0 +0.667,0.732,0.128,0.334,0,0,0,0,0,1,0 +0.667,0.732,0.168,0.343,0.739,0,0,0,0,1,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.8,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.4,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,1,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.1,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.165 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0.272,0.9,0,0,0 +0.667,0.758,0.343,0.343,0,0,0.0354,0.5,0.5,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,1,0,0 +0.667,0.758,0.343,0.343,0,0,0.307,0,0.1,0,0.0827 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.165 +1,0.857,0.505,0.49,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0.248 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0.0938 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0.0938 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.0934 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.0934 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.101 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.151 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.305 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.149 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.297 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.103 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.207 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.331 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.198,0.334,0,0,0,0,0,0,0.167 +1,0.732,0.198,0.334,0,0,0,0,0,0,0 +1,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.174 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.0456 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.248 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.175 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.0827 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.264 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.38 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.168 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.248 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.4,0.165 +0.667,0.732,0.312,0.315,0,0,0,0,0,1,0 +1,0.758,0.343,0.343,0,0,0,0,0,1,0 +1,0.758,0.343,0.343,0,0,0,0,0,0.7,0.0827 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.165 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.331 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.165 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.248 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0947 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0947 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0756 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.18 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.16 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.9,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.6,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0.248,0.4,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,1,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.76,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.5,0,0.6,0,0 +0.333,0.647,0.0724,0.186,0,0,0.0906,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.421,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.0118,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.217,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0.228,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.283,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.217,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.374,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.0669,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.26,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.331,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.4,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,1,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0.1,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0.489,0.9,0,0,0,0,0.248 +0.667,0.849,0.366,0.669,0.528,1,0,0,0,0,0.165 +0.667,0.849,0.366,0.669,0.324,1,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0.398,0.3,0,0,0,0,0 +0.667,0.849,0.366,0.669,0.46,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.642,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.557,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.307,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.193,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.193,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.574,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.574,0.9,0,0,0,0,0.248 +0.667,0.81,0.629,0.565,0.352,1,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.443,1,0,0,0,0,0 +0.667,0.81,0.629,0.565,0,1,0,0,0,0,0 +0.667,0.686,0.322,0.307,0.33,0.9,0,0,0,0,0 +0.667,0.66,0.306,0.24,0.523,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0.494,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0.347,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.426,0.4,0,0,0,0,0.0976 +1,0.973,0.402,0.798,0.381,1,0,0,0,0,0.22 +1,0.973,0.402,0.798,0,1,0,0,0,0,0 +1,0.973,0.402,0.798,0.506,0.8,0,0,0,0,0 +1,0.993,0.541,0.979,0.625,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0.165 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.165 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.096 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.072 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.607 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.231 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0.169 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.144 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.4,0.0234 +0.667,0.719,0.074,0.316,0,0,0,0,0,1,0.187 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.1,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.165 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.337 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.0827 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.264 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.273 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.302 +0.667,0.758,0.181,0.343,0.5,0.4,0,0,0,0,0.0827 +0.667,0.758,0.181,0.343,0.324,1,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.233,1,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.233,0.8,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.466,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.585,0,0,0,0,0,0.413 +0.667,0.797,0.224,0.418,0.5,0,0,0,0,0,0.331 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.4,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.386,0.4,0,0,0,0,0 +1,0.993,0.541,0.979,0.409,1,0,0,0,0,0 +1,0.993,0.541,0.979,0,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.483,1,0,0,0,0,0.165 +1,0.836,0.51,0.677,0.222,1,0,0,0,0,0.165 +1,0.836,0.51,0.677,0.489,0.4,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.71,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.104 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0.234 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.168 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.101 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0253 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.378 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.282 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.374 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.181 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.18 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.0971 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.4,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,1,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.1,0.0827 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.2,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.212 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.348 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.251 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0502 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.193 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.0724 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.26,0.4,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,1,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.339,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.169,0,0.6,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.681,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.132 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.4,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.7,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0993 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0496 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.165 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.248 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0993 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.248 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0248 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.231 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.0988 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.151 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.331 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.177 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.142 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.197 +1,0.64,0.049,0.183,0,0,0,0,0,0.4,0 +1,0.719,0.0799,0.316,0,0,0,0,0,1,0 +1,0.732,0.128,0.334,0,0,0,0,0,1,0 +1,0.732,0.128,0.334,0,0,0,0,0,0.7,0.0827 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.165 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.331 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.165 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.165 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.9,0.331 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.6,0.165 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.248 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.102 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.254 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.267 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.248 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0.165 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0.0827 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.198 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.686,0.345,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.345,0.307,0,0,0,0,0,0,0.097 +0.667,0.686,0.345,0.307,0,0,0,0,0,0,0.17 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.255 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.215 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.282 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.324 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0.0827 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.452 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.19 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.128,0.334,0,0,0,0,0,0,0.248 +0.667,0.732,0.128,0.334,0,0,0,0,0,0,0.187 +0.667,0.732,0.128,0.334,0,0,0,0,0,0,0.261 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.135 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.101 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.152 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.098 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.171 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.1 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0754 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.181 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.258 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.108 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.331 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.331 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.331 +1,0.818,0.402,0.441,0,0,0,0,0,0,0.331 +1,0.818,0.459,0.448,0,0,0.0906,0.9,0,0,0 +1,0.818,0.459,0.448,0,0,0.26,0.5,0.5,0,0 +1,0.818,0.459,0.448,0,0,0,0,1,0,0 +1,0.818,0.459,0.448,0,0,0.205,0,1,0,0.165 +1,0.818,0.459,0.448,0,0,0.331,0,0.7,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.9,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.7,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0.217,0.4,0,0,0 +1,0.973,0.549,0.798,0,0,0,1,0,0,0 +1,0.973,0.549,0.798,0,0,0.476,0,1,0,0 +1,0.973,0.549,0.798,0,0,0.488,0,0.6,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.193,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.307,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.236,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.228,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.228,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.331,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.531,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.26,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0.543,0,0,0,0 +1,0.934,1,0.823,0,0,0.307,0,0,0,0 +1,0.934,1,0.823,0,0,0.681,0,0,0,0 +1,0.934,1,0.823,0,0,0.295,0,0,0,0 +1,0.934,1,0.823,0,0,0.319,0,0,0,0 +1,0.934,1,0.823,0,0,0.272,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.0906,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.228,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.681,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.419,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.419,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.717,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0.319,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0.362,0,0,0,0 +1,0.706,0.394,0.374,0,0,0.295,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.283,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.0669,0,0,0,0 +1,0.72,0.265,0.249,0,0,0,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.283,0,0,0,0 +1,0.72,0.265,0.249,0,0,0,0,0,0,0 +1,0.72,0.265,0.249,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0.736,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.175 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0923 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.147 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0.248,0.4,0,0,0 +1,0.608,0.026,0.0833,0,0,0,1,0,0,0 +1,0.608,0.026,0.0833,0,0,0.398,0,1,0,0 +1,0.608,0.026,0.0833,0,0,0.386,0,0.6,0,0.165 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.151,0,0,0.555,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.413,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.142,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.0669,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.319,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.386,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.236,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.398,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.213,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.26,0,0,0,0.165 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0.205,0,0,0,0.331 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.413 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.4,0 +1,0.973,0.402,0.798,0,0,0,0,0,1,0 +1,0.973,0.402,0.798,0,0,0,0,0,1,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.7,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0.574,0.4,0,0,0,0,0.165 +1,0.993,0.541,0.979,0.307,1,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0.25,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.25,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.466,1,0,0,0,0,0 +1,0.973,0.758,0.991,0,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.392,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.261,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.273,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.273,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.426,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.392,0.9,0,0,0,0,0.145 +1,0.934,0.936,0.823,0.375,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.165 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0906,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.101 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.177 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.218 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0726 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0977 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0977 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.241 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.179 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.144 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.245 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.0827 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.283,0.4,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,1,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.476,0,1,0,0 +0.667,0.836,0.273,0.548,0,0,0.307,0,0.6,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.0551,0,0,0,0.331 +0.667,0.849,0.366,0.669,0,0,0.35,0,0,0,0.18 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.121 +0.667,0.849,0.366,0.669,0,0,0.0472,0,0,0.9,0 +0.667,0.849,0.366,0.669,0,0,0.319,0,0,0.6,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.331,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.0787,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.272,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.319,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.0871 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.0218 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.221 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.7,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0958 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0958 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.163 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.248 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.102 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.0511 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.351 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.0773 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.187 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.13 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.263 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0658 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.162 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0954 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0239 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.134 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.0999 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.15 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.092 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.046 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0.0827 +1,0.818,0.235,0.448,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.4,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,1,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.1,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.267 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.209 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.248 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.394 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0.1 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0.126 +0.667,0.699,0.263,0.363,0.369,0.9,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.79,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.398,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.483,0.3,0,0,0,0,0.0993 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.438,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.381,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.0827 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.0827 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0953 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0715 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.131 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0982 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0246 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.361 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.22 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.165 +1,0.74,0.0747,0.355,0,0,0,0,0,0,0.287 +1,0.74,0.0747,0.355,0,0,0,0,0,0,0.18 +1,0.74,0.0747,0.355,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.0827 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.197 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.221 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.158 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0463 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.261 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.119 +1,0.818,0.149,0.49,0,0,0.283,0.9,0,0,0.165 +1,0.818,0.149,0.49,0,0,0.236,0.5,0.5,0,0.165 +1,0.818,0.149,0.49,0,0,0,0,1,0,0 +1,0.818,0.149,0.49,0,0,0.26,0,0.1,0,0.121 +1,0.818,0.149,0.49,0,0,0.217,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0.319,0,0,0,0 +1,0.818,0.168,0.477,0,0,0.441,0,0,0,0.0911 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0456 +1,0.818,0.168,0.477,0,0,0.283,0,0,0,0 +1,0.818,0.168,0.477,0,0,0.0906,0,0,0,0 +1,0.818,0.186,0.458,0,0,0,0,0,0,0 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.65 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.167 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.156 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.248 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.162 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.165 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.4,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.248 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.265 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.181 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.069 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.092 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.248 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.451 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.256 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.496 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.331 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.9,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.6,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0.165 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0.4,0.165 +0.667,0.699,0.145,0.299,0,0,0,0,0,1,0 +0.667,0.699,0.145,0.299,0,0,0,0,0,1,0 +0.667,0.699,0.145,0.299,0,0,0,0,0,1,0 +1,0.836,0.273,0.548,0,0,0,0,0,1,0 +1,0.836,0.273,0.548,0,0,0,0,0,1,0 +1,0.836,0.273,0.548,0,0,0,0,0,0.8,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.248 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.0827 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.0943 +1,0.836,0.51,0.677,0,0,0,0,0,0,0.0472 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.219 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0731 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0827 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.248 +1,0.621,0.0327,0.151,0,0,0.35,0.4,0,0,0.0827 +1,0.621,0.0327,0.151,0,0,0,1,0,0,0 +1,0.64,0.049,0.183,0,0,0.228,0,1,0,0 +1,0.64,0.049,0.183,0,0,0.0906,0,1,0,0 +1,0.64,0.049,0.183,0,0,0,0,1,0,0 +1,0.64,0.049,0.183,0,0,0.417,0,1,0,0 +1,0.64,0.049,0.183,0,0,0.26,0,0.9,0,0.165 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.165 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.192,0,0,0,0,0,0.4,0.182 +1,0.647,0.0731,0.192,0,0,0,0,0,1,0.198 +1,0.647,0.0731,0.192,0,0,0,0,0,0.1,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.165 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.198,0.334,0.409,0.9,0,0,0,0,0 +1,0.732,0.198,0.334,0.483,1,0,0,0,0,0 +1,0.732,0.198,0.334,0.528,1,0,0,0,0,0 +1,0.732,0.198,0.334,0.398,1,0,0,0,0,0 +1,0.732,0.198,0.334,0,1,0,0,0,0,0 +1,0.732,0.198,0.334,0,1,0,0,0,0,0 +1,0.732,0.217,0.322,0,1,0,0,0,0,0 +1,0.732,0.217,0.322,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0.4,0,0,0,0,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.667,0.647,0.165,0.182,0,0,0,0,0,0,0.1 +1,0.732,0.312,0.315,0,0,0,0,0,0,0.2 +1,0.732,0.312,0.315,0,0,0,0,0,0,0 +1,0.732,0.312,0.315,0,0,0,0,0,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0.232 +1,0.857,0.505,0.49,0,0,0,0,0,0.4,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.1,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.248 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0929 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0929 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.156 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.182 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.102 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.203 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.354 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.0968 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.145 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.0968 +1,0.934,1,0.823,0,0,0,0,0,0,0.0242 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0.165 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.165 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.165 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.0827 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.104 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.104 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.172 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.128 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.0908 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.0895 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.0224 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.165 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.215 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0.296 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0.203 +0.667,0.647,0.118,0.186,0,0,0.374,0.4,0,0,0.235 +0.667,0.647,0.118,0.186,0,0,0.272,1,0,0,0 +0.667,0.732,0.233,0.313,0,0,0.181,1,0,0,0 +0.667,0.732,0.233,0.313,0,0,0.417,0.5,0.5,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,1,0,0 +1,0.818,0.34,0.445,0,0,0.398,0,1,0,0.376 +1,0.818,0.34,0.445,0,0,0.339,0,0.7,0,0.0827 +1,0.818,0.34,0.445,0,0,0,0,0,0,0 +1,0.818,0.402,0.441,0,0,0.217,0,0,0,0 +1,0.818,0.402,0.441,0,0,0.362,0,0,0,0.261 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.196 +0.667,0.732,0.274,0.311,0,0,0.0551,0,0,0,0.195 +0.667,0.732,0.274,0.311,0,0,0.362,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0.236,0,0,0,0.165 +0.667,0.732,0.312,0.315,0,0,0.0669,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0.26,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0.409,0,0,0,0.248 +0.667,0.732,0.312,0.315,0,0,0.409,0,0,0,0.15 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0.0472,0,0,0,0.0827 +0.667,0.758,0.343,0.343,0,0,0.512,0,0,0,0.0827 +0.667,0.758,0.343,0.343,0,0,0.421,0,0,0,0 +1,0.857,0.505,0.49,0,0,0.146,0,0,0.9,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.6,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.413 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.248 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.165 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.248 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0.0946 +1,0.634,0.206,0.212,0,0,0,0,0,0,0.118 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.124 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0984 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.248 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.162 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.165 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.102 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0763 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.248 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.165 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.331 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.248 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0864 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0216 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.229 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.102 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.118 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.102 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.153 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.331 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0997 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.175 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.125 +1,0.608,0.02,0.0513,0,0,0,0,0,0.4,0.416 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.125 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.103 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.256 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.356 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.2 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.35 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.248 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.315 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0742 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0897 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.182 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0501 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.251 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.1 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.4,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,1,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0.506,0.4,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.477,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.239,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.568,0.8,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.364,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.449,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.248 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.187 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0235 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.188 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0827 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.226 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0.283,0.9,0,0,0.0774 +1,0.68,0.0551,0.253,0.449,0.4,0,0.5,0.5,0,0.108 +0.667,0.68,0.0551,0.253,0.511,1,0,0,1,0,0 +0.667,0.68,0.0551,0.253,0,1,0,0,0.1,0,0 +0.667,0.68,0.0551,0.253,0.375,0.8,0,0,0,0.4,0 +0.667,0.719,0.074,0.316,0.386,0,0,0,0,1,0 +0.667,0.719,0.074,0.316,0.466,0,0,0,0,0.1,0 +0.667,0.719,0.074,0.316,0.375,0.4,0,0,0,0,0.165 +0.667,0.719,0.074,0.316,0,1,0,0,0,0,0 +0.667,0.719,0.074,0.316,0.568,1,0,0,0,0,0 +0.667,0.719,0.074,0.316,0.403,0.8,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.517,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.392,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.193,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0.193,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0.653,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0.426,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.585,0.9,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.841,1,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.181,0.511,1,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.398,0.3,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0.261,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.331 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.0827 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.0827 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.09 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.045 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0246 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.246 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0492 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.13 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0238 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.0951 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0245 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.196 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.157 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.0261 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.0248 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.248 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.297 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.0239 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.239 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.113 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.1,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,1,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.4,0.0247 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.247 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0989 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.248 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.1,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,1,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.4,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.165 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0766 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.0697 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.116 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0.23,0.1,0,0,0,0,0.0251 +1,0.941,0.929,0.913,0.23,1,0,0,0,0,0.226 +1,0.941,0.929,0.913,0.449,1,0,0,0,0,0 +1,0.941,0.929,0.913,0.33,1,0,0,0,0,0 +1,0.941,0.929,0.913,0.273,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.145 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.121 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.114 +1,0.662,0.304,0.275,0,0,0,0,0,0,0.0229 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.216 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.048 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0585 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.234 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.155 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.129 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.6,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.9,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0.318,0.1,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,1,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0.432,1,0,0,0,0,0 +0.667,0.854,0.364,0.595,0.312,1,0,0,0,0,0 +0.667,0.854,0.364,0.595,0.523,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.165 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0.0237 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0.19 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.215,0.6,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.372,1,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,1,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.272,0.4,0.6,0,0 +1,0.636,0.188,0.246,0,0,0.384,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.191,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.26,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.433,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.126,0,0.7,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0.26,0.2,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,1,0,0,0 +1,0.61,0.0215,0.0513,0,0,0.0354,0.3,0.7,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0.272,0,1,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0.0354,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0.26,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0.205,0,0.6,0,0.248 +1,0.658,0.0299,0.116,0,0,0,0,0,0,0 +1,0.658,0.0299,0.116,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0.0483 +1,0.684,0.047,0.251,0,0,0,0,0,0,0.242 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.117 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.0515 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.154 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.165 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.0827 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.134 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.16 +0.667,0.649,0.145,0.177,0,0,0,0,0,0,0.165 +0.667,0.649,0.145,0.177,0.432,0.2,0,0,0,0,0 +0.667,0.649,0.145,0.177,0,1,0,0,0,0,0 +0.667,0.736,0.272,0.305,0.506,1,0,0,0,0,0.0827 +0.667,0.736,0.272,0.305,0.341,0.9,0,0,0,0,0 +0.667,0.736,0.272,0.305,0.773,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.248 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.7,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.8,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.13 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.191 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.1 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.0827 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.0827 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.168 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.072 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.145 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.0248 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.174 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.0509 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.229 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0.248 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.0827 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.165 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.0472 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.165 +1,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +1,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0764 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.255 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0522 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.248 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.331 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.248 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.2,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,1,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,1,0.248 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.8,0.165 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.248 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.0468 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.117 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.066,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.066,0,0,0,0,0,0,0.165 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0.248 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.0251 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.251 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.128 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0505 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.455 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.311 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0.36 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.0827 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.165 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.0219 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.11 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.238 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.156 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0982 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0246 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0827 +0.667,0.736,0.0889,0.33,0,0,0.142,0.1,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.358,1,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.339,0.4,0.6,0,0.148 +0.667,0.736,0.0889,0.33,0,0,0.24,0,1,0,0.157 +0.667,0.736,0.104,0.337,0,0,0,0,1,0,0 +0.667,0.736,0.104,0.337,0,0,0.191,0,0.5,0,0 +0.667,0.736,0.104,0.337,0,0,0.364,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.5,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.0354,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.136,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.136,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.331,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.165,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.165,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.343,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.0906,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.248,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.102,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.35,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.0236,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.331,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.339,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.362,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.228,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.142,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.449,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.307,0,0,0,0.248 +0.333,0.649,0.0839,0.177,0,0,0.0906,0,0,0,0.248 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.205,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.0551,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.429,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.26,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0.154,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.154,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.228,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.0118,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.441,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0.386,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0.429,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0.169,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0.146,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0.331,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0.193,0,0,0,0 +1,0.98,0.399,0.674,0,0,0.193,0,0,0,0 +1,0.98,0.399,0.674,0,0,0.339,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0.126,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0.0906,0,0,0,0 +1,0.98,0.399,0.674,0,0,0.142,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0.142,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.15 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0.1,0 +1,0.98,0.752,0.98,0,0,0,0,0,1,0 +1,0.98,0.752,0.98,0,0,0,0,0,0.4,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0827 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.025 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.25 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.025 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.175 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.125 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.413 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.0437 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.176 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.12 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.144 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0506 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.428 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.19 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.555 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.461 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0255 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.233 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.254 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.0225 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.135 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.145 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.0727 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0253 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.127 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.6,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.9,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.248 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.165 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0.0927 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0229 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0916 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.105 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.171 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.331 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.436 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.369 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0.0224 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.0673 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.156 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0259 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.339,0.6,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.295,0.9,0.1,0,0.198 +0.667,0.723,0.0735,0.313,0,0,0.555,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.205,0,0.4,0,0.0827 +0.667,0.723,0.0735,0.313,0,0,0.13,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.346,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.409,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.319,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.252,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.252,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.26,0,0,0,0.165 +0.667,0.736,0.104,0.337,0,0,0.443,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.136,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.283,0,0,0,0.165 +0.667,0.736,0.104,0.337,0,0,0.404,0,0,0,0.248 +0.667,0.736,0.116,0.328,0,0,0.199,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.272,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.496,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.248,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.248 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.107 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.218 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0.188,0.1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0.188,1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0.278,1,0,0,0,0,0.149 +0.333,0.701,0.144,0.258,0.653,1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0.466,1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,1,0,0,0,0,0.165 +0.667,0.841,0.271,0.466,0.176,1,0,0,0,0,0.455 +0.667,0.854,0.364,0.595,0.176,1,0,0,0,0,0.413 +0.667,0.854,0.364,0.595,0.489,1,0,0,0,0,0.248 +0.667,0.854,0.364,0.595,0.722,1,0,0,0,0,0.107 +0.667,0.854,0.364,0.595,0.494,0.4,0,0,0,0,0.148 +0.667,0.854,0.364,0.595,0.472,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0.426,0,0,0,0,0,0.0888 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.0222 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.165 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.413 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.025 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.125 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.116 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0231 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.165 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.132 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.494 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.123 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.386 +1,0.745,0.0742,0.351,0,0,0,0,0,0.1,0.249 +1,0.745,0.0742,0.351,0,0,0,0,0,1,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0.4,0.0827 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.0827 +1,0.804,0.102,0.444,0,0,0,0,0,0,0 +1,0.804,0.102,0.444,0,0,0,0,0,0,0.0827 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.335,0.1,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,1,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.557,0.4,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.205,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.42,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.324,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.812,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.182,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.182,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.25,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.347,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0.364,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.472,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.108 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.339 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0256 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.248 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.23 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.171 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0261 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.156 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.136,0.1,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0.136,1,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.228,0.4,0.6,0,0 +0,0.562,0.0159,0.0495,0,0,0.126,0,1,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,1,0,0 +0.333,0.649,0.0882,0.178,0,0,0.319,0,1,0,0 +0.333,0.649,0.0882,0.178,0,0,0.35,0,1,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,1,0,0 +0.333,0.662,0.0976,0.186,0,0,0.283,0,0.7,0,0 +0.333,0.662,0.0976,0.186,0,0,0.228,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0.443,0,0,0,0.248 +0.667,0.762,0.179,0.322,0,0,0.463,0,0,0.1,0.413 +0.667,0.802,0.222,0.367,0,0,0.0709,0,0,1,0.0827 +0.667,0.802,0.222,0.367,0,0,0.256,0,0,0.4,0.165 +0.667,0.802,0.222,0.367,0,0,0.272,0,0,0,0 +1,0.922,0.325,0.526,0,0,0.142,0,0,0,0 +1,0.922,0.325,0.526,0,0,0.339,0,0,0,0 +1,0.922,0.325,0.526,0,0,0.441,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.248 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0261 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.235 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.137 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0551 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.165 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.194 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0489 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.343 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0737 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.137 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.195 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.0246 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.398 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.0827 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.0235 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.165 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0.0751 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0.158 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +1,0.649,0.066,0.189,0,0,0,0,0,0,0 +1,0.649,0.066,0.189,0,0,0,0,0,0,0 +1,0.649,0.066,0.189,0,0,0,0,0,0,0.165 +1,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +1,0.649,0.072,0.183,0,0,0,0,0,0,0 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.165 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +1,0.649,0.072,0.183,0,0,0,0,0,0,0 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.736,0.161,0.307,0,0,0,0,0,0,0.0827 +1,0.824,0.233,0.435,0,0,0,0,0,0,0 +1,0.824,0.233,0.435,0,0,0,0,0,0,0 +1,0.824,0.233,0.435,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.248 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.154 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.211 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.6,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.9,0.123 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.197 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0.134 +1,1,0.537,0.868,0,0,0,0,0,0,0.257 +1,1,0.537,0.868,0,0,0,0,0,0,0.134 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.207 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.155 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.21 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0229 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0221 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.0663 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0208 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.0624 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.143 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.449,0.2,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,1,0,0,0,0,0.248 +1,0.562,0.0181,0.0495,0.295,1,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0.472,0.9,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.58,0,0,0,0,0,0 +1,0.649,0.0923,0.193,0.324,0,0,0,0,0,0 +1,0.649,0.0923,0.193,0.443,0,0,0,0,0.2,0.0472 +1,0.649,0.0923,0.193,0,0,0,0,0,1,0.189 +1,0.649,0.0923,0.193,0,0,0,0,0,0.3,0.165 +1,0.649,0.0923,0.193,0,0,0,0,0,0.2,0 +1,0.649,0.0923,0.193,0,0,0,0,0,1,0 +1,0.824,0.287,0.468,0,0,0,0,0,1,0.246 +1,0.824,0.287,0.468,0,0,0,0,0,1,0.0233 +1,0.824,0.287,0.468,0,0,0,0,0,1,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.4,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.0514 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.257 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0771 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +1,0.824,0.338,0.436,0,0,0,0,0,0,0 +1,0.824,0.338,0.436,0,0,0,0,0,0,0 +1,0.824,0.338,0.436,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.248 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.413 +0.667,0.736,0.272,0.305,0.494,0.2,0,0,0,0,0.0827 +0.667,0.736,0.272,0.305,0,1,0,0,0,0,0 +0.333,0.649,0.145,0.177,1,0.3,0,0,0,0,0 +0.333,0.649,0.145,0.177,0.392,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0.398,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0.477,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.164,0.178,0.392,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0.347,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0.477,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0.241,0,0,0,0,0,0.165 +0.333,0.662,0.179,0.186,0.241,0,0.441,0.2,0,0.2,0.0827 +0.333,0.662,0.179,0.186,0,0,0.26,1,0,1,0 +0.333,0.662,0.179,0.186,0,0,0.26,0.3,0.7,0.3,0 +0.333,0.662,0.179,0.186,0,0,0.295,0,0.8,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.236,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.126,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.331,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.228,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.307,0,0,0,0.165 +1,0.922,0.527,0.526,0,0,0,0,0,0,0.0827 +1,0.98,0.545,0.674,0,0,0.0472,0,0,0,0 +1,0.98,0.545,0.674,0,0,0.339,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.175 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.257 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.124 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0.45,0.7,0,0,0 +1,0.784,0.578,0.638,0,0,0.55,0.8,0.2,0,0.0485 +1,0.784,0.578,0.638,0,0,0.319,0,1,0,0.0485 +1,0.784,0.578,0.638,0,0,0.248,0,0.3,0,0 +1,0.784,0.578,0.638,0,0,0.228,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.2 +1,0.671,0.182,0.183,0,0,0,0,0,0,0.025 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.098 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.623,0.0326,0.15,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.165 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.331 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.0472 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.142 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0827 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.259 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.151 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0.169,0.2,0,0,0.0827 +0.667,0.649,0.108,0.189,0,0,0.331,1,0,0,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0.157,0.3,0.7,0,0 +0.333,0.562,0.0181,0.0495,0,0,0.0787,0,1,0,0 +0.333,0.562,0.0181,0.0495,0,0,0.484,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0.339,0,1,0,0.248 +0.667,0.649,0.117,0.183,0,0,0.398,0,1,0,0.165 +0.667,0.649,0.117,0.183,0,0,0,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0.441,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0.295,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,1,0,0 +0.667,0.736,0.231,0.307,0,0,0.447,0,0.7,0,0 +0.667,0.736,0.231,0.307,0,0,0.447,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0.622,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.165 +0.667,0.736,0.231,0.307,0,0,0.236,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0.283,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.283,0,0,0,0.165 +0.667,0.736,0.272,0.305,0,0,0.283,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.248,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.283,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.52,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.26,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.205,0,0,0,0.0827 +0.667,0.736,0.31,0.307,0,0,0.0551,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0.228,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0.339,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0.374,0,0,0,0.0827 +0.333,0.662,0.179,0.186,0,0,0.283,0,0,0,0.165 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0.661 +0.333,0.682,0.188,0.208,0,0,0.319,0,0,0,0.0827 +0.333,0.682,0.188,0.208,0,0,0.535,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.0354,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.169,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.283,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.48,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.378,0,0,0,0 +1,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.307,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.283,0,0,0,0 +1,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.252,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.272,0,0,0,0 +1,0.854,0.434,0.595,0,0,0,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.461,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.346,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.272,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.0787,0,0,0,0.0827 +1,0.98,0.845,0.98,0,0,0.193,0,0,0,0.0827 +1,0.841,0.569,0.67,0,0,0.272,0,0,0,0.0827 +1,0.841,0.569,0.67,0,0,0.146,0,0,0,0 +1,0.841,0.569,0.67,0,0,0.362,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0.0827 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0.0827 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0.0827 +1,0.71,0.392,0.442,0,0,0,0,0,0,0.0827 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.0735 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.0735 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0.026 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0.26 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.1,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,1,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.4,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0223 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.111 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.121 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.108 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.204 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.331 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.1,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,1,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,1,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,1,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,1,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.5,0.165 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.6,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.9,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0239 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.167 +0.667,0.854,0.364,0.595,0,0,0.307,0.6,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0.9,0.1,0.1,0.0827 +0.667,0.841,0.507,0.67,0,0,0,0,1,1,0.165 +0.667,0.841,0.507,0.67,0,0,0,0,1,0.4,0 +0.667,0.841,0.507,0.67,0,0,0,0,1,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.248 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.137 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0228 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.107 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.251 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.121 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.025 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.175 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.0738 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.123 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.248 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.0247 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.247 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.215 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.165 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0662 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.107 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.146 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.331 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.248 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +1,0.623,0.0353,0.15,0,0,0,0,0,1,0 +1,0.623,0.0353,0.15,0,0,0,0,0,1,0 +1,0.623,0.0353,0.15,0,0,0.228,0.1,0,1,0 +0.667,0.623,0.0353,0.15,0,0,0,1,0,1,0 +0.667,0.623,0.0353,0.15,0,0,0.272,0.4,0.6,1,0 +0.667,0.623,0.0353,0.15,0,0,0.512,0,0.9,1,0 +0.667,0.642,0.0447,0.181,0,0,0.26,0,0,1,0 +0.667,0.642,0.0447,0.181,0,0,0.26,0,0,1,0 +0.667,0.642,0.0447,0.181,0,0,0.614,0,0,1,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,1,0.413 +0.667,0.642,0.0447,0.181,0,0,0.0906,0,0,1,0.448 +0.667,0.642,0.0447,0.181,0,0,0.181,0,0,1,0.165 +0.667,0.736,0.0889,0.33,0,0,0.417,0,0,1,0 +0.667,0.736,0.0889,0.33,0,0,0.0354,0,0,0.7,0.0199 +0.667,0.736,0.0889,0.33,0,0,0.114,0,0,0,0.142 +0.667,0.736,0.0889,0.33,0,0,0.126,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.248,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.224,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.319,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.256,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0.177,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.228,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0.142,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.142,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.136,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.254,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.13,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.0118,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.248 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.4,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.136 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0227 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.116 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.165 +1,1,0.537,0.868,0,0,0,0,0,0,0.0256 +1,1,0.537,0.868,0,0,0,0,0,0,0.128 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0.315,0.1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.315,1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.602,1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.602,1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.665,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.415,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.247,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.247,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.1,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,1,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.4,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.146 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.548 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0.1,0 +1,1,0.537,0.868,0,0,0,0,0,1,0 +1,1,0.537,0.868,0,0,0,0,0,1,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.9,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.14 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0234 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0.148,0.1,0,0.9,0.0827 +1,0.61,0.0183,0.0495,0,0,0.407,1,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0.272,0.4,0.6,0,0 +1,0.61,0.0183,0.0495,0,0,0.591,0,1,0,0 +1,0.61,0.0183,0.0495,0,0,0.26,0,1,0,0 +1,0.61,0.0183,0.0495,0,0,0.126,0,1,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0.228,0,1,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,1,0,0 +1,0.61,0.0165,0.0495,0,0,0.217,0,0.7,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.0238 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.143 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +1,0.684,0.0548,0.251,0,0,0,0,0,1,0.0953 +1,0.684,0.0548,0.251,0,0,0,0,0,0.5,0.154 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +1,0.804,0.102,0.444,0,0,0,0,0,0,0 +1,0.804,0.102,0.444,0,0,0.26,0.6,0,0,0.144 +1,0.804,0.102,0.444,0,0,0.217,0.9,0.1,0,0.0239 +1,0.804,0.102,0.444,0,0,0,0,1,0,0 +1,0.804,0.102,0.444,0,0,0.0906,0,0.4,0,0 +1,0.804,0.102,0.444,0,0,0.228,0,0,0,0.024 +1,0.824,0.125,0.47,0,0,0.0906,0,0,0,0.192 +1,0.824,0.125,0.47,0,0,0.362,0,0,0,0 +1,0.824,0.125,0.47,0,0,0.362,0,0,0,0.0827 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.295,0,0,0,0.141 +0.667,0.736,0.0889,0.33,0,0,0.217,0,0,0,0.0827 +0.667,0.736,0.104,0.337,0,0,0.37,0,0,0,0.331 +0.667,0.736,0.104,0.337,0,0,0.142,0,0,0,0.165 +0.667,0.736,0.104,0.337,0,0,0.142,0,0,0,0.0259 +0.667,0.736,0.104,0.337,0,0,0.142,0,0,0,0.234 +0.667,0.736,0.104,0.337,0,0,0.35,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.591,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.283,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.362,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.386,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.283,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.362,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0.193,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.331,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.287,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.673,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.283,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.126,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.248,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.283,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.256,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0.142,0,0,0,0.248 +0.333,0.649,0.0754,0.178,0,0,0.362,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.124,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.124,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.6,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0.261,0.1,0,0,0,0,0.0827 +0.667,0.662,0.0976,0.186,0.261,1,0,0,0,0,0.248 +0.667,0.662,0.0976,0.186,0.506,1,0,0,0,0,0.0827 +0.667,0.662,0.0976,0.186,0,1,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,1,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0.6,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0.1,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,1,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0.4,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.6,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.9,0.0572 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.229 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.15 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0749 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.137 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.343 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0679 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0827 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0.426,0.7,0,0,0,0,0 +1,0.736,0.197,0.328,0.455,1,0.26,0.2,0,0,0 +1,0.736,0.197,0.328,0.619,1,0.26,1,0,0,0 +1,0.736,0.216,0.316,0,0.4,0.52,1,0,0,0.0827 +1,0.736,0.216,0.316,0,0,0.0236,1,0,0,0 +0.667,0.649,0.117,0.183,0,0,0.0669,1,0,0,0 +0.667,0.649,0.117,0.183,0,0,0.398,1,0,0,0 +0.667,0.649,0.117,0.183,0,0,0.272,0.8,0.2,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,1,0,0 +0.667,0.649,0.125,0.178,0,0,0.47,0,0.3,0,0 +0.667,0.649,0.125,0.178,0,0,0.608,0,0,0,0.0827 +0.667,0.649,0.125,0.178,0,0,0.236,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0.0354,0,0,0,0.0827 +0.667,0.649,0.125,0.178,0,0,0.0551,0,0,0.2,0.0827 +0.667,0.649,0.125,0.178,0,0,0,0,0,1,0 +0.667,0.649,0.145,0.177,0,0,0.283,0,0,0.3,0 +0.667,0.649,0.145,0.177,0,0,0.283,0,0,0,0 +0.667,0.649,0.145,0.177,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.0551,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.0787,0,0,0,0.0827 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.646,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.283,0,0,0,0.0827 +0.667,0.736,0.31,0.307,0,0,0.335,0,0,0,0.248 +0.667,0.736,0.31,0.307,0,0,0.469,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.421,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.512,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.193,0,0,0,0.0827 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.35,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.0236,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.315,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.465,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.465,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.5,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.602,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.134,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.248 +0.667,0.841,0.369,0.466,0,0,0.283,0,0,0,0.248 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0.217,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0.331,0,0,0,0 +1,0.98,0.545,0.674,0,0,0.0591,0,0,0,0 +1,1,0.642,0.868,0,0,0.181,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0.295,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0.699,0.7,0.431,0,0,0,0.0827 +1,1,0.642,0.868,0.449,1,0.215,0,0,0,0 +1,1,0.642,0.868,0,1,0.421,0,0,0,0 +1,0.98,0.845,0.98,0.398,1,0.533,0,0,0,0 +1,0.98,0.845,0.98,0.375,1,0.474,0,0,0,0 +1,0.98,0.845,0.98,0.562,1,0.236,0,0,0,0 +1,0.98,0.845,0.98,0.253,0.6,0.0551,0,0,0,0 +1,0.98,0.845,0.98,0.253,0,0.114,0,0,0,0 +1,0.98,0.845,0.98,0.494,0,0,0,0,0,0 +1,0.941,0.993,0.913,0.574,0,0.0906,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.283,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.26,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.272,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.157,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.228,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.547,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.181,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0474 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.071 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.167 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0953 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.824,0.287,0.468,0,0,0.126,0.7,0,0,0 +1,0.824,0.287,0.468,0,0,0.236,0.8,0.2,0,0 +1,0.824,0.287,0.468,0,0,0.53,0,1,0,0 +1,0.824,0.287,0.468,0,0,0.199,0,0.3,0,0 +1,0.824,0.287,0.468,0,0,0.228,0,0,0,0 +1,0.824,0.287,0.468,0,0,0,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.161,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.248,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.0906,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.0472,0,0,0,0.248 +1,0.824,0.315,0.449,0,0,0.421,0,0,0,0.0827 +1,0.824,0.315,0.449,0,0,0,0,0,0,0.248 +1,0.736,0.231,0.307,0,0,0.283,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0.236,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.248 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.165 +1,0.736,0.272,0.305,0,0,0,0,0,0,0 +1,0.736,0.272,0.305,0,0,0,0,0,0.2,0 +1,0.736,0.272,0.305,0,0,0,0,0,1,0 +1,0.736,0.272,0.305,0,0,0,0,0,0.3,0.0827 +1,0.736,0.272,0.305,0,0,0,0,0,0,0.0827 +1,0.736,0.272,0.305,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.762,0.34,0.322,0,0,0,0,0,0,0 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +1,0.762,0.34,0.322,0,0,0,0,0,0,0 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +1,0.762,0.34,0.322,0,0,0,0,0,0,0 +1,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +1,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +1,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.213 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.456 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.169 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,1,0.642,0.868,0.46,0.7,0,0,0,0,0 +1,1,0.642,0.868,0.375,1,0,0,0,0,0.128 +1,1,0.642,0.868,0.443,1,0,0,0,0,0.114 +1,1,0.642,0.868,0.267,1,0,0,0,0,0 +1,1,0.642,0.868,0.267,1,0,0,0,0,0 +1,1,0.642,0.868,0.881,0,0,0,0,0,0 +1,0.98,0.845,0.98,0.443,0,0,0,0,0,0.182 +1,0.98,0.845,0.98,0.233,0,0,0,0,0,0.156 +1,0.98,0.845,0.98,0.92,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0.0508 +1,0.98,0.845,0.98,0,0,0,0,0,0,0.254 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.0254 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.135 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0.0827 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0246 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0986 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.248 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.168 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0923 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.658 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.109 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.137 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.243 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0729 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.248 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.107 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.245 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.157 +1,1,0.537,0.868,0,0,0,0,0,0,0.161 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0997 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0495 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.248 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0495 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0665 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.399 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.216 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0864 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.238 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.149 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.248 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.143 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.119 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.6,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,1,0.192 +0.667,0.723,0.0735,0.313,0,0,0,0,0,1,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.4,0.0827 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.154 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0769 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0259 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.259 +0.333,0.649,0.0601,0.193,0,0,0.307,0.6,0,0,0.0259 +0.333,0.649,0.0601,0.193,0,0,0.0551,0.9,0.1,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,1,0,0 +0.333,0.649,0.0601,0.193,0,0,0.26,0,0.4,0,0 +0.333,0.649,0.0601,0.193,0,0,0.417,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.0906,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.236,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.283,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0.199,0,0,0,0.248 +0.333,0.649,0.072,0.183,0,0,0.199,0,0,0,0.331 +0.333,0.649,0.072,0.183,0,0,0.362,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.167,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.333,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.228,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.0118,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.222,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.187,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.0906,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.146,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.169,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.272,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.366,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.283,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.331 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.6,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.9,0.0804 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.313 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.0827 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.146 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0488 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.106 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.14 +1,0.562,0.0159,0.0495,0,0,0.236,0.6,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0.9,0.1,0,0 +1,0.745,0.0742,0.351,0,0,0,0,1,0,0.103 +1,0.745,0.0742,0.351,0,0,0,0,0.4,0,0.0776 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0.142,0.1,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.142,1,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.429,0.4,0.6,0,0 +0.667,0.723,0.0735,0.313,0,0,0.524,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.236,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.26,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.457,0,1,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,1,0,0 +0.333,0.649,0.0524,0.19,0,0,0.126,0,0.7,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0.142,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0.346,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.0551,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.13,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0.13,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.339,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.165,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.165,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.0906,0,0,0,0.165 +0.333,0.649,0.0601,0.193,0,0,0.362,0,0,0,0.331 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.205,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.13,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.13,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.179,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.407,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.248,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.281,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.283,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.148,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.362,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.0118,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.272,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.372,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.136,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.299,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.346,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0.26,0,0,0,0.248 +0.333,0.649,0.0839,0.177,0,0,0.352,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0.317,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.331,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.512,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0.362,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.205,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.26,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.22,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0.22,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0.362,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.159,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.159,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.26,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0.272,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0.386,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0.307,0,0,0,0.165 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.1,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,1,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.4,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0827 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.331 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.165 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.0229 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.137 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.41 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.161 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.244 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0976 +1,0.658,0.036,0.116,0,0,0,0,0,0.1,0 +1,0.658,0.036,0.116,0,0,0,0,0,1,0 +1,0.658,0.036,0.116,0,0,0,0,0,1,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0.9,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.682,0.119,0.208,0,0,0,0,0,0.6,0.0945 +0.667,0.682,0.119,0.208,0,0,0,0,0,0.9,0.0827 +0.667,0.682,0.119,0.208,0,0,0,0,0,0,0.165 +0.667,0.682,0.119,0.208,0,0,0,0,0,0,0.0496 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.281 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.165 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.165 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.156 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.104 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.6,0 +1,0.863,0.88,0.727,0,0,0,0,0,1,0.0236 +1,0.784,0.532,0.638,0,0,0,0,0,1,0.118 +1,0.784,0.532,0.638,0,0,0,0,0,1,0 +1,0.784,0.532,0.638,0,0,0,0,0,1,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.165 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.155 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0259 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0246 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.123 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.13 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.248 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.248 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.165 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0.331 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0.0827 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0,0.165 +0.667,0.701,0.261,0.36,0,0,0,0,0,0.1,0.0827 +0.667,0.701,0.261,0.36,0,0,0,0,0,1,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0.4,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.0827 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0189,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0189,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0.2,0 +1,0.61,0.024,0.0829,0,0,0,0,0,1,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0.3,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +0.667,0.623,0.0326,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0326,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.165 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.0495 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.124 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.0827 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.654 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.358 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.0827 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.34 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.213 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.118 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0942 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.468 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.0472 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.165 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.164 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.259 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.271 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.132 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.0742 +1,0.863,0.502,0.458,0,0,0,0,0,0,0.248 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.362,0.7,0,0.7,0 +0.667,0.802,0.358,0.367,0,0,0.102,1,0,0.8,0.0827 +0.667,0.802,0.358,0.367,0,0,0.283,1,0,0,0.0827 +0.667,0.841,0.369,0.466,0,0,0.409,1,0,0,0 +0.667,0.841,0.369,0.466,0,0,0.339,0.8,0.2,0,0.165 +1,0.98,0.545,0.674,0,0,0,0,1,0,0 +1,0.98,0.545,0.674,0,0,0,0,1,0,0 +1,0.98,0.545,0.674,0,0,0,0,0.9,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0.0354,0.2,0,0,0 +1,1,0.642,0.868,0,0,0.407,1,0,0,0 +1,1,0.642,0.868,0,0,0.136,0.3,0.7,0,0 +1,1,0.642,0.868,0,0,0.283,0,1,0,0 +1,1,0.642,0.868,0,0,0,0,1,0,0 +1,0.98,0.845,0.98,0,0,0.126,0,0.4,0,0 +1,0.98,0.845,0.98,0,0,0.272,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.283,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.283,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.272,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.205,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.228,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.283,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.339,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0.138,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0.046 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.069 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.0453 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.113 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0437 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0874 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.248 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.248 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.248 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0483 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.121 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0827 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.0827 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0.165 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.248 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.165 +1,0.824,0.456,0.435,0,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.0827 +1,0.824,0.456,0.435,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0.0827 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0.339,0.2,0,0,0 +0.667,0.854,0.434,0.595,0,0,0.433,1,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0.3,0.7,0,0.0827 +0.667,0.841,0.569,0.67,0,0,0,0,0.8,0,0.165 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.165 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.248 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.0827 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.178 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.0255 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0244 +1,0.658,0.0241,0.053,0,0,0,0,0,0,0.244 +1,0.658,0.0241,0.053,0,0,0,0,0,0,0.0488 +1,0.658,0.0241,0.053,0,0,0,0,0,0.1,0.0827 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0.0827 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0.292 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0.5,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0.109 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.209 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.375 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.146 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.137 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0827 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.6,0.15 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.9,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.0255 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.153 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.413 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.165 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.331 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.248 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0766 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.1,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,1,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,1,0 +1,0.922,0.325,0.526,0,0,0,0,0,0.9,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0.228,0.6,0,0,0 +1,0.941,0.929,0.913,0,0,0.236,0.9,0.1,0,0 +1,0.941,0.929,0.913,0,0,0,0,1,0,0 +1,0.941,0.929,0.913,0,0,0.256,0,0.4,0,0 +1,0.941,0.929,0.913,0,0,0.13,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.454 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0871 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.252 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.0258 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.258 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.289 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.165 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0827 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0.165 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0259 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.155 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0987 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.148 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.106 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.14 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0.165 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.248 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.165 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.1,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,1,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,1,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.9,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.4,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0.224,0.1,0,0,0,0,0 +1,1,0.537,0.868,0.224,1,0,0,0,0,0 +1,1,0.537,0.868,0.534,1,0,0,0,0,0 +1,1,0.537,0.868,0.398,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.494,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.46,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.27,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.27,0.2,0,0,0,0,0 +1,0.98,0.752,0.98,0.648,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.1,0 +1,0.941,0.929,0.913,0,0,0,0,0,1,0 +1,0.941,0.929,0.913,0,0,0,0,0,1,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.9,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0.205,0.1,0,0,0,0,0 +1,0.863,0.88,0.727,0.205,1,0,0,0,0,0 +1,0.863,0.88,0.727,0.534,1,0,0,0,0,0 +1,0.662,0.304,0.275,0.364,1,0,0,0,0,0 +1,0.636,0.188,0.246,0.438,1,0,0,0,0,0 +1,0.636,0.188,0.246,0,0.6,0,0,0,0,0 +1,0.636,0.188,0.246,0.307,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0.369,0,0,0,0,0,0 +1,0.636,0.188,0.246,0.574,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.415,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.199,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.199,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.347,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0.369,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0.307,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.6,0.147 +0.667,0.684,0.0548,0.251,0,0,0,0,0,1,0.0491 +0.667,0.723,0.0735,0.313,0,0,0,0,0,1,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.4,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0827 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0827 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.0827 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.165 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.0827 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0.0827 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0.403,0.6,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0.335,1,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0.284,1,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0.557,0.5,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.165 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.1,0.165 +0.333,0.682,0.119,0.208,0,0,0,0,0,1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.4,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.165 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0827 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.432,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.443 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.0913 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.0685 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.165 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0.9,0.0909 +1,0.559,0.0314,0.114,0,0,0,0,0,0.5,0.0958 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.12 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.206 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.101 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.177 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.169,0.9,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.157,0.5,0.5,0,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,1,0,0 +0.667,0.621,0.0764,0.318,0,0,0.283,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0.26,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0.453,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0.26,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0.5,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0.248,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.9,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,1,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0.472,0.4,0,0,0,0,0.0827 +0.667,0.704,0.232,0.395,0.665,1,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,1,0,0,0,0,0 +0.667,0.704,0.232,0.395,0.426,1,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.483,1,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.33,1,0,0,0,0,0.248 +0.667,0.714,0.31,0.507,0.42,1,0,0,0,0,0.331 +0.667,0.714,0.31,0.507,0.42,1,0,0,0,0,0.165 +0.667,0.714,0.31,0.507,0,0.2,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.511,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0977 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.122 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.147 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.269 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.0966 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.193 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0435 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0435 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.165 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.248 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.4,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.248 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.438,0.9,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.523,1,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.557,1,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.489,1,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0.7,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.654 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0945 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.151 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.9,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.5,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.197 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0236 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.142 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.094 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.094 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.192 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.274 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.126 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0.227 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0.177 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.603 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0998 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0499 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.096 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.072 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.225 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.0749 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.207 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.148 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.103 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.259 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.274 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.235 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.104 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.0827 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.221 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.165 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.331 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0.449,0.9,0,0,0,0,0.234 +0.333,0.591,0.108,0.171,0.574,1,0,0,0,0,0.26 +0.333,0.591,0.108,0.171,0.369,1,0,0,0,0,0.026 +0.667,0.621,0.198,0.292,0.585,0.1,0.283,0.9,0,0,0 +1,0.651,0.34,0.409,0.176,0,0.169,1,0,0,0.0827 +1,0.651,0.34,0.409,0.176,0,0,1,0,0,0.213 +1,0.651,0.34,0.409,0,0,0.193,0,1,0.9,0.248 +0.667,0.621,0.233,0.289,0,0,0,0,1,1,0.248 +0.667,0.621,0.233,0.289,0,0,0,0,1,1,0.331 +0.667,0.621,0.233,0.289,0,0,0,0,0.1,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.248 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.9,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.5,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.326,0.324,0.4,0,0,0,0,0 +0.667,0.673,0.305,0.326,0.483,1,0,0,0,0,0 +0.667,0.673,0.305,0.326,0.233,1,0,0,0,0,0 +0.667,0.704,0.315,0.395,0.233,0.6,0,0,0,0,0 +0.667,0.704,0.315,0.395,0.71,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.165 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0.331,0.9,0,0,0 +0.667,0.714,0.371,0.507,0.438,0.4,0,0.5,0.5,0,0 +0.667,0.714,0.371,0.507,0.443,1,0,0,1,0,0 +0.667,0.714,0.371,0.507,0,1,0,0,1,0,0 +0.667,0.714,0.371,0.507,0.636,0.6,0,0,0.6,0,0 +0.667,0.714,0.371,0.507,0.335,0,0,0,0,0,0 +1,0.79,0.547,0.736,0.432,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.466,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.54,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.534,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.409,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0.403,0.9,0,0,0,0,0 +1,0.682,0.78,0.807,0.466,1,0,0,0,0,0 +1,0.682,0.78,0.807,0,1,0,0,0,0,0 +1,0.682,0.78,0.807,0.472,1,0,0,0,0,0 +1,0.62,0.492,0.5,0.472,1,0,0,0,0,0 +1,0.62,0.492,0.5,0.494,1,0,0,0,0,0 +1,0.6,0.334,0.35,0.511,1,0,0,0,0,0 +1,0.6,0.334,0.35,0.227,0.7,0,0,0,0,0.165 +1,0.6,0.334,0.35,0.227,0,0,0,0,0,0.165 +1,0.6,0.334,0.35,0.375,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.295,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.426,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.233,0,0,0,0,0,0.248 +1,0.569,0.156,0.183,0.233,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0.466,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0.489,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.225 +1,0.56,0.044,0.0743,0.358,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0.608,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.29 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.102 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.179 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.167 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0945 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0945 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.165 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.147 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.224 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0.165 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0934,0.181,0,0,0,0,0,0,0 +1,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.331 +0.667,0.562,0.0181,0.0495,0,0,0.374,0.4,0,1,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,1,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0.331,0,1,1,0.0827 +0.667,0.591,0.108,0.171,0,0,0.0551,0,1,1,0 +0.667,0.591,0.108,0.171,0,0,0,0,1,0.9,0 +0.667,0.591,0.108,0.171,0,0,0.0236,0,1,0,0 +0.667,0.591,0.108,0.171,0,0,0.217,0,1,0,0.165 +0.667,0.591,0.108,0.171,0,0,0,0,1,0,0.165 +0.667,0.591,0.108,0.171,0,0,0.126,0,0.2,0,0.0827 +0.667,0.591,0.125,0.169,0,0,0.272,0,0,0,0 +0.667,0.591,0.125,0.169,0,0,0.0906,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0.409,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0.283,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0.0669,0,0,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0.441,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0.339,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.165 +1,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.165 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.0827 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.0827 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0,0,0,0,0.0827 +0.667,0.642,0.526,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.26,0.4,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.417,1,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.0236,0,1,0,0 +0.667,0.6,0.334,0.35,0,0,0.217,0,1,0,0 +0.667,0.6,0.334,0.35,0,0,0.0906,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.0551,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.217,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.193,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.114,0,0.2,0,0 +1,0.573,0.224,0.249,0,0,0.0236,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0.291,0,0,0,0 +1,0.573,0.224,0.249,0,0,0.0354,0,0,0,0 +1,0.573,0.224,0.249,0.403,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.476,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.217,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.35,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.228,0,0,0,0.0827 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.102,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.331,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.228,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.0551,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0.331,0,0,0,0.0827 +1,0.56,0.0171,0.0495,0,0,0.339,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.272,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.307,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.0551,0,0,0,0.248 +1,0.56,0.0171,0.0495,0,0,0.0669,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.543,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0157,0.0495,0,0,0.272,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.283,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.9,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.5,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.102 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.178 +0.667,0.621,0.0895,0.321,0.42,0.9,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0.477,1,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0.682,1,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0.483,0.1,0,0,0,0,0.312 +0.667,0.621,0.0895,0.321,0.21,0,0,0,0,0,0.0894 +0.667,0.621,0.0997,0.312,0.21,0,0,0,0,0,0.0447 +0.667,0.621,0.0997,0.312,0.733,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.115 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.261 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.13 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.413 +1,0.651,0.157,0.426,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.319,0.4,0,0,0 +0.667,0.621,0.137,0.29,0,0,0.657,1,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,1,0,0.0827 +0.667,0.621,0.137,0.29,0,0,0.319,0,0.5,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.0906,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.283,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.567,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.0118,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.421,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.4,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0.248 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0.392,0.4,0,0,0,0,0 +0.667,0.683,0.532,0.635,0.483,1,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0.1,0,0,0,0,0 +0.667,0.683,0.532,0.635,0.42,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0.386,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.528,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.472,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.727,0,0,0,0,0,0 +1,0.6,0.307,0.35,0.534,0,0,0,0,0,0 +1,0.6,0.307,0.35,0.591,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.324,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.648,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.264 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.247 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.124 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.307 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.2 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0.272,0.4,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0.0472,1,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.547,0,1,0,0 +0.333,0.591,0.0578,0.181,0,0,0.35,0,0.5,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0.193,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0.236,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.681,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.319,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.429,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.465,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.228,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.295,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.248,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.228,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.587,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.26,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.339,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.429,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.272,0,0,0,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.366,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.579,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.657,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.476,0,0,0,0 +0.667,0.602,0.0846,0.174,0,0,0.591,0,0,0,0 +0.667,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.602,0.0846,0.174,0,0,0.26,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.5,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.0551,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.205,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.465,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.669,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.248,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.217,0,0,0,0.165 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0.295,0.9,0.0354,0,0,0,0 +1,0.774,0.34,0.567,0.375,1,0.146,0,0,0,0 +1,0.79,0.457,0.736,0.699,1,0.0906,0,0,0,0 +1,0.79,0.457,0.736,0.341,0.1,0.362,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.236,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.0906,0,0,0,0 +1,0.79,0.457,0.736,0.409,0,0.362,0,0,0,0 +1,0.79,0.457,0.736,0.443,0,0.205,0,0,0,0.0827 +1,0.774,0.64,0.895,0.443,0,0.272,0,0,0,0 +1,0.774,0.64,0.895,0.426,0,0.331,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.272,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.319,0,0,0,0 +1,0.774,0.64,0.895,0.517,0,0.169,0,0,0,0 +1,0.774,0.64,0.895,0.733,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.5,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.426,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.449,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.494,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.318,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.29,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.244,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.173,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.173,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.307,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.477,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.506,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.398,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.398,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.352,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.602,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0.432,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.375,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.051,0,0,0,0,0,0.4,0.0827 +1,0.56,0.0186,0.051,0,0,0,0,0,1,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.121 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.264 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.264 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.9,0.317 +0.333,0.586,0.0396,0.177,0,0,0,0,0,1,0.0522 +0.667,0.621,0.0764,0.318,0,0,0,0,0,1,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.289 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.18 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.472,0.9,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.477,1,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.312,1,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.608,1,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.398,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.545,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0.3,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.9,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.5,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0.415,0.4,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.33,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.227,1,0,0,0,0,0.331 +0.333,0.591,0.073,0.169,0.227,0.6,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.494,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.58,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0.364,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.358,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.284,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0.506,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.369,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.472,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0.722,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0.528,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0.517,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0.438,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.4,0 +0.333,0.617,0.103,0.188,0.324,0,0,0,0,1,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0.236,0.4,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,1,0,0,0 +0.667,0.704,0.232,0.395,0,0,0.669,0,1,0,0 +0.667,0.704,0.232,0.395,0,0,0.205,0,1,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,1,0,0 +0.667,0.704,0.232,0.395,0,0,0.169,0,0.1,0,0 +0.667,0.704,0.232,0.395,0,0,0.236,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0.272,0,0,0,0.165 +1,0.79,0.457,0.736,0,0,0.0906,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.315,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.228,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.465,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.398,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.193,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.291,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.35,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.366,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.217,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.343,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.0354,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0.567,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0989 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.124 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.225 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.025 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.37 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0993 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.223 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0.31 +0.667,0.633,0.124,0.222,0,0,0,0,0,0.4,0.126 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,0.5,0.248 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0.9,0.199 +1,0.774,0.64,0.895,0,0,0,0,0,0.5,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.266 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.199 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.197 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0937 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0234 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.228 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.178 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0,0.104 +1,0.62,0.453,0.5,0,0,0,0,0,0,0.13 +1,0.62,0.453,0.5,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.248 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.165 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0827 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.165 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0.165 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0.477,0.4,0,0,0,0,0 +1,0.621,0.0895,0.321,0.278,1,0,0,0,0,0 +1,0.621,0.0895,0.321,0.213,1,0,0,0,0,0.132 +1,0.621,0.0895,0.321,0.213,0.6,0,0,0,0,0 +1,0.651,0.126,0.456,0.443,0,0,0,0,0,0 +1,0.651,0.126,0.456,0.5,0,0,0,0,0,0 +1,0.651,0.126,0.456,0.705,0,0,0,0,0,0.269 +1,0.651,0.142,0.443,0,0,0,0,0,0,0.156 +1,0.651,0.142,0.443,0.415,0,0,0,0,0,0.165 +1,0.651,0.142,0.443,0.375,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0.699,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0.523,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.608,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0.352,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.415,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.466,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.31,0,0,0,0,0,0.0692 +0.333,0.591,0.0658,0.171,0.31,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.506,0,0,0,0,0,0.413 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.415,0.9,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.432,0.6,0,0,0,0,0.0827 +1,0.673,0.19,0.326,0.438,0,0,0,0,0,0 +1,0.673,0.19,0.326,0.625,0,0,0,0,0,0 +1,0.728,0.277,0.464,0.241,0,0,0,0,0.4,0.0827 +1,0.728,0.277,0.464,0.241,0,0,0,0,1,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.9,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.5,0.101 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.201 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0908 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.0681 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.165 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.4,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.224 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.0249 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.0991 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.149 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.9,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.5,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.104 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.078 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.174 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.0827 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.103 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0515 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.606 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.335 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.375 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.28 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.0229 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.331 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.9,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.5,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.413 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.196 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0.0936 +1,0.62,0.492,0.5,0,0,0,0,0,0,0.117 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.166 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.386 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0757 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0.0252 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.248 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0.9,0 +1,0.586,0.0433,0.177,0,0,0,0,0,1,0 +1,0.586,0.0433,0.177,0,0,0,0,0,1,0 +1,0.586,0.0433,0.177,0,0,0,0,0,1,0 +1,0.621,0.109,0.318,0,0,0,0,0,1,0.165 +1,0.621,0.109,0.318,0,0,0,0,0,1,0 +1,0.621,0.109,0.318,0,0,0,0,0,1,0.413 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,1,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.8,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.158 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.249 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.311 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.9,0.61 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.5,0.177 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.0236 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.35 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.261 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.143 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.0827 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0.453,0.9,0,0,0 +1,0.79,0.547,0.736,0,0,0.339,0.5,0.5,0,0 +1,0.79,0.547,0.736,0,0,0,0,1,0,0 +1,0.79,0.547,0.736,0,0,0.228,0,1,0,0 +1,0.79,0.547,0.736,0,0,0.138,0,1,0,0 +1,0.79,0.547,0.736,0,0,0,0,1,0,0 +1,0.79,0.547,0.736,0,0,0.646,0,1,0,0 +1,0.774,0.719,0.895,0,0,0.228,0,1,0,0 +1,0.774,0.719,0.895,0,0,0,0,1,0,0 +1,0.774,0.719,0.895,0,0,0.228,0,0.3,0,0 +1,0.774,0.719,0.895,0,0,0.205,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0.228,0,0,0,0.248 +1,0.744,0.845,0.928,0,0,0.319,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.283,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.272,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.272,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.217,0,0,0,0 +1,0.682,0.78,0.807,0,0,0.52,0,0,0,0 +1,0.682,0.78,0.807,0,0,0.228,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.101 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.202 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0.197 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.9,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,1,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,1,0 +0.667,0.58,0.0474,0.245,0.591,0.9,0,0,0,1,0 +0.667,0.58,0.0474,0.245,0.375,1,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0.534,1,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0.534,1,0,0,0,1,0.38 +0.667,0.611,0.0634,0.305,0.304,1,0,0,0,1,0.0827 +0.667,0.611,0.0634,0.305,0.304,1,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0,1,0,0,0,1,0 +0.333,0.586,0.0396,0.177,0,0.7,0,0,0,1,0.0925 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0925 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.9,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.9,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.5,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.413 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0827 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.232 +1,0.774,0.64,0.895,0.358,0.4,0,0,0,0,0.206 +1,0.774,0.64,0.895,0.574,1,0,0,0,0,0 +1,0.774,0.64,0.895,0,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.381,0.6,0,0,0,0,0 +1,0.744,0.791,0.928,0.443,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.801,0,0,0,0,0,0.225 +1,0.744,0.791,0.928,0.443,0,0,0,0,0,0.15 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0853 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0213 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0.223 +1,0.602,0.26,0.302,0,0,0,0,0,0,0.0248 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.195 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.0248 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.124 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0858 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.342 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0501 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.0827 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.568,0.9,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.318,1,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.398,1,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.352,0.1,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.534,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.248 +0.333,0.591,0.0527,0.185,0.784,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.483,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0.608,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.58,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.483,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.494,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.551,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.386,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.562,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.347,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.9,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.5,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.151 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0977 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.147 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.102 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.504 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.35 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.248 +1,0.79,0.457,0.736,0.409,0.4,0,0,0,0,0.165 +1,0.774,0.64,0.895,0.352,1,0,0,0,0,0 +1,0.774,0.64,0.895,0,0.1,0,0,0,0,0 +1,0.774,0.64,0.895,0.472,0,0.331,0.4,0,0,0.165 +1,0.774,0.64,0.895,0.438,0,0,1,0,0,0.165 +1,0.774,0.64,0.895,0.409,0,0.193,0,1,0,0 +1,0.774,0.64,0.895,0,0,0.0906,0,1,0,0 +1,0.744,0.791,0.928,0,0,0.567,0,1,0,0 +1,0.744,0.791,0.928,0,0,0.319,0,0.1,0,0 +1,0.744,0.791,0.928,0,0,0.228,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.283,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.0354,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.488,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.508,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.0354,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.157,0,0,0,0 +1,0.581,0.162,0.2,0,0,0.657,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.1 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.2 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.242 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0627 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0209 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0827 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0979 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.196 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.331 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.9,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0.248 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.4,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.443,0.9,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0.33,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.54,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0.1,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0.568,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.489,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.244,0,0.283,0.9,0,0,0 +0.333,0.591,0.073,0.169,0.54,0,0.26,0.5,0.5,0,0.0827 +0.333,0.591,0.0767,0.17,0.432,0,0,0,1,0,0 +0.333,0.591,0.0767,0.17,0.5,0,0.862,0,1,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0.236,0,1,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,1,0,0 +0.333,0.591,0.0767,0.17,0,0,0.421,0,0.1,0,0 +0.333,0.591,0.0767,0.17,0,0,0.35,0,0,0,0.165 +0.333,0.602,0.0846,0.174,0,0,0.26,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.283,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.319,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.398,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.269 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.259 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.186 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0.0827 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0.506,0.9,0,0,0,0,0.145 +0.667,0.714,0.31,0.507,0.438,0.6,0,0,0,0,0 +1,0.774,0.64,0.895,0.5,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.733,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.1 +1,0.774,0.64,0.895,0.795,0,0,0,0,0,0.0501 +1,0.774,0.64,0.895,0.358,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.682,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.511,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.381,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.438,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.438,0,0.5,0.9,0,0,0.161 +1,0.744,0.791,0.928,0,0,0.331,0.5,0.5,0,0 +1,0.682,0.749,0.807,0,0,0,0,1,0,0 +1,0.682,0.749,0.807,0,0,0.272,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.258 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.258 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0862 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.259 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.13 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.223 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.199 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.114 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0955 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.167 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.165 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0.272,0.4,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,1,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.169,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0.114,0,0.5,0,0 +0.333,0.591,0.0629,0.175,0,0,0.406,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.547,0,0,0,0.248 +0.333,0.591,0.0629,0.175,0,0,0.0906,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.0118,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.236,0,0,0,0.165 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.205,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.452 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.667,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.667,0.602,0.0846,0.174,0,0,0,0,0,1,0.331 +0.667,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0.165 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0.0827 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0.0903 +0.333,0.638,0.163,0.278,0,0,0,0,0,1,0.0451 +0.333,0.638,0.163,0.278,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,1,0 +1,0.774,0.64,0.895,0,0,0,0,0,1,0 +1,0.774,0.64,0.895,0,0,0,0,0,1,0 +1,0.774,0.64,0.895,0,0,0,0,0,1,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,1,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,1,0.248 +0.667,0.704,0.432,0.613,0,0,0,0,0,1,0 +1,0.744,0.791,0.928,0,0,0,0,0,1,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.8,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0969 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0969 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.165 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0.9,0 +1,0.586,0.0396,0.177,0,0,0,0,0,1,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,1,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,1,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.331 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.248 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.248 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.248 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.534,0.9,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0.545,1,0,0,0,0,0.248 +0.333,0.617,0.103,0.188,0.545,1,0,0,0,0,0 +0.333,0.617,0.103,0.188,0.301,1,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0.489,1,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,1,0,0,0,0,0 +0.333,0.633,0.124,0.222,0.42,0.2,0,0,0,0,0 +0.333,0.633,0.124,0.222,0.426,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0.653,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0.222 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.26 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.342 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.534,0.4,0,0,0,0,0 +1,0.642,0.505,0.555,0.511,1,0,0,0,0,0 +1,0.642,0.505,0.555,0,1,0,0,0,0,0 +1,0.642,0.505,0.555,0.403,0.6,0,0,0,0,0 +1,0.642,0.505,0.555,0.5,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.619,0,0,0,0,0,0 +0.667,0.602,0.26,0.302,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.165 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.248 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0.0827 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.0827 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.248 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.0827 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0.331 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.169,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.169,0,0,0,0,0,0,0.165 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.248 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.102 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.205 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.171 +1,0.714,0.371,0.507,0,0,0,0,0,0,0.0827 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0.9,0 +1,0.714,0.371,0.507,0,0,0,0,0,0.5,0.0827 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0.4,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0803,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0803,0.185,0,0,0,0,0,0,0.248 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0.517,0.4,0,0,0,0,0.0827 +0.667,0.621,0.169,0.312,0.466,1,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,1,0,0,0,0,0 +0.667,0.621,0.169,0.312,0.665,0.6,0,0,0,0,0.165 +0.667,0.621,0.169,0.312,0.466,0,0,0,0,0,0.0827 +0.333,0.591,0.0934,0.181,0.466,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0.449,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0.318,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0.358,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.165 +0.333,0.591,0.125,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0.331 +0.333,0.602,0.154,0.174,0,0,0,0,0,0,0.165 +0.333,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.0827 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.094 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.047 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.207 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.259 +1,0.79,0.547,0.736,0,0,0,0,0,0.4,0.424 +1,0.79,0.547,0.736,0,0,0,0,0,1,0.29 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0.0827 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0.0827 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.248 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0945 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0709 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.165 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.248 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.217 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0241 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0.0953 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0715 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.252 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.158 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.2 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.227 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.126 +0.333,0.591,0.0658,0.171,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.248 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.0827 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0.307,0.9,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0.283,0.5,0.5,0,0 +1,0.774,0.34,0.567,0,0,0.531,0,1,0,0 +1,0.774,0.34,0.567,0,0,0.283,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.228,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.75,0.9,0.193,0,0,0,0 +1,0.79,0.457,0.736,0.381,0.6,0.236,0,0,0,0 +1,0.79,0.457,0.736,0.517,0,0.429,0,0,0,0 +1,0.79,0.457,0.736,0.562,0,0.126,0,0,0,0.248 +1,0.79,0.457,0.736,0,0,0.543,0,0,0,0 +1,0.774,0.64,0.895,0.347,0,0.26,0,0,0,0 +1,0.774,0.64,0.895,0.295,0,0,0,0,0,0.227 +1,0.774,0.64,0.895,0.523,0,0,0,0,0,0.216 +1,0.774,0.64,0.895,0.523,0,0,0,0,0,0.165 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.184 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.202 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.183 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.175 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.9,0.207 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.5,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.024 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.24 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.22 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.0244 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.132 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.4,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.248 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.165 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0.489,0.4,0,0,0,0,0 +1,0.744,0.791,0.928,0.511,1,0,0,0,0,0 +1,0.744,0.791,0.928,0,1,0,0,0,0,0 +1,0.744,0.791,0.928,0.517,0.6,0,0,0,0,0 +1,0.744,0.791,0.928,0.619,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.534,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.449,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.585,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.215 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0239 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0904 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.231 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.9,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,1,0.0998 +0.667,0.611,0.0634,0.305,0,0,0,0,0,1,0.0499 +0.667,0.611,0.0634,0.305,0,0,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,1,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.9,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.442 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.15 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.248 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.248 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0988 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0.0657 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.198 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.248 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.248 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.234 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.026 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0,0.192 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0931 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.248 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0993 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0827 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.37 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.213 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.0862 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.165 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.496,0.9,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0.283,0.5,0.5,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0.52,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.126,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0.283,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0.126,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.283,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.102,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.406,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0.248,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.0551,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.307,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.283,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.429,0,0,0,0.248 +0.333,0.591,0.0767,0.17,0,0,0.0551,0,0,0,0.331 +0.333,0.591,0.0767,0.17,0,0,0.488,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0.587,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.0118,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.9,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.5,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0.248 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.4,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.445 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0232 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0926 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.9,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.5,0.0944 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.142 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.252 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.248 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0.319,0.9,0,0,0.248 +0.667,0.591,0.0462,0.184,0,0,0.236,0.5,0.5,0,0.42 +0.667,0.621,0.0895,0.321,0,0,0,0,1,0,0.255 +0.667,0.621,0.0895,0.321,0,0,0.26,0,1,0,0.182 +0.667,0.621,0.0895,0.321,0,0,0.193,0,1,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,1,0,0 +0.667,0.621,0.0895,0.321,0,0,0.157,0,1,0,0 +0.667,0.621,0.0895,0.321,0,0,0.331,0,1,0,0.267 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0.534 +0.667,0.621,0.0997,0.312,0,0,0.465,0,1,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0.748,0,1,0,0.165 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0.217 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0.5,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0944 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0236 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.648 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0261 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.1 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.151 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.102 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.236 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.264 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.099 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.9,0 +0.667,0.621,0.137,0.29,0,0,0.0236,0.4,0,0.5,0 +0.667,0.642,0.153,0.298,0,0,0.126,1,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.0787,0,1,0,0 +1,0.682,0.222,0.422,0,0,0.0118,0,0.5,0,0 +1,0.682,0.222,0.422,0,0,0,0,0,0,0 +1,0.682,0.222,0.422,0,0,0.465,0,0,0,0 +1,0.682,0.222,0.422,0,0,0.283,0,0,0,0.0827 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0.228,0,0,0,0.248 +1,0.728,0.277,0.464,0,0,0.0906,0,0,0,0.0827 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0.26,0,0,0,0 +1,0.728,0.277,0.464,0,0,0.0236,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.331,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.26,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.295,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0.205,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.693,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.283,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.161,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.398,0,0,0,0.221 +1,0.79,0.457,0.736,0,0,0.102,0,0,0,0.0738 +1,0.774,0.64,0.895,0,0,0.0551,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.235 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.426 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.185,0.3,0,0,0,0,0,0,0.0827 +1,0.621,0.185,0.3,0,0,0,0,0,0,0 +1,0.621,0.185,0.3,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.149 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.165 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.2 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.193 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.0827 +1,0.651,0.34,0.409,0,0,0,0,0,0,0 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.263 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.288 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.0827 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.165 +1,0.651,0.388,0.41,0,0,0,0,0,0,0 +1,0.651,0.388,0.41,0,0,0,0,0,0,0 +1,0.651,0.388,0.41,0,0,0,0,0,0,0.385 +1,0.651,0.388,0.41,0,0,0,0,0,0.4,0.263 +1,0.651,0.388,0.41,0,0,0,0,0,1,0.0827 +1,0.651,0.388,0.41,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.319 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.102 +1,0.682,0.427,0.422,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.141 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.248 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.18 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.0489 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.0827 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0.165 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0.144 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0.224 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.0995 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.144 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0.248 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.0827 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.102 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.128 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0.212 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0.4,0 +1,0.651,0.268,0.426,0,0,0,0,0,1,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.231 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.0257 +1,0.651,0.268,0.426,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.3 +0.667,0.621,0.265,0.29,0,0,0.272,0.4,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,1,0,0,0 +0.667,0.621,0.265,0.29,0,0,0.236,0,1,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0.205,0,1,0,0.262 +0.667,0.642,0.291,0.298,0,0,0,0,1,0,0.379 +0.667,0.642,0.291,0.298,0,0,0.272,0,0.1,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0.567,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0.283,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0.126,0,0,0,0.287 +0.667,0.673,0.305,0.326,0,0,0.205,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0.0906,0,0,0,0.0827 +0.667,0.673,0.305,0.326,0,0,0.126,0,0,0,0.0953 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.0715 +0.667,0.673,0.305,0.326,0,0,0.398,0,0,0,0.165 +0.667,0.704,0.315,0.395,0,0,0.283,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0.5,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0.248,0,0,0,0.165 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.248 +0.333,0.633,0.167,0.222,0,0,0.433,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.374,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.228,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.555,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.331,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0.26,0,0,0,0.146 +0.667,0.704,0.485,0.613,0,0,0.193,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.185,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.398,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.146,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.0354,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.296 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.248 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0997 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.199 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.9,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,1,0 +1,0.589,0.0632,0.342,0,0,0,0,0,1,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.226 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.334 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.213 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.099 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0495 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.195 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0243 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.434 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.134 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.146 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.258 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.387 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.296 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.189 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0749 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.628 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.4,0.13 +0.333,0.591,0.0658,0.171,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0.341 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0464 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.165 +1,0.744,0.791,0.928,0.341,0.4,0,0,0,0,0 +1,0.683,0.532,0.635,0.403,1,0,0,0,0,0 +1,0.683,0.532,0.635,0.213,1,0,0,0,0,0 +1,0.683,0.532,0.635,0.213,1,0,0,0,0,0 +1,0.642,0.505,0.555,0.557,1,0,0,0,0,0 +1,0.642,0.505,0.555,0.364,0.2,0,0,0,0,0 +1,0.642,0.505,0.555,0.415,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0901 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0858 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.418 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0955 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0477 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0827 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0.374,0.9,0,0,0.173 +1,0.635,0.0871,0.433,0,0,0.0118,0.5,0.5,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0.248,0,1,0,0 +0.667,0.611,0.0634,0.305,0,0,0.429,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0.228,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.35,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.228,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.114,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.228,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.307,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.417,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.114,0,0,0,0.0827 +0.667,0.621,0.0895,0.321,0,0,0.567,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.52,0,0,0,0.0827 +0.667,0.591,0.0527,0.185,0,0,0.26,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.472,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.146,0,0,0,0.329 +0.667,0.621,0.0997,0.312,0,0,0.26,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.736,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0519 +0.667,0.621,0.0997,0.312,0,0,0.126,0,0,0,0.259 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0.0236,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.272,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.634,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.126,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.272,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0.409,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0.472,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0.283,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.0906,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.457,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.0236,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0.0906,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.0354,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.134,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.264,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.614,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.307,0,0,0,0.248 +0.667,0.621,0.137,0.29,0,0,0.236,0,0,0,0.165 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.331 +0.667,0.642,0.153,0.298,0,0,0.26,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.283,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.429,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.35,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.0787,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.181,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.61,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.441,0,0,0.4,0.0827 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0.488,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.35,0,0,0,0.248 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.283,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0.508,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.291,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.217,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.476,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.236,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.103 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.129 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.113 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.1 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.251 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0251 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0951 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0238 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.228 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0506 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0457 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.248 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.266 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.125 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.145 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.248 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.23 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.248 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.248 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.4,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.248 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.438,0.9,0,0,0,0,0 +1,0.774,0.64,0.895,0.392,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.369,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.551,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.193,1,0,0,0,0,0 +1,0.744,0.791,0.928,0.193,1,0,0,0,0,0 +1,0.744,0.791,0.928,0.585,1,0,0,0,0,0 +1,0.744,0.791,0.928,0,0.7,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.217 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.22 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.165 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.536 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.0501 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0.9,0 +1,0.559,0.0314,0.114,0,0,0,0,0,1,0.186 +1,0.58,0.0474,0.245,0,0,0,0,0,1,0.0778 +1,0.58,0.0474,0.245,0,0,0,0,0,1,0.0827 +1,0.58,0.0474,0.245,0,0,0,0,0,1,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0.9,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.417 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.165 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.0919 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.023 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.127 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.4,0.248 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0.477,0.4,0,0,0,0,0 +1,0.774,0.34,0.567,0.364,1,0,0,0,0,0 +1,0.774,0.34,0.567,0,1,0,0,0,0,0.0827 +0.667,0.704,0.232,0.395,0.42,0.6,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.511,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.466,0,0,0,0,0,0.21 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.568,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.551,0,0,0,0,0,0.177 +1,0.774,0.64,0.895,0.506,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.824,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.704,0.432,0.613,0.438,0,0,0,0,0,0 +1,0.704,0.432,0.613,0.324,0,0,0,0,0,0 +1,0.704,0.432,0.613,0.642,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.568,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.5,0,0,0,0,0,0.0827 +1,0.683,0.532,0.635,0.506,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.551,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.466,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.767,0,0,0,0,0,0.165 +1,0.642,0.505,0.555,0.614,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.172 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0437 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0656 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.9,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.5,0.0827 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.9,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.5,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0827 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.165 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0514 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0451 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.113 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0,0,0.0827 +1,0.611,0.0685,0.305,0,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0,0,0.208 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.103 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.155 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.177 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0.0474 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.118 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0984 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.197 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.311 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.241 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.331 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.165 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.165 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.621,0.198,0.292,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.265,0.29,0,0,0,0,0,0.4,0.165 +1,0.621,0.265,0.29,0,0,0,0,0,1,0 +1,0.621,0.265,0.29,0,0,0,0,0,1,0.0827 +1,0.621,0.265,0.29,0,0,0,0,0,1,0 +1,0.621,0.265,0.29,0,0,0,0,0,0.9,0 +1,0.621,0.265,0.29,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0.331 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0.0827 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.165 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.0827 +1,0.704,0.485,0.613,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.548 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.0905 +1,0.704,0.485,0.613,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0.152 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.557,0.0705,0.099,0,0,0,0,0,0,0 +1,0.557,0.0705,0.099,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0.0853 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.33 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0471 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0514 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.205 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.243 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0514 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0771 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.175 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0751 +1,0.619,0.144,0.299,0,0,0,0,0,0.2,0 +1,0.619,0.144,0.299,0,0,0,0,0,1,0 +1,0.619,0.144,0.299,0,0,0,0,0,0.2,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.165 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.0827 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.165 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.0407 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.0407 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.165 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0.171 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0.0244 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.182 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0521 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.0515 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.258 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.248 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0.165 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0.165 +0.667,0.701,0.489,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0,0 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0,0 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.0493 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.0739 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.0827 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.171 +1,0.568,0.157,0.183,0,0,0,0,0,0,0.122 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0.165 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0.0827 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0.184 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0.253 +1,0.578,0.0478,0.236,0,0,0,0,0,0.9,0.152 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.179 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.144 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.231 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0257 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.574,0.9,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.295,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.347,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.341,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.506,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.244,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.244,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.443,0.5,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.341,0.4,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.392,1,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,1,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0.511,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.557,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.381,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.409,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.318,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0.693,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0.523,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0.602,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0.358,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0.517,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0.213,0,0,0,0,0,0.0827 +0.667,0.64,0.155,0.269,0.213,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0.381,0,0,0,0,0,0 +1,0.679,0.224,0.379,0.341,0,0,0,0,0,0.165 +1,0.64,0.155,0.269,0.324,0,0,0,0,0,0.165 +1,0.64,0.155,0.269,0.489,0,0,0,0,0,0 +1,0.64,0.155,0.269,0,0,0,0,0,0,0.165 +1,0.671,0.191,0.274,0.67,0,0,0,0,0,0.0827 +1,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.671,0.191,0.274,0.324,0,0,0,0,0,0.0827 +1,0.671,0.191,0.274,0.75,0,0,0,0,0,0 +1,0.671,0.191,0.274,0,0,0,0,0,0,0.0827 +1,0.671,0.191,0.274,0.443,0,0,0,0,0.4,0.0827 +1,0.701,0.234,0.291,0.426,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,0.2,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0966 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.145 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.165 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0.259 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0827 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0827 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.469 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.261 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.138 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0827 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.144 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0827 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.098 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0735 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.387 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.147 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.205 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.228 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.184 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0997 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.175 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.0774 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.423 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.258 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.181 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.9,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,1,0.248 +0.333,0.616,0.104,0.162,0,0,0,0,0,1,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,1,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,1,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.7,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.0827 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.372 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.165 +1,0.681,0.537,0.538,0,0,0,0,0,0,0.165 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.476 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.374 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0977 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.122 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.0827 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.248 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.208 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.188 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.113 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.103 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.0258 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.0827 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.219 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.165 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.0827 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.215 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0239 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.096 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.072 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.226 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.201 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.3 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0488 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.244 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0488 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.228 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0964 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0964 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.115 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.0827 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.0996 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.125 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.331 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.0827 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.0827 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.165 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.331 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.182 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.4,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,1,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.117 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0999 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.025 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.28 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0231 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.201 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.248 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.181 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0737 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.224 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0499 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.0618 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.248 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.9,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.5,0.248 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.165 +1,0.725,0.279,0.386,0,0,0,0,0,0,0.248 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.534,0.4,0,0,0,0,0 +1,0.787,0.461,0.484,0.54,1,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.778,0,0,0,0,0,0.186 +1,0.771,0.646,0.619,0.551,0,0,0,0,0,0.181 +1,0.771,0.646,0.619,0.727,0,0,0,0,0.9,0 +1,0.771,0.646,0.619,0.29,0,0,0,0,0.5,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0702 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.14 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.248 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0874 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0437 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0.331 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0827 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0827 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0.559,0.7,0,0,0.0827 +1,0.619,0.144,0.299,0,0,0.594,0.8,0.2,0,0 +1,0.619,0.144,0.299,0,0,0,0,1,0,0 +1,0.619,0.144,0.299,0,0,0.283,0,1,0,0.165 +1,0.619,0.144,0.299,0,0,0.272,0,0.7,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0.425,0,0,0,0.248 +1,0.619,0.17,0.291,0,0,0.484,0,0,0,0.0827 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0.52,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.42,0.2,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0,1,0,0,0,0,0.248 +0.333,0.59,0.109,0.16,0.409,1,0,0,0,0,0.248 +0.333,0.59,0.109,0.16,0.642,0.7,0.283,0.2,0,0,0.248 +0.333,0.59,0.109,0.16,0.472,0,0,1,0,0,0 +0.333,0.59,0.109,0.16,0,0,0.283,0.3,0.7,0,0.0827 +1,0.619,0.234,0.269,0,0,0.283,0,1,0,0 +1,0.619,0.234,0.269,0,0,0.26,0,1,0,0 +1,0.619,0.234,0.269,0,0,0.228,0,0.2,0,0.0827 +1,0.619,0.234,0.269,0,0,0.307,0,0,0,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0 +1,0.619,0.234,0.269,0,0,0.283,0,0,0,0 +1,0.619,0.267,0.268,0,0,0.0472,0,0,0,0 +1,0.619,0.267,0.268,0,0,0.512,0,0,0,0 +1,0.619,0.267,0.268,0,0,0.272,0,0,0,0.0827 +1,0.619,0.267,0.268,0,0,0,0,0,0,0 +1,0.619,0.267,0.268,0,0,0,0,0,0,0 +1,0.619,0.267,0.268,0,0,0,0,0,0,0 +1,0.64,0.293,0.269,0,0,0,0,0,0,0.165 +1,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +1,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.248 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.468,0.412,0.602,0.2,0,0,0,0,0 +1,0.771,0.468,0.412,0,1,0,0,0,0,0 +1,0.771,0.468,0.412,0.528,1,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0.443,1,0,0,0,0,0 +1,0.787,0.551,0.484,0,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.472,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.352,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.562,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.312,0.2,0,0,0,0,0.417 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0722 +1,0.771,0.725,0.619,0.557,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.625,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.551,0,0,0,0,0,0.18 +1,0.771,0.725,0.619,0.631,0,0,0,0,0,0.155 +1,0.771,0.725,0.619,0.179,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.179,0,0,0,0,0,0.0827 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0827 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.179 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.0768 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.051 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.255 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.185 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.248 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0827 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0478 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.119 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.165 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0.258 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.333 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0251 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0.0827 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0.7,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.7,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.0512 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.256 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.0256 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.0827 +1,0.619,0.234,0.269,0,0,0,0,0,0,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.248 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0.413 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.165 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.178 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0.286 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0511 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.255 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.7,0.0766 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.7,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.248 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.165 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.0827 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.186 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.234 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.117 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.104 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.0782 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0488 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0981 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.123 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.9,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.5,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0.0966 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.9,0.248 +1,0.771,0.343,0.412,0,0,0,0,0,1,0.0827 +1,0.771,0.343,0.412,0,0,0,0,0,0.9,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.12 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.103 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0517 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.202 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.413 +1,0.771,0.646,0.619,0.466,0.4,0,0,0,0,0.284 +1,0.741,0.797,0.783,0.392,1,0,0,0,0,0.402 +1,0.741,0.797,0.783,0,1,0,0,0,0,0 +1,0.741,0.797,0.783,0.648,0.5,0.283,0.4,0,0,0 +1,0.741,0.797,0.783,0.403,0,0,1,0,0,0 +1,0.741,0.797,0.783,0.636,0,0.445,0.1,0.9,0,0.192 +1,0.741,0.797,0.783,0.415,0,0.248,0,0.5,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.511,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.597,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.636,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.46,0,0,0,0,0,0 +1,0.64,0.509,0.603,0.25,0,0,0,0,0,0 +1,0.599,0.31,0.415,0.25,0,0,0,0,0,0 +1,0.599,0.31,0.415,0.438,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.265 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.182 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.563 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.314 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.104 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.181 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.163 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0888 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0444 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.4,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,1,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.199 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.9,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.5,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.165 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.0895 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0224 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.3 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.248 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.429 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0245 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.262 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.222 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.148 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.0723 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0.117 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.0995 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.0746 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0.301 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0919 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.023 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.165 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.165 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.297 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.0238 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0827 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.165 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.165 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.221 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.248 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.262 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.379 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.248 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.528,0.4,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.481,1,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.241,1,0,0,0,0,0 +0.667,0.64,0.155,0.269,0.466,0.5,0,0,0,0,0.165 +0.667,0.671,0.191,0.274,0.369,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0.534,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0.54,0.4,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.602,1,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,1,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.273,0.5,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.665,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.375,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0984 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0492 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.9,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,1,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.9,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.104 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0879 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.044 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.123 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0827 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.0827 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0.165 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0.294 +0.667,0.56,0.0238,0.0798,0,0,0,0,0,0,0.107 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.149 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.149 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.9,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.5,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0986 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.148 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0827 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.092 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.069 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.9,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.5,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.248 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.248 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.9,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.5,0.248 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.248 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0843 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0211 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0.0827 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0482 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.241 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0.425 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.234 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.13 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.0713 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0.7,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.7,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0641,0.175,0.466,0.2,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,1,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0.278,1,0,0,0,0,0 +0.667,0.619,0.144,0.299,0.409,0.7,0,0,0,0,0.0827 +0.667,0.619,0.144,0.299,0.466,0,0,0,0,0,0.165 +0.667,0.619,0.144,0.299,0.562,0,0,0,0,0,0 +0.667,0.619,0.144,0.299,0.722,0,0,0,0,0,0 +0.667,0.619,0.144,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.144,0.299,0.46,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.449,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.312,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.409,0,0,0,0,0,0.331 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0.331 +0.667,0.619,0.17,0.291,0.347,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.341,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.625,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.517,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.551,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.312,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.392,0,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0.415,0,0,0,0,0,0.331 +0.333,0.59,0.109,0.16,0.392,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.248 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.2,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,1,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.2,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.165 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.165 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0482 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.193 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0.7,0.331 +1,0.648,0.206,0.424,0,0,0,0,0,1,0 +1,0.648,0.206,0.424,0,0,0,0,0,1,0 +1,0.648,0.206,0.424,0,0,0,0,0,0.1,0 +1,0.648,0.206,0.424,0,0,0,0,0,0,0 +1,0.648,0.206,0.424,0,0,0,0,0,0,0 +1,0.648,0.206,0.424,0.545,0.7,0,0,0,0,0 +1,0.648,0.246,0.411,0.358,1,0,0,0,0,0 +1,0.648,0.246,0.411,0.58,1,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.205,1,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.205,1,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.5,1,0,0,0,0,0 +0.333,0.59,0.0941,0.17,0.381,0.2,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.5,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.126,0.159,0.443,0.2,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,1,0,0,0,0,0.165 +0.333,0.59,0.126,0.159,0.523,1,0,0,0,0,0.165 +0.333,0.59,0.142,0.159,0.46,0.7,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0.449,0,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0.455,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0.705,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0.381,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0.409,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +1,0.64,0.293,0.269,0.324,0,0,0,0,0,0 +1,0.64,0.293,0.269,0.449,0,0,0,0,0,0 +1,0.64,0.293,0.269,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0.2,0 +1,0.771,0.468,0.412,0,0,0,0,0,1,0 +1,0.771,0.468,0.412,0,0,0,0,0,1,0 +1,0.787,0.551,0.484,0,0,0,0,0,0.6,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0.2,0 +1,0.741,0.852,0.783,0,0,0,0,0,1,0 +1,0.741,0.852,0.783,0,0,0,0,0,0.2,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0507 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.203 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.125,0.17,0,0,0.272,0.9,0,0,0.165 +0.667,0.631,0.125,0.17,0,0,0.331,0.6,0.4,0,0 +1,0.701,0.234,0.291,0,0,0,0,1,0,0 +1,0.701,0.234,0.291,0,0,0.173,0,1,0,0 +1,0.701,0.234,0.291,0,0,0.272,0,1,0,0 +1,0.712,0.313,0.339,0,0,0.319,0,1,0,0 +1,0.712,0.313,0.339,0,0,0.457,0,1,0,0 +1,0.712,0.313,0.339,0,0,0.146,0,0.5,0,0.0827 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0.236,0,0,0,0 +1,0.712,0.313,0.339,0,0,0.0236,0,0,0,0.0827 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.386,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.398,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.76,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.205,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.126,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0.283,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0.9,0 +1,0.681,0.537,0.538,0,0,0,0,0,0.5,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0827 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.103 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.248 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.331 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.228,0.4,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.433,1,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.543,0.1,0.9,0,0 +0.333,0.59,0.0633,0.164,0,0,0.362,0,0.5,0,0 +0.333,0.59,0.0633,0.164,0,0,0.283,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.0354,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.0551,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0.35,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.9,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.5,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.145 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.0966 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.0483 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.203 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.401 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.165 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.331 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0.523,0.9,0,0,0,0,0 +1,0.681,0.537,0.538,0.443,1,0,0,0,0,0.165 +1,0.681,0.537,0.538,0.739,1,0,0,0,0,0.0827 +1,0.681,0.537,0.538,0.381,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0.42,0,0,0,0,0,0 +1,0.64,0.509,0.603,0.409,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0827 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.9,0.0515 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0.0773 +1,0.557,0.0316,0.11,0,0,0,0,0,1,0 +1,0.557,0.0316,0.11,0,0,0,0,0,1,0 +1,0.557,0.0316,0.11,0,0,0,0,0,1,0.094 +1,0.578,0.0478,0.236,0,0,0,0,0,0.7,0.0235 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.137 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0.101 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.33,0.9,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.318,0.5,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.477,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.5,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.46,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.25,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.25,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.9,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,1,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.9,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.331 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.114,0.4,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.248,1,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.398,0.1,0.9,0,0 +0.667,0.712,0.313,0.339,0,0,0.193,0,0.5,0,0.165 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0.26,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0.26,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.362,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.264,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.228,0,0,0,0.165 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.295,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.795,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.421,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.272,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.0551,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.272,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.276,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.248 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.331 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.4,0.248 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.073 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.7,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.189 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0255 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.134 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.318 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.427 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.42,0.9,0,0,0,0,0 +1,0.787,0.461,0.484,0.409,1,0,0,0,0,0 +1,0.787,0.461,0.484,0.301,1,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0.9,0.413 +1,0.787,0.461,0.484,0,0,0,0,0,0.5,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.1 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.1 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.225 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.0899 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.0225 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.655 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.186 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.181 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.397 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.103 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.165 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.5,0.9,0,0,0,0,0 +1,0.771,0.343,0.412,0.534,1,0,0,0,0,0 +1,0.771,0.343,0.412,0.415,1,0,0,0,0,0 +1,0.771,0.343,0.412,0.528,0,0,0,0,0,0.0827 +1,0.771,0.343,0.412,0.332,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.332,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.551,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.489,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.608,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.5,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.42,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.568,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0.324,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.307,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.29,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.293,0,0,0,0,0,0.248 +1,0.741,0.797,0.783,0.293,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0.568,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.472,0,0,0,0,0,0.216 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.165 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.165 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.052 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.13 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.2,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,1,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,1,0 +1,0.619,0.199,0.271,0,0,0,0,0,0.6,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.331 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.165 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.248 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.331 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.248 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.2,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,1,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,1,0.154 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.6,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.132 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.529 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.419 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.214 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.131 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0237 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0947 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0505 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.101 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0827 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0827 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0481 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.217 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0223,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0.165 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.165 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.248 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0.0827 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.2,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,1,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.2,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0.602,0.7,0,0,0,0,0 +1,0.787,0.551,0.484,0.261,0.7,0,0,0,0,0 +1,0.787,0.551,0.484,0.318,0,0,0,0,0,0 +1,0.787,0.551,0.484,0.403,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.415,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.449,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.756,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.403,0,0,0,0,0,0.0827 +1,0.741,0.852,0.783,0.545,0,0,0,0,0,0.165 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.381,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.636,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.369,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.494,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.597,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.5,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.341,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.551,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.591,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.506,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.33,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.614,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.477,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0512 +1,0.565,0.0875,0.116,0.29,0,0,0,0,0,0.179 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.567,0.9,0,0,0.116 +1,0.562,0.0159,0.0495,0,0,0.0118,1,0,0,0 +1,0.578,0.0478,0.236,0,0,0.228,1,0,0,0 +1,0.578,0.0478,0.236,0,0,0.0906,0.2,0.8,0.9,0 +1,0.578,0.0478,0.236,0,0,0.228,0,0.6,0.5,0.0985 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.0739 +1,0.633,0.0879,0.417,0,0,0.339,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0.331,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0.453,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0.0354,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.0236,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.134,0,0,0,0.248 +1,0.648,0.108,0.427,0,0,0.283,0,0,0,0.0827 +1,0.648,0.108,0.427,0,0,0,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.161,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.26,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.283,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.236,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.217,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.126,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.248,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.339,0,0,0,0 +1,0.648,0.143,0.411,0,0,0,0,0,0,0 +1,0.648,0.143,0.411,0,0,0.646,0,0,0.9,0 +1,0.648,0.143,0.411,0,0,0.433,0,0,0.5,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0.26,0,0,0,0.165 +0.667,0.619,0.1,0.291,0,0,0.217,0,0,0,0.0827 +0.667,0.619,0.111,0.279,0,0,0.567,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0.429,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0.52,0,0,0,0.165 +0.667,0.619,0.111,0.279,0,0,0.217,0,0,0,0.0827 +0.667,0.619,0.111,0.279,0.392,0.9,0,0,0,0,0 +0.667,0.619,0.111,0.279,0.614,1,0,0,0,0,0 +0.667,0.619,0.117,0.271,0.239,1,0,0,0,0,0 +0.667,0.619,0.117,0.271,0.545,0,0,0,0,0,0.331 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.248 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.165 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.0827 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.9,0 +0.333,0.616,0.104,0.162,0,0,0.0551,0.4,0,1,0.165 +0.333,0.631,0.125,0.17,0,0,0.35,1,0,1,0.331 +0.333,0.631,0.125,0.17,0,0,0.634,1,0,1,0 +0.667,0.701,0.234,0.291,0,0,0,0.7,0.3,1,0 +0.667,0.701,0.234,0.291,0,0,0,0,1,1,0 +0.667,0.701,0.234,0.291,0,0,0,0,1,1,0 +0.667,0.701,0.234,0.291,0,0,0,0,1,1,0 +1,0.787,0.461,0.484,0,0,0,0,1,1,0 +1,0.787,0.461,0.484,0,0,0,0,1,1,0 +1,0.787,0.461,0.484,0.392,0.4,0.205,0,1,0,0 +1,0.787,0.461,0.484,0.466,1,0,0,1,0,0 +1,0.787,0.461,0.484,0,1,0.35,0,0.1,0,0 +1,0.787,0.461,0.484,0.369,0.5,0.339,0,0,0,0 +1,0.771,0.646,0.619,0.733,0,0.283,0,0,0,0 +1,0.771,0.646,0.619,0,0,0.307,0,0,0,0 +1,0.771,0.646,0.619,0.455,0,0.0236,0,0,0,0 +1,0.771,0.646,0.619,0.335,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.188,0,0.26,0,0,0,0 +1,0.771,0.646,0.619,0.188,0,0.283,0,0,0,0 +1,0.741,0.797,0.783,0.659,0,0.677,0,0,0,0 +1,0.741,0.797,0.783,0.312,0,0.331,0,0,0,0 +1,0.741,0.797,0.783,0.5,0,0.272,0,0,0,0 +1,0.741,0.797,0.783,0.977,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.233,0,0.35,0,0,0,0 +1,0.741,0.797,0.783,0.233,0,0,0,0,0,0.27 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.202 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.165 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.101 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.0504 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.451 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.418 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.273 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.347 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.331 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0248 +0.667,0.619,0.077,0.301,0,0,0.0551,0.9,0,0,0.248 +0.333,0.59,0.0465,0.175,0,0,0.114,0.6,0.4,0,0.165 +0.333,0.59,0.053,0.174,0,0,0.0118,0,1,0,0 +0.333,0.59,0.053,0.174,0,0,0.374,0,1,0,0.165 +0.333,0.59,0.053,0.174,0,0,0.228,0,0.5,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0.409,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0.362,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.205,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.319,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.9,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,1,0.165 +0.667,0.619,0.117,0.271,0,0,0,0,0,1,0.331 +0.667,0.619,0.117,0.271,0,0,0,0,0,1,0.0827 +0.667,0.619,0.117,0.271,0,0,0,0,0,1,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.7,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.0827 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.0827 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.0827 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.0827 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0.441,0.4,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,1,0,0,0 +0.667,0.64,0.155,0.269,0,0,0.488,0.1,0.9,0,0 +0.667,0.64,0.155,0.269,0,0,0.52,0,1,0,0 +0.667,0.671,0.191,0.274,0,0,0.465,0,1,0,0 +0.667,0.671,0.191,0.274,0,0,0.429,0,1,0,0 +1,0.725,0.279,0.386,0,0,0,0,0.5,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.391 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.102 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0512 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.9,0.103 +1,0.771,0.646,0.619,0,0,0,0,0,0.5,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.12 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.169 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.403,0.9,0,0,0,0,0 +1,0.741,0.797,0.783,0.625,1,0,0,0,0,0 +1,0.741,0.797,0.783,0.767,1,0,0,0,0,0 +1,0.741,0.797,0.783,0.506,0,0,0,0,0,0.235 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0932 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0932 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.156 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.234 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0255 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.255 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.4,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,1,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0988 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0741 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.145 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.248 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.435 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.26 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.503 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.108 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.339,0.9,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0.6,0.4,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,1,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.9,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.5,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.165 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0.1 +1,0.621,0.276,0.294,0,0,0,0,0,0,0.0502 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.234 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.0521 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.228 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0253 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.256 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.151 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.223 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.314 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.248 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0649 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.413 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.264 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.0492 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.9,0.0827 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.5,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.744,0.9,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.489,0.5,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.585,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.364,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.4,0 +1,0.787,0.461,0.484,0.256,0,0,0,0,1,0 +1,0.787,0.461,0.484,0,0,0,0,0,1,0 +1,0.787,0.461,0.484,0.318,0,0,0,0,0.4,0 +1,0.771,0.646,0.619,0.403,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.199,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.199,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.369,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.568,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0.0827 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0.248,0.4,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,1,0,0,0 +0.667,0.64,0.509,0.603,0,0,0.24,0.1,0.9,0,0 +0.667,0.64,0.509,0.603,0,0,0.496,0,1,0,0 +0.667,0.599,0.31,0.415,0,0,0.193,0,1,0,0 +0.667,0.599,0.31,0.415,0,0,0.0906,0,1,0,0 +1,0.617,0.457,0.597,0,0,0.26,0,0.5,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0.646,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0938 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0703 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.165 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.101 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.252 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.497 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.165 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.165 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.35 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0.198 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0.0827 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.176 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.0827 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.0885 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0443 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.9,0.0827 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.5,0.0827 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0.608,0.9,0,0,0,0,0 +1,0.771,0.343,0.412,0.415,1,0,0,0,0,0 +1,0.787,0.461,0.484,0.551,1,0,0,0,0,0 +1,0.787,0.461,0.484,0.256,1,0.248,0.9,0,0,0 +1,0.787,0.461,0.484,0,1,0.248,0.6,0.4,0,0 +1,0.787,0.461,0.484,0,1,0,0,1,0,0 +1,0.787,0.461,0.484,0,1,0.0669,0,1,0,0 +1,0.787,0.461,0.484,0,0.5,0.157,0,0.5,0,0 +1,0.771,0.646,0.619,0,0,0.295,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0.228,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0.272,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.165 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.128 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0.413 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0.165 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.248 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.248 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0.608,0.2,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,1,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0.369,0.2,0,0,0,0,0.248 +0.667,0.59,0.0809,0.174,0.364,0,0,0,0,0,0.248 +0.667,0.59,0.0809,0.174,0.511,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0.438,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0827 +0.667,0.59,0.102,0.164,0.386,0.2,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,1,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.619,1,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.381,0.7,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.653,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.489,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.472,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.562,0,0,0,0,0,0.248 +0.667,0.59,0.109,0.16,0.409,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0.676,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.207,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0.207,0,0,0,0,0,0.0827 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.2,0.0827 +0.667,0.619,0.234,0.269,0,0,0,0,0,1,0.248 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.2,0.0827 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.165 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.338 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.231 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.165 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0.0507 +1,0.741,0.852,0.783,0,0,0,0,0,0,0.127 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.456 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.0504 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.151 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0472 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0943 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0827 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.165 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.127 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0666 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.2 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.073 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.243 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.2,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,1,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,1,0.0827 +1,0.648,0.343,0.378,0,0,0,0,0,0.6,0 +1,0.648,0.343,0.378,0,0,0,0,0,0,0 +1,0.648,0.343,0.378,0,0,0,0,0,0,0.331 +1,0.648,0.391,0.378,0,0,0,0,0,0,0.0827 +1,0.648,0.391,0.378,0,0,0,0,0,0,0.165 +1,0.648,0.391,0.378,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0.0827 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0.248 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0.331 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0.0827 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0.0827 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0 +1,0.701,0.489,0.429,0,0,0,0,0,0,0 +1,0.681,0.574,0.538,0,0,0,0,0,0,0.0827 +1,0.681,0.574,0.538,0,0,0,0,0,0,0 +1,0.681,0.574,0.538,0,0,0.421,0.7,0,0,0 +1,0.681,0.574,0.538,0,0,0.374,0.8,0.2,0,0 +1,0.681,0.574,0.538,0,0,0,0,1,0,0 +1,0.681,0.574,0.538,0,0,0.429,0,1,0,0 +1,0.64,0.53,0.603,0,0,0.386,0,1,0,0 +1,0.64,0.53,0.603,0,0,0.26,0,1,0,0 +1,0.64,0.53,0.603,0,0,0,0,1,0,0 +1,0.64,0.53,0.603,0,0,0,0,0.7,0,0.0521 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.261 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.183 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0.2,0 +1,0.617,0.496,0.597,0,0,0,0,0,1,0 +1,0.599,0.337,0.415,0,0,0,0,0,1,0.21 +1,0.568,0.157,0.183,0,0,0,0,0,1,0 +1,0.568,0.157,0.183,0,0,0,0,0,1,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.259 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.181 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.248 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.248 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.9,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.5,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.331 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.9,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,1,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.9,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.801,0.9,0,0,0,0,0 +1,0.741,0.797,0.783,0.591,1,0,0,0,0,0 +1,0.64,0.509,0.603,0.722,1,0,0,0,0,0 +1,0.64,0.509,0.603,0.301,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.248 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.0508 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.248 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.165 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.248 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.248 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.412 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.103 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.0772 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.0827 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.147 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.102 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.203 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0494 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.33 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0942 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.141 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +1,0.651,0.142,0.381,0,0,0,0,0,0,0 +1,0.651,0.142,0.381,0,0,0,0,0,0,0 +1,0.651,0.142,0.381,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.9,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.9,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.413 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.5,0.9,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0.193,1,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,1,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.24,0.1,0.9,0,0 +0.333,0.591,0.0767,0.149,0,0,0.488,0,0.5,0,0 +0.333,0.591,0.0767,0.149,0,0,0.264,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.9,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.5,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.221 +1,0.682,0.222,0.349,0,0,0,0,0,0,0.205 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.9,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.5,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.104 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0259 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.228 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.184 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0.228,0.9,0,0,0 +1,0.774,0.64,0.523,0,0,0.236,0.6,0.4,0,0 +1,0.683,0.532,0.464,0,0,0.421,0,1,0,0 +1,0.683,0.532,0.464,0,0,0,0,1,0,0.228 +1,0.683,0.532,0.464,0,0,0,0,1,0,0.102 +1,0.683,0.532,0.464,0,0,0,0,1,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.115 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.293 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0724 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.334 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.248 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0,0.215 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.131 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.0999 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.175 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.165 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.212 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.269 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.103 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.147 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.196 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.0485 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.335 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.242 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.205 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.248 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,1,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,1,0.331 +1,0.774,0.34,0.371,0,0,0,0,0,0.8,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.248 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0827 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.127 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0959 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.144 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.481 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.205 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.214 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.277 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.227 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.9,0.0827 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,0.9,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0.0827 +1,0.714,0.31,0.296,0,0,0,0,0,0,0.0977 +1,0.704,0.432,0.365,0,0,0,0,0,0,0.195 +1,0.704,0.432,0.365,0,0,0,0,0,0,0 +1,0.704,0.432,0.365,0.438,0.4,0,0,0,0,0 +1,0.704,0.432,0.365,0.466,1,0,0,0,0,0.052 +1,0.704,0.432,0.365,0,1,0,0,0,0,0.26 +1,0.704,0.432,0.365,0.58,1,0,0,0,0,0.243 +1,0.683,0.532,0.464,0.534,1,0,0,0,0,0.0827 +1,0.683,0.532,0.464,0.443,1,0,0,0,0,0 +1,0.683,0.532,0.464,0,1,0,0,0,0,0 +1,0.622,0.274,0.257,0,0.9,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.262 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.204 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0.223 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0.0496 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.422 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0905 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0679 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0.585,0.9,0,0,0,0,0.248 +0.333,0.591,0.073,0.149,0.631,1,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0.494,1,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0.426,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0.659,0.9,0,0,0,0,0 +1,0.774,0.34,0.371,0.364,1,0,0,0,0,0.165 +1,0.79,0.457,0.42,0.33,1,0,0,0,0,0 +1,0.79,0.457,0.42,0.432,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.619,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0.369,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.568,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.528,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.557,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.506,0,0,0,0,0,0.09 +1,0.744,0.791,0.671,0.443,0,0,0,0,0,0.045 +1,0.744,0.791,0.671,0.466,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.19,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.19,0,0,0,0,0,0.191 +1,0.744,0.791,0.671,0.261,0,0,0,0,0,0.0717 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.0934 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.117 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.464 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.071 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.118 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.135 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.42,0.9,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0.523,1,0,0,0,0,0.099 +0.667,0.621,0.143,0.278,0.545,1,0,0,0,0,0.223 +0.667,0.621,0.143,0.278,0.585,1,0,0,0,0,0 +1,0.651,0.205,0.392,0,0.4,0,0,0,0,0 +1,0.651,0.205,0.392,0,0,0,0,0,0,0.0255 +1,0.651,0.205,0.392,0,0,0,0,0,0,0.127 +1,0.651,0.205,0.392,0,0,0,0,0,0,0 +1,0.651,0.244,0.381,0,0,0,0,0,0,0 +1,0.651,0.244,0.381,0,0,0,0,0,0,0 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.426 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.195 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.22 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.205 +1,0.651,0.268,0.364,0,0,0,0,0,0,0 +1,0.651,0.268,0.364,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.102 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0509 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.188 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.4,0.165 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +1,0.728,0.449,0.353,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0.0827 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0.0827 +1,0.79,0.547,0.42,0,0,0,0,0,1,0 +1,0.79,0.547,0.42,0,0,0,0,0,1,0 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0958 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0718 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0827 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0827 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.704,0.485,0.365,0,0,0,0,0,1,0 +1,0.704,0.485,0.365,0,0,0,0,0,1,0 +1,0.704,0.485,0.365,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,0.9,0.0827 +1,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0.226 +1,0.642,0.526,0.549,0,0,0,0,0,0,0.151 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.165 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.228 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0.401 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0.248 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.331 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.0797 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0.165 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0,0.197 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.0551,0.9,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.228,1,0,0,0.101 +0.667,0.621,0.185,0.259,0,0,0.0236,1,0,0,0.252 +0.667,0.621,0.185,0.259,0,0,0.476,0.1,0.9,0,0.151 +0.667,0.621,0.185,0.259,0,0,0.0906,0,1,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,1,0,0 +0.667,0.621,0.185,0.259,0,0,0.295,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.217,0,0,0,0 +0.333,0.591,0.108,0.15,0,0,0.272,0,0,0,0 +0.333,0.591,0.108,0.15,0,0,0.217,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0.236,0,0,0,0.165 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.248 +0.667,0.591,0.108,0.15,0,0,0.295,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0.272,0,0,0,0.0827 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0.374,0,0,0,0.0827 +0.667,0.591,0.125,0.149,0,0,0.0118,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.165 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.113 +0.667,0.591,0.141,0.149,0.392,0.4,0,0,0,0,0 +0.667,0.602,0.154,0.149,0.534,1,0,0,0,0,0 +0.667,0.602,0.154,0.149,0,1,0,0,0,0,0 +0.667,0.602,0.154,0.149,0.455,1,0,0,0,0,0.181 +0.667,0.602,0.154,0.149,0.443,0.9,0,0,0,0,0.049 +0.667,0.602,0.154,0.149,0.443,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0.46,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.301 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0484 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.305,0.252,0,0,0.0787,0.4,0,1,0.349 +0.667,0.704,0.315,0.264,0,0,0.0472,1,0,1,0.334 +0.667,0.704,0.315,0.264,0,0,0,1,0,1,0.101 +0.667,0.704,0.315,0.264,0,0,0,1,0,1,0 +0.667,0.704,0.315,0.264,0,0,0,1,0,0.8,0 +0.667,0.704,0.315,0.264,0,0,0,1,0,0,0.315 +1,0.774,0.464,0.371,0,0,0,0.7,0.3,0,0.15 +0.667,0.714,0.371,0.296,0,0,0,0,1,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,1,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0.6,0,0.165 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.0827 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.257,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0.0979 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0.0958 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.126 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.121 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0483 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.153 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.305 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.331 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0.4,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,1,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,1,0.102 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0.4,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.265 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.133 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.168 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.262 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.359 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.441,0.9,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.26,0.6,0.4,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0.26,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0.0236,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0.476,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.4,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,1,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.9,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.5,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.248 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.165 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0991 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.223 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0254 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.204 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0926 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0463 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.195 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.026 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.421 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0974 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.4,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.4,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,1,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.295 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.523,0.9,0,0,0,0,0 +1,0.744,0.791,0.671,0.625,0.5,0,0,0,0,0 +1,0.744,0.791,0.671,0.312,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.369,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.574,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.58,0,0,0,0,0,0.229 +1,0.682,0.749,0.799,0.261,0,0,0,0,0,0.153 +1,0.682,0.749,0.799,0.307,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.472,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0.4,0,0,0,0,0 +1,0.6,0.307,0.405,0.392,1,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.226 +1,0.6,0.307,0.405,0.568,0,0,0,0,0.4,0.0251 +1,0.6,0.307,0.405,0.449,0,0,0,0,1,0 +1,0.6,0.307,0.405,0,0,0,0,0,1,0 +1,0.6,0.307,0.405,0.597,0,0,0,0,1,0 +1,0.569,0.136,0.183,0.409,0,0,0,0,1,0 +1,0.569,0.136,0.183,0.364,0,0,0,0,1,0 +1,0.569,0.136,0.183,0,0,0,0,0,1,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.8,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0897 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0996 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.125 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.125 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.1 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.15 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0918 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0688 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.388 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.101 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.101 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0.335,0.4,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.392,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.295,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.46,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.886,1,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.281,0.9,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.281,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.409,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.438,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.432,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.265 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.207 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.15 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.235 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0923 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.18 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.146 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0644 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.206 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.4,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,1,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.331 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0.272,0.9,0,0,0 +1,0.774,0.64,0.523,0,0,0.0118,0.6,0.4,0,0 +1,0.744,0.791,0.671,0,0,0,0,1,0,0 +1,0.744,0.791,0.671,0,0,0.283,0,0,0,0 +1,0.744,0.791,0.671,0,0,0.217,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0.579,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0.236,0,0,0,0 +1,0.682,0.749,0.799,0,0,0.228,0,0,0,0 +1,0.682,0.749,0.799,0,0,0.362,0,0,0,0 +1,0.682,0.749,0.799,0,0,0.386,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.358 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.0989 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0247 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.248 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.248 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.257 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.331 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.248 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.9,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.5,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.4,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,1,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.248 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.228 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.159 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0.9,0 +1,0.79,0.457,0.42,0,0,0,0,0,0.5,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.199 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.354 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0695 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.165 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.0909 +1,0.622,0.274,0.257,0,0,0,0,0,0,0.0227 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.224 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.0747 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.9,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.5,0.0827 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.197 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.248 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.362 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.152 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.165 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.349 +1,0.589,0.0632,0.317,0,0,0,0,0,0.9,0.346 +1,0.589,0.0632,0.317,0,0,0,0,0,0.5,0.0827 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.165 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.251 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.181 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0739 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.331 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.165 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.333,0.638,0.163,0.173,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0827 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.248 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0.234 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0.026 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.229 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.0255 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.165 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.331 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.0827 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.0827 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.9,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,1,0.0827 +0.333,0.591,0.108,0.15,0,0,0,0,0,1,0 +0.333,0.591,0.108,0.15,0,0,0,0,0,1,0 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.4,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.165 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.331 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0827 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.0827 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0933 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.07 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0997 +1,0.56,0.0201,0.0503,0,0,0,0,0,0.5,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0.413 +1,0.559,0.0264,0.107,0,0,0,0,0,0,0 +1,0.559,0.0264,0.107,0,0,0,0,0,0,0.246 +1,0.559,0.0264,0.107,0,0,0,0,0,0,0 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.128 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.0512 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.0827 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.0955 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.0477 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.0827 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.165 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.457 +1,0.611,0.0685,0.284,0,0,0,0,0,0.9,0 +1,0.611,0.0685,0.284,0,0,0,0,0,0.5,0.0827 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0.165 +0.333,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0803,0.164,0.369,0.9,0,0,0,0,0 +0.333,0.591,0.0803,0.164,0.42,1,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.381,1,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.364,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.247,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.247,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.472,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.228,0.4,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,1,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.453,0.1,0.9,0,0 +0.667,0.621,0.185,0.259,0,0,0.236,0,1,0,0.0827 +0.667,0.621,0.198,0.251,0,0,0,0,1,0,0 +0.667,0.621,0.198,0.251,0,0,0.169,0,1,0,0 +0.333,0.591,0.108,0.15,0,0,0.512,0,1,0,0.0827 +0.333,0.591,0.108,0.15,0,0,0.488,0,1,0,0 +0.333,0.591,0.108,0.15,0,0,0.272,0,0,0,0.352 +0.333,0.591,0.108,0.15,0,0,0.283,0,0,0,0.248 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.149,0,0,0.429,0,0,0,0 +0.333,0.591,0.125,0.149,0,0,0.228,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0.122,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0.26,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.138,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.157,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.339,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.217,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.693,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.272,0,0,0,0.165 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.249,0,0,0.567,0,0,0.9,0 +0.667,0.642,0.291,0.249,0,0,0.646,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.9,0 +0.667,0.642,0.291,0.249,0,0,0.205,0,0,0,0.248 +0.667,0.642,0.291,0.249,0,0,0.205,0,0,0,0.413 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.205,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.283,0,0,0,0.165 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.252,0,0,0.421,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.272,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.228,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.114,0,0,0,0.0827 +0.667,0.704,0.315,0.264,0,0,0.409,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.736,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.157,0,0,0,0.0827 +0.333,0.638,0.194,0.173,0,0,0,0,0,0,0 +0.333,0.638,0.194,0.173,0,0,0.0354,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0.193,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0.205,0,0,0,0 +0.667,0.714,0.371,0.296,0.432,0.9,0.193,0,0,0,0 +0.667,0.714,0.371,0.296,0.369,1,0,0,0,0,0 +0.667,0.704,0.485,0.365,0.46,1,0,0,0,0,0 +0.667,0.704,0.485,0.365,0.398,0,0,0,0,0,0 +1,0.774,0.719,0.523,0.236,0,0,0,0,0,0 +1,0.774,0.719,0.523,0.236,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0.0827 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.248 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.9,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.8,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0.0827 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.26,0.4,0,0,0.165 +0.667,0.621,0.13,0.249,0,0,0.657,1,0,0,0.331 +0.667,0.621,0.13,0.249,0,0,0,0.1,0.9,0,0.165 +0.667,0.621,0.13,0.249,0,0,0.126,0,1,0,0 +0.667,0.621,0.13,0.249,0,0,0,0,1,0,0 +0.667,0.621,0.13,0.249,0,0,0.283,0,0,0,0.248 +0.667,0.621,0.13,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.9,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0.9,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.182 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.248 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.257 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0687 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.39 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0989 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.124 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.362,0.9,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.272,0.6,0.4,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,1,0,0 +1,0.56,0.0171,0.0495,0,0,0.398,0,1,0,0.248 +1,0.56,0.0171,0.0495,0,0,0.272,0,0.5,0,0.165 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.26,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.0906,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.488,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.386,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.257 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0257 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.122 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.218 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0.181 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0.0986 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.15 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.125 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.263 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.419 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.223 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.107 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.104 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.208 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0494 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.495 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.355 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.4,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.165 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.267,0.9,0,0,0,0,0 +1,0.79,0.457,0.42,0.318,1,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0.409,1,0,0,0,0,0 +1,0.79,0.457,0.42,0.466,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.386,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.483,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.318,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.173 +1,0.774,0.64,0.523,0.369,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.392,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.38 +1,0.744,0.791,0.671,0.625,0,0,0,0,0.4,0.41 +1,0.744,0.791,0.671,0.438,0,0,0,0,1,0 +1,0.744,0.791,0.671,0.58,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.341,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.341,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.324,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.443,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.409,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0.0918 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0688 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.179 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.168 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +1,0.56,0.0236,0.0781,0,0,0,0,0,1,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.9,0.0703 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0468 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0827 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.55 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.073 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.114 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.4,0.165 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,0.4,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0.483,0.9,0,0,0,0,0.0827 +1,0.683,0.532,0.464,0.449,1,0,0,0,0,0 +1,0.683,0.532,0.464,0.295,1,0,0,0,0,0 +1,0.683,0.532,0.464,0.472,1,0,0,0,0,0 +1,0.683,0.532,0.464,0,1,0,0,0,0,0 +1,0.642,0.505,0.549,0,1,0,0,0,0,0 +1,0.642,0.505,0.549,0.517,1,0,0,0,0,0 +1,0.642,0.505,0.549,0.557,0.4,0,0,0,0,0 +1,0.642,0.505,0.549,0.335,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.381,0,0,0,0,0,0.133 +1,0.642,0.505,0.549,0.398,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.104 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.182 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0762 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.254 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.0827 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.248 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.9,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0.165 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0.331 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.248 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.2,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.9,0.0827 +0.667,0.704,0.432,0.365,0,0,0,0,0,1,0 +1,0.774,0.64,0.523,0,0,0,0,0,1,0 +1,0.774,0.64,0.523,0,0,0,0,0,1,0 +1,0.774,0.64,0.523,0.301,0.4,0,0,0,0.4,0 +1,0.744,0.791,0.671,0.608,1,0,0,0,0,0 +1,0.744,0.791,0.671,0.216,1,0,0,0,0,0 +1,0.744,0.791,0.671,0.216,0.5,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.642,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.341,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.534,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.386,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.375,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.562,0,0,0,0,0,0.169 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0988 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.173 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.165 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.248 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.161 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0972 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0486 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.146 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.156 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.196 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.124 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0857 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0214 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.9,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.5,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.455,0.4,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0.523,1,0,0,0,0,0 +1,0.79,0.457,0.42,0,1,0,0,0,0,0 +1,0.79,0.457,0.42,0.523,1,0,0,0,0,0 +1,0.774,0.64,0.523,0.67,0.9,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.301,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.494,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.477,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.335,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.159 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.184 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.155 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0.0712 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0.142 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.109,0.286,0,0,0,0,0,0,0.299 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.143,0.278,0,0,0,0,0,0,0 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.165 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.265 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.215 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.0827 +1,0.621,0.143,0.278,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0.2 +1,0.621,0.169,0.27,0,0,0,0,0,0,0.0251 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.651,0.268,0.364,0,0,0,0,0,0,0 +1,0.651,0.268,0.364,0,0,0,0,0,0,0.331 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.102 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.102 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.248 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.286 +1,0.651,0.34,0.349,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.152 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.133 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0.331 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0.165 +1,0.682,0.427,0.349,0,0,0,0,0,0,0.0827 +1,0.682,0.427,0.349,0,0,0,0,0,0.9,0.248 +1,0.682,0.427,0.349,0,0,0.272,0.4,0,0.5,0 +1,0.682,0.427,0.349,0,0,0.339,1,0,0,0 +1,0.682,0.427,0.349,0,0,0.138,0.1,0.9,0,0 +1,0.682,0.427,0.349,0,0,0.35,0,0.5,0,0 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.728,0.449,0.353,0,0,0.331,0,0,0,0.165 +1,0.728,0.449,0.353,0,0,0.319,0,0,0,0 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.728,0.449,0.353,0,0,0.307,0,0,0,0 +1,0.728,0.449,0.353,0,0,0.193,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.394,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.193,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.398,0,0,0,0.0827 +1,0.774,0.464,0.371,0,0,0.701,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.205,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.445,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.26,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.0354,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.272,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.508,0,0,0,0.0827 +1,0.79,0.547,0.42,0,0,0.205,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.217,0,0,0,0.165 +1,0.774,0.719,0.523,0,0,0.0906,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.354,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.421,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.169,0,0,0,0 +1,0.744,0.845,0.671,0,0,0.0906,0,0,0,0 +1,0.744,0.845,0.671,0,0,0.614,0,0,0,0 +1,0.744,0.845,0.671,0,0,0.343,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.4,0 +1,0.682,0.78,0.799,0,0,0,0,0,1,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.138 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.234 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.26 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0779 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +1,0.591,0.0636,0.168,0,0,0,0,0,1,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0.0827 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0.165 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0.0827 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +1,0.651,0.288,0.352,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.4,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.0118,0.9,0,0,0 +1,0.728,0.449,0.353,0,0,0,0.6,0.4,0,0 +1,0.728,0.449,0.353,0,0,0,0,1,0,0 +1,0.728,0.449,0.353,0,0,0,0,1,0,0.248 +1,0.728,0.449,0.353,0.358,0.4,0,0,1,0,0.248 +1,0.774,0.464,0.371,0.466,1,0,0,1,0,0 +1,0.774,0.464,0.371,0.233,0,0,0,1,0,0 +1,0.774,0.464,0.371,0.312,0,0,0,0.5,0,0.165 +1,0.774,0.464,0.371,0.455,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0.165 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.0919 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.9,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.5,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0.0827 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.103 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.165 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.0975 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0975 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.144 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.203 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.101 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.252 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.242 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.121 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.229 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.4,0.0827 +0.667,0.621,0.13,0.249,0,0,0,0,0,1,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,1,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.4,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.331 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.165 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.413 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.15 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.231 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0514 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.203 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.253 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.248 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.425 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.248 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.331 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.248 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.165 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.233 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.259 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0259 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.9,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,1,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.9,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.0827 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.183 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.101 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.165 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.118 +1,0.589,0.0632,0.317,0,0,0,0,0,0.9,0.496 +1,0.589,0.0632,0.317,0,0,0,0,0,0.5,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.331 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.248 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0933 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0233 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.148 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.264 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.288 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0927 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.104 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.157 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.4,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0.11 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.4,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.102 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.159 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0562 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0245 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.147 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.234 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0878 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.227 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0504 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.9,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,1,0.276 +0.667,0.571,0.0316,0.139,0,0,0,0,0,1,0 +0.667,0.571,0.0316,0.139,0,0,0.272,0.9,0,1,0 +0.667,0.571,0.0316,0.139,0,0,0.217,0.6,0.4,0.4,0 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.413 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.165 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.295 +0.333,0.562,0.0159,0.0495,0,0,0,0,1,0,0.187 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0,0.183 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0.5,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0734 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.156 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.146 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.248 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.096 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.096 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.4,0 +1,0.774,0.34,0.371,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.224 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0498 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.413 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.182 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.183 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0,0.125 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.201 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.248 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.351 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0769 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.223 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0495 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.0827 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0.4,0 +1,0.6,0.307,0.405,0,0,0,0,0,1,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.111 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0731 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.178 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0.0718 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.4,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,1,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,1,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,1,0.165 +0.667,0.591,0.101,0.154,0,0,0,0,0,1,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,1,0.165 +0.667,0.591,0.101,0.154,0,0,0,0,0,0.3,0.165 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0.0827 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.0827 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.248 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0.248 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0.248 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.393 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.292 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.248 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.0867 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.0217 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.437 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.0744 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.9,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.5,0.183 +1,0.79,0.547,0.42,0,0,0,0,0,0,0.0504 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0.0827 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.12 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.164 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0.094 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.118 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0.161 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.472,0.9,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.818,1,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.472,1,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.409,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.139,0.5,0,0,0,0,0,0 +1,0.571,0.0295,0.139,0.335,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0.9,0 +1,0.586,0.0433,0.167,0,0,0,0,0,1,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0.9,0 +1,0.591,0.0636,0.168,0,0,0.331,0.9,0,0,0 +1,0.591,0.0636,0.168,0,0,0.374,0.6,0.4,0,0 +1,0.651,0.155,0.404,0,0,0,0,1,0,0 +1,0.651,0.155,0.404,0,0,0.5,0,0,0,0.0827 +1,0.651,0.155,0.404,0,0,0.228,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.126,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.228,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.0236,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.272,0,0,0,0.165 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0.0827 +0.667,0.621,0.169,0.27,0,0,0.114,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.0354,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.283,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.248,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.0551,0,0,0,0.248 +0.667,0.621,0.185,0.259,0,0,0.283,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0.0906,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.248 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0.248 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0.165 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0.0827 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.9,0 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.5,0.0827 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.248 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.248 +1,0.673,0.305,0.252,0,0,0,0,0,0,0 +1,0.673,0.305,0.252,0,0,0,0,0,0,0.165 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0.165 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0.42,0.4,0,0,0,0,0 +1,0.79,0.547,0.42,0.307,1,0,0,0,0,0 +1,0.79,0.547,0.42,0.205,1,0,0,0,0,0 +1,0.79,0.547,0.42,0.205,0.5,0,0,0,0,0 +1,0.774,0.719,0.523,0.966,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0.147 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.0949 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.0475 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.101 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.176 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.2 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0.659,0.9,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0.676,1,0,0,0,0,0.0917 +0.667,0.611,0.0634,0.284,0.597,1,0,0,0,0,0.0459 +0.667,0.611,0.0634,0.284,0.364,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0.278,0,0.26,0.4,0,0,0.0827 +0.667,0.621,0.0764,0.286,0.278,0,0,1,0,0,0.158 +0.667,0.621,0.0764,0.286,0,0,0.0906,0.1,0.9,0,0 +0.667,0.621,0.0764,0.286,0,0,0.146,0,1,0,0.165 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0.331,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0.236,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.126,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.236,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.283,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.339,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.181,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.319,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.398,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.217,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.272,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.307,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.0118,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0.217,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.138,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.0551,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.319,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.0669,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.0906,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.362,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.248,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.0118,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0.126,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.149,0,0,0.0354,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0.114,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.728,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.205,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.531,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.386,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.307,0,0,0,0.579 +0.333,0.591,0.0767,0.149,0,0,0.283,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0.0551,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.4,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.303 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.074 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.379 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.025 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.103 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.103 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.331 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.155 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.0517 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.114,0.9,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.26,1,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,1,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.0551,1,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0.0354,1,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,1,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.331,0.2,0.8,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0.236,0,1,0,0.0827 +0.667,0.621,0.11,0.259,0,0,0,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0.26,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0.126,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0.331,0,0.1,0,0 +0.667,0.621,0.11,0.259,0,0,0.26,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.236,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.283,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.524,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0.0472,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.0354,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.319,0,0,0,0.248 +0.333,0.591,0.073,0.149,0,0,0.283,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0.0354,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.24,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0.453,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.441,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.272,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0.126,0.9,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,1,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,1,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,1,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0.6,0.4,0.4,0 +0.333,0.617,0.103,0.151,0,0,0,0,1,1,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.187 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0519 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.228 +1,0.79,0.457,0.42,0,0,0.283,0.4,0,0,0.0253 +1,0.79,0.457,0.42,0,0,0,1,0,0,0 +1,0.79,0.457,0.42,0,0,0.512,0.1,0.9,0,0.248 +1,0.79,0.457,0.42,0,0,0.26,0,1,0,0.355 +1,0.774,0.64,0.523,0,0,0,0,1,0,0 +1,0.774,0.64,0.523,0,0,0.26,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0948 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0711 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.141 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.0827 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.0987 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.123 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.121 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0723 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.102 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.229 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.331 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.248 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.4,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.174 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0.4,0 +1,0.744,0.791,0.671,0,0,0,0,0,1,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.101 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.0761 +1,0.682,0.749,0.799,0.523,0.9,0,0,0,0,0 +1,0.682,0.749,0.799,0.545,1,0,0,0,0,0 +1,0.62,0.453,0.582,0.347,1,0,0,0,0,0 +1,0.62,0.453,0.582,0.42,1,0,0,0,0,0 +0.667,0.6,0.307,0.405,0.188,0.4,0,0,0,0,0 +0.667,0.581,0.162,0.227,0.188,0,0,0,0,0,0 +0.667,0.581,0.162,0.227,0.29,0,0,0,0,0,0 +0.667,0.581,0.162,0.227,0,0,0,0,0,0,0.0948 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0.0711 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.224 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0249 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.228 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0506 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.0905 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.0679 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.165 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0472 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.131 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.14 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.41 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.258 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0698 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.9,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.5,0.165 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.17 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0972 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0486 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.138 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.428 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0245 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.248 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.184 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.151 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.0985 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.197 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0827 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.109 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.192 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.124 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.141 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.0705 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.285 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0782 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.299 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.024 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.331 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.248 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.248 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.333,0.589,0.128,0.148,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.148,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.248 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0.4,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,1,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +0.667,0.548,0.147,0.263,0,0,0,0,0,0,0 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.0827 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.0827 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.9,0.165 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.5,0.165 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.248 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.248 +0.667,0.591,0.315,0.238,0,0,0.429,0.9,0,0,0.0827 +1,0.591,0.315,0.238,0,0,0.0787,0.6,0.4,0,0 +1,0.617,0.326,0.247,0,0,0,0,1,0,0 +1,0.617,0.326,0.247,0,0,0.193,0,1,0,0 +1,0.617,0.326,0.247,0,0,0.567,0,0.5,0,0 +1,0.645,0.479,0.345,0,0,0.307,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.2 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.165 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0.102 +1,0.568,0.806,0.726,0,0,0,0,0,0,0.205 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0.0827 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0.165 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0.165 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.248 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.165 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.0827 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.0827 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.0827 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.165 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.165 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0.0827 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0.9,0.284 +1,0.548,0.24,0.235,0,0,0,0,0,0.5,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0.101 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.101 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.0827 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.448 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.215 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.094 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.094 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.104 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0519 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0.9,0 +1,0.645,0.743,0.467,0,0,0,0,0,0.5,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0.602,0.9,0,0,0,0,0 +1,0.531,0.345,0.388,0.335,1,0,0,0,0,0 +1,0.531,0.345,0.388,0.455,0.9,0,0,0,0,0 +1,0.531,0.345,0.388,0.318,0,0,0,0,0,0 +1,0.531,0.345,0.388,0.369,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.182 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.127 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0663 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0827 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.248 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.331 +0.667,0.617,0.239,0.247,0.29,0.9,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0.426,1,0,0,0,0,0.165 +0.667,0.617,0.239,0.247,0.5,0.9,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0.426,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.449,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0.511,0.9,0,0,0,0,0 +0.667,0.626,0.32,0.273,0.347,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.398,0.9,0,0,0,0,0 +1,0.658,0.473,0.384,0.858,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.386,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.659,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.278,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.239,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.477,0,0,0,0,0,0.165 +1,0.619,0.817,0.595,0.42,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.165 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.217 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0725 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.102 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.0254 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.2 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.9,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,1,0.0867 +1,0.497,0.0323,0.104,0,0,0,0,0,0.9,0.0217 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0.0827 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0.567,0.9,0,0,0.165 +1,0.514,0.0488,0.222,0,0,0.52,0.6,0.4,0,0 +1,0.514,0.0488,0.222,0,0,0.343,0,1,0,0 +1,0.514,0.0488,0.222,0,0,0,0,1,0.9,0.165 +1,0.514,0.0488,0.222,0,0,0.228,0,1,0.5,0 +0.667,0.54,0.0653,0.277,0,0,0,0,1,0,0 +0.667,0.54,0.0653,0.277,0,0,0.228,0,1,0,0 +0.667,0.54,0.0653,0.277,0,0,0.126,0,0.4,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0.193,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0.283,0,0,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.9,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.5,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0827 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0.9,0 +1,0.617,0.446,0.328,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,1,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,1,0.465 +1,0.568,0.774,0.726,0,0,0,0,0,1,0.0776 +1,0.568,0.774,0.726,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.8,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0985 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.172 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.169 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.306 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.24 +0.667,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.9,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.5,0 +1,0.529,0.09,0.39,0,0,0,0,0,0,0 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.295 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.189 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0.307,0.9,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0.688,1,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0.557,1,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0.489,1,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0.3,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.455,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.614,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0.42,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.46,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.304,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0.304,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0.665,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0.217,0.9,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0.0118,0.6,0.4,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,1,0,0 +0.667,0.555,0.0789,0.142,0,0,0.374,0,0,0,0.0827 +0.667,0.555,0.0789,0.142,0,0,0.248,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0.9,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,1,0 +1,0.645,0.351,0.345,0,0,0,0,0,1,0 +1,0.645,0.351,0.345,0,0,0,0,0,1,0 +1,0.645,0.351,0.345,0,0,0,0,0,0.3,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0.0827 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.0827 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.589,0.231,0.189,0,0,0,0,0,0,0.0827 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.213 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0955 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.42 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0912 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0228 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.228 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.292 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.9,0.165 +1,0.568,0.23,0.328,0,0,0,0,0,0.5,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.165 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.151 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0998 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0499 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0827 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.182 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.185 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0514 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.217 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0723 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0.126,0.4,0,0,0.141 +0.667,0.538,0.0323,0.136,0,0,0,1,0,0,0 +0.667,0.538,0.0323,0.136,0.443,0.9,0,0.1,0.9,0,0 +0.667,0.538,0.0323,0.136,0.528,1,0,0,0.5,0,0 +0.667,0.538,0.0323,0.136,0.375,0.9,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0.415,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0.0827 +0.667,0.548,0.0788,0.274,0,0,0,0,0,1,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,1,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0.206 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.9,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0.364,0.4,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.523,1,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,1,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.506,0.4,0,0,0,0,0 +0.667,0.548,0.134,0.235,0.528,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.331 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.579 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.165 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.9,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,1,0 +1,0.606,0.286,0.332,0,0,0,0,0,0.9,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.0669,0.4,0,0,0 +1,0.645,0.662,0.467,0,0,0.398,1,0,0,0 +1,0.645,0.662,0.467,0,0,0.724,0.1,0.9,0,0.0827 +1,0.645,0.662,0.467,0,0,0.0906,0,0.5,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0.26,0,0,0,0 +1,0.645,0.662,0.467,0,0,0.0551,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.531,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.339,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.283,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.252,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.35,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.307,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.295,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.283,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.0669,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.331,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.0943 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0707 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.189 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.176 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0464 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.49 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.427 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.0239 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.274 +1,0.548,0.113,0.274,0,0,0,0,0,0,0.203 +1,0.548,0.113,0.274,0,0,0,0,0,0.9,0 +1,0.548,0.113,0.274,0,0,0,0,0,0.5,0 +1,0.548,0.113,0.274,0,0,0,0,0,0,0.214 +1,0.548,0.113,0.274,0,0,0,0,0,0,0.153 +1,0.548,0.113,0.274,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.284 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.232 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0475 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0475 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.378 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0945 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.278 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0971 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0971 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0827 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.403 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.263 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0733 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.248 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0.179 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0.396 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.165 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.9,0 +0.667,0.617,0.501,0.328,0,0,0.362,0.4,0,0.5,0 +0.667,0.617,0.501,0.328,0,0,0.622,1,0,0,0 +0.667,0.617,0.501,0.328,0,0,0.283,0.1,0.9,0,0.248 +1,0.645,0.743,0.467,0,0,0,0,1,0,0.0827 +1,0.619,0.873,0.595,0,0,0,0,1,0,0 +1,0.619,0.873,0.595,0,0,0,0,1,0,0.248 +1,0.619,0.873,0.595,0,0,0,0,1,0,0 +1,0.619,0.873,0.595,0,0,0,0,0.9,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0.9,0 +1,0.555,0.0654,0.162,0,0,0.114,0.4,0,0.5,0.0827 +1,0.548,0.147,0.263,0,0,0.362,1,0,0,0 +1,0.548,0.147,0.263,0,0,0.228,0.1,0.9,0,0 +1,0.548,0.147,0.263,0,0,0.409,0,1,0,0 +1,0.542,0.212,0.37,0,0,0.567,0,1,0,0 +1,0.542,0.212,0.37,0,0,0.217,0,0,0,0.248 +1,0.542,0.212,0.37,0,0,0.228,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0.0669,0,0,0,0 +1,0.542,0.252,0.359,0,0,0.283,0,0,0,0.165 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0827 +1,0.542,0.252,0.359,0,0,0.362,0,0,0,0 +1,0.542,0.252,0.359,0,0,0.228,0,0,0,0.165 +1,0.542,0.277,0.343,0,0,0.622,0,0,0,0 +1,0.542,0.277,0.343,0,0,0.374,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0.339,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0.0906,0,0,0,0 +1,0.542,0.277,0.343,0,0,0.236,0,0,0,0.0827 +1,0.542,0.297,0.331,0,0,0.535,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0.126,0,0,0,0.165 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0827 +1,0.542,0.297,0.331,0,0,0.217,0,0,0,0 +1,0.542,0.297,0.331,0,0,0.283,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.283,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.0354,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.26,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.0472,0,0,0,0.0827 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0.228,0,0,0,0 +1,0.542,0.401,0.327,0,0,0.228,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.248 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.384,0,0,0,0,0,0.4,0 +1,0.645,0.743,0.467,0,0,0,0,0,1,0 +1,0.645,0.743,0.467,0,0,0,0,0,1,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,1,0.165 +0.667,0.617,0.501,0.328,0,0,0,0,0,1,0.248 +0.667,0.617,0.501,0.328,0,0,0,0,0,1,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.2,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.331 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0.0354,0.4,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0.169,1,0,0,0 +1,0.529,0.0241,0.0768,0,0,0.374,0.1,0.9,0,0.165 +1,0.529,0.0241,0.0768,0,0,0.205,0,0.5,0,0.165 +1,0.538,0.0323,0.136,0,0,0.193,0,0,0,0.248 +1,0.538,0.0323,0.136,0,0,0.193,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0.0669,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0.343,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0.295,0,0,0,0.183 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.227 +1,0.54,0.0653,0.277,0,0,0.26,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0.445,0,0,0,0 +1,0.529,0.09,0.39,0,0,0.319,0,0,0,0.0238 +1,0.529,0.09,0.39,0,0,0.0906,0,0,0,0.19 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0937 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0234 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.135 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.338 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.264 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.264 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.223 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.0495 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0.101 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.176 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.232 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0258 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.104 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0521 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.165 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0827 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.581,0.283,0.231,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0998 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.249 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0499 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.175 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.046 +0.667,0.562,0.0159,0.0495,0,0,0.0354,0.9,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0.0906,0.6,0.4,0,0 +0.667,0.54,0.0653,0.277,0,0,0.217,0,1,0,0.162 +0.667,0.54,0.0653,0.277,0,0,0.465,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0.0551,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.465,0,0,0,0.0827 +0.333,0.555,0.0473,0.162,0,0,0.374,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0.114,0,0,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0.543,0,0,0,0.248 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.413 +0.667,0.548,0.0923,0.263,0,0,0.555,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0.339,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.0118,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.228,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.331 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0.9,0.158 +1,0.606,0.286,0.332,0,0,0,0,0,0.5,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0961 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.024 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0.534,0.4,0,0,0,0,0.165 +1,0.658,0.473,0.384,0.534,1,0,0,0,0,0 +1,0.658,0.473,0.384,0,1,0,0,0,0,0.191 +1,0.658,0.473,0.384,0,0.4,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0.9,0.108 +1,0.658,0.473,0.384,0,0,0,0,0,1,0.126 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.7,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.267 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.267 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.146 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.0827 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.265 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.158 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.165 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.265 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0499 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.9,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.5,0.165 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.331 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.432,0.4,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.335,1,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.261,1,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.261,0.4,0,0,0,0,0.165 +0.667,0.626,0.32,0.273,0.472,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0.455,0,0,0,0,0.9,0.165 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.5,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.248 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0963 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.0722 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.46 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.126 +1,0.516,0.468,0.557,0,0,0,0,0,0,0 +1,0.516,0.468,0.557,0,0,0,0,0,0,0.165 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.149 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.124 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.164 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0485 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0969 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,1,0.241 +1,0.514,0.0488,0.222,0,0,0,0,0,1,0.121 +1,0.514,0.0488,0.222,0,0,0,0,0,1,0.0623 +1,0.514,0.0488,0.222,0,0,0,0,0,1,0.0827 +1,0.49,0.0653,0.308,0,0,0,0,0,0.7,0 +1,0.49,0.0653,0.308,0,0,0,0,0,0,0.0827 +1,0.49,0.0653,0.308,0,0,0,0,0,0,0.0884 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0.155 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0993 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.223 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.228 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0253 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.105 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0827 +0.667,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0.248 +0.667,0.548,0.119,0.237,0,0,0.0472,0.4,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.0354,1,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.366,1,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.421,0.6,0.4,0,0.165 +0.667,0.548,0.134,0.235,0,0,0.35,0,1,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0.169,0,1,0,0 +0.667,0.548,0.134,0.235,0,0,0.331,0,1,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0.9,0,0 +0.667,0.548,0.142,0.235,0,0,0.283,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0.272,0,0,0,0.185 +0.667,0.548,0.142,0.235,0,0,0.319,0,0,0,0.23 +0.667,0.548,0.142,0.235,0,0,0.272,0,0,0.9,0 +1,0.542,0.205,0.327,0,0,0.331,0,0,0.5,0.0827 +1,0.568,0.23,0.328,0,0,0.488,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.445,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.339,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.669,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.248 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.165 +1,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.591,0.196,0.238,0,0,0,0,0,0,0.413 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.589,0.128,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.128,0.148,0,0,0,0,0,0.9,0.331 +1,0.617,0.239,0.247,0,0,0,0,0,0.5,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.165 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0.392,0.4,0,0,0,0,0 +1,0.617,0.446,0.328,0.369,1,0,0,0,0,0 +1,0.617,0.446,0.328,0,1,0,0,0,0,0 +1,0.617,0.446,0.328,0.455,0.4,0,0,0,0,0 +1,0.617,0.446,0.328,0.483,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0.4,0 +1,0.6,0.55,0.413,0,0,0,0,0,1,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0994 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.248 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0994 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.488,0.9,0,0,0.0514 +0.667,0.548,0.0788,0.274,0,0,0.169,0.6,0.4,0,0.103 +0.667,0.548,0.0788,0.274,0,0,0,0,1,0,0 +0.667,0.548,0.0788,0.274,0,0,0.307,0,0,0,0.0827 +0.667,0.548,0.0788,0.274,0,0,0.398,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.331,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.26,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0.248,0,0,0,0.248 +0.333,0.555,0.0541,0.156,0,0,0.272,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.126,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0.26,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.602,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.0669,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0.26,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.457,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.217,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.465,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.126,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.205,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.0354,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.394,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0.555,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.531,0,0,0,0.331 +0.333,0.555,0.0751,0.142,0,0,0.205,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.26,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.0906,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.181,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.213,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.429,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0949 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.125 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.174 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.228 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0253 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.347 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.224 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.9,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.5,0.0827 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.248 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.413 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.165 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0.0787,0.9,0,0.9,0.226 +1,0.555,0.0654,0.162,0,0,0.26,0.6,0.4,0.5,0.0251 +1,0.555,0.0826,0.156,0,0,0,0,1,0,0 +1,0.555,0.0826,0.156,0,0,0.236,0,1,0,0 +1,0.555,0.0826,0.156,0,0,0,0,1,0,0.274 +1,0.542,0.212,0.37,0,0,0,0,1,0,0 +1,0.542,0.212,0.37,0,0,0,0,1,0,0.166 +1,0.542,0.212,0.37,0,0,0,0,1,0,0.0827 +1,0.542,0.252,0.359,0,0,0,0,0.8,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0501 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.366 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.222 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.0984 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.148 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.247 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.165 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0.562,0.9,0,0,0,0,0.165 +0.667,0.548,0.24,0.235,0.358,0.5,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.415,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.443,0,0,0,0,0,0.0827 +0.667,0.548,0.273,0.235,0.33,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.403,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.403,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0.432,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0.358,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.235,0.233,0,0,0,0,0.4,0.165 +0.667,0.566,0.3,0.235,0.233,0,0,0,0,1,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,1,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,1,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.8,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0.0827 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0.403,0.4,0,0,0,0,0 +1,0.568,0.806,0.726,0.557,1,0,0,0,0,0 +1,0.568,0.806,0.726,0,1,0,0,0,0,0 +1,0.568,0.806,0.726,0.244,0.4,0,0,0,0,0 +1,0.516,0.509,0.557,0.489,0,0,0,0,0,0 +1,0.516,0.509,0.557,0.477,0,0,0,0,0,0 +1,0.516,0.509,0.557,0.432,0,0,0,0,0,0 +1,0.516,0.509,0.557,0.42,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.248 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.165 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.248 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0.9,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.5,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0.413 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.248 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0.0827 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0.0827 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0.165 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.0827 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.4,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,1,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.331 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.248 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.0827 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.0827 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.248 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.226 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.0251 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0.164 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0.203 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.703 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0875 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.165 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0827 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.205 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0973 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.122 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.9,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.5,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.9,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,1,0.165 +0.667,0.617,0.239,0.247,0,0,0,0,0,1,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,1,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.3,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0.248 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0.165 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.318,0.9,0,0,0,0,0 +1,0.645,0.662,0.467,0.301,0.5,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.307,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.483,0,0,0,0,0,0.102 +0.667,0.6,0.55,0.413,0.301,0,0,0,0,0,0.179 +0.667,0.6,0.55,0.413,0.449,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.103 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.1 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.2 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.185 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0827 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.165 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.338 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,1,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.529 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.233 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0259 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.9,0.0827 +1,0.497,0.0323,0.104,0,0,0,0,0,0.5,0.157 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +1,0.568,0.23,0.328,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.231 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.134 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.259 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.366 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.9,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.5,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.153 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0948 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0711 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.165 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0827 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.22 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.238 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.179 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.223 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.223 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.393 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.248 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.368 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.0522 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.102 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.179 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.386,0.9,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.126,1,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,1,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.0551,0.1,0.9,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0.228,0,1,0,0.248 +0.333,0.555,0.0789,0.142,0,0,0.543,0,1,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0.522,0,1,0,0 +0.333,0.555,0.0789,0.142,0,0,0.384,0,0.4,0,0 +0.333,0.564,0.0871,0.142,0,0,0.622,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.126,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.295,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.476,0,0,0.9,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.5,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.248 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0.392,0.9,0,0,0,0,0 +1,0.645,0.351,0.345,0.33,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.369,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.261,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.483,1,0,0,0,0,0.165 +1,0.658,0.473,0.384,0,0.7,0,0,0,0,0.165 +1,0.658,0.473,0.384,0.528,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.517,0,0.0236,0.4,0,0,0 +1,0.645,0.662,0.467,0.665,0,0.555,1,0,0,0 +1,0.645,0.662,0.467,0.386,0,0.457,0.1,0.9,0,0 +1,0.645,0.662,0.467,0.233,0,0.5,0,0.5,0,0.165 +0.667,0.617,0.446,0.328,0,0,0.205,0,0,0,0.0827 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0919 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0827 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.248 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.389 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.331 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.102 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0254 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.349 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.165 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0241 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.0965 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.4,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,1,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.165 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.158 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0472 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0472 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.094 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0705 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.248 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.165 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.382 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0493 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.362 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.288 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.126 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.429 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.453 +0.667,0.548,0.0788,0.274,0,0,0.646,0.9,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.228,0.6,0.4,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0.272,0,1,0,0 +0.667,0.548,0.0788,0.274,0,0,0.602,0,0,0,0.618 +0.667,0.548,0.0788,0.274,0,0,0.228,0,0,0,0.0993 +0.667,0.548,0.0923,0.263,0,0,0.236,0,0,0,0.0248 +0.667,0.548,0.0923,0.263,0,0,0.0354,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.283,0,0,0,0.165 +0.667,0.548,0.0923,0.263,0,0,0.331,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.472,0,0,0,0.21 +0.667,0.548,0.0923,0.263,0,0,0.0354,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.622,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0.283,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.453,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.283,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.575,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.0118,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.228,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.157,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.362,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.193,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.0787,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.26,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.272,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0.26,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0.217,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.126,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0.713,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.228,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.398,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0.272,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0.0906,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.5,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.248 +1,0.645,0.351,0.345,0.438,0.4,0,0,0,0,0.165 +1,0.658,0.473,0.384,0.5,1,0,0,0,0,0 +1,0.658,0.473,0.384,0,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.42,0.4,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0.506,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.477,0,0,0,0,0,0.0818 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.165 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.4,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.4,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0.455,0.4,0,0,0,0,0 +1,0.6,0.55,0.413,0.568,1,0,0,0,0,0 +1,0.6,0.55,0.413,0,1,0,0,0,0,0.248 +1,0.6,0.55,0.413,0.392,0.4,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0.682,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0908 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0681 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.306 +1,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0.258 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.0258 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.248 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.0827 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.248 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.248 +0.333,0.555,0.129,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.9,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.5,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0.496 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0.248 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0.165 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0.165 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0.0827 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.331 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0839 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.021 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.248 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.142 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.272 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.196 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0897 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.463 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0983 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0737 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.231 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.154 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.541 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.339 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.165 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.248 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.248 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.364 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0.331 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.0827 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.333,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0.165 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.369,0.9,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.477,1,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.494,1,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.398,1,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.25,1,0,0,0,0,0 +1,0.516,0.509,0.557,0.25,0.7,0,0,0,0,0 +1,0.516,0.509,0.557,0.551,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0354,0.9,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0.193,0.6,0.4,0,0.331 +1,0.529,0.0241,0.0768,0,0,0,0,1,0,0 +1,0.529,0.0241,0.0768,0,0,0.295,0,1,0,0.229 +1,0.529,0.0241,0.0768,0,0,0.283,0,1,0,0 +1,0.514,0.0488,0.222,0,0,0.146,0,1,0,0 +1,0.514,0.0488,0.222,0,0,0.567,0,1,0.9,0 +1,0.514,0.0488,0.222,0,0,0.339,0,0.4,0.5,0.275 +1,0.49,0.0653,0.308,0,0,0,0,0,0,0.331 +1,0.49,0.0653,0.308,0,0,0.283,0,0,0,0 +1,0.49,0.0653,0.308,0,0,0.398,0,0,0,0.181 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.147 +1,0.529,0.09,0.39,0,0,0.591,0,0,0,0 +1,0.529,0.09,0.39,0,0,0.374,0,0,0,0.165 +1,0.529,0.09,0.39,0,0,0,0,0,0,0 +1,0.529,0.09,0.39,0,0,0.205,0,0,0,0.128 +1,0.529,0.09,0.39,0,0,0.0787,0,0,0,0.0827 +1,0.542,0.11,0.387,0,0,0,0,0,0,0 +1,0.542,0.11,0.387,0,0,0.283,0,0,0,0 +1,0.542,0.11,0.387,0,0,0.114,0,0,0,0 +1,0.542,0.11,0.387,0,0,0,0,0,0,0 +1,0.542,0.11,0.387,0,0,0.441,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.567,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.331,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.26,0,0,0,0.0827 +0.667,0.548,0.0923,0.263,0,0,0.465,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.543,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.26,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.283,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.217,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.24,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.26,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.0906,0,0,0,0.165 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.245,0,0,0.319,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.693,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.193,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.272,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.169,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.0906,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.138,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.236,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.488,0,0,0.9,0.0827 +0.667,0.548,0.119,0.237,0,0,0.193,0,0,0.5,0.0827 +0.667,0.548,0.134,0.235,0,0,0.138,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.126,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.0906,0,0,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0.657,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.35,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.339,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.295,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.264,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.327,0,0,0,0.161 +1,0.542,0.205,0.327,0,0,0.0906,0,0,0,0.0827 +1,0.568,0.23,0.328,0,0,0.228,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.421,0,0,0,0.0407 +1,0.568,0.23,0.328,0,0,0.421,0,0,0,0.0407 +1,0.568,0.23,0.328,0,0,0.433,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.0118,0,0,0,0.331 +1,0.568,0.23,0.328,0,0,0.283,0,0,0,0.165 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.272,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.248,0,0,0,0.0827 +1,0.591,0.196,0.238,0,0,0.228,0,0,0,0 +1,0.591,0.196,0.238,0,0,0.386,0,0,0,0 +1,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0.165 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.331 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0827 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.207 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.341 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.069 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.18 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.257 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.0257 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.155 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.094 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0235 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.231 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.179 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0966 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.312 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.312 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.339,0.4,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.421,1,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0.1,0.9,0,0.248 +0.667,0.548,0.134,0.235,0,0,0.169,0,0.5,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.331,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0.205,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.421,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.0236,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.362,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.217,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.169,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.331,0,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0.26,0,0,0,0.0827 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0.331,0,0,0.4,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,1,0 +0.333,0.576,0.106,0.144,0,0,0.398,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.0472,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.24,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.0354,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0.283,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.228,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0.248 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.4,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,1,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,1,0 +1,0.566,0.521,0.501,0,0,0,0,0,0.4,0.0912 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0228 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.162 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.102 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.256 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.128 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0.528,0.9,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0.358,1,0,0,0,0,0.26 +1,0.529,0.0241,0.0768,0.443,1,0,0,0,0,0.119 +1,0.529,0.0241,0.0768,0.295,1,0,0,0,0,0 +1,0.497,0.0323,0.104,0.568,0.3,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0.631,0,0,0,0,0,0.43 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0.189 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.135 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.248 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.102 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0512 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.425 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0.386,0.9,0,0,0,0,0 +1,0.645,0.351,0.345,0.301,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.631,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.352,1,0,0,0,0.9,0.165 +1,0.658,0.473,0.384,0.466,1,0,0,0,0.5,0 +1,0.658,0.473,0.384,0.233,0.7,0,0,0,0,0 +1,0.658,0.473,0.384,0.511,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.756,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.179,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.179,0,0.657,0.9,0,0,0 +1,0.645,0.662,0.467,0.852,0,0.398,1,0,0,0 +1,0.645,0.662,0.467,0.392,0,0.0354,1,0,0,0 +1,0.645,0.662,0.467,0.528,0,0.362,0.1,0.9,0,0 +1,0.645,0.662,0.467,0.364,0,0.319,0,0.5,0,0 +1,0.619,0.817,0.595,0,0,0.146,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.228,0,0,0,0.165 +1,0.619,0.817,0.595,0,0,0.26,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.319,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.339,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.508,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.236,0,0,0,0 +1,0.566,0.521,0.501,0,0,0.217,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.248 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.248 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0949 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0989 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0247 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0.231 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0.0257 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.102 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0509 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.9,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.5,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.226 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.0503 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.2 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.302 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.165 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.0253 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.335 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.418 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.558 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.324 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.9,0.0827 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.5,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.165 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.4,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,1,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.413 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.165 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.263 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0488 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.208 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.104 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.192 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0715 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.165 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.455 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.16 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.248 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.185 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.9,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.9,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0.157,0.4,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0.543,1,0,0,0.0827 +0.333,0.576,0.106,0.144,0,0,0.465,0.1,0.9,0,0.165 +0.667,0.591,0.196,0.238,0,0,0.22,0,0.5,0,0.165 +0.667,0.617,0.239,0.247,0,0,0.335,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.272,0,0,0,0.248 +0.667,0.617,0.239,0.247,0,0,0.26,0,0,0,0.165 +0.667,0.617,0.239,0.247,0,0,0.331,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.419,0,0,0,0.165 +0.667,0.617,0.239,0.247,0,0,0.341,0,0,0,0.165 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.705,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.146,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.453,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.362,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.0551,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0.217,0,0,0,0 +1,0.645,0.662,0.467,0,0,0.331,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.449 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0998 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0499 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.0994 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.248 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.132 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.0945 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0.193,0.9,0,0,0.0827 +1,0.548,0.174,0.256,0,0,0.374,0.6,0.4,0,0.184 +1,0.542,0.277,0.343,0,0,0,0,1,0,0.0757 +1,0.542,0.277,0.343,0,0,0.398,0,1,0,0 +1,0.542,0.277,0.343,0,0,0.398,0,1,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,1,0,0.173 +1,0.542,0.277,0.343,0,0,0,0,1,0,0.19 +0.667,0.548,0.191,0.245,0,0,0,0,0.4,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.165 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.0827 +1,0.548,0.273,0.235,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.165 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.0827 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0.248 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.0827 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.0827 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0.165 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0.165 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0.0827 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0988 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.173 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.165 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.217 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.165 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0.248 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.0827 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0.165 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0.631,0.4,0,0,0,0,0 +0.667,0.562,0.16,0.14,0.369,1,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,1,0,0,0,0,0 +0.667,0.563,0.301,0.23,0.528,0.3,0,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0.455,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.0827 +0.667,0.588,0.316,0.233,0.653,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0.489,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0.244,0,0,0,0,0,0.331 +0.667,0.588,0.316,0.233,0.403,0,0,0,0,0.4,0.248 +0.667,0.588,0.316,0.233,0.312,0,0,0,0,1,0 +0.667,0.588,0.316,0.233,0.636,0,0,0,0,1,0 +1,0.64,0.481,0.338,0,0,0,0,0,0.4,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.631,0,0,0,0,0,0.165 +1,0.64,0.481,0.338,0.415,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.682,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.938,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.0998 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.0499 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.131 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.181 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0469 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.164 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.165 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.331 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0.228,0.4,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.508,1,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,1,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.374,0.7,0.3,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.283,0,1,0,0 +0.333,0.554,0.0595,0.15,0,0,0.26,0,1,0,0 +0.333,0.554,0.0595,0.15,0,0,0.283,0,0.4,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.409,0,0,0,0.331 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0989 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.173 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.234 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.13 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0.4,0 +1,0.64,0.352,0.338,0,0,0,0,0,1,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0.114,0.4,0,0,0 +1,0.653,0.474,0.377,0,0,0,1,0,0,0 +1,0.653,0.474,0.377,0,0,0.465,0.1,0.9,0,0 +1,0.653,0.474,0.377,0,0,0.146,0,1,0,0.0827 +1,0.653,0.474,0.377,0,0,0,0,0.8,0,0 +1,0.653,0.474,0.377,0,0,0.295,0,0,0,0.232 +1,0.653,0.474,0.377,0,0,0.248,0,0,0,0.103 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.264,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.0906,0,0,0,0.175 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0232 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.451 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.393 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.167 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.0953 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.143 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.151 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0677 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0903 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0944 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0.0236 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.231 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0576 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.365 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.248 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0.614,0.4,0,0,0,0,0.173 +0.667,0.588,0.196,0.233,0.386,1,0,0,0,0,0.0453 +0.667,0.588,0.196,0.233,0,1,0,0,0,0,0 +1,0.602,0.287,0.324,0.466,0.3,0,0,0,0,0 +1,0.64,0.352,0.338,0.523,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.415,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0.4,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.165 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.149 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.65,0.9,0,0,0.222 +1,0.64,0.664,0.461,0,0,0.362,0.6,0.4,0,0 +1,0.64,0.664,0.461,0,0,0,0,1,0,0 +1,0.64,0.664,0.461,0,0,0.488,0,1,0,0.0827 +1,0.64,0.664,0.461,0,0,0.205,0,0.3,0,0.1 +1,0.615,0.82,0.59,0,0,0.791,0,0,0,0.0502 +1,0.615,0.82,0.59,0,0,0.254,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.254,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.398,0,0,0,0.426 +1,0.615,0.82,0.59,0,0,0.26,0,0,0,0.248 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.362,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.272,0,0,0,0.0993 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.223 +1,0.563,0.523,0.496,0,0,0.35,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.228,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.362,0,0,0,0 +1,0.545,0.167,0.218,0,0,0.0551,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0.0906,0,0,0,0 +1,0.545,0.167,0.218,0,0,0.0472,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.26,0,0,0,0.331 +1,0.532,0.0783,0.116,0,0,0.0787,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.275 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.266 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.214 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0238 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.74,0.9,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.339,1,0,0,0.248 +0.667,0.546,0.135,0.23,0,0,0,1,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.217,0.2,0.8,0,0 +0.667,0.546,0.135,0.23,0,0,0.283,0,0.5,0,0.165 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.5,0,0,0,0.248 +0.667,0.546,0.135,0.23,0,0,0.319,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.496,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.205,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.488,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.0354,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.465,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.9,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.5,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.303 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0827 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.248 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.165 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.696 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0.591,0.9,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0.26,0.6,0.4,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,1,0,0 +0.333,0.554,0.0753,0.14,0,0,0.272,0,1,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0.272,0,0.3,0,0 +0.333,0.554,0.0791,0.14,0,0,0.236,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.602,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.26,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.441,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0.488,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.272,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.217,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.9,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,1,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.9,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.413 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.331 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.574,0.4,0,0,0,0,0 +1,0.653,0.474,0.377,0.472,0.9,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.248 +1,0.653,0.474,0.377,0.534,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0.369,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.705,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.46,0.4,0,0,0,0,0 +1,0.562,0.269,0.273,0.455,1,0,0,0,0,0 +1,0.562,0.269,0.273,0,1,0,0,0,0,0 +1,0.562,0.269,0.273,0.517,0.3,0,0,0,0,0 +1,0.562,0.269,0.273,0.472,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.092 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.046 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.175 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.382 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.248 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.248 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.4,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,1,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.165 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.248 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.103 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.205 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,0,0.0493 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.9,0.0739 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.9,0 +0.667,0.546,0.12,0.232,0.58,0.9,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.551,0.4,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.585,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.318,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.46,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.331 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.224 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0997 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.15 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0498 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.165 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.403,0.9,0,0,0,0,0 +1,0.653,0.474,0.377,0.557,1,0,0,0,0,0 +1,0.64,0.664,0.461,0.398,0.8,0,0,0,0,0 +1,0.64,0.664,0.461,0.386,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.205,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.205,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.415,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.398,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.273,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.455,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.472,0,0,0,0,0,0.101 +1,0.563,0.777,0.72,0.284,0,0,0,0,0,0.101 +1,0.563,0.777,0.72,0.241,0,0,0,0,0,0 +1,0.563,0.777,0.72,0.241,0,0,0,0,0,0.165 +1,0.563,0.523,0.496,0.273,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.42,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.33,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.165 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.165 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.426 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.0468 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0.164 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.0827 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.248 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.413 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.331 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.4,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0.331 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0.165 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.248 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.165 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.262 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.369 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0.0888 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0.0827 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.165 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.165 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.251 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0628 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.232 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.0258 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.165 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.0827 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.165 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0.0827 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0.0827 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0.0827 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0.248 +1,0.592,0.201,0.159,0,0,0,0,0,0,0.165 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.592,0.201,0.159,0,0,0,0,0,0,0.248 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.102 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.0512 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.197 +1,0.545,0.182,0.218,0,0,0,0,0,0,0.222 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.296 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0.9,0.0736 +1,0.512,0.0489,0.22,0,0,0,0,0,0.5,0.147 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0.0827 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.121 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.341 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0464 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.101 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0252 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.165 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.0485 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.121 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.248 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.165 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.165 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.331 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.0827 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.225 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.182 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.543,0.9,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.193,0.6,0.4,0,0.178 +1,0.528,0.0241,0.0763,0,0,0,0,0.9,0,0 +1,0.528,0.0241,0.0763,0,0,0.228,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.339,0,0,0,0.212 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.14 +1,0.512,0.0489,0.22,0,0,0.0551,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0.236,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0.429,0,0,0,0.267 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.248 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.248 +0.333,0.575,0.106,0.141,0.545,0.4,0,0,0,0,0.165 +0.333,0.588,0.128,0.146,0.273,0.9,0,0,0,0,0.331 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0.42,0,0,0,0,0,0.0827 +0.667,0.614,0.24,0.242,0.369,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.483,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.574,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0.67,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.352,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.449,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0.602,0,0,0,0,0,0.248 +1,0.64,0.664,0.461,0.381,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.517,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.608,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.483,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.42,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.312,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.165 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.0827 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0942 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0942 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0827 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.121 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0985 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.123 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.235 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.0261 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.188 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.5,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.248 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.318,0.9,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0.392,1,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0.409,0.8,0,0,0,0,0 +1,0.64,0.352,0.338,0.375,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.386,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.5,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.265 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.15 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.413 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.248 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.531 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.185 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.204 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.209 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0679 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.0827 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.397 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0772 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0708 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.204 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0791,0.14,0,0,0.0236,0.9,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.283,0.6,0.4,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,1,0,0 +0.333,0.562,0.0873,0.14,0,0,0.327,0,1,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0.0354,0,1,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,1,0,0 +0.333,0.562,0.0873,0.14,0,0,0.354,0,1,0,0 +0.667,0.563,0.159,0.23,0,0,0.272,0,0.1,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.228,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.205,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.339,0,0,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0.0236,0,0,0,0.1 +0.667,0.614,0.24,0.242,0,0,0.272,0,0,0,0.1 +0.667,0.614,0.24,0.242,0,0,0.272,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0.193,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0.0787,0,0,0,0 +1,0.64,0.352,0.338,0,0,0.181,0,0,0,0.224 +1,0.64,0.352,0.338,0,0,0.26,0,0,0,0.215 +1,0.653,0.474,0.377,0,0,0.398,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.283,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.193,0,0,0,0.0697 +1,0.653,0.474,0.377,0,0,0.465,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.386,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.283,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.453,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.272,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.205,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.26,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.0354,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.35,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.205,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.331,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.362,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.0551,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.693,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.272,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.362,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.567,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.331,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.364 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.268 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0805 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0.0354,0.4,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,1,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0.228,0.1,0.9,0,0 +0.333,0.554,0.0595,0.15,0,0,0.169,0,0.4,0,0 +0.333,0.554,0.0595,0.15,0,0,0.331,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0.508,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.476,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.395,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.448,0,0,0.9,0.0827 +0.333,0.554,0.0648,0.145,0,0,0.236,0,0,0.5,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.579 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.331 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.165 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.165 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.331 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.0749 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.0965 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.0724 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.19 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.188 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.112 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.265 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.182 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.28 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.165 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.165 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.258 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.152 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.216 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.024 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.4,0.22 +1,0.549,0.0444,0.162,0,0,0,0,0,1,0.0732 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.223 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.0744 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.0975 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.146 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.108 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.104 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.0521 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.165 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.9,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,1,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.9,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.443,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.248 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.165 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.101 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.0504 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0926 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0232 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.147 +1,0.549,0.0444,0.162,0.415,0.9,0,0,0,0,0.0827 +1,0.549,0.0444,0.162,0.443,1,0,0,0,0,0 +1,0.549,0.0444,0.162,0.375,1,0,0,0,0,0 +1,0.549,0.0444,0.162,0.369,1,0,0,0,0,0.429 +1,0.546,0.113,0.27,0.21,1,0,0,0,0,0.314 +1,0.546,0.113,0.27,0.21,1,0,0,0,0,0.248 +1,0.546,0.113,0.27,0.665,0.9,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.084 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.248 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.0827 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.165 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.0827 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.165 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.4,0.165 +0.667,0.563,0.301,0.23,0,0,0,0,0,1,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,1,0 +1,0.602,0.465,0.324,0,0,0,0,0,0.4,0.0827 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.248 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.22 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0982 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0246 +1,0.614,0.503,0.324,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0.435 +1,0.615,0.876,0.59,0,0,0,0,0,0,0.172 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0.104 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.103 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0,0.151 +1,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0952 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.143 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.579 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.248 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.0827 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.248 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.9,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.5,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.225 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.1 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.154 +1,0.623,0.321,0.268,0,0,0,0,0,0,0.154 +1,0.623,0.321,0.268,0,0,0,0,0,0,0 +1,0.623,0.321,0.268,0,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0.179 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.227 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.323 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.207 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.165 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0827 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0958 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.11 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0219 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.081 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.7,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.331 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.4,0.0827 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.42,0.4,0,0,0,0,0.165 +1,0.653,0.474,0.377,0.33,1,0,0,0,0,0.331 +1,0.653,0.474,0.377,0.241,1,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0.241,0.3,0,0,0,0,0 +1,0.64,0.664,0.461,0.477,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.562,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.489,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.114 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.103 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.256 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.0769 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0.101 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.252 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0755 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.111 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.413 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0.248 +0.333,0.554,0.0542,0.154,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.2,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.496 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,1,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,1,0.473 +1,0.653,0.474,0.377,0,0,0,0,0,0.3,0.1 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.15 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0993 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.174 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0897 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0448 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0.193 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.165 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.165 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.179 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.22 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.232 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.346 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0908 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0454 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0.0827 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.1,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.165 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0.165 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.9,0.0827 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.5,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.228 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.253 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.591 +1,0.64,0.664,0.461,0.653,0.4,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.602,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.335,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.415,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.312,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.409,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0.103 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0.206 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0.9,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.217,0.4,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,1,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.217,0.1,0.9,0,0 +1,0.528,0.0189,0.0499,0,0,0.331,0,1,0,0.165 +1,0.528,0.0189,0.0499,0,0,0.213,0,0.8,0,0.248 +1,0.528,0.0189,0.0499,0,0,0.374,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0.146,0,0,0,0.0827 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.0236,0,0,0,0.0827 +1,0.528,0.0241,0.0763,0,0,0.362,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.307,0,0,0,0.248 +1,0.528,0.0241,0.0763,0,0,0.0906,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0.555,0,0,0,0.266 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.104 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.0518 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.252 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0997 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0997 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.126 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0984 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0492 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.131 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.343,0.9,0,0,0.248 +0.667,0.546,0.142,0.23,0,0,0,0.6,0.4,0,0.165 +0.667,0.546,0.142,0.23,0,0,0,0,1,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,1,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,1,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,1,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,1,0,0 +1,0.563,0.23,0.321,0,0,0,0,0.1,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0.9,0.0827 +1,0.602,0.287,0.324,0,0,0,0,0,0.5,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.165 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.092 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.046 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.232 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.197 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.125 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,0.2,0.0827 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0.61,0.9,0,0,0 +1,0.546,0.148,0.258,0,0,0.386,1,0,0,0.165 +1,0.546,0.148,0.258,0,0,0,1,0,0,0.0827 +1,0.546,0.148,0.258,0,0,0.669,0.2,0.8,0,0 +1,0.538,0.212,0.362,0,0,0.35,0,1,0,0 +1,0.538,0.212,0.362,0,0,0,0,0.9,0,0 +0.667,0.546,0.148,0.258,0,0,0.272,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.0236,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.35,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.236,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.205,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.319,0,0,0,0.0827 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.26,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.236,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.0827 +0.667,0.546,0.205,0.232,0.494,0.4,0,0,0,0,0.165 +0.667,0.546,0.205,0.232,0.489,1,0,0,0,0,0.0827 +0.667,0.546,0.205,0.232,0,1,0,0,0,0,0.0827 +0.333,0.554,0.111,0.141,0.517,1,0,0,0,0,0.165 +0.333,0.554,0.111,0.141,0.483,1,0,0,0,0,0.331 +0.333,0.554,0.111,0.141,0.369,1,0,0,0,0,0.331 +0.333,0.554,0.129,0.14,0.415,1,0,0,0,0,0.331 +0.333,0.554,0.129,0.14,0,0.4,0,0,0,0,0.0827 +0.333,0.554,0.129,0.14,0.358,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0.506,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0.58,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0.398,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0.381,0,0,0,0,0,0.165 +0.667,0.546,0.274,0.23,0.33,0,0.26,0.4,0,0,0 +0.667,0.546,0.274,0.23,0.54,0,0.374,1,0,0,0 +0.667,0.546,0.274,0.23,0.369,0,0.555,0.1,0.9,0,0.248 +0.667,0.563,0.301,0.23,0,0,0.402,0,0.4,0,0 +0.667,0.563,0.301,0.23,0,0,0.268,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0.339,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0,0,0.0906,0,0,0,0.165 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.301,0.23,0,0,0.35,0,0,0,0 +1,0.602,0.465,0.324,0,0,0.283,0,0,0,0 +1,0.602,0.465,0.324,0,0,0.465,0,0,0,0 +1,0.602,0.465,0.324,0,0,0.0551,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.22 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0979 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0905 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.0475 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0.0933 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0.07 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0515 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0.0827 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0.14 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.103 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.128 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0.4,0 +1,0.546,0.148,0.258,0,0,0,0,0,1,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.0966 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.248 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.248 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.248 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.165 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.9,0.0827 +0.333,0.554,0.111,0.141,0,0,0,0,0,1,0.165 +0.333,0.554,0.111,0.141,0,0,0,0,0,1,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,1,0.0827 +1,0.538,0.298,0.324,0,0,0,0,0,1,0 +1,0.538,0.298,0.324,0,0,0,0,0,1,0 +1,0.538,0.298,0.324,0,0,0,0,0,1,0.248 +1,0.538,0.352,0.32,0,0,0.26,0.4,0,0.1,0 +1,0.538,0.352,0.32,0,0,0,1,0,0,0 +1,0.538,0.352,0.32,0,0,0.421,0.1,0.9,0,0 +1,0.538,0.352,0.32,0,0,0.295,0,1,0,0 +1,0.538,0.352,0.32,0,0,0.146,0,0.8,0,0 +1,0.538,0.352,0.32,0,0,0.283,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.228,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.331,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.283,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.283,0,0,0,0.248 +1,0.563,0.443,0.321,0,0,0.205,0,0,0,0.165 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0.205,0,0,0,0.0827 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0.4,0 +1,0.602,0.465,0.324,0,0,0,0,0,1,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.165 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.248 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0.0827 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0.0827 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0.165 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0.0827 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0827 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.165 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.377 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0236 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.182 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0997 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.265 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.124 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.9,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.9,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.592,0.169,0.159,0,0,0,0,0,0,0.248 +0.333,0.592,0.169,0.159,0,0,0,0,0,0,0 +0.333,0.592,0.169,0.159,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.165 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.513 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.165 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0.248 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0.273 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.286 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.413 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0.165 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0.165 +0.667,0.623,0.321,0.268,0.324,0.9,0,0,0,0,0.0827 +0.667,0.623,0.321,0.268,0.295,1,0,0,0,0,0 +0.667,0.614,0.448,0.324,0.71,0.8,0,0,0,0,0 +0.667,0.614,0.448,0.324,0.511,0,0,0,0,0,0.398 +0.667,0.614,0.448,0.324,0.216,0,0,0,0,0,0.0775 +1,0.64,0.664,0.461,0.244,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.244,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.196 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.195 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.161 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.122 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.101 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.201 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.441 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.323 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.417 +1,0.538,0.111,0.381,0,0,0,0,0,0,0.201 +1,0.538,0.111,0.381,0,0,0,0,0,0,0 +1,0.538,0.111,0.381,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.18 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0444 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0888 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.331 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.331 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.9,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.5,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0.466,0.4,0,0,0,0,0 +1,0.623,0.321,0.268,0.318,1,0,0,0,0,0 +1,0.623,0.321,0.268,0.202,1,0,0,0,0,0.165 +1,0.623,0.321,0.268,0.202,1,0,0,0,0,0 +1,0.653,0.474,0.377,0.409,1,0,0,0,0,0 +1,0.653,0.474,0.377,0.409,1,0,0,0,0,0 +1,0.653,0.474,0.377,0.54,0.1,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.528,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0.511,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.438,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.489,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.523,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0.534,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.443,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.722,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0.42,0,0,0,0,0,0.0949 +1,0.563,0.777,0.72,0.466,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.528,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.506,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.222,0,0,0,0,0,0 +1,0.545,0.167,0.218,0.222,0,0,0,0,0,0 +1,0.545,0.167,0.218,0.432,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.548 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0966 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0827 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.2 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.165 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.214 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0238 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.227 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.177 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.175 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.0987 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.123 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.165 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.123 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.148 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0.5,0.9,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0.517,1,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0.392,0.8,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0.432,0,0.512,0.9,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0.398,0.6,0.4,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.0591,0,1,0,0 +0.333,0.554,0.0595,0.15,0,0,0.319,0,1,0,0.0827 +0.667,0.546,0.103,0.25,0,0,0.0472,0,1,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,1,0,0 +0.667,0.546,0.114,0.24,0,0,0.543,0,1,0,0 +0.667,0.546,0.114,0.24,0,0,0.496,0,0.1,0,0 +0.667,0.546,0.114,0.24,0,0,0.0551,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0.319,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0.26,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.0354,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.543,0,0,0.9,0.165 +0.667,0.546,0.12,0.232,0,0,0.272,0,0,0.5,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.272,0,0,0,0.248 +0.667,0.546,0.12,0.232,0,0,0.476,0,0,0,0.0827 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.634,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.236,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.724,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.248,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.295,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.228,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.283,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0993 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0744 +1,0.64,0.352,0.338,0.352,0.9,0,0,0,0,0 +1,0.64,0.352,0.338,0.42,0.4,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0.585,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.636,0,0,0,0,0,0.215 +1,0.653,0.474,0.377,0.242,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.485,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.517,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.79,0,0,0,0,0,0.342 +1,0.64,0.664,0.461,0.236,0,0,0,0,0,0.129 +1,0.64,0.664,0.461,0.236,0,0,0,0,0.9,0 +1,0.64,0.664,0.461,0.568,0,0,0,0,0.5,0 +1,0.64,0.664,0.461,0.375,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.0944 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.142 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.15 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.165 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.165 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.148 +0.667,0.528,0.0189,0.0499,0,0,0,0,0,0,0.182 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.249 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.273 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.125 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.165 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.228 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.196 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.165 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.165 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.331 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.9,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.3,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.4,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,1,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.2,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0.4,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,1,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0.0827 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0.0827 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0.0827 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.0827 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.248 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0.4,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,1,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.178 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.167 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.121 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.171 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.022 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.447 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0943 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0707 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.171 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0245 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0.364,0.4,0,0,0,0,0 +0.333,0.554,0.146,0.14,0.557,1,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,1,0,0,0,0,0 +0.333,0.562,0.16,0.14,0.42,0.3,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0.477,0,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0.409,0,0,0,0,0,0.248 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0.551,0,0,0,0,0,0.0827 +0.333,0.575,0.167,0.141,0.528,0,0,0,0,0,0 +0.333,0.575,0.167,0.141,0.392,0,0,0,0,0,0 +0.333,0.575,0.167,0.141,0.562,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0.202,0,0,0,0,0.4,0.165 +0.667,0.588,0.316,0.233,0.202,0,0,0,0,1,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.472,0.9,0,0,0,0,0.331 +1,0.64,0.481,0.338,0.443,1,0,0,0,0,0.165 +1,0.64,0.481,0.338,0.341,0.8,0,0,0,0,0 +1,0.64,0.481,0.338,0.534,0,0,0,0,0,0.165 +1,0.653,0.567,0.377,0.67,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.648,0.9,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.472,1,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.534,0.8,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.551,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0926 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0463 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.278 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.103 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.0515 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.0827 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.0827 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.0827 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.0827 +1,0.546,0.113,0.27,0,0,0,0,0,0.4,0.165 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0.319,0.9,0,0,0 +1,0.538,0.16,0.381,0,0,0.283,0.6,0.4,0,0 +1,0.538,0.16,0.381,0,0,0,0,1,0,0 +1,0.538,0.16,0.381,0,0,0.839,0,1,0,0.0827 +1,0.538,0.212,0.362,0,0,0.217,0,1,0,0 +1,0.538,0.212,0.362,0,0,0,0,0.7,0,0 +1,0.538,0.212,0.362,0,0,0.126,0,0,0,0 +1,0.538,0.212,0.362,0,0,0.35,0,0,0,0 +1,0.538,0.212,0.362,0,0,0,0,0,0,0 +1,0.538,0.212,0.362,0,0,0.126,0,0,0,0 +1,0.538,0.253,0.351,0,0,0.126,0,0,0,0.0827 +1,0.538,0.253,0.351,0,0,0.567,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0.283,0,0,0,0.165 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0.272,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.228,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.236,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.138,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.374,0,0,0,0 +1,0.538,0.278,0.335,0,0,0,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.398,0,0,0,0 +1,0.538,0.298,0.324,0,0,0.217,0,0,0,0.165 +1,0.538,0.298,0.324,0,0,0,0,0,0,0.331 +1,0.538,0.298,0.324,0,0,0.465,0,0,0,0.0827 +1,0.538,0.298,0.324,0,0,0.0354,0,0,0,0 +1,0.538,0.298,0.324,0,0,0,0,0,0,0 +1,0.538,0.298,0.324,0,0,0.0906,0,0,0,0.0827 +1,0.538,0.352,0.32,0,0,0.319,0,0,0,0.0827 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.283,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.26,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.213,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.126,0,0,0,0.0827 +1,0.538,0.402,0.32,0,0,0.248,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0.165 +1,0.538,0.402,0.32,0,0,0,0,0,0,0.0827 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.207 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0.4,0 +1,0.64,0.481,0.338,0,0,0,0,0,1,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.331 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.165 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.199 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0239 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.309 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.331 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.266 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.5 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0862 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.204 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.386 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0782 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.128 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0771 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.248 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.331 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.402 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0649 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0.364,0.4,0,0,0,0,0.188 +0.333,0.562,0.0873,0.14,0.614,1,0,0,0,0,0.34 +0.333,0.562,0.0873,0.14,0,1,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0.386,0.3,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0.307,0,0,0,0,0,0.151 +0.333,0.575,0.106,0.141,0.318,0,0,0,0,0,0.19 +0.667,0.588,0.196,0.233,0.432,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0.443,0,0,0,0,0,0.206 +0.667,0.588,0.196,0.233,0.426,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.557,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.426,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.295,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.33,0,0,0,0,0.9,0.248 +1,0.64,0.352,0.338,0,0,0,0,0,1,0.331 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,0.1,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.543,0.9,0,0,0 +1,0.64,0.664,0.461,0,0,0.126,0.6,0.4,0,0 +1,0.615,0.82,0.59,0,0,0.315,0,0.9,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0.307,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.26,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.228,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.236,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.272,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.508,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.135 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0975 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.244 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.139 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0.0982 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0246 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.165 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.187 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.4,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,1,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.248 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.0827 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.135 +1,0.64,0.352,0.338,0,0,0,0,0,0.4,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0.489,0.9,0,0,0,1,0 +0.667,0.623,0.321,0.268,0.597,1,0,0,0,1,0.0827 +1,0.653,0.474,0.377,0.472,0.8,0,0,0,0.8,0 +1,0.653,0.474,0.377,0.415,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.29,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0.29,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.179 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0.205,0.4,0,0,0.0827 +1,0.563,0.777,0.72,0,0,0,1,0,0,0 +1,0.563,0.777,0.72,0,0,0.272,0.1,0.9,0,0 +1,0.563,0.523,0.496,0,0,0.441,0,1,0,0 +1,0.529,0.318,0.386,0,0,0,0,0.8,0,0 +1,0.529,0.318,0.386,0,0,0.248,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.272,0,0,0,0.0827 +1,0.529,0.318,0.386,0,0,0.575,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.488,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.217,0,0,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0,0 +1,0.503,0.141,0.183,0,0,0.465,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.331,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.0551,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.248,0,0,0,0.0827 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.283,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.0906,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.26,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.598,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.205,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.669,0,0,0,0.0827 +1,0.528,0.0236,0.0578,0,0,0.283,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.283,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.217,0,0,0,0.165 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0171,0.0495,0,0,0.535,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.622,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.0551,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.374,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.193,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0.476,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0.5,0,0,0,0.331 +1,0.528,0.0157,0.0495,0,0,0.272,0,0,0,0.579 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.232 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.108 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.331 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.248 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.9,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.5,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.287 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.102 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.23 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.231 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0942 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.118 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.129 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.206 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.32 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.119 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.9,0.226 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.5,0.291 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0979 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0979 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.306 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.125 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.183 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.186 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.439 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0477 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.188 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.182 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.165 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.138 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.248 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.22 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0734 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.1 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.126 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.14 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0989 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.173 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.207 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.413 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.165 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.4,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.261,0.4,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.369,1,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.273,1,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.273,0.3,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0.438,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.403,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.182 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0991 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.124 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.116 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.9,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.5,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.331 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.9,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.352 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.273 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0501 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.496 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.269 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0259 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.524 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0.0977 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0.147 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.218 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0961 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.168 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.231 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.257 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.129 +1,0.615,0.79,0.668,0.597,0.9,0,0,0,0,0 +1,0.615,0.79,0.668,0.409,1,0,0,0,0,0 +1,0.563,0.749,0.788,0.767,0.8,0,0,0,0,0 +1,0.563,0.749,0.788,0.381,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0.193,0.9,0,0,0.248 +1,0.546,0.142,0.263,0,0,0.205,0.6,0.4,0,0 +1,0.546,0.169,0.256,0,0,0,0,1,0,0 +1,0.546,0.169,0.256,0,0,0.126,0,1,0,0.0827 +1,0.546,0.169,0.256,0,0,0.0354,0,0.3,0,0 +0.667,0.554,0.0933,0.153,0,0,0.126,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0.283,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0.248,0,0,0,0.331 +0.667,0.554,0.101,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.228,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.0906,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.441,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.283,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.0906,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0.193,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0.283,0,0,0,0.0827 +0.667,0.554,0.108,0.143,0,0,0.228,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0,0,0,0,0.248 +0.667,0.554,0.108,0.143,0,0,0.0118,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0.205,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0.114,0,0,0,0.0827 +0.667,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0.35,0,0,0,0.0827 +0.667,0.554,0.125,0.142,0,0,0.465,0,0,0,0 +0.667,0.554,0.141,0.142,0,0,0.0551,0,0,0,0 +0.667,0.554,0.141,0.142,0,0,0.319,0,0,0,0.0827 +0.667,0.554,0.141,0.142,0,0,0.193,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0.319,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0.319,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.236,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.283,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.602,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.0906,0,0,0,0.165 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.165 +0.333,0.575,0.162,0.144,0,0,0.283,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0.169,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.0958 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0.168 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.9,0.257 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.5,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0.165 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0.248 +0.667,0.623,0.37,0.289,0.432,0.9,0,0,0,0,0 +1,0.653,0.546,0.408,0.358,1,0,0,0,0,0 +1,0.64,0.718,0.518,0.517,1,0,0,0,0,0 +1,0.64,0.718,0.518,0.778,1,0,0,0,0,0 +1,0.64,0.718,0.518,0,1,0,0,0,0,0.0827 +1,0.614,0.485,0.362,0.42,0.6,0,0,0,0,0 +1,0.614,0.485,0.362,0.438,0,0,0,0,0,0 +1,0.614,0.485,0.362,0.46,0,0,0,0,0,0 +1,0.597,0.569,0.462,0.443,0,0,0,0,0,0 +1,0.597,0.569,0.462,0,0,0,0,0,0,0.0827 +1,0.597,0.569,0.462,0.619,0,0,0,0,0,0 +1,0.597,0.569,0.462,0.364,0,0,0,0,0,0 +1,0.597,0.569,0.462,0.534,0,0,0,0,0,0.0827 +1,0.597,0.569,0.462,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.496 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.101 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0.125 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0.125 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0.9,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,1,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.9,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.0827 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.248 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.165 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.165 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.0827 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.165 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.248 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.248 +1,0.563,0.427,0.329,0,0,0,0,0,0,0.248 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0.165 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.225 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.215 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.165 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.0827 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0.9,0 +1,0.615,0.844,0.668,0,0,0,0,0,0.5,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.269 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0938 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.117 +1,0.512,0.492,0.571,0,0,0.339,0.9,0,0,0 +1,0.512,0.492,0.571,0,0,0.339,0.6,0.4,0,0 +1,0.503,0.155,0.183,0,0,0,0,1,0,0 +1,0.503,0.155,0.183,0,0,0.319,0,1,0,0 +1,0.503,0.155,0.183,0,0,0.0472,0,0.3,0,0 +1,0.503,0.155,0.183,0,0,0.445,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.177 +1,0.503,0.155,0.183,0,0,0.362,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.205,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.283,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0.114,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0.169,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.224 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.0497 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.189 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0473 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.166 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.184 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.27 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.124 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.199 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0.386,0.9,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0.415,1,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0.358,0.8,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0.466,0,0,0,0,0,0.248 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0951 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0951 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.15 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.175 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.4,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,1,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.413 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.4,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,1,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,1,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,1,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.9,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.9,0.248 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.5,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0.307,0.9,0,0,0,0,0 +0.667,0.614,0.232,0.252,0.341,1,0,0,0,0.4,0 +0.667,0.614,0.232,0.252,0.54,0.8,0,0,0,1,0 +0.667,0.614,0.232,0.252,0.494,0,0,0,0,1,0 +1,0.64,0.339,0.353,0.312,0,0,0,0,0.4,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.331 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.17 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.248 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.165 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.197 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0984 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.265 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.249 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0249 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.0827 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.413 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0.699,0.9,0,0,0,0,0 +1,0.64,0.339,0.353,0.375,1,0,0,0,0.4,0 +1,0.653,0.457,0.408,0.443,1,0,0,0,1,0 +1,0.653,0.457,0.408,0.358,1,0,0,0,1,0 +1,0.653,0.457,0.408,0,1,0,0,0,1,0 +1,0.653,0.457,0.408,0,0.6,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,1,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.8,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.248 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0983 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.221 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.114 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.101 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0757 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.186 +1,0.512,0.453,0.571,0,0,0,0,0,0,0.103 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.165 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.248 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0966 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.165 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.165 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.415 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.415 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.205 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.165 +1,0.538,0.107,0.387,0,0,0,0,0,0,0.0827 +1,0.538,0.107,0.387,0,0,0,0,0,0,0.0458 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.137 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.9,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.5,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.103 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.129 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0996 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.149 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.165 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.331 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.371 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0919 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0919 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.131 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.406 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0966 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0966 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.165 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.165 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.216 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.048 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.222 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.074 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.22 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.147 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.9,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.257 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.023 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0.22 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0488 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0827 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.252 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.252 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.325 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.0962 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.0962 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.194 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.9,0.438 +0.333,0.554,0.0461,0.162,0.602,0.4,0,0,0,0.5,0.496 +0.667,0.546,0.0764,0.274,0.449,0.9,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.248 +0.667,0.546,0.0764,0.274,0.545,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0.557,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.9,0.0827 +0.333,0.575,0.103,0.144,0,0,0,0,0,1,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.534,0.9,0,0,0,0,0 +1,0.64,0.64,0.518,0.466,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.438,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.557,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.29,0.2,0,0,0,0,0 +1,0.615,0.79,0.668,0.29,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.331 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.165 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.0827 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.416 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.208 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.191 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0.551 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0.0734 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.248 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0.0827 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0.126,0.4,0,0,0.165 +1,0.653,0.546,0.408,0,0,0,1,0,0,0 +1,0.653,0.546,0.408,0,0,0.429,0.1,0.9,0,0 +1,0.653,0.546,0.408,0,0,0.0906,0,0.4,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0.26,0,0,0,0.0827 +1,0.653,0.546,0.408,0,0,0.169,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.331,0,0,0.9,0 +1,0.64,0.718,0.518,0,0,0.193,0,0,1,0 +1,0.64,0.718,0.518,0,0,0,0,0,0.9,0 +1,0.64,0.718,0.518,0,0,0.26,0,0,0,0.248 +1,0.64,0.718,0.518,0,0,0.272,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.169,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.272,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.579,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.555,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0.0906,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.092 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.046 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.41 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0732 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0238 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.143 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.393 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.165 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.0827 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0.192 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0.0827 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.0925 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.0694 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.331 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.331 +1,0.546,0.169,0.256,0,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.121 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.248 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.0827 +1,0.546,0.184,0.245,0,0,0,0,0,0,0 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.1 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.251 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.125 +1,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0.0827 +0.667,0.546,0.198,0.237,0.483,0.4,0,0,0,0.4,0 +0.667,0.546,0.198,0.237,0.335,1,0,0,0,1,0 +0.667,0.546,0.198,0.237,0.267,1,0,0,0,1,0 +0.667,0.546,0.198,0.237,0,1,0,0,0,0.4,0 +0.667,0.546,0.232,0.235,0,1,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.358,1,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.602,1,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.438,0.5,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.369,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.259,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0.259,0,0,0,0,0,0.331 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0.455,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0.551,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0.597,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.21,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.46,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.466,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.381,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.369,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0.284,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0.5,0,0,0,0,0,0.165 +1,0.602,0.448,0.334,0.455,0,0,0,0,0,0.165 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0.517,0,0,0,0,0,0 +1,0.602,0.448,0.334,0.295,0,0,0,0,0,0 +1,0.64,0.464,0.353,0.472,0,0,0,0,0,0 +1,0.64,0.464,0.353,0.443,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.248 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0.489,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0.511,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.352,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.517,0,0,0,0,0,0.0827 +0.667,0.623,0.37,0.289,0.196,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.196,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.631,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.273,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.239,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.477,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.534,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.364,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.551,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.301,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.386,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0.0913 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.0685 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.165 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.355 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.143 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.0769 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.102 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.344 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.178 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.167 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.413 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.9,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.5,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.165 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.248 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.347,0.9,0,0,0,0,0 +1,0.653,0.457,0.408,0.403,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.278,0.8,0,0,0,0,0 +1,0.64,0.64,0.518,0.443,0,0,0,0,0,0.165 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.438,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.415,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.324,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.415,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.472,0,0,0,0,0,0.165 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0.381,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.409,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.562,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.551,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.483,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.483,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.352,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.517,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.449,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.409,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.443,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0.215 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0.189 +0.667,0.495,0.0212,0.0506,0,0,0,0,0,0,0 +0.667,0.495,0.0212,0.0506,0,0,0,0,0,0,0.0827 +0.667,0.495,0.0212,0.0506,0,0,0,0,0,0,0.363 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.179 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.331 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.248 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.618 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.075 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0.24,0.9,0,0,0.248 +0.667,0.512,0.0474,0.222,0,0,0.126,0.6,0.4,0,0.265 +0.667,0.512,0.0474,0.222,0,0,0,0,0.9,0,0.199 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.333,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0488 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.195 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.248 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.248 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.248 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.165 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0.9,0 +1,0.614,0.232,0.252,0.818,0.4,0,0,0,1,0 +1,0.623,0.31,0.289,0.239,0.9,0,0,0,0.9,0 +1,0.623,0.31,0.289,0.239,0,0,0,0,0,0.0827 +1,0.653,0.457,0.408,0.483,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.773,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.591,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.562,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.602,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.352,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.324,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.426,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.225 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.025 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.19 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0.165 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.9,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.4,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,1,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.9,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.331 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.331 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.426,0.9,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0.472,0.4,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0.494,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.369,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.511,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.744,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.483,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.534,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.517,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.489,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0.443,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.165 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.165 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.339,0.353,0.506,0.4,0,0,0,0,0.0827 +1,0.653,0.457,0.408,0.489,1,0,0,0,0,0 +1,0.653,0.457,0.408,0,1,0,0,0,0,0 +1,0.653,0.457,0.408,0.352,1,0,0,0,0,0 +1,0.653,0.457,0.408,0.869,1,0,0,0,0,0 +1,0.653,0.457,0.408,0.619,1,0,0,0,0,0 +1,0.653,0.457,0.408,0,0.1,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.432,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0.455,0,0,0,0,0,0.104 +1,0.64,0.64,0.518,0.602,0,0,0,0,0,0.207 +1,0.64,0.64,0.518,0.523,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.298,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0.298,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.46,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.54,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.381,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.551,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.523,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.517,0,0,0,0,0,0.102 +1,0.563,0.504,0.542,0.551,0,0,0,0,0,0.154 +1,0.563,0.504,0.542,0.369,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.261 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.102 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.254 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0508 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.208 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.078 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0995 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0995 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.387 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.326 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.424 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0.336 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.108 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.331 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.165 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.103 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.18 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.215 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.0477 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +1,0.538,0.198,0.327,0,0,0,0,0,0,0.336 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.316 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.235 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.0261 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.0827 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0.165 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.5,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.165 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.333,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0.541 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0827 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0994 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.248 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0497 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.168 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0214 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.248 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0919 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0919 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.228 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.127 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.128 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.103 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.9,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.5,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.231 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.185 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.0956 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0956 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.091 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.248 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.26,0.4,0,0,0 +1,0.64,0.339,0.353,0,0,0,1,0,0,0 +1,0.64,0.339,0.353,0,0,0.283,0.1,0.9,0,0 +1,0.64,0.339,0.353,0.511,0.4,0.283,0,1,0.4,0 +1,0.64,0.339,0.353,0.494,1,0.157,0,0.8,1,0 +1,0.64,0.339,0.353,0,1,0.472,0,0,0,0 +1,0.64,0.339,0.353,0.318,1,0.217,0,0,0,0.0827 +1,0.653,0.457,0.408,0.812,1,0,0,0,0,0 +1,0.653,0.457,0.408,0,1,0.283,0,0,0,0 +1,0.653,0.457,0.408,0.409,0.1,0,0,0,0,0 +1,0.653,0.457,0.408,0.477,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.585,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.449,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.619,0.4,0,0,0,0,0.165 +1,0.615,0.79,0.668,0.347,1,0,0,0,0,0.248 +1,0.615,0.79,0.668,0,1,0,0,0,0,0 +1,0.615,0.79,0.668,0.676,0.3,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0.165 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.324,0.9,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.625,1,0,0,0,0,0.165 +0.667,0.546,0.232,0.235,0.568,0.8,0,0,0,0,0.165 +0.667,0.546,0.232,0.235,0.631,0,0,0,0,0,0.0827 +0.667,0.546,0.232,0.235,0.352,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0.477,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.331 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.165 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0.9,0 +1,0.653,0.546,0.408,0,0,0,0,0,0.5,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0.0866 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.165 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.0827 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.165 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.165 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0975 +1,0.474,0.224,0.249,0,0,0,0,0,0,0.122 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0,0.19 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.495,0.0699,0.099,0,0,0,0,0,0,0 +1,0.495,0.0699,0.099,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +1,0.554,0.0636,0.162,0,0,0,0,0,1,0 +1,0.554,0.0636,0.162,0,0,0,0,0,1,0.148 +1,0.554,0.0636,0.162,0,0,0,0,0,1,0.0827 +1,0.546,0.142,0.263,0,0,0,0,0,0.8,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.331 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.1 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.0251 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.248 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.248 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.9,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.5,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0.398,0.4,0,0,0,0,0.0827 +0.667,0.546,0.184,0.245,0.528,1,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,1,0,0,0,0,0.331 +0.667,0.546,0.184,0.245,0.506,1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.386,1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.472,0.1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.29,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.483,0,0,0,0,0,0 +1,0.538,0.287,0.331,0.574,0,0,0,0,0,0.258 +1,0.538,0.339,0.328,0,0,0,0,0,0,0.0464 +1,0.538,0.339,0.328,0,0,0,0,0,0,0 +1,0.538,0.339,0.328,0,0,0,0,0,0,0 +1,0.538,0.339,0.328,0,0,0,0,0,0,0 +1,0.538,0.339,0.328,0,0,0,0,0,0,0.413 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.528,0.9,0,0,0,0,0 +1,0.563,0.427,0.329,0.5,1,0,0,0,0,0 +1,0.602,0.448,0.334,0.642,0.8,0,0,0,0,0 +1,0.602,0.448,0.334,0.489,0,0,0,0,0,0.301 +1,0.602,0.448,0.334,0.284,0,0,0,0,0,0.0728 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0.443,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0.517,0,0,0,0,0,0.259 +0.333,0.588,0.167,0.151,0.312,0,0,0,0,0,0.0705 +0.333,0.588,0.167,0.151,0.202,0,0.339,0.9,0,0,0 +0.667,0.614,0.315,0.252,0.202,0,0.26,0.6,0.4,0,0 +0.667,0.614,0.315,0.252,0.398,0,0.0472,0,1,0,0 +0.667,0.614,0.315,0.252,0.358,0,0.157,0,1,0,0.132 +0.667,0.614,0.315,0.252,0.517,0,0.0551,0,0.3,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0.374,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0.555,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0.406,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0.169,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.421,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.169,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.646,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.13 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.103 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.0772 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0.0827 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.091 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0683 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.439 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0221 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.193 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.331 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.331 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.165 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.331 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.39 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0997 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.194 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.292 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.9,0.119 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.119 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0757 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.435 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.186 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0766 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.138 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.442 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0251 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0.176 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +0.667,0.512,0.0474,0.222,0,0,0.374,0.4,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0.272,1,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0.441,0.1,0.9,0,0 +0.667,0.537,0.0633,0.277,0.506,0.4,0.441,0,1,0,0 +0.667,0.537,0.0633,0.277,0.398,0.9,0,0,1,0,0 +0.667,0.537,0.0633,0.277,0,0,0.398,0,1,0,0 +0.667,0.537,0.0633,0.277,0.358,0,0.126,0,0.1,0,0 +0.667,0.546,0.0764,0.274,0.347,0,0.283,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0.272,0,0,0,0 +0.667,0.546,0.0764,0.274,0.33,0,0.331,0,0,0,0 +0.667,0.546,0.0764,0.274,0.261,0,0.0236,0,0,0,0 +0.667,0.546,0.0764,0.274,0.642,0,0.0551,0,0,0,0.0827 +0.667,0.546,0.0764,0.274,0,0,0.0354,0,0,0,0 +0.667,0.546,0.0894,0.263,0.46,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0.622,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0.217,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0.283,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0.0118,0,0,0,0.165 +0.667,0.546,0.0996,0.256,0,0,0.0236,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.689,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.248,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.453,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0996,0.256,0,0,0.374,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.307,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.248,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.319,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.0472,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.543,0,0,0,0.165 +0.667,0.546,0.11,0.245,0,0,0.0551,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.319,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.657,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.26,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.228,0,0,0,0.248 +0.667,0.546,0.116,0.237,0,0,0.272,0,0,0,0.496 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0.496,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.248 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.5,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.22 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.321 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0827 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0934 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.0467 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.248 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.165 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0.115 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.248 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.4,0.165 +0.667,0.537,0.0633,0.277,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0688 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0993 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.174 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.474 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.341 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0703 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0703 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.409,0.9,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0.295,1,0,0,0.165 +0.667,0.554,0.0657,0.143,0,0,0.602,1,0,0,0 +0.667,0.554,0.0657,0.143,0,0,0.126,1,0,0,0.248 +0.667,0.554,0.0657,0.143,0,0,0.102,1,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,1,0,0,0 +0.667,0.554,0.073,0.142,0,0,0.0906,0.1,0.9,0,0.0827 +0.667,0.554,0.073,0.142,0,0,0.0354,0,1,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,1,0,0 +0.667,0.554,0.073,0.142,0,0,0.567,0,1,0,0 +0.667,0.554,0.073,0.142,0,0,0.126,0,0.1,0,0 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0.362,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0.26,0,0,0,0.0827 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0.283,0,0,0,0.248 +0.667,0.554,0.0766,0.142,0,0,0.217,0,0,0,0.165 +0.667,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.667,0.562,0.0846,0.143,0,0,0.61,0,0,0,0.165 +1,0.563,0.153,0.236,0,0,0.429,0,0,0,0 +1,0.563,0.153,0.236,0,0,0.409,0,0,0,0 +1,0.563,0.153,0.236,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0.0118,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0.272,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0.567,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0.362,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0.26,0,0,0,0.248 +0.667,0.588,0.19,0.239,0,0,0.236,0,0,0,0.101 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.227 +0.667,0.614,0.232,0.252,0,0,0.386,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0.457,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0.0551,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0.339,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0.701,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0.0118,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0.0906,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.579,0.274,0.256,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.214 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.189 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.248 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.306 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.107 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.268 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.103 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.165 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.143 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.154 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.165 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0.534,0.4,0,0,0,0,0 +0.333,0.592,0.163,0.169,0.381,1,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,1,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.42,0.3,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.352,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.318,0.9,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.369,1,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0.733,0.8,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.494,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.185,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0.185,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0.392,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0.46,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0.4,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,1,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,1,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,1,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.9,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.165 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.104 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0.422 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0.9,0 +1,0.495,0.0314,0.104,0,0,0,0,0,1,0.103 +1,0.512,0.0474,0.222,0,0,0,0,0,1,0.258 +1,0.512,0.0474,0.222,0,0,0,0,0,1,0.186 +1,0.512,0.0474,0.222,0,0,0,0,0,1,0.165 +1,0.512,0.0474,0.222,0,0,0,0,0,0.8,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.248 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.248 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.165 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.1 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.201 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.4,0 +1,0.64,0.64,0.518,0,0,0,0,0,1,0.0488 +1,0.64,0.64,0.518,0,0,0,0,0,1,0.195 +1,0.64,0.64,0.518,0.562,0.4,0,0,0,1,0 +1,0.615,0.79,0.668,0.523,1,0,0,0,0.9,0 +1,0.615,0.79,0.668,0,1,0,0,0,0,0 +1,0.615,0.79,0.668,0.29,0.3,0,0,0,0,0 +1,0.597,0.532,0.462,0.477,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.841,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.443,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.438,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.562,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.892,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.466,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.67,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.398,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.409,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.443,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0.0827 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.528,0.9,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.443,1,0,0,0,0,0 +1,0.554,0.0636,0.162,0.256,1,0,0,0,0,0 +1,0.554,0.0636,0.162,0.534,1,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0.162 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0.331 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0.1 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0.251 +0.667,0.554,0.0803,0.156,0,0.6,0,0,0,0,0.226 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0.0827 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.9,0 +1,0.538,0.244,0.359,0,0,0,0,0,1,0.0827 +1,0.538,0.268,0.343,0,0,0,0,0,1,0 +1,0.538,0.268,0.343,0,0,0,0,0,1,0 +1,0.538,0.268,0.343,0,0,0,0,0,0.4,0 +1,0.538,0.268,0.343,0,0,0,0,0,0,0 +1,0.538,0.268,0.343,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.4,0.165 +0.333,0.575,0.162,0.144,0,0,0,0,0,1,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.165 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.165 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.592,0.194,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.194,0.169,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0.0827 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0.165 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.333,0.579,0.294,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.294,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.294,0.256,0,0,0,0,0,0,0.246 +0.333,0.562,0.272,0.296,0,0,0,0,0,0,0.123 +0.333,0.562,0.272,0.296,0,0,0,0,0,0,0.198 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0.194 +0.667,0.529,0.334,0.397,0,0,0,0,0,0,0.169 +0.667,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0.0827 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0,0.0917 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.0459 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.177 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.218 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.0727 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.3 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.0827 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.165 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0.276 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.248 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.165 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0.0827 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.9,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.5,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0.0993 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0.0496 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0.114 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0.248 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0.165 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.397 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0248 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.185 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.115 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.22 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.122 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0888 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0222 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.331 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.331 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.9,0.224 +0.333,0.575,0.103,0.144,0,0,0,0,0,1,0.0249 +1,0.602,0.276,0.334,0,0,0,0,0,1,0 +1,0.602,0.276,0.334,0,0,0,0,0,1,0 +1,0.602,0.276,0.334,0,0,0,0,0,1,0.0955 +1,0.64,0.339,0.353,0,0,0,0,0,0.8,0.0477 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.218 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.0242 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0966 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0483 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.121 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.165 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.194 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.413 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.265 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.248 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.413 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0792 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.9,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.5,0.104 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.155 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.163 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.046 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.138 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.9,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.5,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0.483,0.4,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0.551,1,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,1,0,0,0,0,0 +0.333,0.554,0.073,0.142,0.386,1,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0.341,1,0,0,0,0,0 +0.333,0.554,0.073,0.142,0.386,1,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0.403,1,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,1,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,1,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,1,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0.3,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.166 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.179 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.024 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.4,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.195 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.165 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.168 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0506 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0897 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.9,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.5,0.0827 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0.646,0.9,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0.228,0.6,0.4,0,0 +0.333,0.554,0.0577,0.153,0,0,0.295,0,1,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,1,0,0 +0.333,0.554,0.0577,0.153,0,0,0.157,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.457,0,1,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0.126,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.453,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.453,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.248,0,1,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0.488,0,0.1,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.533 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.181 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.147 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.198 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.9,0.165 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.3,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,1,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.165 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.218 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.0484 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0858 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0.331,0.4,0,0,0.098 +1,0.512,0.0474,0.222,0,0,0.657,1,0,0,0.147 +1,0.512,0.0474,0.222,0,0,0,0.1,0.9,0,0 +1,0.512,0.0474,0.222,0,0,0.205,0,1,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,1,0,0.0983 +1,0.512,0.0474,0.222,0,0,0.331,0,1,0,0.172 +1,0.512,0.0474,0.222,0,0,0.362,0,0.1,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.262 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.257 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.0514 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0997 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.331 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.9,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,1,0.0827 +0.667,0.546,0.116,0.237,0,0,0,0,0,1,0 +0.667,0.546,0.116,0.237,0,0,0.205,0.9,0,1,0 +0.667,0.546,0.116,0.237,0,0,0.228,0.6,0.4,1,0 +0.667,0.546,0.13,0.235,0,0,0.0906,0,0.9,0.8,0 +0.667,0.546,0.13,0.235,0,0,0.307,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.228,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.398,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.307,0,0,0,0.0827 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.272,0,0,0,0.0827 +0.667,0.546,0.137,0.235,0,0,0.52,0,0,0,0.248 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.295,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.283,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0.465,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.331 +1,0.563,0.222,0.329,0,0,0.114,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0.0354,0,0,0,0 +1,0.563,0.222,0.329,0,0,0.228,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.295,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.193,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.228,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.362,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.283,0,0,0.4,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +1,0.64,0.339,0.353,0,0,0.283,0,0,1,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0.0936 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0.117 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.2,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.612 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.151 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.614,0.432,0.362,0,0,0,0,0,0,0.214 +1,0.614,0.432,0.362,0,0,0,0,0,0,0.17 +1,0.614,0.432,0.362,0,0,0,0,0,0,0.413 +1,0.614,0.432,0.362,0.511,0.4,0,0,0,0,0.248 +1,0.597,0.532,0.462,0.375,0.9,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.608,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.449,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.477,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.375,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.39 +1,0.563,0.504,0.542,0.42,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.432,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.523,0,0,0,0,0,0.248 +1,0.563,0.504,0.542,0.585,0,0,0,0,0,0.165 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.59 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.224 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.19 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0605 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.165 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.293 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0975 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.245 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.0245 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.557 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.254 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.21 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0.869,0.9,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.443,1,0,0,0,0,0.165 +0.667,0.588,0.19,0.239,0.267,0.8,0,0,0,0,0 +0.667,0.588,0.19,0.239,0.472,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0.256,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0.256,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.5,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.248 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.248 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.248 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.621 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.0927 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0927 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.0827 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.1 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.201 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.145 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0.4,0.203 +1,0.548,0.113,0.286,0,0,0,0,0,1,0.254 +1,0.548,0.113,0.286,0,0,0,0,0,1,0 +1,0.548,0.113,0.286,0,0,0,0,0,0.5,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.0965 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.0724 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.175 +1,0.542,0.212,0.392,0,0,0,0,0,0.4,0.1 +1,0.542,0.212,0.392,0,0,0,0,0,1,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.143 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.0956 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.165 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0.528,0.4,0,0,0,0,0 +0.667,0.548,0.204,0.251,0.335,1,0,0,0,0,0 +0.667,0.548,0.24,0.249,0.278,1,0,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0.278,1,0,0,0,0.4,0 +0.667,0.548,0.24,0.249,0.608,0.8,0,0,0,1,0 +0.667,0.548,0.24,0.249,0.614,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0.591,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.165 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.4,0.0827 +0.667,0.591,0.315,0.259,0,0,0,0,0,1,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,1,0.135 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.5,0.165 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.159 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.338 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.0766 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.229 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.051 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0849 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0614 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.244 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.183 +1,0.516,0.509,0.561,0,0,0,0,0,0,0.125 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0.2 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0.165 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0.0827 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0.331 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.212 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.0827 +1,0.548,0.113,0.286,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.248 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.331 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.248 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.165 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.102,0.4,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,1,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.61,1,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.0551,0.6,0.4,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0,0,1,0,0 +0.667,0.548,0.273,0.249,0,0,0.362,0,1,0,0 +0.667,0.548,0.273,0.249,0,0,0.622,0,1,0,0 +0.667,0.548,0.273,0.249,0,0,0.201,0,1,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,1,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,0.1,0.4,0.0827 +0.667,0.564,0.159,0.15,0,0,0,0,0,1,0 +0.667,0.564,0.159,0.15,0,0,0.126,0,0,1,0 +0.667,0.564,0.159,0.15,0,0,0.236,0,0,0.5,0 +0.667,0.564,0.159,0.15,0,0,0.488,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.555,0,0,0,0.165 +0.667,0.591,0.315,0.259,0,0,0.339,0,0,0,0 +1,0.606,0.464,0.363,0,0,0.228,0,0,0,0 +1,0.606,0.464,0.363,0,0,0.394,0,0,0,0 +1,0.606,0.464,0.363,0,0,0.205,0,0,0,0.0827 +1,0.606,0.464,0.363,0,0,0.283,0,0,0,0 +1,0.645,0.479,0.404,0,0,0.512,0,0,0,0.0827 +1,0.645,0.479,0.404,0,0,0.433,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0.228,0,0,0,0 +1,0.645,0.479,0.404,0,0,0.217,0,0,0,0.165 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.248 +1,0.658,0.565,0.501,0,0,0.15,0,0,0,0 +1,0.658,0.565,0.501,0,0,0.331,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0.0551,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0879 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0827 +1,0.619,0.873,0.806,0,0,0,0,0,0,0.151 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.165 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0969 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.121 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.165 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.286 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0958 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0479 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.182 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.161 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.4,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.248 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.0827 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.288 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.347 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0993 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.146 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0243 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0.676,0.9,0,0,0,0,0 +0.667,0.6,0.55,0.554,0.375,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.58,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.54,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.259,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.259,0.7,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.538,0.0323,0.139,0,0,0,0,0,1,0.12 +1,0.538,0.0323,0.139,0.5,0.9,0,0,0,0,0.131 +1,0.538,0.0323,0.139,0.597,1,0,0,0,0,0 +1,0.514,0.0488,0.228,0.466,0.9,0,0,0,0,0 +1,0.514,0.0488,0.228,0.545,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0.205,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0.205,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0.318,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0.432,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.244 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.165 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.0827 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.213 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.0943 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.315 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0942 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0942 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.4,0.0998 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0.125 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.248 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.43 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.364 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.521 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.0238 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.167 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.497,0.0158,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.104 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.156 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.178 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.195 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.367 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0246 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.592 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.446 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.256 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.248 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.4,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0.248 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +1,0.568,0.23,0.351,0,0,0,0,0,0,0 +1,0.568,0.23,0.351,0,0,0,0,0,0,0.331 +1,0.568,0.23,0.351,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.4,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.9,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.193 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.191 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.171 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.0489 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.248 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.182 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0.0496 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0.0827 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.201 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.165 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0.0354,0.4,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0.205,1,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.0472,0.1,0.9,0,0 +0.333,0.555,0.0676,0.15,0,0,0.331,0,0.4,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.791,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.488,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.0787,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.319,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.283,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.882,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0.236,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.579,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.488,0,0,0,0.248 +0.333,0.555,0.0789,0.149,0,0,0.252,0,0,0,0.331 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.283,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0.517,0.9,0,0,0,0,0.496 +0.333,0.564,0.0871,0.15,0.648,1,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.386,0.9,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.506,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.222,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.222,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.58,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.585,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.438,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.9,0 +1,0.645,0.351,0.404,0.369,0,0,0,0,0.5,0 +1,0.645,0.351,0.404,0.67,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0.358,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.426,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.29,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.426,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.42,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.506,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.568,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.42,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.727,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.455,0,0,0,0,0,0.0827 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.352,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.0827 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.331 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.165 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.096 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.231 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.101 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.253 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0253 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.4,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0.248 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.5,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.495 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.0503 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.462 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.812 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.16 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.104 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.104 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.187 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.231 +1,0.542,0.11,0.404,0,0,0,0,0,0.9,0.165 +1,0.542,0.11,0.404,0,0,0,0,0,0.5,0.0827 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.165 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.4,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.4,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.331 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.165 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.626,0.32,0.351,0,0,0,0,0,0,0 +1,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.102 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.254 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.127 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.4,0.0827 +0.667,0.6,0.55,0.554,0,0,0,0,0,1,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.268 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.428 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0726 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.0968 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.413 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.102 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.229 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.218 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.165 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.186 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0517 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.186 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0.4,0.0827 +1,0.551,0.0444,0.167,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0,0 +0.667,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.4,0 +1,0.542,0.212,0.392,0,0,0,0,0,1,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.165 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.4,0.0827 +0.667,0.548,0.191,0.259,0,0,0,0,0,1,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.414 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.187 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.232 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.154 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0.179 +1,0.542,0.351,0.349,0,0,0,0,0,0,0.192 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0.0936 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0.9,0 +1,0.542,0.401,0.349,0,0,0,0,0,1,0 +1,0.542,0.401,0.349,0,0,0,0,0,1,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.159 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0473 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.225 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.317 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.261 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0.248 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.206 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0.0966 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0.0966 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0.166 +0.667,0.617,0.501,0.454,0,0,0.126,0.4,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,1,0,0,0 +0.667,0.617,0.501,0.454,0,0,0.339,0.1,0.9,0,0 +0.667,0.617,0.501,0.454,0,0,0.126,0,0.4,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.217,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.248,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.465,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.157,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.193,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0.153 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.23 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0766 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.234 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.135 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.141 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.169 +1,0.555,0.0826,0.164,0,0,0,0,0,0.4,0.165 +1,0.555,0.0826,0.164,0,0,0,0,0,1,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.0897 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.0448 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0.338 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0995 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0498 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.165 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.331 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.4 +1,0.542,0.297,0.352,0.426,0.9,0,0,0,0,0 +1,0.542,0.297,0.352,0.466,1,0,0,0,0.4,0.0827 +1,0.542,0.297,0.352,0.409,0.9,0,0,0,1,0.0374 +1,0.542,0.297,0.352,0.312,0,0,0,0,0,0.0187 +1,0.542,0.297,0.352,0.472,0,0,0,0,0,0.165 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0.489,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.263 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.122 +1,0.542,0.401,0.349,0,0,0,0,0,0,0.0827 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.248 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.165 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.165 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.0827 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.248 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.165 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.229 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0993 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.114 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0228 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.257 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.377 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.227 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.9,0.409 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.5,0.265 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.266 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0977 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0977 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.517,0.9,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.477,1,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0.449,0.9,0,0,0,0,0.248 +0.333,0.555,0.0593,0.16,0.688,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0.455,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.5,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.506,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.375,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.438,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.483,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.9,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.5,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.248 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.331 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0.169,0.4,0,0,0 +1,0.645,0.351,0.404,0,0,0.35,1,0,0,0 +1,0.645,0.351,0.404,0,0,0.0354,0.1,0.9,0,0 +1,0.645,0.351,0.404,0,0,0.126,0,1,0,0 +1,0.645,0.351,0.404,0,0,0,0,1,0,0 +1,0.645,0.351,0.404,0.517,0.9,0.76,0,1,0,0 +1,0.645,0.351,0.404,0.341,1,0.39,0,1,0,0.165 +1,0.658,0.473,0.501,0.568,0.9,0.177,0,1,0,0 +1,0.658,0.473,0.501,0.398,0,0.339,0,1,0,0 +1,0.658,0.473,0.501,0.398,0,0.146,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.295,0,0,0,0 +1,0.658,0.473,0.501,0.398,0,0.0669,0,0,0,0 +0.667,0.626,0.32,0.351,0.267,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.0958 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.0479 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.315 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0,0.144 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.267 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.101 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.51 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.1 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.201 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.348 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.271 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.256 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0512 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.4,0.165 +0.667,0.548,0.0788,0.286,0,0,0,0,0,1,0.331 +0.667,0.548,0.0788,0.286,0,0,0,0,0,1,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.5,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.413 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0.248 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.247 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.102 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0254 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.152 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0914 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.248 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.234 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.165 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0.543,0.9,0,0,0.0827 +1,0.538,0.0323,0.139,0,0,0.315,1,0,0,0.0827 +1,0.54,0.0653,0.284,0,0,0,1,0,0,0 +1,0.54,0.0653,0.284,0,0,0.307,1,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0.717,1,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0.169,1,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0.236,0.2,0.8,0,0 +0.667,0.551,0.0406,0.167,0,0,0.457,0,0.5,0,0 +0.667,0.555,0.0473,0.168,0,0,0.52,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.165 +0.667,0.555,0.0473,0.168,0,0,0.465,0,0,0,0.165 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0.453,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0.0551,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.0551,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.157,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.248,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.252,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +0.667,0.591,0.196,0.259,0.659,0.4,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0.528,1,0,0,0,0,0.248 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.528,1,0,0,0,0,0.102 +0.667,0.617,0.239,0.286,0.551,1,0,0,0,0,0.255 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0.0255 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0.6,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0986 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.222 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.164 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.103 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.232 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.165 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.4,0 +1,0.619,0.817,0.806,0,0,0,0,0,1,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.206 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.0972 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.17 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0.341,0.4,0,0,0,0,0 +1,0.531,0.317,0.391,0.443,1,0,0,0,0,0 +1,0.531,0.317,0.391,0.273,1,0,0,0,0,0 +1,0.546,0.167,0.22,0.273,0.4,0,0,0,0,0 +1,0.533,0.0781,0.116,0.432,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0.488,0.9,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0.307,0.6,0.4,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0.9,0,0 +0.333,0.555,0.0593,0.16,0,0,0.398,0,0,0,0.413 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0.476,0.9,0,0,0 +0.667,0.548,0.113,0.259,0,0,0.283,0.6,0.4,0,0.165 +0.667,0.548,0.119,0.251,0,0,0,0,0.9,0,0 +0.667,0.548,0.119,0.251,0,0,0.283,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0.272,0,0,0,0.165 +0.667,0.548,0.119,0.251,0,0,0,0,0,0,0.165 +0.667,0.548,0.119,0.251,0,0,0.319,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0.228,0,0,0,0.0827 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.126,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.283,0,0,0,0.165 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.134,0.249,0,0,0.26,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.236,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0.394,0,0,0,0.248 +0.667,0.548,0.142,0.249,0,0,0.646,0,0,0,0.248 +0.667,0.548,0.142,0.249,0,0,0.455,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0.148,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0.319,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0.488,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.165 +1,0.568,0.23,0.351,0,0,0.283,0,0,0.4,0.0827 +1,0.568,0.23,0.351,0,0,0.272,0,0,1,0 +1,0.568,0.23,0.351,0,0,0.398,0,0,0,0.0827 +1,0.568,0.23,0.351,0,0,0.622,0,0,0,0.248 +1,0.606,0.286,0.363,0,0,0.228,0,0,0,0.165 +1,0.606,0.286,0.363,0,0,0.622,0,0,0,0 +1,0.606,0.286,0.363,0,0,0.374,0,0,0.4,0 +1,0.606,0.286,0.363,0,0,0.283,0,0,1,0 +1,0.606,0.286,0.363,0,0,0.248,0,0,1,0 +1,0.606,0.286,0.363,0,0,0.217,0,0,0.5,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.26,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.236,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.567,0,0,0,0.0827 +1,0.645,0.351,0.404,0,0,0.362,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.295,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.26,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0972 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0486 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.13 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0.229 +1,0.6,0.55,0.554,0,0,0,0,0,0,0.178 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.268 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.118 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.409 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.238 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.331 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.258 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.2 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.209 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.165 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.287 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.305 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.9,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.5,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.119 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.355 +0.667,0.548,0.0788,0.286,0.705,0.4,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.205,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.205,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.625,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.705,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.341,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0.2,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.483,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.608,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.614,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.42,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.207,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.259,0.207,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.54,0,0,0,0,0,0.248 +0.667,0.548,0.113,0.259,0.676,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.4,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,1,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,1,0.165 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.5,0 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.102 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.153 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.0977 +1,0.546,0.167,0.22,0,0,0,0,0,0,0.0977 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.223 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.229 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0.9,0 +1,0.538,0.0301,0.139,0,0,0,0,0,1,0 +1,0.538,0.0301,0.139,0,0,0,0,0,1,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0827 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.0827 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.165 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.263 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.221 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.0827 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.194 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.165 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.0252 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.177 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.176 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.0466 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.182 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.315 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.16 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.342 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.141 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.656,0,0,0.0354,0.4,0,0,0 +1,0.645,0.743,0.656,0,0,0,1,0,0,0 +1,0.645,0.743,0.656,0,0,0.181,1,0,0,0 +1,0.645,0.743,0.656,0,0,0.248,0.6,0.4,0,0 +1,0.645,0.743,0.656,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0.126,0,1,0,0 +1,0.619,0.873,0.806,0,0,0.283,0,0.3,0,0 +1,0.619,0.873,0.806,0,0,0.0906,0,0,0,0 +1,0.619,0.873,0.806,0,0,0.315,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.128 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0,0.223 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0,0.124 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.102 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.153 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.22 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.0979 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0.165 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0.331 +1,0.555,0.104,0.154,0,0,0,0,0,0,0.0827 +1,0.555,0.104,0.154,0,0,0,0,0,0.4,0 +1,0.555,0.104,0.154,0,0,0,0,0,1,0 +1,0.555,0.104,0.154,0,0,0,0,0,0,0 +1,0.555,0.104,0.154,0,0,0,0,0,0,0 +1,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0.0827 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.248 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.165 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.0952 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.143 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0.224 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.168,0,0,0,0,0,0,0.0827 +0.667,0.589,0.172,0.168,0.438,0.4,0,0,0,0,0.0827 +0.667,0.589,0.172,0.168,0.46,1,0,0,0,0,0 +0.667,0.589,0.172,0.168,0,1,0,0,0,0,0 +0.667,0.589,0.172,0.168,0.415,1,0,0,0,0,0 +0.667,0.589,0.172,0.168,0.364,1,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.506,1,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.432,1,0,0,0,0,0 +0.667,0.594,0.2,0.2,0,0.6,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.534,0,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.29,0,0,0,0,0,0.0827 +0.667,0.594,0.2,0.2,0.432,0,0,0,0,0,0 +0.667,0.589,0.26,0.252,0.574,0,0,0,0,0,0.0827 +0.667,0.589,0.26,0.252,0,0,0.339,0.4,0,0,0 +0.667,0.589,0.26,0.252,0,0,0,1,0,0,0 +0.667,0.589,0.26,0.252,0,0,0.157,1,0,0,0 +0.667,0.589,0.26,0.252,0,0,0.339,0.6,0.4,0,0 +0.667,0.589,0.26,0.252,0,0,0,0,1,0,0 +1,0.6,0.588,0.554,0,0,0.272,0,1,0,0 +1,0.6,0.588,0.554,0,0,0.217,0,1,0,0 +1,0.6,0.588,0.554,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0.579,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,1,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,1,0,0 +1,0.568,0.806,0.851,0,0,0,0,0.2,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.165 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.165 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.248 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.173 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0469 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.164 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.4,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,1,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,1,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.716,0.4,0,0,0,0,0 +0.333,0.594,0.168,0.2,0.267,1,0,0,0,0,0 +0.333,0.594,0.168,0.2,0.267,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0.625,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0.403,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0.358,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.0879 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0.0827 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0.219 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.0729 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0.182 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.026 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.417 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.377 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.221 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0975 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.146 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0.394 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0.165 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.248 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.0827 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.292 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.195 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.215 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.0478 +1,0.542,0.131,0.392,0,0,0,0,0,0,0 +1,0.542,0.131,0.392,0,0,0,0,0,0,0 +1,0.542,0.131,0.392,0,0,0,0,0,0,0.0885 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0443 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0827 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.126 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.619,0.9,0,0,0,0,0.553 +0.667,0.548,0.103,0.27,0.364,1,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.682,0.9,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.54,0,0,0,0,0,0.0771 +0.667,0.548,0.113,0.259,0.179,0,0,0,0,0,0.0257 +0.667,0.548,0.113,0.259,0.179,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.409,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.259,0.46,0,0,0,0,0,0.248 +0.667,0.548,0.119,0.251,0.352,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0.409,0,0.146,0.4,0,0,0.248 +0.333,0.555,0.0676,0.15,0.489,0,0,1,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0.272,0.1,0.9,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0.4,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.4,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0933 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.07 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.105 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.171 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.105 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.225 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.452 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0919 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0919 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0.283,0.4,0,1,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,1,0,1,0 +0.667,0.538,0.0323,0.139,0,0,0,0.1,0.9,0,0.369 +0.667,0.538,0.0323,0.139,0,0,0,0,1,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0.8,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.333,0.538,0.0323,0.139,0,0,0,0,0,0,0.0853 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.0213 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.226 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.176 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.308 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0502 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0623 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.268 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0987 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.247 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0247 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.26 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.13 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.128 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.4,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,1,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0956 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.119 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.108 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.381,0.9,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.295,1,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.318,0.9,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.517,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0.409,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.236,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.236,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.352,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.551,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.864,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.267,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.42,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.352,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0.597,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0.386,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.477,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.477,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.581,0.283,0.302,0,0,0,0,0,0,0 +1,0.581,0.283,0.302,0.517,0,0,0,0,0,0 +1,0.581,0.283,0.302,0.608,0,0,0,0,0,0.256 +1,0.564,0.269,0.317,0.273,0,0,0,0,0,0.192 +1,0.564,0.269,0.317,0.54,0,0,0,0,0,0 +1,0.564,0.269,0.317,0.318,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.215 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0239 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.383 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.103 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.103 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.9,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.331 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.248 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,1,0.9,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.283,1,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0.0906,1,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0.1,0.9,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0.4,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.386,0.4,0,0,0,0,0 +1,0.645,0.662,0.656,0.369,1,0,0,0,0,0 +1,0.645,0.662,0.656,0,1,0,0,0,0,0 +1,0.645,0.662,0.656,0.403,0.4,0,0,0,0,0 +1,0.645,0.662,0.656,0.523,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.574,0,0,0,0,0,0.165 +1,0.645,0.662,0.656,0.352,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.545,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.443,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0.0827 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0891 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0445 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.206 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,1,0.165 +0.667,0.538,0.0323,0.139,0,0,0,0,0,1,0.248 +0.667,0.538,0.0323,0.139,0,0,0,0,0,1,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.3,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.557,0.4,0,0,0,0,0.165 +0.333,0.551,0.0406,0.167,0.47,1,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0.235,1,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0.551,0.4,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0.386,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0.5,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.248 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.331 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.9,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,1,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0 +1,0.568,0.23,0.351,0,0,0,0,0,1,0 +1,0.606,0.286,0.363,0,0,0,0,0,0.9,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.363,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.157,0.4,0,0,0 +1,0.645,0.351,0.404,0,0,0.362,1,0,0,0 +1,0.645,0.351,0.404,0,0,0.248,0.1,0.9,0,0 +1,0.645,0.351,0.404,0,0,0.193,0,1,0,0 +1,0.658,0.473,0.501,0,0,0,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.339,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.319,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.0354,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.374,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.283,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,0.5,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.248 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.165 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0827 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0827 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.181 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0414 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.231 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.185 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.0827 +1,0.548,0.113,0.286,0,0,0,0,0,0.4,0.0897 +1,0.548,0.113,0.286,0,0,0,0,0,1,0.0448 +1,0.548,0.113,0.286,0,0,0,0,0,1,0 +1,0.548,0.113,0.286,0,0,0,0,0,0.5,0.0827 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.117 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.227 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.101 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0.265 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0.0496 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.0827 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.331 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.331 +0.333,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.4,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,1,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.9,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0911 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0456 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.248 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.165 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.197 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.074 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.4,0.0827 +0.333,0.589,0.172,0.168,0,0,0,0,0,1,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0.4,0 +1,0.658,0.565,0.501,0,0,0,0,0,1,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0.4,0 +1,0.645,0.743,0.656,0,0,0,0,0,1,0 +1,0.645,0.743,0.656,0.284,0.9,0,0,0,0,0.208 +1,0.645,0.743,0.656,0.21,1,0,0,0,0,0 +1,0.645,0.743,0.656,0.722,0.9,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0.466,0,0,0,0,0,0 +1,0.619,0.873,0.806,0.472,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0.392,0,0,0,0,0,0.0991 +1,0.619,0.873,0.806,0.477,0,0,0,0,0,0.124 +1,0.568,0.806,0.851,0.398,0,0,0,0,0,0 +1,0.568,0.806,0.851,0.625,0,0.272,0.4,0,0,0 +1,0.568,0.806,0.851,0,0,0,1,0,0,0 +1,0.568,0.806,0.851,0,0,0.193,0.1,0.9,0,0 +1,0.568,0.806,0.851,0,0,0.283,0,0.4,0,0 +1,0.566,0.543,0.584,0,0,0.252,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.236,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.465,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.0551,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.339,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0.705,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.0949 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0949 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0.222 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0.215 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0.67,0.9,0,0,0,0,0.165 +1,0.548,0.113,0.286,0.403,1,0,0,0,0,0 +1,0.548,0.113,0.286,0.574,0.9,0,0,0,0,0 +1,0.548,0.113,0.286,0.352,0,0,0,0,0,0.248 +1,0.548,0.113,0.286,0.182,0,0,0,0,0,0 +1,0.548,0.113,0.286,0.182,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0.165 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0.165 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.165 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0.4,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,1,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.184 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.178 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.409,0.9,0,0,0.248 +0.667,0.548,0.24,0.249,0,0,0.374,0.6,0.4,0,0 +1,0.542,0.351,0.349,0,0,0.126,0,1,0,0 +1,0.542,0.351,0.349,0,0,0.173,0,1,0,0 +1,0.542,0.351,0.349,0,0,0.205,0,1,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,1,0,0.248 +1,0.542,0.401,0.349,0,0,0.272,0,1,0,0 +1,0.542,0.401,0.349,0,0,0.0118,0,0.1,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0.205,0,0,0,0 +1,0.542,0.401,0.349,0,0,0.169,0,0,0,0 +1,0.542,0.401,0.349,0,0,0.362,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0.4,0.165 +1,0.606,0.464,0.363,0,0,0,0,0,1,0.248 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0.347,0.4,0,0,0,0,0 +0.667,0.626,0.383,0.351,0.415,1,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,1,0,0,0,0,0 +0.667,0.626,0.383,0.351,0.466,0.4,0,0,0,0,0.165 +0.667,0.626,0.383,0.351,0.409,0,0,0,0,0,0.0827 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0.0827 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0.0827 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0958 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0958 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.15 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.4,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0.181,0.9,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0.331,0.6,0.4,0.5,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0.9,0,0 +0.333,0.551,0.0406,0.167,0,0,0.512,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0.0354,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0.421,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0.217,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.248,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.0906,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.374,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.638,0,0,0,0.165 +0.333,0.555,0.0473,0.168,0,0,0.303,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.457,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.236,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.319,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.535,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.567,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0.169,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.331 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.104 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.234 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.165 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.353 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.248 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.101 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0506 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.4,0.165 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0.165 +1,0.658,0.473,0.501,0,0,0,0,0,0.4,0.0827 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.181,0.4,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.524,1,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.543,0.1,0.9,0,0.496 +0.667,0.54,0.0653,0.284,0,0,0.272,0,1,0,0 +0.667,0.548,0.0788,0.286,0,0,0.52,0,0.8,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0.228,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0.283,0,0,0,0.0827 +0.667,0.548,0.0788,0.286,0,0,0.193,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.807,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.248 +0.667,0.548,0.0923,0.278,0,0,0.0236,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.0906,0,0,0,0.0827 +0.667,0.548,0.0923,0.278,0,0,0.339,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0.283,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.0827 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.597,0.4,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0.426,1,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.619,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.75,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.653,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.33,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.196,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0.196,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.727,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.392,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0.369,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0.483,0,0,0,0,0.4,0 +0.333,0.555,0.0789,0.149,0.318,0,0,0,0,1,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,1,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,1,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.26,0.4,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,1,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.283,0.1,0.9,0,0 +0.667,0.617,0.239,0.286,0,0,0.272,0,0.4,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.295,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.228,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.929,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.252,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.0984 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.0492 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.151 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.4,0.183 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.15 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.372 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.133 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.248 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.181 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.246 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.0246 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0995 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0995 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.152 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.177 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.091 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.4,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.562,0.4,0,0,0,0,0.102 +0.667,0.617,0.239,0.286,0.386,1,0,0,0,0,0.255 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0.338 +0.667,0.617,0.239,0.286,0.392,1,0,0,0,0,0.0255 +1,0.645,0.351,0.404,0.477,0.8,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.267 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.126 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.4,0 +1,0.645,0.662,0.656,0,0,0,0,0,1,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0951 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.0875 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.101 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.101 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.165 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.226 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0956 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.209 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0989 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.124 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.42 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.101 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0505 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.205 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0256 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.26,0.4,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,1,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.0787,0.1,0.9,0,0 +0.333,0.555,0.0789,0.149,0,0,0.217,0,1,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,1,0,0 +0.333,0.564,0.0871,0.15,0,0,0.217,0,1,0,0 +0.333,0.564,0.0871,0.15,0,0,0.0236,0,1,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0.6,0,0 +0.333,0.564,0.0871,0.15,0,0,0.138,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0.0118,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0.283,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0.0354,0,0,0,0.0938 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.117 +0.333,0.576,0.106,0.154,0,0,0.217,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0.272,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.362,0,0,0,0.304 +0.667,0.617,0.239,0.286,0,0,0.0118,0,0,0,0.0492 +0.667,0.617,0.239,0.286,0,0,0.303,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.646,0,0,0,0.248 +0.667,0.617,0.239,0.286,0,0,0.295,0,0,0,0.184 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.202 +0.667,0.626,0.32,0.351,0,0,0.283,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.319,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.283,0,0,0,0.217 +1,0.658,0.473,0.501,0,0,0.102,0,0,0,0.0241 +1,0.645,0.662,0.656,0,0,0.508,0,0,0,0 +1,0.645,0.662,0.656,0,0,0.248,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0905 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0679 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.172 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.405 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.107 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.146 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.248 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.331 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.248 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,1,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0.0787,0.4,0,0,0 +1,0.645,0.662,0.656,0,0,0.488,1,0,0,0 +1,0.645,0.662,0.656,0,0,0,0.1,0.9,0,0 +1,0.645,0.662,0.656,0,0,0.169,0,0.4,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0.217,0,0,0,0 +1,0.619,0.817,0.806,0.597,0.4,0.283,0,0,0,0 +1,0.619,0.817,0.806,0.284,1,0.665,0,0,0,0 +1,0.619,0.817,0.806,0.179,1,0,0,0,0,0 +1,0.619,0.817,0.806,0.179,0.4,0.228,0,0,0,0 +1,0.568,0.774,0.851,0.341,0,0.217,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.0906,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.283,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.476,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.283,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0.988,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.542,0.16,0.404,0,0,0,0,0,0,0 +1,0.542,0.16,0.404,0,0,0.0472,0.4,0,0,0.0827 +1,0.542,0.16,0.404,0,0,0.0906,1,0,0,0 +1,0.542,0.16,0.404,0,0,0.331,0.1,0.9,0,0 +1,0.542,0.16,0.404,0,0,0.236,0,1,0,0 +1,0.542,0.16,0.404,0,0,0,0,1,0,0 +1,0.542,0.212,0.392,0,0,0.496,0,1,0,0.0827 +1,0.542,0.212,0.392,0,0,0.26,0,1,0,0 +1,0.542,0.212,0.392,0,0,0,0,0.6,0,0 +1,0.542,0.212,0.392,0,0,0.531,0,0,0,0.0827 +1,0.542,0.212,0.392,0,0,0.0236,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.205,0,0,0,0.0827 +1,0.542,0.252,0.381,0,0,0.217,0,0,0,0.0827 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.362,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.138,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.181,0,0,0,0 +1,0.542,0.277,0.364,0,0,0.283,0,0,0,0 +1,0.542,0.277,0.364,0,0,0.193,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0.236,0,0,0,0.248 +1,0.542,0.277,0.364,0,0,0.0787,0,0,0,0.165 +1,0.542,0.277,0.364,0,0,0.248,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.441,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.0787,0,0,0,0.165 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.441,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.236,0,0,0,0.0827 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.272,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0.339,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.512,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.362,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.126,0,0,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0.146,0,0,0,0.165 +0.667,0.548,0.273,0.249,0,0,0.295,0,0,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0.476,0,0,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0.126,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.205,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0.217,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0.283,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0.362,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.26,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.217,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.35,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.0906,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.0906,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0.453,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0.398,0,0,0,0.262 +0.667,0.617,0.326,0.286,0,0,0.622,0,0,0,0.0971 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0.0827 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.165 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.331 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0923 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0692 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.647 +1,0.548,0.113,0.286,0,0,0,0,0,0.4,0.165 +1,0.548,0.113,0.286,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.4,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.756,0.9,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.608,0.5,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.54,0,0,0,0,0,0 +1,0.542,0.297,0.352,0,0,0,0,0,0,0 +1,0.542,0.297,0.352,0,0,0,0,0,0,0.0827 +1,0.542,0.297,0.352,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.0827 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.331 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.101 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.227 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.248 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.119 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.189 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.248 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0.443,0.4,0,0,0,0,0.1 +1,0.606,0.464,0.363,0.528,1,0,0,0,0,0.175 +1,0.606,0.464,0.363,0,1,0,0,0,0,0 +1,0.606,0.464,0.363,0.449,0.4,0,0,0,0.4,0.0827 +1,0.606,0.464,0.363,0.665,0,0,0,0,1,0 +1,0.645,0.479,0.404,0.716,0,0,0,0,0,0.0827 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0.352,0,0,0,0,0,0 +1,0.645,0.479,0.404,0.46,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0.426,0,0,0,0,0,0 +1,0.626,0.383,0.351,0,0,0,0,0,0,0 +1,0.626,0.383,0.351,0.551,0,0,0,0,0,0.0827 +1,0.626,0.383,0.351,0.659,0,0,0,0,0,0 +1,0.626,0.383,0.351,0,0,0,0,0,0,0 +1,0.626,0.383,0.351,0.455,0,0,0,0,0,0 +1,0.626,0.383,0.351,0.511,0,0,0,0,0,0 +1,0.617,0.501,0.454,0.312,0,0,0,0,0,0 +1,0.617,0.501,0.454,0.557,0,0,0,0,0,0 +1,0.617,0.501,0.454,0,0,0,0,0,0,0 +1,0.617,0.501,0.454,0.409,0,0.543,0.9,0,0,0 +1,0.617,0.501,0.454,0.58,0,0,0.6,0.4,0,0.248 +1,0.645,0.743,0.656,0.341,0,0,0,1,0,0.413 +1,0.619,0.873,0.806,0.392,0,0,0,1,0,0 +1,0.619,0.873,0.806,0.455,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,0.1,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.0827 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.739 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.199 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0.133 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.0757 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.0827 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.205 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.165 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.9,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.6,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0159,0.0495,0.676,0.4,0,0,0,0.6,0 +0.333,0.601,0.0774,0.162,0.295,1,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0.264,1,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0.264,0.5,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.331 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.4,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,1,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,1,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.788,0.413,0.655,0,0,0,0,0,1,0 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.248 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,1,0 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.191 +1,0.788,0.413,0.655,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0.165 +1,0.772,0.578,0.829,0,0,0,0,0,1,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.741,0.713,0.905,0,0,0,0,0,1,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,1,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.679,0.676,0.821,0,0,0,0,0,1,0 +1,0.679,0.676,0.821,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.599,0.278,0.356,0,0,0,0,0,1,0 +1,0.599,0.278,0.356,0,0,0,0,0,1,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,1,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,1,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0.2,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.295 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0236 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.0926 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0463 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.227 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.0503 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.0984 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.148 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0.307,0.4,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.205,1,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.26,0,1,0,0 +0.333,0.591,0.0486,0.174,0,0,0.0236,0,0.4,0,0.165 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.228,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.283,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0.272,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0.283,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0.252,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.413 +1,0.679,0.2,0.387,0,0,0,0,0,0,0.0827 +1,0.679,0.2,0.387,0,0,0,0,0,0,0 +1,0.679,0.2,0.387,0,0,0,0,0,0,0 +1,0.679,0.2,0.387,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.9,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.6,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0.722,0.9,0,0,0,0,0 +1,0.772,0.307,0.501,0.33,1,0,0,0,0,0 +1,0.772,0.307,0.501,0.398,1,0,0,0,0,0 +1,0.772,0.307,0.501,0.551,0,0,0,0,0,0.398 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.186 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.152 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.101 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.248 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.235 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.156 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.218 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0242 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0993 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0496 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.207 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.109 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.165 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.331 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.496 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.9,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,1,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0.0827 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.165 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.137 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0704 +1,0.681,0.481,0.62,0,0,0,0,0,0,0.141 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.288 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.097 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0728 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.231 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.102 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0254 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.229 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.255 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.134 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.102 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0512 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.165 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.4,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.331 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.4,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +1,0.726,0.25,0.417,0,0,0,0,0,1,0.165 +1,0.726,0.25,0.417,0,0,0,0,0,1,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.1,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0.165 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.892,0.4,0,0,0,0,0 +1,0.772,0.578,0.829,0.259,1,0,0,0,0,0 +1,0.772,0.578,0.829,0.259,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.381,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.432,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.147 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.248 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.347 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0656 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.323 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.165 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.199 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.305 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.205 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.202 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.133 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0839 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.021 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.223 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.132 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.259 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.117 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0.124 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0.273 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0,0.331 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +1,0.671,0.172,0.294,0,0,0,0,0,0,0 +1,0.671,0.172,0.294,0,0,0,0,0,0,0 +1,0.671,0.172,0.294,0,0,0,0,0,0,0.165 +1,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +1,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +1,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.702,0.21,0.35,0,0,0,0,0,0.9,0 +1,0.702,0.21,0.35,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,0.1,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.0827 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0.9,0 +1,0.681,0.481,0.62,0,0,0,0,0,0.6,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.12 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.0949 +1,0.599,0.278,0.356,0,0,0,0,0,0,0.142 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.248 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.609,0.0624,0.295,0,0,0,0,0,1,0 +1,0.609,0.0624,0.295,0,0,0,0,0,0.1,0 +1,0.609,0.0624,0.295,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0.449,0.9,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0.347,0.5,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.364,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.352,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.25,0,0,0,0,0,0.0937 +0.667,0.591,0.0855,0.17,0.25,0,0,0,0,0,0.0234 +0.667,0.591,0.0855,0.17,0.489,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.373 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.0257 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.205 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.165 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.201 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.331 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.107 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.329 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0246 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.165 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.145 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.248 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.0827 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.349 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.324 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0.0827 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0.165 +0.333,0.632,0.228,0.309,0,0,0,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0,0,0,0.9,0 +0.333,0.632,0.228,0.309,0,0,0,0,0,1,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,1,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,1,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.6,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0.165 +0.333,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.333,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.558,0.0637,0.099,0,0,0,0,0,0,0 +0.667,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0495 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.253 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.0998 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.125 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.136 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.165 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.386,0.9,0,0,0,0,0.248 +0.667,0.591,0.0855,0.17,0.46,0.5,0,0,0,0,0.0827 +0.667,0.62,0.153,0.291,0.415,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0.386,0,0,0,0,0,0.0827 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.352,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.301,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.426,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.648,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.492,0,0,0,0,0,0.165 +0.667,0.62,0.179,0.271,0.246,0,0,0,0,0,0.248 +0.667,0.62,0.179,0.271,0.648,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0.26,0.4,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,1,0,0,0 +0.667,0.62,0.179,0.271,0,0,0.0472,0,1,0,0 +0.667,0.62,0.179,0.271,0,0,0.283,0,1,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0.8,0,0 +0.667,0.62,0.21,0.269,0,0,0.295,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.248,0,0,0,0.0827 +0.667,0.62,0.21,0.269,0,0,0.283,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.205,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.0551,0,0,0,0.0827 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.272,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.283,0,0,0,0.165 +0.667,0.62,0.239,0.269,0,0,0.374,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.524,0,0,0,0.248 +0.667,0.62,0.239,0.269,0,0,0.236,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0.693,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0.126,0,0,0,0.165 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.248 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.9,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.6,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.165 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.118 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0.103 +1,0.772,0.649,0.829,0,0,0,0,0,0,0.0517 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0.232 +1,0.741,0.763,0.905,0,0,0,0,0,0,0.155 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0.165 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0.216 +1,0.599,0.302,0.356,0,0,0,0,0,0,0.024 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0.0827 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.217 +1,0.56,0.0224,0.0798,0.557,0.4,0,0,0,0,0.0725 +1,0.578,0.0433,0.236,0.466,1,0,0,0,0,0 +1,0.578,0.0433,0.236,0,1,0.409,0.9,0,0,0 +1,0.578,0.0433,0.236,0.438,0.5,0.205,1,0,0,0.168 +1,0.578,0.0433,0.236,0.534,0,0.307,1,0,0,0 +1,0.578,0.0433,0.236,0,0,0.547,1,0,0.9,0.0827 +1,0.578,0.0433,0.236,0,0,0.374,0.3,0.7,1,0 +1,0.633,0.0786,0.417,0,0,0.217,0,0.7,1,0 +1,0.633,0.0786,0.417,0,0,0.0787,0,0,1,0.248 +0.667,0.609,0.0577,0.295,0,0,0.0354,0,0,0.6,0.165 +0.667,0.609,0.0577,0.295,0,0,0.319,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0.429,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0.26,0,0,0,0.165 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.9,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,1,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,1,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,1,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.6,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.165 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.9,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.6,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.331 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.4,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,1,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,1,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,1,0.248 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.6,0.0827 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.9,0 +1,0.62,0.118,0.269,0,0,0,0,0,0.6,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.331 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.319,0.9,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.283,0.5,0.5,0,0.165 +0.667,0.64,0.139,0.274,0,0,0.874,0,1,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0.362,0,1,0,0.165 +0.667,0.64,0.139,0.274,0,0,0.512,0,1,0,0 +0.667,0.671,0.172,0.294,0,0,0.453,0,1,0,0 +0.667,0.671,0.172,0.294,0,0,0.0118,0,1,0,0 +0.667,0.671,0.172,0.294,0,0,0.217,0,1,0,0.174 +0.667,0.671,0.172,0.294,0,0,0,0,0.6,0,0.0227 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.9,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.6,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.172 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.104 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.208 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.176 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0492 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.246 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.0827 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.158 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0.465,0.9,0,0,0.125 +1,0.57,0.0296,0.143,0,0,0.169,0.5,0.5,0,0.147 +1,0.585,0.0368,0.172,0,0,0,0,0.9,0,0 +1,0.585,0.0368,0.172,0,0,0.457,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0.228,0,0,0,0.103 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0.206 +1,0.609,0.0577,0.295,0,0,0.657,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0.26,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0.0551,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.227 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.367 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.301 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0996 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0249 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +1,0.649,0.114,0.424,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.195 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0913 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.0685 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.165 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.15 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.331 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.667,0.637,0.148,0.251,0,0,0,0,0,0,0 +0.667,0.637,0.148,0.251,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.335,0.4,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.477,1,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.219,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.219,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.449,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0.568,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.648,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.614,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.449,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.75,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.256,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.0827 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.397 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.0827 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.272 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.274 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.183 +1,0.587,0.057,0.33,0,0,0,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.249 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.167 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.0949 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.0827 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.178 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0713 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.17 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.122 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0938 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0938 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.154 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.211 +0.667,0.712,0.28,0.453,0,0,0.205,0.4,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,1,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,1,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,1,0,0.102 +0.667,0.702,0.39,0.569,0,0,0,0,1,0,0.255 +0.667,0.702,0.39,0.569,0,0,0,0,1,0,0.255 +0.667,0.702,0.39,0.569,0,0,0,0,1,0,0.102 +1,0.772,0.578,0.829,0,0,0,0,0.7,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.19 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.167 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.221 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0492 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0966 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0483 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.355 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.247 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.247 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.0949 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.119 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.119 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.177 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0473 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.455 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.228 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.133 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.9,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,1,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.6,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0,0.165 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.267 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.103 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0515 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.248 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.234 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.156 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.263 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.346 +0.667,0.671,0.172,0.294,0.477,0.9,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0.614,1,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0.33,1,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.143 +0.667,0.702,0.21,0.35,0.625,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.318,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.25,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.25,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.432,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.219 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.545,0.9,0,0,0,0,0 +1,0.772,0.578,0.829,0.608,0.5,0,0,0,0,0 +1,0.772,0.578,0.829,0.528,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.5,0,0,0,0,0,0.325 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.096 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.072 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.9,0.248 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.6,0.345 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0.0243 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0.0827 +1,0.558,0.0145,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.396 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0513 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0965 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.145 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.22 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.101 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0505 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.178 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.9,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.422 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.4,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,1,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.6,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.248 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.249 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.186 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0827 +1,0.681,0.481,0.62,0,0,0,0,0,0,0.233 +1,0.681,0.481,0.62,0,0,0,0,0,0,0.207 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.192 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.026 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.343 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.052 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0.0827 +0.667,0.62,0.153,0.291,0,0,0,0,0,1,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,1,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,1,0.165 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +1,0.649,0.242,0.394,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.6,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.413 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.248 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.248 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.165 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.248 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.165 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0.0827 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0.0827 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.0827 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.5,0.9,0,0,0 +1,0.741,0.763,0.905,0,0,0.421,0.5,0.5,0,0 +1,0.741,0.763,0.905,0,0,0,0,0.9,0,0 +1,0.741,0.763,0.905,0,0,0.476,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.272,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.457,0,0,0,0.235 +1,0.679,0.704,0.821,0,0,0.228,0,0,0,0.326 +1,0.64,0.475,0.564,0,0,0.327,0,0,0,0 +1,0.64,0.475,0.564,0,0,0.339,0,0,0,0 +1,0.64,0.475,0.564,0,0,0.26,0,0,0,0.165 +1,0.599,0.302,0.356,0,0,0,0,0,0,0.0827 +1,0.599,0.302,0.356,0,0,0.508,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.339,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.26,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.228,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.0472,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.283,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.0787,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.52,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.465,0,0,0,0.224 +1,0.568,0.141,0.183,0,0,0.26,0,0,0,0.0499 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.413 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.165 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.331 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.0827 +1,0.591,0.0737,0.174,0,0,0,0,0,0,0 +1,0.591,0.0737,0.174,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0.248 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0.0827 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0.0827 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,1,0.248 +0.667,0.591,0.114,0.159,0,0,0,0,0,1,0.0827 +0.667,0.591,0.114,0.159,0,0,0,0,0,1,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0.1,0.0827 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.165 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.331 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.248 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.331 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.0827 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.0938 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.0703 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0.174 +1,0.772,0.419,0.501,0,0,0,0,0,0,0.149 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.248 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.431 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.298 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0.0827 +1,0.64,0.475,0.564,0,0,0,0,0,0,0 +1,0.64,0.475,0.564,0,0,0,0,0,0,0 +1,0.64,0.475,0.564,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.405 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0954 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0239 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0914 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.118 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0.0705 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.375 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.102 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.178 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.216 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.228,0.4,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.398,1,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.386,0,1,0,0 +0.333,0.591,0.0604,0.16,0,0,0.0906,0,0.4,0,0 +0.333,0.591,0.0669,0.159,0,0,0.0906,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.0354,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.295,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.362,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.752,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.476,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.362,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.331,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.331,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.669,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.0551,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.441,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.0906,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0.0669,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0.272,0,0,0,0.165 +0.333,0.616,0.0938,0.172,0,0,0.339,0,0,0,0.165 +0.333,0.616,0.0938,0.172,0,0,0.512,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0.669,0,0,0,0.0827 +0.333,0.616,0.0938,0.172,0,0,0.272,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0.227,0.9,0,0,0,0,0 +0.333,0.632,0.113,0.2,0.466,1,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.426,1,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.574,0,0,0,0,0,0.413 +0.667,0.702,0.21,0.35,0.375,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.483,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.381,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.432,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.54,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.284,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0.284,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.472,0,0,0,0,0,0.241 +1,0.772,0.578,0.829,0,0,0.0354,0.4,0,0,0 +1,0.772,0.578,0.829,0,0,0.26,1,0,0,0 +1,0.772,0.578,0.829,0,0,0.102,0,1,0,0 +1,0.772,0.578,0.829,0,0,0.181,0,0.4,0,0.0562 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0.374,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0255 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.23 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.9,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,1,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.212 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.128 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.0827 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.171 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0443 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.142 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.528,0.9,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.54,1,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0.5,1,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0.494,0,0,0,0,0,0.248 +0.333,0.591,0.0577,0.164,0.173,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0.173,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0.58,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.248 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.9,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.6,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.131 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.1 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.25 +1,0.741,0.713,0.905,0,0,0.339,0.9,0,0,0 +1,0.741,0.713,0.905,0,0,0.362,0.5,0.5,0,0.0827 +1,0.741,0.713,0.905,0,0,0.319,0,1,0,0 +1,0.741,0.713,0.905,0,0,0.657,0,1,0,0.188 +1,0.741,0.713,0.905,0,0,0.272,0,1,0,0 +1,0.679,0.676,0.821,0,0,0,0,1,0,0 +1,0.679,0.676,0.821,0,0,0.681,0,1,0,0 +1,0.679,0.676,0.821,0,0,0.398,0,0.2,0,0 +1,0.64,0.456,0.564,0,0,0.252,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.398,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.366,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.146,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.319,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.283,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.128 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.0993 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.199 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.116 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.48 +1,0.558,0.0289,0.11,0,0,0,0,0,0.4,0.0514 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0.165 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.1,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.248 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.248 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.331 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.236,0.9,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.26,0.5,0.5,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0.9,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.0827 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.514 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.273 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.191 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.155 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.18 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.269 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.187 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.235 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.209 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.376 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.154 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.239 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.558,0.0289,0.11,0,0,0,0,0,0,0 +0.667,0.558,0.0289,0.11,0,0,0,0,0,0,0.248 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0.165 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.9,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.6,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0.205,0.4,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.52,1,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.398,0,1,0,0 +0.333,0.591,0.0604,0.16,0,0,0.283,0,0.4,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.567,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0.228,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.319,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0.295,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.717,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0.0551,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.622,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.0551,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.184 +0.333,0.637,0.148,0.251,0,0,0,0,0,0,0.126 +0.333,0.637,0.148,0.251,0,0,0,0,0,0,0.331 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.13 +1,0.788,0.413,0.655,0.415,0.9,0,0,0,0,0.13 +1,0.788,0.413,0.655,0.398,1,0,0,0,0,0 +1,0.772,0.578,0.829,0.415,1,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.574,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.443,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.466,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.619,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.331 +1,0.741,0.713,0.905,0.369,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.568,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.574,0,0,0,0,0,0 +1,0.679,0.676,0.821,0.597,0,0,0,0,0,0 +1,0.679,0.676,0.821,0.369,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.9,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0.201 +1,0.587,0.057,0.33,0,0,0,0,0,1,0.45 +1,0.587,0.057,0.33,0,0,0,0,0,0.1,0.297 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.0827 +1,0.587,0.057,0.33,0,0,0,0,0,0,0 +1,0.587,0.057,0.33,0,0,0,0,0,0,0 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.094 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.094 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.133 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.433 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.107 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.195 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.175 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.102 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.255 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0255 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.331 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.9,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,1,0 +1,0.64,0.139,0.274,0,0,0,0,0,1,0 +1,0.64,0.139,0.274,0,0,0,0,0,0.1,0.248 +1,0.64,0.139,0.274,0,0,0,0,0,0,0.165 +1,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.9,0.155 +1,0.726,0.25,0.417,0,0,0,0,0,0.6,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.54,0.9,0,0,0,0,0 +1,0.772,0.578,0.829,0.347,0.5,0,0,0,0,0 +1,0.772,0.578,0.829,0.5,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.477,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.341,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.341,0,0,0,0,0,0.116 +1,0.681,0.481,0.62,0.426,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.5,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.477,0,0,0,0,0,0.0905 +1,0.64,0.456,0.564,0.545,0,0,0,0,0,0.0226 +1,0.64,0.456,0.564,0.756,0,0,0,0,0,0 +1,0.64,0.456,0.564,0.477,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0.432,0,0,0,0,0,0 +1,0.64,0.456,0.564,0.523,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.347,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.335,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.466,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.506,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.528,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.386,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.625,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.293,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.293,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.324,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.301,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.392,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.347,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.386,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.6,0.165 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.409 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.6,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0.413 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.331 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.248 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.165 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0.567,0.9,0,0.9,0 +1,0.788,0.493,0.655,0,0,0.362,0.5,0.5,0.6,0.0827 +1,0.772,0.649,0.829,0,0,0,0,0.9,0,0 +1,0.772,0.649,0.829,0,0,0.248,0,0,0,0 +1,0.772,0.649,0.829,0,0,0.362,0,0,0,0 +1,0.772,0.649,0.829,0,0,0.736,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0.228,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.169,0,0,0,0.248 +1,0.741,0.763,0.905,0,0,0.0472,0,0,0,0.165 +1,0.741,0.763,0.905,0,0,0.0551,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.362,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.205,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.693,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.205,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.339,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.331,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.705,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.26,0,0,0.9,0 +1,0.618,0.444,0.51,0,0,0.465,0,0,0.6,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0.0827 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.558,0.0205,0.0518,0,0,0,0,0,0,0.0827 +1,0.558,0.0205,0.0518,0,0,0,0,0,0,0 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0.165 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.609,0.0624,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0624,0.295,0.341,0.9,0,0,0,0,0 +0.667,0.609,0.0624,0.295,0.358,1,0,0,0,0,0.165 +0.667,0.62,0.0991,0.301,0.403,1,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0.551,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0.636,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0.716,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0737,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.165 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.362,0.9,0,0,0.0827 +0.667,0.62,0.21,0.269,0,0,0.0354,0.5,0.5,0,0.165 +1,0.649,0.307,0.378,0,0,0.669,0,1,0,0 +1,0.649,0.307,0.378,0,0,0.362,0,1,0,0.0827 +1,0.649,0.307,0.378,0,0,0.0787,0,1,0,0 +1,0.649,0.35,0.379,0,0,0,0,0.7,0,0 +1,0.649,0.35,0.379,0,0,0.386,0,0,0,0.0827 +1,0.649,0.35,0.379,0,0,0.26,0,0,0,0.0827 +1,0.649,0.35,0.379,0,0,0,0,0,0,0 +1,0.649,0.35,0.379,0,0,0,0,0,0,0 +1,0.649,0.35,0.379,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.333,0.616,0.147,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.147,0.172,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.248,0.4,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,1,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.398,0,1,0,0 +0.333,0.632,0.228,0.309,0,0,0.0551,0,0.4,0,0 +0.333,0.632,0.228,0.309,0,0,0.272,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0.445,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0.0354,0,0,0,0 +0.333,0.621,0.266,0.335,0,0,0,0,0,0,0 +0.333,0.621,0.266,0.335,0,0,0.272,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0.0827 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.179 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.232 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.165 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.165 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.187 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.186 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.103 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.248 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.103 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.18 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.9,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.6,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.9,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.6,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.562,0.9,0,0,0,0,0 +1,0.788,0.413,0.655,0.534,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.375,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.46,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.259,1,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0.259,1,0,0,0,0,0 +1,0.772,0.578,0.829,0,1,0,0,0,0,0 +1,0.772,0.578,0.829,0.545,0.4,0,0,0,0,0 +1,0.772,0.578,0.829,0.432,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.608,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.364,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.835,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.591,0,0,0,0,0,0.165 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.412 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.1 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0752 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.183 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.108 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0999 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.165 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.224 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0497 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.4,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.1,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.4,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,1,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.1,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.103 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0774 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.162 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0231 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.103 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.103 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.178 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +0.333,0.562,0.0159,0.0495,0.665,0.4,0,0,0,0,0.0827 +0.333,0.585,0.0368,0.172,0.415,1,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,1,0,0,0,0.9,0.0827 +0.333,0.585,0.0368,0.172,0.659,0.5,0,0,0,1,0.165 +0.333,0.591,0.0427,0.175,0.369,0,0,0,0,1,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.6,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.152 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.9,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.1,0 +1,0.772,0.307,0.501,0.341,0.4,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0.557,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.312,1,0,0,0,0,0.248 +1,0.788,0.413,0.655,0,0.5,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0.352,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.165 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0827 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.248 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0.0827 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0669,0.9,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0.146,0.5,0.5,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0.9,0,0 +1,0.56,0.0224,0.0798,0,0,0.366,0,0,0,0.314 +1,0.56,0.0224,0.0798,0,0,0.307,0,0,0,0.237 +1,0.558,0.0289,0.11,0,0,0.283,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0.217,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0.0906,0,0,0,0.0958 +1,0.578,0.0433,0.236,0,0,0.524,0,0,0,0.0239 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0.283,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0.421,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0.374,0,0,0,0.165 +0.667,0.57,0.0296,0.143,0,0,0.319,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0.705,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0.157,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0.398,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0.35,0,0,0,0.165 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.331 +0.667,0.591,0.0427,0.175,0,0,0.217,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0.248,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0.429,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0.362,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.17 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.263 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.214 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.161 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.226 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.241 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.331 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.4,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0.193,0.9,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0.236,0.5,0.5,0,0 +1,0.702,0.39,0.569,0,0,0.398,0,0.9,0,0 +1,0.702,0.39,0.569,0,0,0.205,0,0,0,0 +1,0.702,0.39,0.569,0,0,0.26,0,0,0,0 +1,0.681,0.481,0.62,0,0,0.567,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0.126,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0.354,0,0,0,0.235 +1,0.681,0.481,0.62,0,0,0.331,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.157,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.169,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.126,0,0,0,0.103 +1,0.64,0.456,0.564,0,0,0.35,0,0,0,0.154 +1,0.64,0.456,0.564,0,0,0.476,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.228,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.236,0,0,0,0.0827 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.258 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0927 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.248 +1,0.578,0.0433,0.236,0,0,0,0,0,0.4,0.0827 +1,0.578,0.0433,0.236,0,0,0,0,0,1,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0.1,0.11 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0827 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.413 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.9,0.165 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.6,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.248 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.511,0.4,0,0,0,0,0 +1,0.679,0.676,0.821,0.58,1,0,0,0,0,0 +1,0.679,0.676,0.821,0,1,0,0,0,0,0 +1,0.679,0.676,0.821,0.386,1,0,0,0,0,0.102 +1,0.679,0.676,0.821,0.477,1,0,0,0,0,0.154 +1,0.679,0.676,0.821,0,1,0,0,0,0,0 +1,0.679,0.676,0.821,0.517,0.5,0,0,0,0,0 +1,0.618,0.409,0.51,0.455,0,0,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.722,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.369,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.494,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.248 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.205 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.102 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.337 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.0508 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.165 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.165 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.104 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.259 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.129 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.62,0.129,0.299,0,0,0,0,0,0,0 +1,0.62,0.129,0.299,0,0,0,0,0,0,0 +1,0.62,0.129,0.299,0,0,0,0,0,0,0.0978 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.0489 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.109 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.524 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.0881 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.022 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.0827 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.165 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.0905 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.4,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,1,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.1,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0 +1,0.679,0.385,0.387,0,0,0,0,0,0,0 +1,0.679,0.385,0.387,0,0,0,0,0,0,0.0827 +1,0.679,0.385,0.387,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.0827 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.0827 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.0827 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0.138,0.9,0,0,0 +1,0.772,0.419,0.501,0,0,0.362,0.5,0.5,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0.9,0,0 +0.667,0.702,0.285,0.35,0,0,0.374,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0.228,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0.646,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0.236,0,0,0,0.165 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0.339,0,0,0,0.0827 +1,0.788,0.493,0.655,0,0,0.0354,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0.622,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0.441,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.165 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.165 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0.165 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0.0827 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0 +0.667,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.16,0.203,0,0,0,0,0,0,0.235 +0.667,0.58,0.16,0.203,0,0,0,0,0,0,0.0261 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.135 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.07 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.0467 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.248 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.248 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.248 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.248 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.248 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.372 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.18 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.122 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +1,0.649,0.259,0.382,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +1,0.62,0.21,0.269,0,0,0,0,0,0,0.0827 +1,0.62,0.239,0.269,0,0,0,0,0,0,0 +1,0.62,0.239,0.269,0,0,0.26,0.9,0,0,0 +0.667,0.591,0.129,0.159,0,0,0.272,0.5,0.5,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,1,0,0 +0.667,0.62,0.239,0.269,0,0,0.26,0,1,0,0 +0.667,0.62,0.239,0.269,0,0,0.0551,0,1,0,0.165 +1,0.679,0.385,0.387,0,0,0.283,0,1,0,0 +1,0.679,0.385,0.387,0,0,0.622,0,1,0,0.248 +1,0.679,0.385,0.387,0,0,0.441,0,0.2,0,0.0827 +1,0.679,0.385,0.387,0,0,0,0,0,0,0 +1,0.679,0.385,0.387,0,0,0.272,0,0,0,0 +1,0.679,0.385,0.387,0,0,0.319,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.484,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.283,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.26,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.61,0,0,0,0.248 +1,0.726,0.405,0.417,0,0,0.272,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.493,0.655,0.523,0.4,0,0,0,0,0 +1,0.788,0.493,0.655,0.574,1,0,0,0,0,0 +1,0.788,0.493,0.655,0,1,0,0,0,0,0 +1,0.788,0.493,0.655,0.358,1,0,0,0,0,0.0827 +1,0.772,0.649,0.829,0.602,1,0,0,0,0,0 +1,0.772,0.649,0.829,0.324,1,0.0118,0.9,0,0,0 +1,0.772,0.649,0.829,0,1,0.169,1,0,0,0.165 +1,0.772,0.649,0.829,0,1,0,1,0,0,0 +1,0.772,0.649,0.829,0,1,0.598,1,0,0,0 +1,0.772,0.649,0.829,0,1,0.181,1,0,0,0 +1,0.741,0.763,0.905,0,0.9,0.512,1,0,0,0 +1,0.741,0.763,0.905,0,0,0,1,0,0,0 +1,0.741,0.763,0.905,0,0,0.114,1,0,0,0.0827 +1,0.741,0.763,0.905,0,0,0,0.6,0.4,0,0 +1,0.741,0.763,0.905,0,0,0.26,0,1,0,0 +1,0.741,0.763,0.905,0,0,0.138,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.327,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.228,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.228,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.52,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.126,0,0,0,0.165 +1,0.618,0.444,0.51,0,0,0.307,0,0,0,0.0827 +1,0.618,0.444,0.51,0,0,0.331,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.205,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.433,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.362,0,0,0,0.0827 +1,0.599,0.302,0.356,0,0,0.0551,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.634,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.272,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.104 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.261 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.199 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0.4,0.165 +0.667,0.57,0.0296,0.143,0,0,0,0,0,1,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.1,0.0827 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.184 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.228 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.0246 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.328 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.4,0.239 +0.333,0.616,0.0938,0.172,0,0,0,0,0,1,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.1,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.413 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.165 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.165 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0827 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.167 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0494 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.148 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0.101 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.122 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.17 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.0752 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.1 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.245 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.049 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0.0827 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.149 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.207 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.104 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.078 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.174 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0498 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.143 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0866 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.239 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.248 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.326 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.508 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.342 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.274 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.4,0.0827 +0.667,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.1,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.0906,0.9,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.465,0.5,0.5,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0.386,0,0.9,0,0 +0.667,0.671,0.172,0.294,0,0,0.0236,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.0354,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.524,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.409,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.283,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.417,0,0,0,0.165 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0827 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0998 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.249 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0499 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.165 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.165 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.232 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.0773 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0296,0.143,0.295,0.4,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.597,1,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.293,1,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.293,0.5,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0.557,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0.562,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0.619,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.472,0.4,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.432,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.307,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.375,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.375,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.557,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0.165 +1,0.741,0.713,0.905,0,0.4,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.104 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.126 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.202 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.107 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.321 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.144 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0959 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.151 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0505 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.358 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.128 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.0502 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.502 +1,0.618,0.069,0.318,0,0,0,0,0,0,0.0996 +1,0.618,0.069,0.318,0,0,0.236,0.1,0,0,0.0827 +1,0.618,0.069,0.318,0,0,0.283,1,0,0,0.0827 +1,0.647,0.0955,0.452,0,0,0.0669,0.3,0.7,0,0.156 +1,0.647,0.0955,0.452,0,0,0.126,0,0.8,0,0.135 +1,0.647,0.0955,0.452,0,0,0.331,0,0,0,0.0827 +1,0.647,0.113,0.456,0,0,0.236,0,0,0,0 +1,0.647,0.113,0.456,0,0,0.13,0,0,0,0.0661 +1,0.647,0.113,0.456,0,0,0.13,0,0,0,0.661 +1,0.647,0.113,0.456,0,0,0.283,0,0,0,0 +1,0.647,0.113,0.456,0,0,0.252,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.248,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.193,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.102,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.108 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.101 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.152 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.248 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.165 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +1,0.77,0.573,0.919,0,0,0,0,0,1,0 +1,0.77,0.573,0.919,0,0,0,0,0,1,0 +1,0.77,0.573,0.919,0,0,0,0,0,0.1,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0257 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.232 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.157 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.131 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0472,0.6,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.199,0.8,0.2,0,0.107 +1,0.562,0.0159,0.0495,0,0,0.199,0,1,0,0.223 +1,0.569,0.0294,0.147,0,0,0.283,0,0.3,0,0.0827 +1,0.569,0.0294,0.147,0,0,0.331,0,0,0,0.0827 +1,0.577,0.043,0.245,0,0,0.283,0,0,0,0 +1,0.631,0.078,0.433,0,0,0.283,0,0,0.6,0.312 +1,0.631,0.078,0.433,0,0,0,0,0,1,0.438 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0251 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.1 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.15 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.108 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.165 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.069 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.414 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.151 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.252 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.131 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.107 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.168 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +1,0.647,0.148,0.413,0,0,0,0,0,0,0 +1,0.647,0.148,0.413,0,0,0,0,0,0,0.101 +1,0.647,0.148,0.413,0,0,0,0,0,0,0.0827 +1,0.647,0.148,0.413,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.6,0.0454 +0.667,0.618,0.117,0.289,0,0,0,0,0,1,0.174 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.248 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.165 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0249 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0996 +1,0.785,0.409,0.946,0.517,0.6,0,0,0,0,0 +1,0.785,0.409,0.946,0.426,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.432,1,0,0,0,0,0 +1,0.77,0.573,0.919,0,1,0,0,0,0,0.153 +1,0.77,0.573,0.919,0.318,1,0,0,0,0,0.0256 +1,0.77,0.573,0.919,0.466,0.1,0,0,0,0,0 +1,0.77,0.573,0.919,0.466,0.6,0,0,0,0,0 +1,0.77,0.573,0.919,0.224,0.9,0,0,0,0,0.0258 +1,0.77,0.573,0.919,0.224,0,0,0,0,0,0.103 +1,0.739,0.708,0.747,0.318,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.705,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.449,0,0,0,0,0,0.153 +1,0.739,0.708,0.747,0.659,0,0,0,0,0,0.102 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0506 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.377 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0747 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.131 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0261 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.165 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.248 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0.248 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0.235 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.9,0.248 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.7,0.165 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.248 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.165 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.331 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0.0895 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.0224 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.165 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.248 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.331 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.248 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.165 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0212,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0212,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0212,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.7,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.618,0.128,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.128,0.321,0,0,0.248,0.9,0,0,0 +0.667,0.618,0.128,0.321,0,0,0.126,0.5,0.5,0,0 +0.667,0.618,0.128,0.321,0,0,0,0,1,0,0 +0.667,0.618,0.128,0.321,0,0,0.217,0,1,0.9,0 +0.667,0.618,0.128,0.321,0,0,0.26,0,1,0.7,0 +0.667,0.618,0.152,0.312,0,0,0.354,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.476,0,1,0,0.165 +0.667,0.618,0.152,0.312,0,0,0.26,0,0.7,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0.0236,0.4,0,0,0.0827 +0.667,0.618,0.166,0.3,0,0,0.362,1,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.531,0,1,0,0 +0.667,0.618,0.166,0.3,0,0,0.0472,0,1,0,0 +0.667,0.618,0.166,0.3,0,0,0.803,0,1,0,0 +0.667,0.618,0.166,0.3,0,0,0.228,0,1,0,0.0827 +0.667,0.618,0.166,0.3,0,0,0.236,0,1,0,0.165 +0.667,0.618,0.178,0.292,0,0,0,0,1,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0.0906,0,0.2,0,0.248 +0.667,0.618,0.178,0.292,0,0,0.126,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.0906,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0.35,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.9,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0.165 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,1,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.6,0.0827 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0.18 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.0485 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.165 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0.197 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0.0892 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0223 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0827 +0.667,0.711,0.332,0.647,0.381,0.4,0,0,0,0,0.0827 +0.667,0.7,0.435,0.629,0.534,1,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,1,0,0,0,0,0 +0.667,0.7,0.435,0.629,0.534,0.7,0,0,0,0,0 +0.667,0.7,0.435,0.629,0.307,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.9,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.7,0.0827 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.222 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.0741 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.1 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.0502 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.131 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.393 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.024 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.216 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0.331 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.165 +1,0.559,0.0223,0.0816,0,0,0.0669,0.1,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0.319,1,0,0,0 +1,0.559,0.0223,0.0816,0,0,0.0787,1,0,0,0 +1,0.559,0.0223,0.0816,0,0,0.136,1,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0.136,1,0,0,0.248 +1,0.577,0.043,0.245,0,0,0.248,1,0,0,0.0827 +1,0.577,0.043,0.245,0,0,0.614,1,0,0,0 +1,0.577,0.043,0.245,0,0,0.248,1,0,0,0 +1,0.577,0.043,0.245,0,0,0.181,1,0,0.6,0 +1,0.577,0.043,0.245,0,0,0.343,0.4,0.6,1,0 +1,0.577,0.043,0.245,0,0,0,0,0.9,1,0 +1,0.608,0.0573,0.305,0,0,0,0,0,1,0.157 +1,0.608,0.0573,0.305,0,0,0,0,0,1,0.261 +1,0.608,0.0573,0.305,0,0,0,0,0,0.3,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.245 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.6,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.156 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.104 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0256 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.256 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.154 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0927 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.132 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.13 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.358 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0691 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.198 +0.667,0.639,0.138,0.338,0,0,0.148,0.1,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.148,1,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0.3,0.7,0.6,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0.8,1,0.106 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0.161 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.724,0.248,0.612,0,0,0,0,0,0.3,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0.545,0.6,0,0,0,0,0 +1,0.77,0.304,0.804,0.392,1,0,0,0,0,0 +1,0.77,0.304,0.804,0.449,1,0,0,0,0,0 +1,0.785,0.409,0.946,0,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.341,1,0,0,0,0,0 +1,0.785,0.409,0.946,0,1,0,0,0,0,0 +1,0.785,0.409,0.946,0,0.7,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.026 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.078 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.3 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0225 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0879 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.12 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0622 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.435 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.139 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0231 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.248 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.145 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.228 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.6,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,1,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.248 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.496 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.111 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.248 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.411 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.449,0.6,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.693,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0.5,0,0,0,0,0.195 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.248 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0243 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.243 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0243 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.6,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,1,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.248 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0.449,0.6,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0.352,1,0,0,0,0,0 +1,0.77,0.304,0.804,0.415,1,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,1,0,0,0,0,0.248 +0.667,0.7,0.208,0.553,0.415,1,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,1,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0.7,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.274 +1,0.785,0.409,0.946,0.193,0.1,0,0,0,0,0 +1,0.785,0.409,0.946,0.193,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.46,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.778,1,0,0,0,0,0.0467 +1,0.77,0.573,0.919,0.665,0,0,0,0,0,0.287 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.106 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0254 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.254 +1,0.621,0.246,0.282,0,0,0,0,0,0,0.178 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.145 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.0482 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0238 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.143 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.176 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0.117 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.6,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.248 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0.228,0.6,0,0,0 +0.333,0.59,0.06,0.171,0,0,0.181,0.8,0.2,0,0 +0.333,0.59,0.06,0.171,0,0,0.441,0,1,0,0 +0.333,0.59,0.0665,0.169,0,0,0.272,0,1,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0.154,0,1,0,0 +0.333,0.59,0.0665,0.169,0,0,0.449,0,1,0,0 +0.333,0.59,0.0665,0.169,0,0,0.386,0,0.4,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0.124,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0.124,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0.398,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0.0591,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0.283,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0.228,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0.146,0,0,0,0.248 +0.333,0.6,0.0769,0.194,0,0,0.205,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0.181,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.181,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.283,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.488,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.362,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0.339,0,0,0.6,0 +0.333,0.616,0.0931,0.237,0,0,0.187,0,0,1,0.0827 +0.333,0.616,0.0931,0.237,0,0,0.222,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0.465,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.319,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.339,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.0118,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0.22,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.551,0,0,0,0 +1,0.77,0.304,0.804,0,0,0.35,0,0,0,0 +1,0.77,0.304,0.804,0,0,0.142,0,0,0,0 +1,0.77,0.304,0.804,0,0,0.142,0,0,0,0 +1,0.785,0.409,0.946,0,0,0.352,0,0,0,0.165 +1,0.785,0.409,0.946,0,0,0.352,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0.331,0,0,0,0 +1,0.785,0.409,0.946,0,0,0.331,0,0,0,0 +1,0.785,0.409,0.946,0.278,0.1,0.524,0,0,0,0 +1,0.785,0.409,0.946,0.278,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.233,1,0.236,0,0,0,0 +1,0.77,0.573,0.919,0.33,1,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0.335,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.33,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0258 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.232 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0236 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0827 +0.667,0.562,0.0159,0.0495,0.193,0.1,0,0,0,1,0.0827 +0.667,0.562,0.0159,0.0495,0.193,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.557,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.483,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.443,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.381,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,1,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0.8,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.248 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,1,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,1,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.3,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.024 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.192 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0.275 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0.1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0 +1,0.77,0.304,0.804,0.489,0.6,0,0,0,1,0 +1,0.77,0.304,0.804,0.676,0.9,0,0,0,1,0.0827 +1,0.77,0.304,0.804,0.517,0,0,0,0,1,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0.216,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.7,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.145 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.203 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0501 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.275 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0839 +1,0.6,0.234,0.222,0,0,0,0,0,0,0.021 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0246 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.13 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.156 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0.0827 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0.165 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.248 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.145 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0771 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0771 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.104 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.261 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.9,0.0827 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.7,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0849,0.181,0,0,0.52,0.4,0,0,0 +0.333,0.59,0.092,0.175,0,0,0,1,0,0,0 +0.333,0.59,0.092,0.175,0,0,0.559,0,1,0,0 +0.333,0.59,0.092,0.175,0,0,0.0236,0,1,0,0.0827 +0.333,0.59,0.092,0.175,0,0,0,0,1,0,0 +0.333,0.59,0.092,0.175,0,0,0.24,0,0.1,0,0 +0.667,0.618,0.166,0.3,0,0,0.295,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.386,0,0,0,0.248 +0.667,0.618,0.178,0.292,0,0,0.327,0,0,0,0.165 +0.667,0.618,0.178,0.292,0,0,0.283,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.0354,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.339,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0.555,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0.217,0,0,0,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0.157,0,0,0,0.248 +0.667,0.618,0.209,0.289,0,0,0.228,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0.319,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0.283,0,0,0,0.165 +0.667,0.59,0.128,0.173,0,0,0.0354,0,0,0,0.0827 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0.295,0,0,0,0.0827 +0.667,0.59,0.128,0.173,0,0,0.307,0,0,0,0.165 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.165 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.165 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.9,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.7,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0.0827 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.165 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.144 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0.0827 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0.187 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.0519 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.413 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.426 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.413 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.0993 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0496 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.165 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.11 +0.667,0.639,0.261,0.338,0.523,0.4,0,0,0,0,0 +0.667,0.67,0.274,0.425,0.545,1,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,1,0,0,0,0,0.0857 +0.667,0.67,0.274,0.425,0.398,0.7,0,0,0,0,0.0214 +0.667,0.67,0.274,0.425,0.438,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0.415,0,0,0,0,0,0 +1,0.67,0.274,0.425,0.733,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0.352,0,0,0,0,0,0 +1,0.7,0.283,0.553,0.528,0,0,0,0,0,0.165 +1,0.7,0.283,0.553,0.443,0,0,0,0,0,0 +1,0.7,0.283,0.553,0.381,0,0,0,0,0.9,0 +1,0.77,0.415,0.804,0.287,0,0,0,0,0.7,0.165 +1,0.785,0.489,0.946,0.287,0,0,0,0,0,0.579 +1,0.785,0.489,0.946,0.42,0,0,0,0,0,0.0827 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.213 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0.104 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.104 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.126 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0.0966 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.231 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.198 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.0508 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.254 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.191 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0707 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.248 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.247 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.13 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.165 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.31 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.165 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.6,0.0827 +0.667,0.585,0.0366,0.177,0,0,0,0,0,1,0.0239 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.143 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0.155 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0.0517 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0 +1,0.618,0.069,0.318,0,0,0,0,0,0,0 +1,0.618,0.069,0.318,0,0,0,0,0,0,0.0259 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0,0.156 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.265 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0.267,0.1,0,0,0,0,0.024 +0.667,0.618,0.0989,0.3,0.267,1,0,0,0,0,0.144 +0.667,0.618,0.104,0.292,0.557,1,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0.523,1,0,0,0,0,0 +0.667,0.618,0.104,0.292,0.489,1,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,1,0,0,0,0,0.14 +0.667,0.618,0.104,0.292,0.236,1,0,0,0,0,0.0701 +0.667,0.618,0.104,0.292,0.236,0.2,0,0,0,0,0 +0.667,0.618,0.117,0.289,0.375,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.248 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.6,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,1,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.165 +0.667,0.711,0.278,0.647,0.185,0.1,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.185,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.767,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.324,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.585,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.438,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0966 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.6,0 +1,0.577,0.043,0.245,0,0,0,0,0,1,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0.339,0.6,0,0,0 +1,0.577,0.043,0.245,0,0,0.264,0.8,0.2,0,0 +1,0.577,0.043,0.245,0,0,0,0,1,0,0 +1,0.631,0.078,0.433,0,0,0.165,0,1,0,0.165 +1,0.631,0.078,0.433,0,0,0.197,0,0.9,0,0.0827 +1,0.631,0.078,0.433,0,0,0.567,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.272,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.0906,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.26,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.143 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.178 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0241 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.241 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.248 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.331 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.331 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.165 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.6,0.165 +0.333,0.616,0.0931,0.237,0,0,0,0,0,1,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.165 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.155 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.0258 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0248 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0993 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.144 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.024 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.142 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.177 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0248 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.198 +1,0.557,0.0287,0.114,0,0,0,0,0,0,0.165 +1,0.557,0.0287,0.114,0,0,0,0,0,0,0.165 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0.165 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.6,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.273 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0996 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0827 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.6,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,1,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,1,0 +1,0.677,0.199,0.482,0,0,0,0,0,0.6,0.331 +1,0.677,0.199,0.482,0,0,0,0,0,0,0.0827 +1,0.677,0.199,0.482,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0.6,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.137 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0228 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0248 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.248 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.156 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.13 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0247 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.173 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.155 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.16 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.6,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,1,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.248 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.165 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.121 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0254 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0761 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.165 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.248 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.6,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.126 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.107 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.255 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.0827 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.159 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.253 +1,0.631,0.078,0.433,0,0,0,0,0,0,0.127 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.6,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,1,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.165 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.496 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.165 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.155 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0773 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.153 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.0244 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.195 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.0502 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.1 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.3,0.248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0,0.479 +1,0.585,0.04,0.177,0,0,0,0,0,0,0.205 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.331 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.47 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.132 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.0943 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.0707 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0.147 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0.9,0 +1,0.618,0.166,0.3,0,0,0,0,0,1,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,1,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,1,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,1,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,1,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,0.6,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,0,0 +1,0.647,0.257,0.413,0,0,0,0,0,0,0 +1,0.647,0.257,0.413,0,0,0,0,0,0,0 +1,0.647,0.257,0.413,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.0827 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.165 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.0827 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.647,0.347,0.421,0,0,0,0,0,0,0 +1,0.647,0.347,0.421,0,0,0,0,0,0,0 +1,0.647,0.347,0.421,0.17,0.4,0,0,0,0,0 +1,0.647,0.347,0.421,0.449,1,0,0,0,0,0 +1,0.647,0.347,0.421,0.216,1,0,0,0,0,0.165 +1,0.647,0.347,0.421,0.216,0.7,0,0,0,0,0.0827 +1,0.677,0.382,0.482,0.528,0,0,0,0,0,0 +1,0.677,0.382,0.482,0.426,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.248 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.165 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0.0827 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0.608,0.4,0,0,0,0,0 +1,0.785,0.489,0.946,0.472,1,0,0,0,0,0 +1,0.785,0.489,0.946,0,0.1,0,0,0,0,0 +1,0.785,0.489,0.946,0.364,0,0,0,0,0,0.0827 +1,0.785,0.489,0.946,0.415,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0.574,0,0,0,0,0,0.0827 +1,0.77,0.643,0.919,0.574,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.574,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.472,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.335,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.511,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.166 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.051 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0765 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.331 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.426 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.474 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.0827 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0,0.097 +1,0.585,0.04,0.177,0,0,0,0,0,0.9,0.218 +1,0.585,0.04,0.177,0,0,0,0,0,1,0 +1,0.585,0.04,0.177,0,0,0,0,0,1,0 +1,0.585,0.04,0.177,0,0,0,0,0,1,0.0827 +1,0.585,0.04,0.177,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0.3,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.165 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.4,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,1,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.2,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.0827 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.165 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0.165 +1,0.77,0.415,0.804,0,0,0,0,0,0,0.248 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0.426,0.9,0,0,0,0,0 +1,0.77,0.415,0.804,0.534,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.602,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.233,0.2,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0.489,0.9,0,0,0,0,0 +1,0.616,0.441,0.493,0.432,1,0,0,0,0,0 +1,0.598,0.3,0.345,0,1,0,0,0,0,0 +1,0.598,0.3,0.345,0,1,0,0,0,0,0 +1,0.598,0.3,0.345,0,0.8,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.32 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.0473 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.355 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.0827 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.233 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.133 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.188 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0236 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.116 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.6,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,1,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,1,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.6,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.248 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.352 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.065 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.145 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.6,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0.0242 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.194 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.101 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.217 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.507 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.104 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.165 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0.145 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0.0724 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0.283,0.6,0,0,0 +0.667,0.639,0.452,0.394,0,0,0.496,0.8,0.2,0,0.0233 +0.667,0.639,0.452,0.394,0,0,0,0,1,0,0.116 +0.667,0.598,0.276,0.345,0,0,0.0906,0,0.3,0,0 +0.667,0.598,0.276,0.345,0,0,0.205,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0.236,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0,0,0,0,0.136 +0.667,0.598,0.276,0.345,0,0,0,0,0,0,0 +0.667,0.58,0.146,0.197,0,0,0,0,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.15 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.183 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.557,0.0287,0.114,0,0,0,0,0,0,0 +1,0.557,0.0287,0.114,0,0,0,0,0,0.1,0.105 +1,0.557,0.0287,0.114,0,0,0,0,0,1,0.275 +1,0.577,0.043,0.245,0,0,0,0,0,1,0 +1,0.577,0.043,0.245,0,0,0,0,0,1,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.1,0.126 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.176 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.0244 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.244 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.0244 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0.24 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,1,0.165 +0.333,0.6,0.0769,0.194,0,0,0.199,0.1,0,1,0.331 +0.333,0.6,0.0769,0.194,0,0,0.482,1,0,0.3,0 +0.333,0.6,0.0769,0.194,0,0,0.256,0.3,0.7,0,0 +0.333,0.6,0.0769,0.194,0,0,0.335,0,0.8,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0.35,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0.114,0,0,0,0.057 +0.667,0.67,0.17,0.425,0,0,0.669,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.228,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.283,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.136,0,0,0,0.108 +0.667,0.67,0.17,0.425,0,0,0.372,0,0,0,0.452 +0.667,0.7,0.208,0.553,0,0,0.524,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.512,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.6,0 +1,0.77,0.304,0.804,0,0,0,0,0,1,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,1,0.165 +1,0.785,0.409,0.946,0,0,0,0,0,1,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0.3,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.165 +1,0.77,0.573,0.919,0,0,0.142,0.1,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0.142,1,0,0,0 +1,0.739,0.708,0.747,0,0,0.268,0.3,0.7,0,0 +1,0.739,0.708,0.747,0,0,0.37,0,0.8,0,0 +1,0.739,0.708,0.747,0,0,0.26,0,0,0,0 +1,0.739,0.708,0.747,0,0,0.236,0,0,0,0.154 +1,0.739,0.708,0.747,0,0,0.205,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0.567,0,0,0,0 +1,0.677,0.671,0.566,0,0,0.102,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0.421,0,0,0,0 +1,0.639,0.452,0.394,0,0,0.165,0,0,0,0 +1,0.639,0.452,0.394,0,0,0.165,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.148,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.305,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.441,0,0,0,0 +1,0.58,0.146,0.197,0,0,0.217,0,0,0,0.0827 +1,0.58,0.146,0.197,0,0,0.0551,0,0,0,0.0827 +1,0.58,0.146,0.197,0,0,0.126,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.35,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.142,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.37,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.146,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.0787,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.65 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.146 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0486 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.106 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0937 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.147 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.049 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.188,0.1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.188,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.597,1,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0.381,1,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0.284,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.472,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,1,0,0,0,0,0.062 +0.333,0.59,0.0528,0.181,0,0.2,0,0,0,0,0.434 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.314 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.124 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.116 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0699 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.15 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.258 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.226 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0238 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.6,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,1,0.159 +0.333,0.631,0.112,0.301,0,0,0,0,0,1,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.6,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0.131 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0.0718 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.165 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0827 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0827 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.331 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0827 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0953 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0239 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0954 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.139 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0464 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0224 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.112 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.238 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.176 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +1,0.631,0.078,0.433,0,0,0,0,0,0,0.0827 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.496 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.248 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.165 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.165 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0243 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.146 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0,0.331 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0.025 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0.125 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0 +1,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.141 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0469 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.025 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.2 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0.0827 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.621,0.246,0.282,0,0,0,0,0,0,0 +0.667,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.139 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0232 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0538 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.108 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.118 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.304 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.185 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0449 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.112 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.107 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.171 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.384 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.188 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.107 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.195 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.103 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0222 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0888 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.144 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.131 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0643 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.386 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.165 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.165 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,1,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +0.667,0.7,0.387,0.629,0.511,0.6,0,0,0,1,0 +0.667,0.7,0.387,0.629,0.466,1,0,0,0,1,0 +0.667,0.7,0.387,0.629,0.341,1,0,0,0,0.4,0 +0.667,0.7,0.387,0.629,0.267,0.5,0,0,0,0,0.0827 +0.667,0.7,0.387,0.629,0.267,0,0,0,0,0,0.0827 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.284 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0464 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.153 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.0234 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.141 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0987 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.123 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.333 +1,0.585,0.04,0.177,0,0,0,0,0,0,0 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.422 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.397 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.0827 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.9,0.0827 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.7,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0.9,0 +1,0.77,0.415,0.804,0,0,0,0,0,0.7,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0.665,0.9,0,0,0,0,0.0827 +1,0.77,0.415,0.804,0.705,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.511,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.528,1,0,0,0,0,0 +1,0.785,0.489,0.946,0,0.8,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.165 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0.223 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0.512,0.9,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0.327,0.5,0.5,0,0 +0.667,0.618,0.152,0.312,0,0,0.248,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.126,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.398,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.236,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.579,0,0.1,0,0 +0.667,0.618,0.152,0.312,0,0,0.669,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.295,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.166,0.3,0,0,0.272,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.0787,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.398,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.248 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.248 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.248 +1,0.618,0.237,0.297,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.0827 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.331 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.475 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +1,0.639,0.261,0.338,0,0,0,0,0,0,0 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.311 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0.222 +1,0.67,0.274,0.425,0,0,0,0,0,0,0.123 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.125 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.175 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.0827 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.0827 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0.165 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.9,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.7,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0.182 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.269 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.0673 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0242 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.121 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.165 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0858 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.1,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,1,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,1,0.0827 +0.667,0.59,0.0697,0.173,0,0,0,0,0,1,0.0827 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.1,0.0827 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.165 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.108 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.256 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.103 +1,0.724,0.248,0.612,0,0,0,0,0,0.1,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.5,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,0.5,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.155 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0518 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0237 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.142 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0997 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0997 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.309 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.165 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.399 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.411 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.251 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.426,0.6,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0.409,1,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.33,1,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0.216,0.5,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0.216,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0.506,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0.415,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.716,0.6,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.381,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.256,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.256,0.5,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.386,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.398,0.6,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.409,1,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.562,1,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0.5,0,0,0,0,0.206 +0.333,0.631,0.112,0.301,0.409,0,0,0,0,0,0.13 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.453 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.149 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.198 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.025 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.175 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.142 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0947 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0236 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.212 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0827 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0827 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.331 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.283 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.106 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0.181,0.1,0,0,0.131 +1,0.585,0.0565,0.342,0,0,0.181,1,0,0,0.37 +1,0.585,0.0565,0.342,0,0,0.0551,0.3,0.7,0,0.248 +1,0.585,0.0565,0.342,0,0,0.146,0,1,0,0.165 +1,0.585,0.0565,0.342,0,0,0,0,1,0,0 +1,0.631,0.078,0.433,0,0,0.0236,0,1,0,0.147 +1,0.631,0.078,0.433,0,0,0.126,0,0.9,0,0.197 +0.667,0.608,0.0573,0.305,0,0,0.0118,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.339,0,0,0,0.0827 +0.667,0.608,0.0573,0.305,0,0,0.157,0,0,0,0.0477 +0.333,0.585,0.0366,0.177,0,0,0,0,0,0,0.143 +0.333,0.59,0.0424,0.184,0,0,0.0551,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0.181,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0.181,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0.299,0,0,0,0.165 +0.333,0.59,0.0424,0.184,0,0,0.362,0,0,0,0.331 +0.333,0.59,0.0424,0.184,0,0,0.504,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.65,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.169,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.169,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.272,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.413,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.22,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.295,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.205,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.26,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.159,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.159,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0.0236,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0.398,0.6,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.307,1,0,0,0,0.1,0 +0.333,0.616,0.0931,0.237,0.403,1,0,0,0,1,0 +0.667,0.67,0.17,0.425,0.301,0.5,0,0,0,0.5,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0.472,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.153 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.153 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0.835,0.6,0,0,0,0,0 +0.667,0.7,0.387,0.629,0.42,1,0,0,0,0,0.0946 +1,0.77,0.573,0.919,0.304,1,0,0,0,0,0.0473 +1,0.77,0.573,0.919,0.304,0.5,0,0,0,0,0 +1,0.77,0.573,0.919,0.256,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.409,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0.494,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.585,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.46,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.568,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0827 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.331 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.6,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.6,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.331 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.443,0.6,0,0,0,0,0 +1,0.77,0.573,0.919,0.517,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.432,1,0,0,0,0,0 +1,0.77,0.573,0.919,0,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.449,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.699,1,0,0,0,0,0 +1,0.739,0.708,0.747,0.449,0.7,0,0,0,0,0 +1,0.739,0.708,0.747,0.202,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.202,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.398,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.432,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0.472,0,0,0,0,0,0.0827 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0827 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0244 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.147 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0827 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0.0827 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.106 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.14 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0977 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0977 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0.227,0.1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.227,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.42,0.4,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.807,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.33,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.195 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0827 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.165 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0.6,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.6,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.378 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.131 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0253 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.101 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.111 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.248 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.176 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.117 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.249 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.0797 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.258 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.0516 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.331 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.9,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.7,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.165 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.165 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.248 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.413 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.248 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.165 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.165 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.248 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.165 +1,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.165 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.269 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0258 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.341 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.175 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0984 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.0984 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.193 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0.0984 +1,0.836,0.372,0.596,0,0,0,0,0,0,0.0984 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.12 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.248 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.394 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.426 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.165 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.248 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.234 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.046 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0.9,0 +1,0.706,0.394,0.342,0,0,0,0,0,1,0 +1,0.667,0.183,0.183,0,0,0,0,0,1,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.4,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.492 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.241 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.129 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.367 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.104 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.155 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.267 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.255 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.375 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.331 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.331 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.4,0.0827 +0.333,0.699,0.145,0.323,0,0,0,0,0,1,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,1,0.138 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.9,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.167 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0.165 +1,0.993,0.541,1,0,0,0,0,0,0,0.248 +1,0.993,0.541,1,0,0,0,0,0,0,0.159 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0827 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.9,0.0827 +0.667,0.758,0.596,0.386,0,0,0,0,0,1,0 +1,0.758,0.596,0.386,0,0,0,0,0,1,0 +1,0.758,0.596,0.386,0,0,0,0,0,1,0.0827 +1,0.758,0.596,0.386,0,0,0,0,0,1,0 +1,0.634,0.189,0.196,0,0,0,0,0,1,0 +1,0.634,0.189,0.196,0,0,0,0,0,1,0 +1,0.634,0.189,0.196,0.494,0.4,0,0,0,1,0 +1,0.634,0.189,0.196,0.653,1,0,0,0,0.5,0 +1,0.634,0.189,0.196,0,0.2,0,0,0,0,0 +1,0.634,0.189,0.196,0.347,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.534,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.722,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.347,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.619,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.614,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.449,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.619,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.182,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.182,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.2,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0765 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.248 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.248 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.9,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.7,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.165 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.4,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.9,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.188 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.733,0.9,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.915,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.466,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.247,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.247,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.312,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.597,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.472,1,0,0,0,0,0 +1,0.934,0.936,0.732,0,0.9,0,0,0,0,0 +1,0.934,0.936,0.732,0.58,0,0,0,0,0,0 +1,0.934,0.936,0.732,0.403,0,0,0,0,0,0 +1,0.934,0.936,0.732,0.33,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.165 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.442 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.248 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.174 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0.54,0.4,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0.597,1,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,1,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0.438,0.8,0,0,0,0,0.103 +0.667,0.647,0.0527,0.19,0.381,0,0,0,0,0,0.129 +0.667,0.647,0.0527,0.19,0.545,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.19,0.625,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.166 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0827 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.9,0.248 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.7,0.0882 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0441 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.248 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0.653,0.9,0,0,0,0,0 +0.667,0.758,0.181,0.359,0.466,1,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0.426,1,0,0,0,0,0 +0.667,0.797,0.224,0.457,0.284,0.3,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0.9,0 +1,0.915,0.327,0.661,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.4,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.496 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.248 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.101 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.126 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.56 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0884 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0858 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.309 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.284 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.586 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.425 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.052 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.296 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0944 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.142 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.104 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.26 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.191 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.165 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.271 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.203 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.143 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.0688 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.0583 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.9,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.7,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0.324,0.9,0,0,0,0,0 +0.667,0.836,0.273,0.596,0.824,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.557,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.364,0.3,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.29,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.29,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.272,0.9,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0.362,0.5,0.5,0,0 +0.667,0.836,0.51,0.638,0,0,0.102,0,1,0,0 +0.667,0.836,0.51,0.638,0,0,0.508,0,0.1,0,0 +0.667,0.836,0.51,0.638,0,0,0.193,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.228 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.228 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.215 +1,0.634,0.189,0.196,0,0,0,0,0,0,0.0239 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.103 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.0771 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.244 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.0938 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.117 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0236 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.208 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.248 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.248 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.514 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0935 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0701 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.155 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0714 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0714 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.262 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.218 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0245 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.411 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.288 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0931 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.116 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.198 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.363 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.799 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.248 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.459 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.175 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.383 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.0987 +1,0.993,0.541,1,0,0,0,0,0,0,0.123 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.475 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0755 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0.157,0.4,0,0,0.132 +1,0.934,0.936,0.732,0,0,0,1,0,0,0 +1,0.934,0.936,0.732,0,0,0.205,0,1,0,0.0827 +1,0.81,0.629,0.504,0,0,0.362,0,0.6,0,0 +1,0.81,0.629,0.504,0,0,0.626,0,0,0,0 +1,0.81,0.629,0.504,0,0,0.0551,0,0,0,0 +1,0.81,0.629,0.504,0,0,0.0551,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.316 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0518 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.181 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.196 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0.228,0.4,0,0,0 +1,0.647,0.0928,0.193,0,0,0.217,1,0,0,0 +1,0.647,0.0928,0.193,0,0,0.248,0,1,0,0 +1,0.647,0.0928,0.193,0,0,0.228,0,1,0,0 +1,0.647,0.108,0.189,0,0,0,0,1,0,0 +1,0.647,0.108,0.189,0,0,0,0,0.3,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.42 +1,0.732,0.198,0.328,0,0,0,0,0,0.4,0.175 +1,0.818,0.317,0.449,0,0,0,0,0,1,0.0696 +1,0.818,0.317,0.449,0,0,0,0,0,0.2,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0.0827 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.188 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.271 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0678 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.474 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.201 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.447 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.165 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.9,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,1,0 +0.333,0.705,0.228,0.366,0,0,0,0,0,1,0 +0.333,0.705,0.228,0.366,0,0,0,0,0,0.4,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0.248 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0.165 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0.0827 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0.103 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0.0772 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0.115 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0.165 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.248 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.0912 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.0228 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.154 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0.0827 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0.266 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.0502 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.081 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.111 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0221 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0958 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.168 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.352 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0.0827 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.0827 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.15 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0946 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.118 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0827 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.438 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.0963 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.0722 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.165 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.0827 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.453 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.263 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.171 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.331 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.131 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0923 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0461 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.104 +1,0.993,0.647,1,0,0,0,0,0,0,0.104 +1,0.993,0.647,1,0,0,0,0,0,0,0.165 +1,0.993,0.647,1,0,0,0,0,0,0,0.248 +1,0.993,0.647,1,0,0,0,0,0,0,0.165 +1,0.993,0.647,1,0,0,0,0,0,0,0.173 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0427 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0427 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.0827 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.224 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.0748 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.165 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.0917 +1,0.706,0.394,0.342,0,0,0,0,0,0,0.0459 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.203 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.0258 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.129 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.102 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.141 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.401 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.15 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.496 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.304 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0492 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.371 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.186 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.226 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.252 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.227 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.12 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0827 +1,0.732,0.0895,0.33,0,0,0,0,0,0,0.261 +1,0.732,0.105,0.337,0,0,0,0,0,0,0.296 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +1,0.732,0.105,0.337,0,0,0,0,0,0,0.23 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.0933 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.07 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.165 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.168 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.072 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.283 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.193 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.0827 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0.0827 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.18 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.0969 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.248 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0.9,0 +1,0.915,0.327,0.661,0,0,0,0,0,0.7,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.9,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0827 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.0827 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.992 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.199 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.0827 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.364 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.157 +1,0.74,0.0747,0.351,0,0,0,0,0,0.9,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0.7,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0.0551,0.4,0,0,0.165 +0.667,0.732,0.105,0.337,0,0,0,1,0,0,0 +0.667,0.732,0.105,0.337,0,0,0.634,1,0,0,0 +0.667,0.732,0.105,0.337,0,0,0.421,1,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0.646,1,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0.376,1,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0.498,0.5,0.5,0,0 +0.333,0.647,0.0664,0.189,0,0,0.0354,0,1,0,0 +0.333,0.647,0.0664,0.189,0,0,0.283,0,1,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0.165 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,1,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0.8,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.348 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.165 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.249 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.182 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.165 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.248 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.1 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.25 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.225 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0.386,0.4,0,0,0 +1,0.973,0.758,0.933,0,0,0.0906,1,0,0,0 +1,0.973,0.758,0.933,0,0,0.374,0,1,0,0 +1,0.973,0.758,0.933,0,0,0.217,0,0.6,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.559,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.559,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.366,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.0551,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.0906,0,0,0,0 +1,0.857,0.887,0.554,0,0,0.236,0,0,0,0 +1,0.857,0.887,0.554,0,0,0.272,0,0,0,0 +1,0.758,0.596,0.386,0,0,0.0551,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0.0551,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.22 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.132 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0968 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0.0242 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.455,0.9,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.506,1,0,0,0,0,0.0827 +0.333,0.64,0.0449,0.181,0.545,1,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0.415,0.3,0,0,0,0.9,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.7,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.331 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.9,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.4,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0.432,0.9,0,0,0,0,0 +1,0.915,0.327,0.661,0.295,1,0,0,0,0.4,0 +1,0.973,0.402,0.869,0.455,1,0,0,0,1,0 +1,0.973,0.402,0.869,0.403,1,0,0,0,0.2,0 +1,0.973,0.402,0.869,0.466,1,0,0,0,0,0 +1,0.973,0.402,0.869,0,1,0,0,0,0,0 +1,0.973,0.402,0.869,0,0.6,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.165 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0827 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0.0354,0.9,0,0,0 +1,0.857,0.887,0.554,0,0,0.217,0.5,0.5,0,0 +1,0.857,0.887,0.554,0,0,0,0,1,0,0 +1,0.857,0.887,0.554,0,0,0.488,0,0.1,0,0 +1,0.857,0.887,0.554,0,0,0.52,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.0787,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.0669,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.331,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.283,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.331,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.307,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.362,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.102,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.146,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.228,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.5,0,0,0,0.0827 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.26,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.0354,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.61,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.0551,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.567,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.272,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0.441,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0.319,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.136 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.165 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.165 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0942 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.141 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.135 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.4,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.2,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0 +1,0.973,0.758,0.933,0,0,0,0,0,1,0 +1,0.973,0.758,0.933,0.489,0.9,0,0,0,1,0.331 +1,0.973,0.758,0.933,0.381,1,0,0,0,0.9,0 +1,0.973,0.758,0.933,0.358,1,0,0,0,0,0 +1,0.973,0.758,0.933,0.261,1,0,0,0,0,0 +1,0.973,0.758,0.933,0.602,1,0,0,0,0,0.0827 +1,0.934,0.936,0.732,0,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.699,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.267,1,0,0,0,0,0 +1,0.934,0.936,0.732,0,0.3,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0.165 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.0827 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.093 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0232 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.708 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.268 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.154 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.165 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.165 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.349 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.311 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0932 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0466 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.9,0.0827 +0.667,0.647,0.0845,0.177,0,0,0,0,0,1,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,1,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.4,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.231 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.0768 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.248 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.174 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0685 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.231 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.0769 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.235 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0261 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0.165 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0.165 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0.165 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0.0827 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0.248 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.0827 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0.676,0.9,0,0,0,0,0.0827 +1,0.818,0.459,0.446,0.608,1,0,0,0,0,0.165 +1,0.857,0.505,0.513,0.54,1,0,0,0,0,0 +1,0.857,0.505,0.513,0.557,0.3,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0.375,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0.568,0,0,0,0,0.4,0.165 +1,0.915,0.531,0.661,0.25,0,0,0,0,1,0.165 +1,0.915,0.531,0.661,0.307,0,0,0,0,1,0 +1,0.915,0.531,0.661,0.591,0,0,0,0,1,0 +1,0.915,0.531,0.661,0.332,0,0,0,0,1,0 +1,0.915,0.531,0.661,0.332,0,0,0,0,0.6,0 +1,0.915,0.531,0.661,0.398,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.248 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0927 +1,0.993,0.647,1,0,0,0,0,0,0,0.0927 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.173 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0.221 +1,0.779,0.582,0.488,0,0,0,0,0,0,0.147 +1,0.779,0.582,0.488,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0.0475 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0.0827 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.216 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.024 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.133 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.165 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0.248 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.141 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.269 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.269 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.9,0.225 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.7,0.05 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0.0862 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.172 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.165 +1,0.818,0.289,0.468,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.102 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.102 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.331 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.172 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.248 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.263 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.123 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.297 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.248 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0914 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0.126,0.4,0,0,0.0827 +0.667,0.849,0.437,0.683,0,0,0.61,1,0,0,0 +0.667,0.849,0.437,0.683,0,0,0.217,0,1,0,0 +0.667,0.849,0.437,0.683,0,0,0.429,0,0.6,0,0 +0.667,0.849,0.437,0.683,0,0,0.283,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.4,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,1,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.2,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0.386,0.9,0,0,0,0,0 +0.667,0.81,0.673,0.504,0.432,1,0.272,0.4,0,0,0 +0.667,0.81,0.673,0.504,0.506,1,0,1,0,0,0 +0.667,0.81,0.673,0.504,0.33,0.3,0.283,0,1,0,0 +1,0.934,1,0.732,0.472,0,0.26,0,1,0,0 +1,0.857,0.923,0.554,0,0,0.26,0,1,0,0 +1,0.857,0.923,0.554,0.426,0,0.272,0,1,0,0 +1,0.857,0.923,0.554,0,0,0.374,0,0.9,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0.295,0,0,0,0 +1,0.857,0.923,0.554,0,0,0.272,0,0,0,0 +1,0.706,0.394,0.342,0,0,0.343,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0.0236,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0.657,0,0,0,0.23 +1,0.706,0.394,0.342,0,0,0.272,0,0,0,0.0256 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0.295,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.201 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.196 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.0827 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0.166 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0717 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.309 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.165 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.144 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0975 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0779 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.165 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.9,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.7,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0.0966 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.217 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.0242 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.194 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0978 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0733 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.331 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.4,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.3,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.807,0.4,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.202,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.202,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.46,0.8,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.358,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.364,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.523,0,0,0,0,0,0.103 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.148 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.217 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.9,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.7,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.397 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.147 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.165 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.232 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0257 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.101 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0761 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.165 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.331 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.9,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.7,0.0969 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.194 +1,0.973,0.402,0.869,0,0,0.0906,0.9,0,0,0 +1,0.973,0.402,0.869,0,0,0.272,0.5,0.5,0,0.165 +1,0.973,0.402,0.869,0,0,0,0,1,0,0 +1,0.973,0.402,0.869,0,0,0.319,0,0.1,0,0.331 +0.667,0.836,0.273,0.596,0,0,0.0787,0,0,0,0.0827 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0.102,0,0,0,0.0827 +0.333,0.705,0.191,0.366,0,0,0.217,0,0,0,0.184 +0.333,0.705,0.191,0.366,0,0,0.681,0,0,0,0.253 +0.333,0.705,0.191,0.366,0,0,0.524,0,0,0,0.203 +0.667,0.849,0.366,0.683,0,0,0.228,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.362,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.126,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0994 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.224 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.216 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.072 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.0827 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.234 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.7,0.156 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.139 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.25 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.312 +1,0.798,0.103,0.444,0.284,0.9,0,0,0,0,0.24 +1,0.798,0.103,0.444,0.722,0.7,0,0,0,0,0 +1,0.818,0.126,0.47,0.591,0,0,0,0,0,0 +1,0.818,0.126,0.47,0.318,0,0,0,0,0,0.0494 +1,0.818,0.126,0.47,0.381,0,0.283,0.4,0,0,0.388 +1,0.818,0.126,0.47,0,0,0,1,0,0,0.0827 +1,0.818,0.126,0.47,0,0,0.157,0,1,0,0 +1,0.818,0.126,0.47,0,0,0.126,0,1,0,0 +1,0.818,0.149,0.481,0,0,0,0,1,0,0 +1,0.818,0.149,0.481,0,0,0.295,0,0.3,0,0.313 +1,0.818,0.149,0.481,0,0,0.0906,0,0,0,0.0256 +1,0.818,0.149,0.481,0,0,0,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.319,0,0,0,0.0827 +1,0.818,0.149,0.481,0,0,0.157,0,0,0,0.232 +1,0.818,0.168,0.468,0,0,0,0,0,0,0.154 +1,0.818,0.168,0.468,0,0,0.354,0,0,0,0.0827 +1,0.818,0.168,0.468,0,0,0.217,0,0,0,0.0827 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0.476,0,0,0,0.165 +0.667,0.732,0.117,0.328,0,0,0.114,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.429,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.5,0,0,0,0.331 +0.667,0.732,0.129,0.316,0,0,0.0669,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.421,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.248 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0.165 +1,0.857,0.263,0.513,0,0,0,0,0,0,0 +1,0.857,0.263,0.513,0,0,0,0,0,0,0.0827 +1,0.857,0.263,0.513,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +1,0.857,0.263,0.513,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0.352,0.9,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.534,1,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.312,1,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.25,1,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0.284,1,0,0,0,0.4,0.165 +0.667,0.836,0.273,0.596,0.528,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,1,0.165 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.248 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.165 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0481 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0721 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0881 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.022 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.331 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.101 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.202 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.654,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0519 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0778 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.479 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.217 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.182 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0246 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0738 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0.283,0.4,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.228,1,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.657,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.217,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.409,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.512,0,0.3,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0.26,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.146,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.339,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0.441,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.248 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.229 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0509 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0.0827 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0827 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.229 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.0254 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.172 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.351 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.413 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.4,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0.574,0.4,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0.483,1,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,1,0,0,0,0,0 +0.667,0.732,0.153,0.305,0.426,0.8,0,0,0,0,0 +0.667,0.732,0.153,0.305,0.489,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0.352,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0.67,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.496 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.9,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.413 +1,0.993,0.541,1,0,0,0,0,0,0,0.175 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0923 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.9,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.7,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.0827 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.195 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0956 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.119 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.165 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.276 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.197 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.372 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.254 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.0762 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.165 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.248 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.248 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0827 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.9,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.7,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0988 +1,0.993,0.647,1,0,0,0,0,0,0,0.247 +1,0.993,0.647,1,0,0,0,0,0,0,0.0247 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.224 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.125 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.104 +1,0.934,1,0.732,0,0,0,0,0,0,0.261 +1,0.934,1,0.732,0,0,0,0,0,0,0.261 +1,0.934,1,0.732,0,0,0,0,0,0,0.209 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.0827 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.0827 +1,0.621,0.0327,0.15,0,0,0,0,0,0.4,0.165 +1,0.621,0.0327,0.15,0,0,0,0,0,1,0.165 +1,0.621,0.0327,0.15,0,0,0,0,0,1,0 +1,0.621,0.0327,0.15,0,0,0,0,0,1,0 +1,0.64,0.049,0.181,0,0,0,0,0,1,0 +1,0.64,0.049,0.181,0,0,0,0,0,1,0.128 +1,0.64,0.049,0.181,0,0,0,0,0,1,0 +1,0.64,0.049,0.181,0,0,0,0,0,0.3,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0961 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.168 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.183 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.248 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.4,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,1,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,1,0.0827 +0.667,0.647,0.0928,0.193,0,0,0,0,0,1,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,1,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.6,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.0827 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0985 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0739 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.147 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.331 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.9,0 +0.667,0.732,0.312,0.314,0,0,0.283,0.4,0,0.7,0 +0.667,0.732,0.312,0.314,0,0,0,1,0,0,0 +0.667,0.732,0.312,0.314,0,0,0.417,0,1,0,0.0827 +1,0.818,0.459,0.446,0,0,0.169,0,1,0,0 +1,0.857,0.505,0.513,0,0,0.205,0,1,0,0 +1,0.857,0.505,0.513,0,0,0.0669,0,1,0,0.248 +1,0.857,0.505,0.513,0,0,0,0,0.9,0,0.413 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.248 +1,0.797,0.36,0.457,0,0,0,0,0,0.4,0.0827 +1,0.836,0.372,0.596,0,0,0,0,0,1,0 +1,0.836,0.372,0.596,0,0,0,0,0,1,0 +1,0.836,0.372,0.596,0,0,0,0,0,0.9,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.165 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.263 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.472 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0995 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0827 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.154 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0771 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.0827 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.248 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.248 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.232 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.181 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.0827 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.444 +0.333,0.699,0.145,0.323,0,0,0.126,0.4,0,0,0.183 +0.667,0.836,0.273,0.596,0,0,0.362,1,0,0,0.0754 +0.667,0.836,0.273,0.596,0,0,0.295,0,1,0,0 +1,0.973,0.402,0.869,0,0,0.228,0,1,0,0 +1,0.993,0.541,1,0,0,0,0,1,0,0 +1,0.993,0.541,1,0,0,0,0,1,0,0.355 +1,0.993,0.541,1,0,0,0,0,1,0,0.0827 +1,0.993,0.541,1,0,0,0,0,1,0,0 +1,0.993,0.541,1,0,0,0,0,0.6,0,0.0261 +1,0.993,0.541,1,0,0,0,0,0,0,0.261 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0261 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.229 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.248 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.248 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.46 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0951 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0238 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.094 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0958 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0718 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.165 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0.0827 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.331 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0.248,0.4,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,1,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0.228,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0.0354,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0.512,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0.0236,0,0.9,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0.0906,0,0,0,0.331 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.4,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.6,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.9,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.7,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0.347,0.4,0,0,0,0,0 +1,0.934,0.936,0.732,0.335,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.293,1,0,0,0,0.9,0 +1,0.934,0.936,0.732,0.293,1,0,0,0,0.7,0 +1,0.934,0.936,0.732,0.528,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.716,0.5,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0.659,0,0,0,0,0,0.233 +1,0.857,0.887,0.554,0.528,0,0,0,0,0,0.165 +1,0.857,0.887,0.554,0.358,0,0,0,0,0,0.0827 +1,0.857,0.887,0.554,0.483,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0862 +1,0.779,0.536,0.488,0,0,0,0,0,0,0 +1,0.779,0.536,0.488,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0493 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.254 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0.0827 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.243 +1,0.68,0.0551,0.251,0,0,0,0,0,0.9,0.0974 +1,0.68,0.0551,0.251,0,0,0,0,0,1,0 +1,0.68,0.0551,0.251,0,0,0,0,0,1,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0.4,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.071 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.418 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.109 +1,0.818,0.126,0.47,0,0,0,0,0,0,0 +1,0.818,0.126,0.47,0,0,0,0,0,0,0 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.185 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.103 +1,0.818,0.126,0.47,0,0,0,0,0,0,0 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0766 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.9,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.7,0.165 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.248 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.331 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.9,0.15 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.7,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.327,0.9,0,0,0 +1,0.934,0.936,0.732,0,0,0.228,1,0,0,0 +1,0.934,0.936,0.732,0,0,0,1,0,0,0 +1,0.934,0.936,0.732,0,0,0.0906,1,0,0,0.0827 +1,0.934,0.936,0.732,0,0,0.26,1,0,0,0 +1,0.857,0.887,0.554,0,0,0,1,0,0,0 +1,0.857,0.887,0.554,0,0,0.339,0,1,0,0 +1,0.857,0.887,0.554,0,0,0.0354,0,1,0,0 +1,0.857,0.887,0.554,0,0,0,0,1,0,0 +1,0.857,0.887,0.554,0,0,0,0,0.3,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0827 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.187 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.169 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.124 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.148 +1,0.68,0.0551,0.251,0,0,0,0,0,0.4,0.0827 +1,0.74,0.0747,0.351,0,0,0,0,0,1,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0.2,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.101 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.0756 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.131 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.248 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.0669,0.4,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.429,1,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.579,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.319,0,0.6,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.555,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0.319,0,0,0,0.0827 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0.567,0,0,0,0.103 +0.667,0.732,0.162,0.314,0,0,0.319,0,0,0,0.103 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.228,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0.0906,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0.26,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0.0551,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0.469,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0.327,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0.331,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.421,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0.555,0,0,0,0.0827 +1,0.973,0.402,0.869,0,0,0.307,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.869,0,0,0.228,0,0,0,0.165 +1,0.973,0.402,0.869,0,0,0.205,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.308 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.2 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.698 +1,0.993,0.541,1,0,0,0,0,0,0,0.0481 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0933 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0233 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.234 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0519 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0938 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0.0938 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.219 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.0731 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0.101 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0.228,0.9,0,0.9,0.165 +1,0.608,0.026,0.0829,0,0,0.0354,0.5,0.5,1,0.0998 +1,0.68,0.0551,0.251,0,0,0,0,1,1,0.125 +1,0.68,0.0551,0.251,0,0,0.146,0,1,0.4,0 +1,0.74,0.0747,0.351,0,0,0.248,0,1,0,0 +1,0.74,0.0747,0.351,0,0,0.362,0,1,0,0 +1,0.74,0.0747,0.351,0,0,0.319,0,1,0,0.192 +1,0.74,0.0747,0.351,0,0,0.157,0,1,0,0 +1,0.798,0.103,0.444,0,0,0,0,1,0,0 +1,0.798,0.103,0.444,0,0,0.339,0,1,0,0 +1,0.798,0.103,0.444,0,0,0.228,0,1,0,0 +1,0.798,0.103,0.444,0,0,0,0,1,0,0 +1,0.798,0.103,0.444,0,0,0.157,0,1,0,0 +1,0.798,0.103,0.444,0.335,0.4,0.193,0,1,0,0 +1,0.818,0.126,0.47,0.352,1,0.622,0,1,0,0 +1,0.818,0.126,0.47,0.281,0.2,0,0,1,0,0.248 +1,0.818,0.126,0.47,0.281,0,0.283,0,0.4,0,0.0827 +1,0.818,0.126,0.47,0.398,0,0,0,0,0,0 +1,0.818,0.126,0.47,0.426,0,0.524,0,0,0,0 +1,0.818,0.126,0.47,0.585,0,0.26,0,0,0,0.248 +1,0.818,0.149,0.481,0.301,0,0.295,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.26,0,0,0,0.331 +1,0.818,0.149,0.481,0,0,0.0906,0,0,0,0.165 +1,0.818,0.149,0.481,0,0,0.26,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.228,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.0906,0,0,0,0.093 +1,0.818,0.168,0.468,0,0,0,0,0,0,0.0232 +1,0.818,0.168,0.468,0,0,0.362,0,0,0,0 +1,0.818,0.168,0.468,0,0,0.484,0,0,0,0 +1,0.818,0.168,0.468,0,0,0.453,0,0,0,0.195 +1,0.818,0.168,0.468,0,0,0.126,0,0,0,0 +1,0.818,0.168,0.468,0,0,0.362,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0.126,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.217,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0.0236,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.11,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.0236,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.26,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.283,0,0,0,0.0827 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.496,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.567,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.248,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.319,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.26,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0.228,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.236,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.283,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.307,0,0,0,0.0827 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0.374,0,0,0,0.165 +0.667,0.732,0.162,0.314,0,0,0.283,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0.248,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.0472,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.52,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.236,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.217,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0.114,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.236,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.52,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0.331,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0.425,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0.142,0,0,0,0.234 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0.0827 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.184 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0853 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.0213 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0.216 +1,0.634,0.189,0.196,0,0,0,0,0,0,0.248 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.248 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.0827 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.7,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.165 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.182 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0993 +1,0.647,0.0731,0.19,0,0,0,0,0,0.9,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0.7,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.442 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.0986 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.247 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.178 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.102 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.0511 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.0827 +1,0.732,0.217,0.316,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.248 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.248 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.0827 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.9,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.7,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0.126,0.9,0,0,0 +1,0.915,0.531,0.661,0,0,0.228,0.5,0.5,0,0 +1,0.915,0.531,0.661,0,0,0,0,1,0,0 +1,0.915,0.531,0.661,0,0,0.386,0,1,0,0.0827 +1,0.915,0.531,0.661,0,0,0.217,0,0.8,0,0.165 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0.26,0,0,0,0 +1,0.973,0.549,0.869,0,0,0.283,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.248 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.165 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0.0827 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.7,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.165 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.165 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.127 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.248 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.178 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.0715 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.195 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0254 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.369 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.331 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0827 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0.101 +1,0.934,1,0.732,0,0,0,0,0,0,0.201 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0933 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0233 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.463 +1,0.74,0.0747,0.351,0.761,0.4,0,0,0,0,0.0827 +1,0.74,0.0747,0.351,0.267,1,0,0,0,0,0 +1,0.74,0.0747,0.351,0.267,1,0,0,0,0,0 +1,0.74,0.0747,0.351,0.455,0.8,0,0,0,0,0.25 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.0501 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.9,0.0827 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.7,0.165 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.165 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.9,0 +0.667,0.732,0.117,0.328,0.517,0.4,0,0,0,0.7,0 +0.667,0.732,0.129,0.316,0.284,1,0,0,0,0,0 +0.667,0.732,0.129,0.316,0.239,1,0,0,0,0.9,0 +0.667,0.732,0.129,0.316,0.239,1,0,0,0,1,0 +0.667,0.732,0.129,0.316,0.636,1,0,0,0,1,0 +0.667,0.732,0.129,0.316,0,1,0,0,0,0.4,0 +0.667,0.732,0.129,0.316,0,1,0,0,0,0,0.0827 +0.667,0.732,0.136,0.307,0,1,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0.8,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.248 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.331 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.248 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.179 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.099 +1,0.993,0.541,1,0,0,0,0,0,0,0.0495 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.192 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0722 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv index dd93ceebeb..08af87a51b 100644 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv @@ -1,52561 +1,52561 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0.8,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.165 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.0989 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0.5,0,0,0.281,0.647,0.0759,0.473,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.435,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.745,0,0.122 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.181,0.181,0,0.3,0,0,0.281,0.647,0.0759,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0.3,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.122 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0.3,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0.44,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.31,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.212,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.212,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.652,0,0 -1,0.979,0.979,0,0.8,0,0,0,0.993,0.541,0.755,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.538,0,0 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0.603,0,0.244 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0,0,0.488 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0.375,0,0 -1,0.991,0.991,0,1,0,0,0,0.973,0.758,0.239,0,0 -1,0.823,0.823,0,0.8,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.201,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.511,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.179,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.179,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.538,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0.38,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0.505,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.164 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.286 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.336 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0671 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.25 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.176 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.281 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.366 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.254 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0677 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0677 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.648 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.462 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.674,0,0 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.247,0,0.122 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.247,0,0 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.245,0,0 -0.333,0.192,0.192,0,1,0,0,0.281,0.647,0.0527,0.511,0,0 -0.333,0.196,0.196,0,0.8,0,0,0.281,0.647,0.0604,0.467,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.244 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.366 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.641 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.0695 -1,0.798,0.798,0.3,0,0,0,0,0.973,0.402,0,0,0.209 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.128 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.404 -1,0.979,0.979,0.3,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.169 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.101 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.161 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0965 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.158 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.063 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.287 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0.8,0,0,0,0.14,0.68,0.0551,0,0,0.0321 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0.0963 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.449,0.449,1,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,1,0,0,0,0,0.798,0.103,0,0,0.162 -1,0.449,0.449,1,0,0,0,0,0.798,0.103,0,0,0.0649 -1,0.449,0.449,0.4,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.201 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.175 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.262 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.256 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.15 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.657 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.278 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.209 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.308 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0.3,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.263,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0.488 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.244 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.669,0.669,0.8,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0.7,0,0,0,0.14,0.849,0.366,0,0,0.168 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.134 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.488 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.198 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.231 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.528 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0647 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.158 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0949 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.162 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.398 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.0352 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0.3,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.166 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0664 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.279 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.0348 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.167 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.343,0.343,0.3,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.366 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.346 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.104 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.488 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.292 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.339 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0335 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.153 -0.667,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0.061 -0.667,0.0833,0.0833,0.2,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0.219 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.148 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0.3,0,0,0,0.14,0.68,0.0551,0,0,0.299 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0.0309 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0.28 -1,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0.9,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.334,0.334,0,0.5,0,0,0.14,0.732,0.0895,0.516,0,0.258 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.418,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.272,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.255,0,0.0642 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.44,0,0.0642 -1,0.477,0.477,0,1,0,0,0,0.818,0.126,0.171,0,0 -1,0.49,0.49,0,0.9,0,0,0,0.818,0.149,0.171,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.444 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.0654 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.465 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.137 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.122 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.307 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.343 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.244 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.687 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.36 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0.451,0,0.122 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.462,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.543,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.489,0,0 -0.667,0.418,0.418,0,0.8,0,0,0.14,0.797,0.224,0.342,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0.353,0,0.366 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0.451,0,0.122 -0.667,0.418,0.418,0.8,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0.5,0,0,0,0.973,0.402,0.467,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.321,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.462,0,0.366 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.533,0,0.488 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0.9,0,0,0,0.993,0.541,0,0,0.251 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0.511,0,0 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.217,0,0.244 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.174,0,0 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0,0,0.122 -1,0.677,0.677,0,1,0,0,0.14,0.836,0.51,0.679,0,0 -1,0.565,0.565,0,0.8,0,0,0.14,0.81,0.629,0.348,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0.386,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.366 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0947 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.0917 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.247 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.174 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.0698 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.24 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.0953 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.127 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.488 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.173 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.242 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0.8,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0.366 -0.667,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.488 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.312 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.203 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.174 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.0347 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.151 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0.3,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.181,0.181,0.2,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.488 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.122 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.244 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.366 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.244 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.122 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.177 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.0355 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.288 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.172 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.355,0.355,1,0,0,0,0,0.74,0.0747,0,0,0 -1,0.355,0.355,0.8,0,0,0,0,0.74,0.0747,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0.8,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.183,0.183,0.8,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.125 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.343,0.343,0.8,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0.272 -0.667,0.343,0.343,0.8,0,0,0,0.14,0.758,0.181,0,0,0.366 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.24 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.122 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,0.9,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.161 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.129 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.207 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.207 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.212 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.164 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0654 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0.244 -1,0.117,0.117,0.3,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,1,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0.8,0,0,0,0.14,0.68,0.0551,0,0,0.173 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0346 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.192,0.192,0.3,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.647,0.0604,0,0.309,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.647,0.0604,0,0.0386,0 -0.333,0.196,0.196,0,0,0.9,0,0.281,0.647,0.0604,0,0.567,0 -0.333,0.192,0.192,0,0,0,0.4,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,1,0.281,0.647,0.0664,0,0.309,0 -0.333,0.192,0.192,0,0,0,0.2,0.281,0.647,0.0664,0,0.185,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0.369,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0.361,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.283,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.073,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.618,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.361,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.0386,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.185,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.223,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.496,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.47,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.21,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.395,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.309,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.361,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.348,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.283,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.21,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.429,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.296,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.223,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.717,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.0601,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.309,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.369,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.249,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.433,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.618,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.0386,0.488 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.605,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.361,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.33,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.283,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.27,0.122 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0.348,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0.159,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.0386,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.0129,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.562,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.18,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.27,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.0601,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.223,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.21,0.156 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.0938 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.361,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.296,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.309,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.459,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.433,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.322,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.137,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.283,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.366 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0298 -0.333,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0.5,0,0.281,0.647,0.0604,0,0.296,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.532,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.408,0.122 -0.333,0.192,0.192,0,0,0.8,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0.5,0.281,0.647,0.0664,0,0.258,0 -0.333,0.192,0.192,0,0,0,1,0.281,0.647,0.0664,0,0.481,0 -0.333,0.192,0.192,0,0,0,1,0.281,0.647,0.0664,0,0.174,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.148,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.0987,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.348,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.335,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.296,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.309,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.0386,0 -0.333,0.181,0.181,0.8,0,0,0,0.281,0.647,0.0759,0,0.0987,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.647,0.0759,0,0.283,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0.3,0,0,0,0.14,0.732,0.153,0,0.395,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.0601,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.236,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.296,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.137,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.172,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.258,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.605,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.373,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.283,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.488 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0.5,0,0.281,0.679,0.12,0,0.15,0 -0.333,0.234,0.234,0,0,0.9,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0,0,0.4,0.14,0.836,0.273,0,0.172,0 -0.667,0.548,0.548,0,0,0,1,0.14,0.836,0.273,0,0.223,0 -1,0.798,0.798,0,0,0,1,0,0.973,0.402,0,0.137,0 -1,0.798,0.798,0,0,0,1,0,0.973,0.402,0,0.652,0 -1,0.798,0.798,0,0,0,1,0,0.973,0.402,0,0.249,0 -1,0.798,0.798,0,0,0,0.5,0,0.973,0.402,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.618,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.541,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.691,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.335,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.249,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.366 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.361,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.322,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.193,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.451,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.0386,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.412,0.122 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.451,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.609,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.446,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.369,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.27,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.395,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.369,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.318,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.421,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.361,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.348,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.137,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.369,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.172,0.488 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.249,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.0515,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.175 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.14 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.148 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0.8,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0.9,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.488 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0.8,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0.7,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.336 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.163 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.13 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.66,0.0982,0,0.446,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.66,0.0982,0,0.0601,0 -0.333,0.196,0.196,0,0,1,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,1,0,0.281,0.679,0.12,0,0.137,0 -0.333,0.234,0.234,0,0,0.3,0,0.281,0.679,0.12,0,0.249,0 -0.333,0.234,0.234,0,0,0,1,0.281,0.679,0.12,0,0.481,0 -0.333,0.234,0.234,0,0,0,1,0.281,0.679,0.12,0,0.335,0 -0.333,0.234,0.234,0,0,0,1,0.281,0.679,0.12,0,0.21,0 -0.333,0.234,0.234,0,0,0,0.2,0.281,0.679,0.12,0,0.468,0 -0.333,0.299,0.299,0.8,0,0,0,0.281,0.699,0.145,0,0.283,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0.223,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.669,0.669,0.4,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.488 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.244 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0.8,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0.7,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.143 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.204 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.488 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.153 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0612 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.171 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.0684 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0301,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0301,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0301,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.122 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.335 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0.56,0,0.0335 -1,0.316,0.316,0,1,0,0,0.14,0.719,0.0799,0.446,0,0 -1,0.183,0.183,0,1,0,0,0.281,0.64,0.049,0,0,0 -1,0.477,0.477,0,1,0,0,0,0.818,0.183,0.554,0,0 -1,0.477,0.477,0,1,0,0,0,0.818,0.183,0.582,0,0.122 -1,0.477,0.477,0.8,0.8,0,0,0,0.818,0.183,0,0,0 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,0.3,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.244 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.244 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.244 -0.667,0.334,0.334,0.8,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.192,0.192,1,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,1,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.192,0.192,0.3,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.343,0.343,0,0,0.5,0,0.14,0.758,0.343,0,0.283,0 -0.667,0.343,0.343,0,0,0.9,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0.4,0.14,0.758,0.343,0,0.283,0 -0.667,0.343,0.343,0,0,0,1,0.14,0.758,0.343,0,0.296,0 -0.667,0.343,0.343,0,0,0,1,0.14,0.758,0.343,0,0.0386,0.244 -1,0.49,0.49,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.602,0.602,0,0,0,1,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0.5,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.366 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.147 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.122 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.154 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.161 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.244 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.536 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.034 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.206 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.366 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.25 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.176 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.211 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.136 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.068 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.173 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0691 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.134 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.244 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0.8,0,0,0,0.14,0.732,0.312,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0.244 -1,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,0.8,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.244 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.366 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.366 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.488 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.173 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0691 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.165 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.264 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.334 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.1 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0.3,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0.366 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0.4,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.549,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.416,0 -0.333,0.192,0.192,0,0,1,0,0.281,0.647,0.0664,0,0.185,0 -0.333,0.186,0.186,0,0,1,0,0.281,0.647,0.0724,0,0.309,0 -0.333,0.186,0.186,0,0,0.3,0,0.281,0.647,0.0724,0,0.258,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.137,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.223,0.366 -0.333,0.186,0.186,0,0,0,0.2,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.652,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.318,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.438,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.27,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.185,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.438,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.391,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.18,0.18,0.8,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0.7,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.366 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.669,0.669,0,0.5,0,0,0.14,0.849,0.366,0.467,0,0 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.31,0,0 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.587,0,0.244 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.484,0,0.244 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0.538,0,0 -0.667,0.669,0.669,0,1,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.677,0.677,0,0.9,0,0,0.14,0.836,0.51,0.538,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.457,0,0.244 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.462,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.321,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.288,0,0 -0.667,0.565,0.565,0,0.5,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.397,0,0.366 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.473,0,0 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.408,0,0 -0.667,0.307,0.307,0,0.3,0,0,0.281,0.686,0.322,0.538,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0.261,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0.31,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0.337,0,0 -0.667,0.548,0.548,0,1,0,0,0.14,0.836,0.273,0.304,0,0.122 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.185,0,0 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.185,0,0.165 -1,0.798,0.798,0,1,0,0,0,0.973,0.402,0.505,0,0.376 -1,0.979,0.979,0,0.8,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.366 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.164 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0656 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.607 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.238 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0.8,0,0,0,0.14,0.719,0.074,0,0,0.203 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.183,0.183,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0.9,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.122 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.244 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.366 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.128 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.244 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.164 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.0657 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0.408,0,0 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0.359,0,0.122 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0,0,0.338 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0.337,0,0.67 -0.667,0.343,0.343,0,1,0,0,0.14,0.758,0.181,0.679,0,0.122 -0.667,0.418,0.418,0,1,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,1,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.418,0.418,0,0.4,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0.7,0,0,0,0.14,0.836,0.273,0,0,0.244 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0.418,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.418,0,0.244 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0,0,0.122 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.386,0,0.488 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.37,0,0.244 -1,0.677,0.677,0,0.8,0,0,0.14,0.836,0.51,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.244 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.244 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.488 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.165 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.033 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.315 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.168 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.134 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.33 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.236 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.244 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.122 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.325 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.261 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.12 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.648 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.25 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.408 -0.667,0.313,0.313,0.8,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.181,0.181,1,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.244 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.146 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.177 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.248 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.235 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,1,0,0.281,0.647,0.0724,0,0.361,0 -0.333,0.186,0.186,0,0,1,0,0.281,0.647,0.0724,0,0.309,0 -0.333,0.186,0.186,0,0,0.9,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0.4,0.281,0.647,0.0724,0,0.223,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.647,0.0724,0,0.361,0.244 -0.333,0.186,0.186,0,0,0,0.2,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.488 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.548,0.548,0.8,0,0,0,0.14,0.836,0.273,0,0,0.241 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0.366 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,0.4,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.143 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.255 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.159 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.0952 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.164 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.0327 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.302 -1,0.316,0.316,0.8,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.334,0.334,0.7,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.244 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.315,0.315,0.3,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0.2,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.285 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.61 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0.732 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.466 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.345,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.345,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.345,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0.417 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0.417 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.188 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0938 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.276 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.122 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.122 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.0625 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.247 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.331 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0.13 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.525 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.153 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.061 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.231 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.164 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.131 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.5 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.244 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.366 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.167 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0669 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.366 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.706 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.068 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.448,0.448,0,0,0.5,0,0,0.818,0.459,0,0.0601,0 -1,0.448,0.448,0,0,1,0,0,0.818,0.459,0,0.532,0 -1,0.448,0.448,0,0,1,0,0,0.818,0.459,0,0,0 -1,0.448,0.448,0,0,0.4,0,0,0.818,0.459,0,0.361,0 -1,0.448,0.448,0,0,0,0.9,0,0.818,0.459,0,0,0 -1,0.448,0.448,0,0,0,1,0,0.818,0.459,0,0.249,0 -1,0.49,0.49,0.3,0,0,1,0,0.857,0.505,0,0,0.122 -1,0.49,0.49,1,0,0,0.3,0,0.857,0.505,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0.8,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0.122 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.244 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.122 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.223,0 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.309,0.244 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.258,0 -1,0.798,0.798,0,0,1,0,0,0.973,0.549,0,0.361,0 -1,0.979,0.979,0,0,0.3,0,0,0.993,0.647,0,0.296,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0,0.122 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.296,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.395,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.296,0 -1,0.979,0.979,0,0,0,1,0,0.993,0.647,0,0.0258,0 -1,0.991,0.991,0,0,0,1,0,0.973,0.851,0,0.361,0 -1,0.991,0.991,0,0,0,0.5,0,0.973,0.851,0,0.296,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.545,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.223,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.421,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.309,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.124,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.635,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.451,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.464,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.476,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.275,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.249,0.366 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.137,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.73,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0.506,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0.356,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0.73,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0.322,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0.223,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.309,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.296,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.348,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.273,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.682,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.433,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,1,0,0.281,0.608,0.026,0,0.584,0.335 -1,0.0833,0.0833,0,0,1,0,0.281,0.608,0.026,0,0.309,0.134 -1,0.0833,0.0833,0,0,1,0,0.281,0.608,0.026,0,0.309,0 -0.667,0.151,0.151,0,0,1,0,0.281,0.621,0.0355,0,0.112,0 -0.667,0.151,0.151,0,0,0.3,0,0.281,0.621,0.0355,0,0.0129,0 -0.667,0.151,0.151,0,0,0,1,0.281,0.621,0.0355,0,0,0 -0.667,0.151,0.151,0,0,0,1,0.281,0.621,0.0355,0,0.283,0 -0.667,0.151,0.151,0,0,0,1,0.281,0.621,0.0355,0,0.283,0 -0.667,0.151,0.151,0,0,0,0.2,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.464,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.391,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.485,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.309,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0.361,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0.258,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.122 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,0.8,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0.457,0,0 -0.667,0.669,0.669,1,1,0,0,0.14,0.849,0.366,0.391,0,0 -1,0.979,0.979,1,1,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0.9,1,0,0,0,0.993,0.541,0.522,0,0 -1,0.979,0.979,0,1,0,0,0,0.993,0.541,0.451,0,0 -1,0.991,0.991,0,0.8,0,0,0,0.973,0.758,0.783,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.337,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.364,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.489,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.495,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.364,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.366 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.282 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.366 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.21,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.53,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0635 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.182 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.138 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.346 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.0346 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.246 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.61 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.534 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.268 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.198 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,1,0,0.14,0.836,0.273,0,0.494,0 -0.667,0.548,0.548,0,0,0.4,0,0.14,0.836,0.273,0,0.0858,0 -0.667,0.548,0.548,0,0,0,0.9,0.14,0.836,0.273,0,0,0.122 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.532,0 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.21,0 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.464,0 -0.667,0.669,0.669,0.3,0,0,0,0.14,0.849,0.366,0,0.215,0.29 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0.361,0.303 -0.667,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0.545,0 -0.667,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0.0386,0 -1,0.991,0.991,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0.3,0,0,0,0,0.973,0.758,0,0.0258,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.27,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.0386,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.433,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.204 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.255 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.244 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.261 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0.3,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.167 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.34 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.136 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.146 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.47 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.171 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.381 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.271 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.488 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.541 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.28 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.192 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.351 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.349 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.282 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.494 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.344 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.207 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.406 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -1,0.448,0.448,0,0,0,0,0,0.818,0.235,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0.8,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0.156 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.332 -1,0.798,0.798,0.9,0,0,0,0,0.973,0.402,0,0,0.0332 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.244 -0.667,0.363,0.363,0,0.5,0,0,0.281,0.699,0.263,0.44,0,0.122 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.549,0,0.162 -0.667,0.363,0.363,0,1,0,0,0.281,0.699,0.263,0.739,0,0.0323 -1,0.823,0.823,0,1,0,0,0,0.934,0.936,0.348,0,0 -1,0.823,0.823,0,1,0,0,0,0.934,0.936,0,0,0.488 -1,0.823,0.823,0,0.3,0,0,0,0.934,0.936,0,0,0.601 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0899 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.252 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.342 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.549 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0.338 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.141 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.0706 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.338 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.389 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.244 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.404 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.265 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0.5,0,0,0.818,0.149,0,0.236,0.0799 -1,0.49,0.49,0,0,0.9,0,0,0.818,0.149,0,0,0 -1,0.49,0.49,0,0,0,0.4,0,0.818,0.149,0,0.0258,0 -1,0.49,0.49,0,0,0,1,0,0.818,0.149,0,0.433,0.366 -1,0.49,0.49,0,0,0,1,0,0.818,0.149,0,0,0 -1,0.477,0.477,0,0,0,1,0,0.818,0.168,0,0.361,0.142 -1,0.477,0.477,0,0,0,1,0,0.818,0.168,0,0.0386,0 -1,0.477,0.477,0,0,0,0.5,0,0.818,0.168,0,0.618,0.244 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0.296,0.204 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0.545,0.122 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0.309,0.122 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0.369,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.176 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.35 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0.308 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.418,0.418,0.8,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0.5,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.732 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.473 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.176 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.351 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.246 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.374 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0.3,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0.244 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0.3,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.299,0.299,0.8,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -1,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.122 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.122 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.244 -1,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.366 -1,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.157 -1,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.0941 -1,0.991,0.991,0.7,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.191 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.136 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.238 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.366 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.244 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.151,0.151,0,0,1,0,0.281,0.621,0.0327,0,0.0386,0 -1,0.183,0.183,0,0,1,0,0.281,0.64,0.049,0,0.309,0 -1,0.183,0.183,0,0,0.9,0,0.281,0.64,0.049,0,0.416,0 -1,0.183,0.183,0,0,0,0.4,0.281,0.64,0.049,0,0.476,0 -1,0.183,0.183,0,0,0,1,0.281,0.64,0.049,0,0.262,0 -1,0.183,0.183,0,0,0,1,0.281,0.64,0.049,0,0.223,0 -1,0.183,0.183,0,0,0,1,0.281,0.64,0.049,0,0,0 -1,0.192,0.192,0,0,0,1,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0,0,0,0.5,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,0.8,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,1,0,0,0,0.281,0.647,0.0731,0,0,0.154 -1,0.192,0.192,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.192,0.192,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0.9,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.366 -1,0.343,0.343,0,0.5,0,0,0.14,0.732,0.168,0.478,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.511,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.489,0,0.122 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.337,0,0 -1,0.334,0.334,0,1,0,0,0.14,0.732,0.198,0.293,0,0 -1,0.334,0.334,0,0.3,0,0,0.14,0.732,0.198,0,0,0.366 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -1,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.416 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.206 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0.244 -1,0.49,0.49,0.8,0,0,0,0,0.857,0.505,0,0,0.193 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,0.3,0,0,0,0,0.857,0.505,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.649 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.0642 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.161 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.34 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.204 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.366 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.269 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.172 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.137 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.244 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.158 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.215 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.169 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.0674 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.338 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.0338 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.186,0.186,0,0,1,0,0.281,0.647,0.118,0,0.0987,0 -0.667,0.313,0.313,0,0,1,0,0.14,0.732,0.233,0,0.258,0.3 -0.667,0.313,0.313,0,0,1,0,0.14,0.732,0.233,0,0,0.268 -0.667,0.313,0.313,0,0,1,0,0.14,0.732,0.233,0,0.15,0 -1,0.445,0.445,0,0,0.3,0,0,0.818,0.34,0,0.258,0 -1,0.445,0.445,0,0,0,1,0,0.818,0.34,0,0.506,0.244 -1,0.445,0.445,0,0,0,0.6,0,0.818,0.34,0,0.234,0.51 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0.582,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.159,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.15,0.477 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.519,0.122 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.21,0.122 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.244 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.335,0.794 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.0987,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0.122 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0.545,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.234,0.163 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.444,0.098 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.343,0 -1,0.49,0.49,0.3,0,0,0,0,0.857,0.505,0,0,0 -1,0.49,0.49,1,0,0,0,0,0.857,0.505,0,0,0.34 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0.0312 -0.667,0.418,0.418,0.8,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.122 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.244 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.244 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.122 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0.122 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.244 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.167 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.167 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.196 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.117 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.174 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0695 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.188 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.153 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.0306 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.732 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.366 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.105 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.318 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.104 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0634 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.144 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0.8,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0.3,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.643 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0622 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.326 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.353 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.0353 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.348 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.367 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.244 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.31 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.163 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.163 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0.8,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0.7,0,0,0,0.281,0.647,0.0724,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0.386,0,0 -0.333,0.182,0.182,0,1,0,0,0.281,0.647,0.0888,0.375,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.364,0,0 -0.333,0.196,0.196,0,1,0,0,0.281,0.66,0.0982,0.429,0,0 -0.667,0.343,0.343,0,0.8,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.488 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.244 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.242 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.161 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.0644 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.207 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.334 -1,0.253,0.253,0,0,0.5,0,0.14,0.68,0.0551,0.505,0.421,0.1 -1,0.253,0.253,0,1,0.9,0,0.14,0.68,0.0551,0.511,0,0 -0.667,0.253,0.253,0,1,0,0.4,0.14,0.68,0.0551,0,0,0 -0.667,0.253,0.253,0,1,0,1,0.14,0.68,0.0551,0.418,0,0.188 -0.667,0.253,0.253,0,1,0,1,0.14,0.68,0.0551,0.348,0,0 -0.667,0.316,0.316,0.8,0.8,0,1,0.14,0.719,0.074,0.348,0,0 -0.667,0.316,0.316,1,0,0,1,0.14,0.719,0.074,0.299,0,0 -0.667,0.316,0.316,1,1,0,1,0.14,0.719,0.074,0,0,0 -0.667,0.316,0.316,0.3,1,0,1,0.14,0.719,0.074,0.37,0,0 -0.667,0.316,0.316,0,1,0,0.1,0.14,0.719,0.074,0.332,0,0 -0.667,0.316,0.316,0,1,0,0,0.14,0.719,0.074,0.484,0,0 -0.667,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0.723,0,0 -0.667,0.334,0.334,0,1,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.334,0.334,0,0.4,0,0,0.14,0.732,0.0895,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.429,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.413,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0.467,0,0.122 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.538,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.19,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.19,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.244 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.366 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0.5,0,0,0.281,0.647,0.0759,0.402,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.717,0,0.122 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.679,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.242,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.647,0.0759,0.242,0,0 -0.333,0.181,0.181,0,0.3,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0.3,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.488 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.161 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0624 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.187 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.238 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.034 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0651 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.26 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.225 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.154 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.431 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.374 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.169 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0671 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.336 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.216 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0.5,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.736,0.128,0,0,0.191 -0.667,0.316,0.316,1,0,0,0,0.14,0.736,0.128,0,0,0.274 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.178,0.178,0.1,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.244 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.488 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.595,0.595,0.5,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.246 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.105 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.366 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0.196,0,0.239 -0.667,0.67,0.67,0,0.7,0,0,0.14,0.841,0.507,0.196,0,0 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.435,0,0 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.342,0,0.348 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.402,0,0.0691 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.576,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.233 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.247 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.141 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0438 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.246 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.176 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.122 -0.667,0.181,0.181,1,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0.5,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.366 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0.258,0,0.122 -1,0.674,0.674,0,0.7,0,0,0,0.98,0.399,0.258,0,0 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.397,0,0 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.489,0,0.122 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.424,0,0.122 -0.667,0.595,0.595,0,1,0,0,0.14,0.854,0.364,0.516,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.22,0,0.488 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.22,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.488 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.122 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.122 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.366 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.189 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.1 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0.2,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.0987,0 -0.667,0.0495,0.0495,0,0,0.3,0,0.421,0.562,0.0159,0,0.0987,0 -0.667,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -1,0.246,0.246,0,0,0,1,0.281,0.636,0.188,0,0.446,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0.571,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0.738,0 -1,0.116,0.116,0,0,0,1,0.281,0.616,0.0874,0,0.0386,0 -1,0.116,0.116,0,0,0,0.3,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.0999 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.333 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0.8,0,0.281,0.61,0.0215,0,0.296,0 -1,0.0513,0.0513,0,0,1,0,0.281,0.61,0.0215,0,0.627,0 -1,0.0513,0.0513,0,0,1,0,0.281,0.61,0.0215,0,0.605,0 -1,0.0513,0.0513,0,0,0.2,0.1,0.281,0.61,0.0215,0,0.073,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0.369,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0.309,0 -1,0.116,0.116,0,0,0,1,0.14,0.658,0.0299,0,0,0 -1,0.116,0.116,0,0,0,0.6,0.14,0.658,0.0299,0,0.249,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.0299,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0.106 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0.177 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.15 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0.446,0,0.1 -0.667,0.177,0.177,0,0.8,0,0,0.281,0.649,0.145,0.223,0,0 -0.667,0.177,0.177,0,1,0,0,0.281,0.649,0.145,0.489,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.736,0.272,0.505,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.736,0.272,0.429,0,0 -0.667,0.305,0.305,0,0.9,0,0,0.14,0.736,0.272,0.467,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.207,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.207,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0.1,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.164,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.179,0,0,0 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0.122 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.488 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.458 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.28 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.242 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.0349 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.471 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.0349 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0.13 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0.122 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0.262,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0.185,0 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.122 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.122 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.222 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.1 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.268 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.0926 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.278 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.122 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.599 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0323 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.259 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.244 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.122 -0.667,0.322,0.322,0.6,0,0,0,0.14,0.762,0.34,0,0,0.61 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0.4,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.488 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.366 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.366 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.092 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.214 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.0633 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.127 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.232 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0662 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.139 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.315 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.355 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.106 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.244 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0682 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0341 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.284 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0473 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.377 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.462 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0.7,0,0.14,0.736,0.0889,0,0.0987,0.229 -0.667,0.33,0.33,0,0,1,0,0.14,0.736,0.0889,0,0.0987,0.0983 -0.667,0.33,0.33,0,0,1,0,0.14,0.736,0.0889,0,0.605,0.122 -0.667,0.337,0.337,0,0,1,0,0.14,0.736,0.104,0,0.433,0 -0.667,0.337,0.337,0,0,0.8,0,0.14,0.736,0.104,0,0.27,0.0695 -0.667,0.337,0.337,0,0,0,0.5,0.14,0.736,0.104,0,0.348,0.47 -0.667,0.337,0.337,0,0,0,1,0.14,0.736,0.104,0,0.494,0.0695 -0.667,0.337,0.337,0,0,0,1,0.14,0.736,0.104,0,0.27,0 -0.667,0.337,0.337,0,0,0,1,0.14,0.736,0.104,0,0.0258,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.249,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0.8,0.281,0.649,0.066,0,0.498,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.395,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.579,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.395,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.322,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.309,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.0386,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.322,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.258,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.137,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.369,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.532,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.249,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.296,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.172,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.27,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.27,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.335,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.0987,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.459,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.185,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.258,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.223,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.609,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.172,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.558,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.0644,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.112,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.236,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.815,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.429,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.322,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.356,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.361,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.584,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.609,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.172,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.224 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0962 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0.5,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.243 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0.1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0657 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.131 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.182 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.245 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0701 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.128 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.481 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.417 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.135 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.0335 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.268 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.37 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.427 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.325 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.432 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.477 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.105 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.134 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.201 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0622 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.215 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.366 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.228 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0325 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0.1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.243 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.244 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0668 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.234 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0678 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0.413 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0.284 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.237 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0.2,0,0.14,0.723,0.0735,0,0,0.132 -0.667,0.313,0.313,0,0,1,0,0.14,0.723,0.0735,0,0.644,0.0661 -0.667,0.313,0.313,0,0,1,0,0.14,0.723,0.0735,0,0.322,0 -0.667,0.313,0.313,0,0,0.8,0,0.14,0.723,0.0735,0,0.285,0 -0.667,0.313,0.313,0,0,0,0.5,0.14,0.723,0.0735,0,0.135,0.122 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0.137,0.122 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0.455,0 -0.333,0.19,0.19,0,0,0,1,0.281,0.649,0.0524,0,0.236,0 -0.333,0.19,0.19,0,0,0,1,0.281,0.649,0.0524,0,0.27,0 -0.333,0.19,0.19,0,0,0,0.2,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.382,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.704,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.335,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.197,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.283,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.455,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.322,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.309,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,1,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.481,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.366 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0645 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.129 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.244 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0.19,0,0 -0.333,0.208,0.208,0,0.7,0,0,0.281,0.682,0.119,0.19,0,0 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0.56,0,0 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0.576,0,0.122 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0.511,0,0 -0.333,0.258,0.258,0,1,0,0,0.281,0.701,0.144,0,0,0.227 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0.283,0,0.675 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.366 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.435,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.571,0,0.265 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.353,0,0.188 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.366 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.49 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.401 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.063 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.189 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.141 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0704 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.126 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.268 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0.5,0,0,0,0,0.745,0.0742,0,0,0.367 -1,0.351,0.351,1,0,0,0,0,0.745,0.0742,0,0,0.137 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.326,0,0.122 -0,0.0495,0.0495,0,0.7,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.603,0,0.122 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.793,0,0 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.348,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.245,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.582,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.397,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.636,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.554,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.185,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.185,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.647,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.386,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.538,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0682 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.341 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.204 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0577 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0866 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0.7,0,0.421,0.562,0.0159,0,0.361,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.296,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.27,0 -0.333,0.178,0.178,0,0,0.3,0,0.281,0.649,0.0882,0,0.0601,0 -0.333,0.178,0.178,0,0,0,1,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,1,0.281,0.649,0.0882,0,0.0601,0.122 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0.309,0.122 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0,0.244 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0.567,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.0976,0,0.369,0 -0.333,0.186,0.186,0,0,0,0.3,0.281,0.662,0.0976,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.124,0.122 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0.0987,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0.197,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0.481,0.122 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0.0129,0.122 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0.373,0 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0.554,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0.21,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0 -0.667,0.466,0.466,0.2,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0651 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.35 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.366 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.24 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0701 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.175 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.165 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0658 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.329 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.167 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0661 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.33 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0661 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.122 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.122 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.366 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.61 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0.122 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.244 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.131 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.667,0.466,0.466,1,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.0912 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.0608 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0.6,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.189 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.234 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.302 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0504 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0641 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.16 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.389 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0321 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0671 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.29 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0646 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0969 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.533,0,0 -1,0.0495,0.0495,0,0.8,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.549,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.554,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.516,0,0 -1,0.0495,0.0495,0,0.9,0,0,0.421,0.562,0.0181,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.193,0.193,0.6,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.193,0.193,1,0,0,0,0.281,0.649,0.0923,0,0,0.0976 -1,0.193,0.193,1,0,0,0,0.281,0.649,0.0923,0,0,0.0976 -1,0.193,0.193,0.4,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.242 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.138 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.0974 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.162 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0.435,0,0 -0.667,0.305,0.305,0,0.8,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.736,0.272,0.402,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.649,0.145,0.402,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.649,0.145,0.478,0,0 -0.333,0.177,0.177,0,0.9,0,0,0.281,0.649,0.145,0.283,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.315,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.462,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.723,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.467,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.234,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0.435,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0.745,0,0 -0.333,0.186,0.186,0.6,0,0.8,0,0.281,0.662,0.179,0,0.369,0 -0.333,0.186,0.186,0.9,0,0.7,0,0.281,0.662,0.179,0,0.335,0 -0.333,0.186,0.186,0,0,0,0.6,0.281,0.662,0.179,0,0.558,0 -0.333,0.186,0.186,0,0,0,1,0.281,0.662,0.179,0,0.296,0 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.258,0.244 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.249,0 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.348,0 -1,0.526,0.526,0,0,0,1,0,0.922,0.527,0,0.545,0.122 -1,0.526,0.526,0,0,0,0.7,0,0.922,0.527,0,0.197,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0.519,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.27,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.283,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.592,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.201 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.0593 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.363 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.366 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.366 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.244 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.122 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.371 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.244 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.122 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.366 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0.3,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,1,0,0,0.784,0.578,0,0.249,0 -1,0.638,0.638,0,0,0.2,0.1,0,0.784,0.578,0,0.283,0 -1,0.638,0.638,0,0,0,1,0,0.784,0.578,0,0.0601,0.106 -1,0.638,0.638,0,0,0,1,0,0.784,0.578,0,0.283,0.106 -1,0.638,0.638,0,0,0,1,0,0.784,0.578,0,0.0515,0 -1,0.183,0.183,0,0,0,1,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0.6,0.14,0.671,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.188 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.0994 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.0994 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.35 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.366 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.244 -0.667,0.189,0.189,0,0,0.8,0,0.281,0.649,0.108,0,0.296,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.584,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.579,0 -0.333,0.0495,0.0495,0,0,0.2,0.1,0.421,0.562,0.0181,0,0.446,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.27,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.258,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.283,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.369,0 -0.667,0.307,0.307,0,0,0,1,0.14,0.736,0.231,0,0,0.122 -0.667,0.307,0.307,0,0,0,0.8,0.14,0.736,0.231,0,0.567,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.0987,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.366 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.0258,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.369,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.0258,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.0129,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.395,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.0987,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.0386,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.249,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.249,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.21,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.0601,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.249,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.343,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.21,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.163,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.506,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.506,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0.322,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0.0987,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.309,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.644,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.249,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.27,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.322,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.322,0.366 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.122 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.124,0.488 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.21,0 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.519,0.122 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.185,0 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.249,0.122 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.0386,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.27,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.459,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.236,0 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.366 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0.485,0 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0.283,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0.27,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.0626 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.0605 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.121 -1,0.0495,0.0495,0.5,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0649 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.224 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.122 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.34 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.258 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.61 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.122 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.122 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,0.5,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.244 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,1,0,0,0,0.14,0.841,0.271,0,0,0.244 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.61 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,1,0,0.2,0,0.14,0.854,0.364,0,0,0.187 -0.667,0.595,0.595,0.1,0,1,0,0.14,0.854,0.364,0,0.506,0.0651 -0.667,0.67,0.67,0.5,0,1,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,1,0,0.8,0,0.14,0.841,0.507,0,0,0.122 -0.667,0.67,0.67,0,0,0,0.5,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.244 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.239 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0341 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0703 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.233 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.0639 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.16 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.482 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.242 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.243 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.102 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.224 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.244 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.366 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.239 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.341 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.136 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0697 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.209 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.5,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,1,0,0.7,0,0.281,0.623,0.0353,0,0.137,0 -0.667,0.15,0.15,1,0,1,0,0.281,0.623,0.0353,0,0,0 -0.667,0.15,0.15,1,0,1,0,0.281,0.623,0.0353,0,0.0386,0 -0.667,0.181,0.181,1,0,1,0,0.281,0.642,0.0447,0,0.348,0 -0.667,0.181,0.181,1,0,0.8,0,0.281,0.642,0.0447,0,0.485,0 -0.667,0.181,0.181,1,0,0,0.5,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,1,0,0,1,0.281,0.642,0.0447,0,0.322,0 -0.667,0.181,0.181,1,0,0,1,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,1,0,0,1,0.281,0.642,0.0447,0,0.283,0 -0.667,0.33,0.33,1,0,0,1,0.14,0.736,0.0889,0,0.309,0.228 -0.667,0.33,0.33,1,0,0,0.2,0.14,0.736,0.0889,0,0.236,0.13 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.472,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.498,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.395,0.0698 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0.0601,0.0349 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0.137,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0.27,0 -0.333,0.193,0.193,1,0,0,0,0.281,0.649,0.0601,0,0.395,0.233 -0.333,0.193,0.193,1,0,0,0,0.281,0.649,0.0601,0,0.481,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.446,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.532,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.667,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.32,0.244 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.657,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.309,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.309,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.61 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.61 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.232 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.565 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0615 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0615 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.386 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.066 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0.242,0,0 -0.333,0.19,0.19,0,0.7,0,0,0.281,0.649,0.0524,0.242,0,0.122 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.435,0,0.122 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.375,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.424,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.538,0,0 -0.333,0.193,0.193,0,1,0,0,0.281,0.649,0.0601,0.255,0,0 -0.333,0.193,0.193,0,0.6,0,0,0.281,0.649,0.0601,0.511,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0.5,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0.5,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0611 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0306 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.868,0.868,0.5,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0,0.244 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.61 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0.6,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.243 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0694 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.61 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0.7,0,0.281,0.61,0.0183,0,0.0987,0 -1,0.0495,0.0495,1,0,1,0,0.281,0.61,0.0183,0,0.0987,0 -1,0.0495,0.0495,1,0,1,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,1,0,1,0,0.281,0.61,0.0183,0,0.249,0 -1,0.0495,0.0495,1,0,0.8,0,0.281,0.61,0.0183,0,0.309,0 -1,0.0495,0.0495,1,0,0,0.5,0.281,0.61,0.0183,0,0.356,0 -1,0.0495,0.0495,0.7,0,0,1,0.281,0.61,0.0165,0,0.258,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0.6,0.281,0.61,0.0165,0,0.275,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.0627 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.122 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0.136 -1,0.444,0.444,0,0,0.2,0,0,0.804,0.102,0,0,0 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0.288,0 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0.236,0 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0,0.0676 -1,0.444,0.444,0,0,1,0,0,0.804,0.102,0,0.67,0.203 -1,0.47,0.47,0,0,0.3,0,0,0.824,0.125,0,0.296,0 -1,0.47,0.47,0,0,0,1,0,0.824,0.125,0,0.249,0 -1,0.47,0.47,0,0,0,1,0,0.824,0.125,0,0.597,0 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0.446,0.191 -0.667,0.33,0.33,0,0,0,1,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0.7,0.14,0.736,0.0889,0,0.395,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.185,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.223,0.0665 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.249,0.2 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.283,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.112,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.27,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.236,0.171 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.288,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.768,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0515,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.755,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.223,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.382,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.283,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.592,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.137,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.0386,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.421,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.408,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.455,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.309,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.618,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.618,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0.25,0,0 -0.667,0.178,0.178,0,0.7,0,0,0.281,0.649,0.0882,0.25,0,0 -0.667,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.516,0,0 -0.667,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.37,0,0 -0.667,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.37,0,0 -0.667,0.322,0.322,0,1,0,0,0.14,0.762,0.179,0.576,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.366 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,0.5,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.281,0.701,0.144,0,0,0.122 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.122 -1,0.67,0.67,1,0,0,0,0.14,0.841,0.507,0,0,0.61 -1,0.67,0.67,1,0,0,0,0.14,0.841,0.507,0,0,0.366 -1,0.98,0.98,0.2,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.366 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.244 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0.0645 -1,0.625,0.625,1,0,0,0,0.14,0.815,0.625,0,0,0.226 -1,0.727,0.727,0.6,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0958 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.21 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.133 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -1,0.328,0.328,0,0.3,0,0,0.14,0.736,0.197,0.397,0,0 -1,0.328,0.328,0,1,0,0,0.14,0.736,0.197,0.386,0,0 -1,0.328,0.328,0,1,0,0,0.14,0.736,0.197,0.31,0,0 -1,0.328,0.328,0,1,0.8,0,0.14,0.736,0.197,0.462,0.223,0 -1,0.316,0.316,0,1,0.7,0,0.14,0.736,0.216,0,0,0 -1,0.316,0.316,0,0.4,0,0.6,0.14,0.736,0.216,0,0.481,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.137,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.408,0 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.395,0 -0.667,0.178,0.178,0,0,0,1,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0.7,0.281,0.649,0.125,0,0.369,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.172,0.244 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.421,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.67,0.122 -0.667,0.178,0.178,0.6,0,0,0,0.281,0.649,0.125,0,0.361,0.244 -0.667,0.177,0.177,1,0,0,0,0.281,0.649,0.145,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.649,0.145,0,0.567,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.649,0.145,0,0.137,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0.296,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.545,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.519,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.369,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.433,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.0987,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.73,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.258,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.197,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.283,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.395,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.459,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.309,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.488 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.073,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.0858,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.498,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.236,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.592,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.249,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.15,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0.373,0 -1,0.868,0.868,0,0.3,0,0,0,1,0.642,0.342,0.296,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.332,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.315,0.408,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.489,0.124,0 -1,0.98,0.98,0,1,0,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0.4,0,0,0,0.98,0.845,0,0.0987,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.0386,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.275,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.296,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.258,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.433,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.223,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.592,0.366 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.249,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.395,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.579,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.322,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.481,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.61 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.122 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.102 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0342 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.269 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.303 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.468,0.468,0,0,0.3,0,0,0.824,0.287,0,0,0 -1,0.468,0.468,0,0,1,0,0,0.824,0.287,0,0.335,0 -1,0.468,0.468,0,0,1,0,0,0.824,0.287,0,0.137,0 -1,0.468,0.468,0,0,0.7,0,0,0.824,0.287,0,0.258,0 -1,0.468,0.468,0,0,0,0.6,0,0.824,0.287,0,0.0386,0 -1,0.468,0.468,0,0,0,1,0,0.824,0.287,0,0.185,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0.21,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0.249,0 -1,0.449,0.449,0,0,0,1,0,0.824,0.315,0,0.485,0 -1,0.449,0.449,0,0,0,0.7,0,0.824,0.315,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.824,0.315,0,0.395,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.275,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.275,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.618,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.366 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -1,0.305,0.305,0.6,0,0,0,0.14,0.736,0.272,0,0,0 -1,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0,0.122 -1,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0,0.366 -1,0.305,0.305,1,0,0,0,0.14,0.736,0.272,0,0,0.366 -1,0.307,0.307,1,0,0,0,0.14,0.736,0.31,0,0,0.366 -1,0.307,0.307,1,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.307,0.307,0.5,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.122 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.122 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.366 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.244 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.346 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.325 -1,0.674,0.674,0,0.3,0,0,0,0.98,0.545,0.435,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.348,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.272,0,0.122 -1,0.868,0.868,0,1,0,0,0,1,0.642,0,0,0.755 -1,0.868,0.868,0,1,0,0,0,1,0.642,0.37,0,0.154 -1,0.868,0.868,0,0.4,0,0,0,1,0.642,0,0,0.132 -1,0.868,0.868,0,0,0,0,0,1,0.642,0.56,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0.375,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0.424,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.196 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.462 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.16 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.488 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.376 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.0318 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0654 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.262 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.206 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.138 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.415 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.1 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.201 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.366 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.366 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.185 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0627 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.274 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.206 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.189 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0354 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.177 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.067 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.201 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.24 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.351 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.315 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.229 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.131 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.2 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0.0667 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0.7,0,0,0,0.281,0.649,0.0524,0,0,0.0917 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.244 -0.333,0.193,0.193,0,0,0.2,0,0.281,0.649,0.0601,0,0,0.0692 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.528,0.208 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.361,0 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.0258,0 -0.333,0.193,0.193,0,0,1,0,0.281,0.649,0.0601,0,0.369,0.261 -0.333,0.189,0.189,0,0,0.3,0,0.281,0.649,0.066,0,0.0386,0.0694 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.309,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.283,0 -0.333,0.189,0.189,0,0,0,1,0.281,0.649,0.066,0,0.605,0 -0.333,0.189,0.189,0,0,0,0.7,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.0987,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.361,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.0987,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.309,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.605,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.631,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.369,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.296,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.369,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0.135 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.536 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.033 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.122 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.366 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.241 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.138 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.244 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0.2,0,0.421,0.562,0.0159,0,0,0.0619 -1,0.0495,0.0495,1,0,1,0,0.421,0.562,0.0159,0,0.335,0.124 -1,0.351,0.351,1,0,1,0,0,0.745,0.0742,0,0.532,0 -1,0.351,0.351,1,0,1,0,0,0.745,0.0742,0,0.309,0 -1,0.351,0.351,1,0,1,0,0,0.745,0.0742,0,0,0 -0.667,0.251,0.251,1,0,0.3,0,0.14,0.684,0.0548,0,0,0.162 -0.667,0.251,0.251,1,0,0,1,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,1,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,1,0,0,1,0.14,0.723,0.0735,0,0.296,0.0698 -0.667,0.313,0.313,1,0,0,1,0.14,0.723,0.0735,0,0.309,0.349 -0.667,0.313,0.313,1,0,0,0.7,0.14,0.723,0.0735,0,0.21,0.174 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0.223,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0.373,0 -0.333,0.19,0.19,0.8,0,0,0,0.281,0.649,0.0524,0,0.322,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.283,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.0987,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.249,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.0858,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0.296,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.335,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.137,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.395,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.0515,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.481,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0987,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0987,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.0601,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.708,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.283,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.296,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.446,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.262,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.258,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.876,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.249,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.0601,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.249,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.528,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.258,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.296,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.567,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.27,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.704,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.373,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.283,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.532,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.309,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.356,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.567,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.185,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0.5,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.122 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.244 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0696 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.139 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.197 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0986 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.191 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,0.5,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,1,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.116,0.116,1,0,0,0,0.14,0.658,0.036,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.17 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.667,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.667,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.0694 -1,0.526,0.526,1,0,0,0,0,0.922,0.325,0,0,0.278 -1,0.674,0.674,0.6,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.192 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.139 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.244 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.366 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.237 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.203 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0,0,0 -1,0.638,0.638,1,0,0,0,0,0.784,0.532,0,0,0 -1,0.638,0.638,1,0,0,0,0,0.784,0.532,0,0,0.0641 -1,0.638,0.638,1,0,0,0,0,0.784,0.532,0,0,0.0962 -1,0.442,0.442,1,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,1,0,0,0,0.14,0.71,0.36,0,0,0.122 -1,0.246,0.246,0.1,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.242 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0693 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0666 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0333 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.366 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,0.5,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,1,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.36,0.36,1,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.337,0.337,0.1,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.244 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0.6,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -0.667,0.15,0.15,1,0,0,0,0.281,0.623,0.0326,0,0,0 -0.667,0.15,0.15,1,0,0,0,0.281,0.623,0.0326,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.122 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.22 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.594 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.369 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.243 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.194 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.355 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.295 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.226 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.173 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.24 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,1 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.195 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.142 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.0958 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.0639 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.22 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.122 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.366 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,0.1,0,0.3,0,0.14,0.802,0.358,0,0,0 -0.667,0.367,0.367,1,0,1,0,0.14,0.802,0.358,0,0.348,0 -0.667,0.367,0.367,1,0,1,0,0.14,0.802,0.358,0,0.567,0 -0.667,0.466,0.466,1,0,1,0,0.14,0.841,0.369,0,0,0 -0.667,0.466,0.466,1,0,1,0,0.14,0.841,0.369,0,0.494,0 -1,0.674,0.674,1,0,0.2,0.1,0,0.98,0.545,0,0.197,0 -1,0.674,0.674,1,0,0,1,0,0.98,0.545,0,0,0.366 -1,0.674,0.674,1,0,0,1,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,1,0,0,1,0,0.98,0.545,0,0,0 -1,0.868,0.868,1,0,0,1,0,1,0.642,0,0,0 -1,0.868,0.868,0.1,0,0,0.6,0,1,0.642,0,0,0 -1,0.868,0.868,0,0,0.8,0,0,1,0.642,0,0.073,0 -1,0.868,0.868,0,0,1,0,0,1,0.642,0,0.27,0 -1,0.868,0.868,0,0,1,0,0,1,0.642,0,0.348,0 -1,0.868,0.868,0,0,1,0,0,1,0.642,0,0.283,0 -1,0.98,0.98,0,0,0.7,0,0,0.98,0.845,0,0,0 -1,0.98,0.98,0,0,0,0.6,0,0.98,0.845,0,0.249,0 -1,0.98,0.98,0,0,0,1,0,0.98,0.845,0,0.236,0 -1,0.98,0.98,0,0,0,1,0,0.98,0.845,0,0.137,0.122 -1,0.98,0.98,0,0,0,0.5,0,0.98,0.845,0,0,0.244 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.0601,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.73,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.361,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.236,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.335,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0.348,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.217 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.0949 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.236 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.202 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.206 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0997 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.266 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.122 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.122 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.488 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.488 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.122 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.488 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.122 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.122 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.488 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.244 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.366 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.122 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0 -0.667,0.595,0.595,0,0,0.8,0,0.14,0.854,0.434,0,0.249,0 -0.667,0.67,0.67,0,0,0.7,0,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,0.6,0.14,0.841,0.569,0,0.519,0 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0.366 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0.122 -0.667,0.67,0.67,0,0,0,1,0.14,0.841,0.569,0,0,0 -0.667,0.625,0.625,0,0,0,1,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0.7,0.14,0.815,0.668,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.283 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.283 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.122 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0.0657 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0.328 -1,0.15,0.15,0.5,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,1,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,1,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,0.5,0,0,0,0,0.706,0.0461,0,0,0.162 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0 -1,0.15,0.15,0,0,0,0,0,0.706,0.0461,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.0611 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.204 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.136 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.139 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.519 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.206 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.172 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.171 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.205 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.366 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0671 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.168 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.466 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0635 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.244 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.366 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.244 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.366 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0.2,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,1,0,0,0.941,0.929,0,0.618,0 -1,0.913,0.913,0,0,1,0,0,0.941,0.929,0,0.369,0 -1,0.913,0.913,0,0,0.8,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0.5,0,0.941,0.929,0,0.258,0.122 -1,0.727,0.727,0,0,0,1,0,0.863,0.88,0,0,0 -1,0.727,0.727,0,0,0,1,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,1,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,1,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0.2,0.14,0.762,0.592,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.233 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.0691 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.345 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0.0345 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0673 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.303 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0324 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.13 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0503 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.201 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.431 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.122 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,0.5,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.649,0.0839,0,0,0.122 -0.333,0.177,0.177,1,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0.5,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.488 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.366 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.122 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.122 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.366 -1,0.868,0.868,0,0,0,0,0,1,0.537,0.255,0,0.244 -1,0.868,0.868,0,0.7,0,0,0,1,0.537,0.255,0,0.122 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.5,0,0.122 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.435,0,0 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.522,0,0 -1,0.98,0.98,0,1,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.248,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.496,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.614,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.375,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.397,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0.375,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0.5,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0,0,0 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0.223,0,0 -1,0.727,0.727,1,0.7,0,0,0,0.863,0.88,0.223,0,0 -1,0.727,0.727,0.6,1,0,0,0,0.863,0.88,0.505,0,0 -1,0.727,0.727,0,1,0,0,0,0.863,0.88,0.603,0,0.122 -1,0.275,0.275,0,1,0,0,0.281,0.662,0.304,0.429,0,0 -1,0.246,0.246,0,1,0,0,0.281,0.636,0.188,0.408,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0.37,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0.386,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0.321,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.168,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.168,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.56,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.69,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.342,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.37,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.277,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.717,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.288,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.288,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0674 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.135 -0.667,0.251,0.251,0.5,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.366 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0.244 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.205 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.0308 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.154 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.33,0.33,0.6,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.165 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.0992 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.122 -0.333,0.178,0.178,0,0.2,0,0,0.281,0.649,0.0882,0.424,0,0 -0.333,0.178,0.178,0,1,0,0,0.281,0.649,0.0882,0.462,0,0 -0.333,0.178,0.178,0,1,0,0,0.281,0.649,0.0882,0.451,0,0.122 -0.333,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,1,0,0,0.281,0.662,0.0976,0.592,0,0 -0.333,0.186,0.186,0,0.5,0,0,0.281,0.662,0.0976,0.283,0,0.122 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0.122 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.366 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.244 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.122 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.122 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.122 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.122 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.304,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.304,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.353 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.0707 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0.3,0,0,0,0.14,0.559,0.0314,0,0,0.167 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0.267 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0.0688 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.172 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.175 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.245 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.406 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.162 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0.5,0,0.14,0.621,0.0764,0,0.296,0 -0.667,0.318,0.318,0,0,1,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.318,0.318,0,0,1,0,0.14,0.621,0.0764,0,0.223,0 -0.667,0.318,0.318,0,0,1,0,0.14,0.621,0.0764,0,0.348,0.488 -0.333,0.184,0.184,0,0,0.9,0,0.281,0.591,0.0462,0,0.421,0.244 -0.333,0.185,0.185,0,0,0,0.4,0.281,0.591,0.0527,0,0.21,0 -0.333,0.185,0.185,0,0,0,1,0.281,0.591,0.0527,0,0.159,0 -0.333,0.185,0.185,0,0,0,1,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0.7,0.281,0.591,0.0527,0,0.459,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0.354,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0.217,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0.236,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.366 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.61 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0.413,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.321,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.226,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.226,0,0 -0.667,0.395,0.395,0.8,1,0,0,0.14,0.704,0.232,0.353,0,0.244 -0.667,0.507,0.507,0,0.6,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.538,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.571,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.549,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0.429,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.663,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.234,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.176 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.211 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.488 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.467 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.173 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.0345 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.269 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.279 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.244 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.366 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0.8,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0.1,0.5,0,0,0.281,0.591,0.0658,0.603,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.527,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.5,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.288,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.288,0,0 -0.333,0.171,0.171,0,0.1,0,0,0.281,0.591,0.0658,0.321,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0.321,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.115 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.162 -0.667,0.395,0.395,0.3,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.244 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.615 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.164 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0328 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.114 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.203 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.338 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.135 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.612 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.102 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.237 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.304 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.344 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.435 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.173 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.311 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.162 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0972 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.157 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.0656 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.463 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.0681 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.244 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.281 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0651 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0976 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.171 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.316 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.122 -0.333,0.171,0.171,0,0.5,0,0,0.281,0.591,0.108,0.62,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.108,0.516,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.108,0.245,0,0.122 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.108,0.277,0,0.144 -0.667,0.292,0.292,0,1,0.5,0,0.14,0.621,0.198,0.603,0.0987,0.122 -1,0.409,0.409,0,1,1,0,0,0.651,0.34,0.223,0,0.244 -1,0.409,0.409,0,0.6,1,0,0,0.651,0.34,0.223,0.451,0.526 -1,0.409,0.409,0.3,0,0.4,0,0,0.651,0.34,0,0.292,0.122 -0.667,0.289,0.289,1,0,0,0.9,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,1,0,0,1,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,1,0,0,1,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,1,0,0,1,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,1,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,1,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0.3,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.244 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0.3,0,0,0,0.14,0.642,0.291,0,0,0.366 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0.1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0.799,0,0 -0.667,0.326,0.326,0,1,0,0,0.14,0.673,0.305,0.277,0,0 -0.667,0.326,0.326,0,1,0,0,0.14,0.673,0.305,0.554,0,0 -0.667,0.326,0.326,0,1,0,0,0.14,0.673,0.305,0.386,0,0 -0.667,0.395,0.395,0,1,0,0,0.14,0.704,0.315,0.283,0,0 -0.667,0.395,0.395,0,0.6,0,0,0.14,0.704,0.315,0.342,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.366 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0.5,0,0.14,0.704,0.315,0.321,0.283,0 -0.667,0.507,0.507,0,1,1,0,0.14,0.714,0.371,0.391,0.195,0.122 -0.667,0.507,0.507,0,1,1,0,0.14,0.714,0.371,0,0.47,0 -0.667,0.507,0.507,0,1,0.4,0,0.14,0.714,0.371,0.56,0.567,0.122 -0.667,0.507,0.507,0,1,0,0.9,0.14,0.714,0.371,0.25,0.418,0.366 -0.667,0.507,0.507,0,1,0,1,0.14,0.714,0.371,0.304,0.431,0 -1,0.736,0.736,0,1,0,1,0,0.79,0.547,0,0,0 -1,0.895,0.895,0,0.1,0,1,0,0.774,0.719,0.255,0,0 -1,0.895,0.895,0,0,0,0.7,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0.668,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0.245,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0.245,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0.5,0,0,0,0.682,0.78,0.304,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.533,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.473,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.533,0,0 -1,0.807,0.807,0,1,0,0,0,0.682,0.78,0.315,0,0 -1,0.5,0.5,0,1,0,0,0,0.62,0.492,0.196,0,0 -1,0.5,0.5,0,0.6,0,0,0,0.62,0.492,0.196,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.408,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.277,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.174,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0.174,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.391,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.337,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.408,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.522,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.424,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.223,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.62,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.222 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0923 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0923 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.228 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.0958 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.128 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.172 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.141 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.206 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.0344 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.154 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,1,0,0.421,0.562,0.0181,0,0.236,0 -0.667,0.0495,0.0495,1,0,0.4,0,0.421,0.562,0.0181,0,0.137,0 -0.667,0.171,0.171,1,0,0,0.9,0.281,0.591,0.108,0,0.27,0 -0.667,0.171,0.171,1,0,0,1,0.281,0.591,0.108,0,0.601,0 -0.667,0.171,0.171,1,0,0,1,0.281,0.591,0.108,0,0.202,0 -0.667,0.171,0.171,1,0,0,1,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0.7,0.281,0.591,0.108,0,0.322,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0.0129,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.249,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.21,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.382,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.309,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.244 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.122 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.555,0.555,0,0,1,0,0.14,0.642,0.526,0,0.532,0 -0.667,0.555,0.555,0,0,0.4,0,0.14,0.642,0.526,0,0.459,0 -0.667,0.35,0.35,0,0,0,0.9,0.14,0.6,0.334,0,0.348,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.6,0.334,0,0.185,0 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0.0987,0 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0,0.244 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0.309,0 -1,0.5,0.5,0,0,0,1,0,0.62,0.492,0,0.348,0 -1,0.249,0.249,0,0,0,0.3,0,0.573,0.224,0,0.27,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0.309,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0.0601,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0.438,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0.533,0,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.206,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.567,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.283,0.61 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.386,0.122 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.335,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.506,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.433,0.122 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.421,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.309,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0.361,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.258,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.283,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.258,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.0601,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.185,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.283,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.172,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.189,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.468,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.481,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0.3,0,0,0,0.281,0.571,0.0316,0,0,0.122 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0316,0,0,0.122 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.122 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0.9,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0.5,0,0,0.14,0.621,0.0895,0.228,0,0 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.457,0,0.176 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.413,0,0.282 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.342,0,0 -0.667,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0.1,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.204 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.415 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.343 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.343 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.244 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.488 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.165 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0.277 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.29,0.29,0,0,1,0,0.14,0.621,0.137,0,0.0601,0 -0.667,0.29,0.29,0,0,1,0,0.14,0.621,0.137,0,0.21,0 -0.667,0.29,0.29,0,0,0.9,0,0.14,0.621,0.137,0,0.506,0.244 -0.667,0.298,0.298,0,0,0,0.4,0.14,0.642,0.153,0,0.519,0.366 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.27,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.296,0.122 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.348,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.153,0,0.348,0 -0.667,0.298,0.298,0,0,0,0.2,0.14,0.642,0.153,0,0.0129,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.185,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.369,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0.8,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0.5,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.366 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.457,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.37,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.332,0,0 -0.667,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.62,0,0 -0.667,0.555,0.555,0,0.6,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.864,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.261,0,0.366 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.56,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.625,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.462,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.488 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.153 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.405 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.244 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.244 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.194 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.513,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.577,0 -0.333,0.181,0.181,0,0,1,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,1,0,0.281,0.591,0.0578,0,0.0987,0 -0.333,0.181,0.181,0,0,0.4,0,0.281,0.591,0.0578,0,0.348,0.488 -0.333,0.181,0.181,0,0,0,0.9,0.281,0.591,0.0578,0,0.309,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.665,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.644,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.464,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.292,0 -0.333,0.175,0.175,0,0,0,0.3,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.348,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.309,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.258,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.288,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.0258,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.21,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.382,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.283,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.249,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.369,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.0987,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.408,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.258,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.382,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.348,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.073,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.558,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.258,0.122 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.618,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.15,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.137,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.137,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.0987,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.395,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.283,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.567,0.567,0,0.5,0,0,0,0.774,0.34,0.451,0.609,0 -1,0.567,0.567,0,1,0,0,0,0.774,0.34,0.446,0.124,0 -1,0.567,0.567,0,1,0,0,0,0.774,0.34,0.37,0,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.364,0.223,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.255,0.27,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.255,0.159,0 -1,0.736,0.736,0,0.6,0,0,0,0.79,0.457,0.582,0.249,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.364,0.408,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.603,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.506,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.348,0.373,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.402,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.476,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.353,0.438,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.462,0.665,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.223,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.31,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.533,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.37,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.717,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.353,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.543,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.293,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.511,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.56,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.315,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.516,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.543,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.511,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0.511,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0.8,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0.6,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.333 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.173 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0.3,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.244 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.608 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.102 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.171 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.244 -0.333,0.185,0.185,0,0.5,0,0,0.281,0.591,0.0527,0.321,0,0.244 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.299,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.511,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.69,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.591,0.0527,0.478,0,0 -0.333,0.185,0.185,0,0.1,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0.3,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0.429,0,0 -0.333,0.171,0.171,1,1,0,0,0.281,0.591,0.0658,0.453,0,0 -0.333,0.169,0.169,1,1,0,0,0.281,0.591,0.073,0.226,0,0 -0.333,0.169,0.169,0.4,1,0,0,0.281,0.591,0.073,0.321,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.424,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.255,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.353,0,0 -0.333,0.169,0.169,0,0.1,0,0,0.281,0.591,0.073,0.31,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.424,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.315,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.304,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.304,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.364,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.5,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.446,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.761,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0.8,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0.6,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.395,0.395,0,0,1,0,0.14,0.704,0.232,0,0.223,0 -0.667,0.395,0.395,0,0,0.4,0,0.14,0.704,0.232,0,0.0601,0 -0.667,0.395,0.395,0,0,0,0.9,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,1,0.14,0.704,0.232,0,0.309,0 -0.667,0.395,0.395,0,0,0,1,0.14,0.704,0.232,0,0.27,0.244 -0.667,0.395,0.395,0,0,0,0.2,0.14,0.704,0.232,0,0.0129,0.244 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0.137,0.488 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0.236,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.418,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.333,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.567,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.0129,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.335,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.249,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.519,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.459,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.21,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.223,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.459,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.27,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.742,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.459,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.361,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.163 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.13 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.121 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.253 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.166 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0332 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0.6,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.488 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -1,0.736,0.736,0.8,0,0,0,0,0.79,0.457,0,0,0.153 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.165 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.197 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.193 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.307 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.0463 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0.8,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.131 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.169 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.0676 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.127 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.366 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.171 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.274 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.488 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.672 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.155 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.366 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,1,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0.397,0,0 -1,0.318,0.318,0,1,0,0,0.14,0.621,0.0764,0.507,0,0 -1,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.254,0,0 -1,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.56,0,0 -1,0.321,0.321,0,1,0,0,0.14,0.621,0.0895,0.451,0,0.244 -1,0.456,0.456,0,0.6,0,0,0,0.651,0.126,0.658,0,0.42 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0.304,0,0 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.38,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.364,0,0.164 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.326,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0.397,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.366 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.473,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.326,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.522,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.424,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.429,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0.62,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.177 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.177 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.446,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.228,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.375,0,0 -1,0.326,0.326,0,1,0,0,0.14,0.673,0.19,0.495,0,0 -1,0.326,0.326,0,1,0,0,0.14,0.673,0.19,0.467,0,0 -1,0.464,0.464,0,0.1,0,0,0,0.728,0.277,0,0,0.244 -1,0.464,0.464,0.8,0,0,0,0,0.728,0.277,0,0,0 -1,0.464,0.464,0.6,0,0,0,0,0.728,0.277,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0.3,0,0,0,0,0.744,0.791,0,0,0.488 -0.667,0.635,0.635,1,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0.6,0,0,0,0,0.744,0.791,0,0,0.0852 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.17 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.38 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.332 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.157 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0.3,0,0,0,0.14,0.621,0.143,0,0,0.244 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0.5,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.122 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.0988 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.342 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.0683 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.159 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.0952 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.354 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.142 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.244 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.366 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0.3,0,0,0,0.14,0.673,0.305,0,0,0.488 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.315,0,0,0.122 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0.6,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.366 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.366 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.234 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.122 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.165 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.165 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.169 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.169 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.153 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.0306 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0.5,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0.1,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.316 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.418 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.0348 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,0.3,0,0,0,0.14,0.621,0.198,0,0,0.244 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.198,0,0,0.346 -0.667,0.292,0.292,0.6,0,0,0,0.14,0.621,0.198,0,0,0.346 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.523 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.488 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.254 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.411 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.0668 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.244 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0.5,0,0,0.774,0.464,0,0.073,0 -1,0.736,0.736,0,0,1,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,1,0,0,0.79,0.547,0,0.0386,0 -1,0.736,0.736,0,0,1,0,0,0.79,0.547,0,0.0386,0 -1,0.736,0.736,0,0,0.9,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0.4,0,0.79,0.547,0,0.519,0 -1,0.736,0.736,0,0,0,1,0,0.79,0.547,0,0.249,0.366 -1,0.895,0.895,0,0,0,1,0,0.774,0.719,0,0,0.244 -1,0.895,0.895,0,0,0,0.7,0,0.774,0.719,0,0.494,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.258,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.288,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.348,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.665,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.605,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.73,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.236,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.554,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.234,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.135,0.366 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.56 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.164 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.0328 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.347 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0.3,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.245,0.245,1,0.5,0,0,0.14,0.58,0.0474,0.359,0,0 -0.667,0.245,0.245,1,1,0,0,0.14,0.58,0.0474,0.397,0,0 -0.667,0.245,0.245,1,1,0,0,0.14,0.58,0.0474,0.484,0,0 -0.667,0.305,0.305,1,1,0,0,0.14,0.611,0.0634,0.489,0,0 -0.667,0.305,0.305,0.5,1,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0.1,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.165 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.295 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.104 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.24 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.206 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.488 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.524 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.115 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0.1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.397,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.359,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0.168 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.37,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.598,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.38,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.467,0,0 -1,0.928,0.928,0,0.1,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.13 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.345 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.276 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.068 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.068 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.439 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.349 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.279 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.159 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0317 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0.5,0,0,0.281,0.591,0.0462,0.37,0,0.198 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0.391,0,0.122 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0.272,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0.321,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0.6,0,0,0.281,0.591,0.0527,0.408,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.489,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.364,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.446,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0.321,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.31,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.505,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.413,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.37,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.31,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.397,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.255,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.488 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0.3,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.298 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.159 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.127 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.156 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.576,0,0 -1,0.736,0.736,0,1,0,0,0,0.79,0.457,0.533,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0.182 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.359,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.478,0,0 -1,0.895,0.895,0,0.6,1,0,0,0.774,0.64,0,0.335,0 -1,0.895,0.895,0,0,1,0,0,0.774,0.64,0,0.369,0 -1,0.895,0.895,0,0,0.9,0,0,0.774,0.64,0,0.446,0 -1,0.928,0.928,0,0,0,0.4,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.073,0.122 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0,0.244 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.545,0.122 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.309,0 -1,0.928,0.928,0,0,0,1,0,0.744,0.791,0,0.0386,0 -1,0.302,0.302,0,0,0,0.8,0.281,0.602,0.26,0,0.0386,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0.0601,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.122 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0.361,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0.0858,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.309,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.309,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.249,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.171 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0.102 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.534 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.0325 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.27 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0.3,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,1,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0.5,0,0,0.281,0.591,0.0658,0.277,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.212,0,0 -0.333,0.171,0.171,0,1,0,0,0.281,0.591,0.0658,0.625,0,0.366 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0.304,0,0 -0.333,0.169,0.169,0,1,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0.1,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0.5,0,0.281,0.591,0.073,0,0.0258,0.122 -0.333,0.169,0.169,0,0,1,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.17,0.17,0,0,1,0,0.281,0.591,0.0767,0,0.506,0 -0.333,0.17,0.17,0,0,0.4,0,0.281,0.591,0.0767,0,0.433,0 -0.333,0.17,0.17,0,0,0,0.9,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0767,0,0.21,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0767,0,0.223,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0.7,0.281,0.602,0.0846,0,0.481,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.27,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.236,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.532,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.0386,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.209 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0523 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.278,0.278,0,0.5,0,0,0.281,0.638,0.163,0.402,0,0 -0.667,0.278,0.278,0,1,0,0,0.281,0.638,0.163,0.38,0,0 -0.667,0.507,0.507,0,1,0,0,0.14,0.714,0.31,0.446,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.228,0,0.309 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0.1,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.462,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.522,0,0.166 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.543,0,0.277 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.277,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.342,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.221,0,0 -1,0.928,0.928,0,0,0.5,0,0,0.744,0.791,0.442,0.137,0 -1,0.928,0.928,0,0,0.9,0,0,0.744,0.791,0.462,0.0987,0 -1,0.807,0.807,0,0,0,0.4,0,0.682,0.749,0.685,0.296,0.351 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0.69,0.27,0.0703 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0,0.386,0 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0,0.309,0 -1,0.807,0.807,0,0,0,1,0,0.682,0.749,0,0.258,0.296 -1,0.807,0.807,0,0,0,0.2,0,0.682,0.749,0,0,0.105 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.208 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.144 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.161 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.215 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.158 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0315 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0.27,0 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0.356,0.366 -0.333,0.175,0.175,0,0,0.9,0,0.281,0.591,0.0629,0,0.073,0.366 -0.333,0.175,0.175,0,0,0,0.4,0.281,0.591,0.0629,0,0.223,0.122 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0.197,0.122 -0.333,0.175,0.175,0,0,0,1,0.281,0.591,0.0629,0,0,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.621,0.116,0,0.369,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.621,0.116,0,0.249,0.122 -0.667,0.292,0.292,0,0,0,0.2,0.14,0.621,0.116,0,0.498,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.283,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.296,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.309,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.263 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.174,0.174,0.6,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0.3,0,0,0,0.14,0.704,0.232,0,0,0.486 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.333,0.278,0.278,1,0,0,0,0.281,0.638,0.163,0,0,0 -0.333,0.278,0.278,1,0,0,0,0.281,0.638,0.163,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.299 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -0.667,0.507,0.507,1,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.162 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.173 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0345 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.586,0.0396,0,0,0.172 -1,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.0344 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.488 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.511,0,0 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.31,0,0 -0,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.473,0,0 -0.333,0.188,0.188,0,1,0,0,0.281,0.617,0.103,0.353,0,0 -0.333,0.188,0.188,0,1,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0.1,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.44,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.332,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.391,0,0.244 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.435,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.146 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.163 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0325 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.641,0,0.122 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0,0,0.244 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.511,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.38,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.462,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.527,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.321,0,0 -0.667,0.302,0.302,0,0.1,0,0,0.281,0.602,0.26,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.244 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.488 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.488 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.283 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.0965 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.491 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.318 -1,0.507,0.507,0.3,0,0,0,0.14,0.714,0.371,0,0,0.122 -1,0.507,0.507,1,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,1,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,0.6,0,0,0,0.14,0.714,0.371,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.366 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0.8,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.333,0.185,0.185,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.333,0.185,0.185,0.1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0.277,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.359,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.261,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.261,0,0 -0.667,0.312,0.312,0,1,0,0,0.14,0.621,0.169,0.75,0,0 -0.667,0.312,0.312,0,0.6,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0.533,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.924,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.457,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.315,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.353,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.174,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0.174,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.366 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.366 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.168 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.223 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.192 -1,0.736,0.736,0.8,0,0,0,0,0.79,0.547,0,0,0 -0.667,0.278,0.278,0.6,0,0,0,0.281,0.638,0.194,0,0,0.366 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.122 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.122 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.244 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.122 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.488 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.102 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.335 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.167 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0864 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.477 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.0325 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0.8,0,0,0,0.281,0.591,0.0658,0,0,0.347 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0.8,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.122 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.488 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0.5,0,0.14,0.704,0.232,0,0.0515,0 -1,0.567,0.567,0,0,1,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,1,0,0,0.774,0.34,0,0.614,0 -1,0.567,0.567,0,0,1,0,0,0.774,0.34,0,0.378,0 -1,0.567,0.567,0,0,0.9,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0.5,0,0.4,0,0.79,0.457,0.255,0.0987,0 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0.234,0.27,0.122 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0.321,0.408,0.122 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0.375,0.644,0 -1,0.736,0.736,0,1,0,1,0,0.79,0.457,0,0,0.244 -1,0.736,0.736,0,1,0,0.2,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0.6,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.348 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.505 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0701 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.164 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.17 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.34 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0.3,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.151 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.0303 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0.5,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.351 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.154 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.143 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.488 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.174,0.174,0.8,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.488 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.488 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.122 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.565,0,0 -0.667,0.613,0.613,0,1,0,0,0.14,0.704,0.432,0.457,0,0.244 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.462,0,0 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.261,0,0 -1,0.928,0.928,0,0.6,0,0,0,0.744,0.791,0.505,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.418,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.366 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.267 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.0341 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.144 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0.3,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0.292 -0.667,0.305,0.305,0.6,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.157 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.0314 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.141 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.389 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.584 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.326 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.61 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.488 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.488 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,1,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0.6,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.399 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.174 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.153 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.478 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.2 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.337 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.589 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0.5,0,0.281,0.591,0.0629,0,0.223,0 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.175,0.175,0,0,1,0,0.281,0.591,0.0629,0,0.433,0 -0.333,0.175,0.175,0,0,0.4,0,0.281,0.591,0.0629,0,0.258,0 -0.333,0.175,0.175,0,0,0,0.9,0.281,0.591,0.0629,0,0.0987,0 -0.333,0.171,0.171,0,0,0,1,0.281,0.591,0.0658,0,0.309,0 -0.333,0.171,0.171,0,0,0,1,0.281,0.591,0.0658,0,0.185,0 -0.333,0.171,0.171,0,0,0,0.2,0.281,0.591,0.0658,0,0.112,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.258,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.223,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.0601,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.223,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.361,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.223,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.421,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.395,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.0987,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.322,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,1,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0.5,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,1,0,0,0,0.281,0.633,0.124,0,0,0.122 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0.5,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.273 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0.3,0,0,0,0.14,0.611,0.0634,0,0,0.163 -1,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0.229 -1,0.305,0.305,0.1,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.31 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.184,0.184,0,0,0.5,0,0.281,0.591,0.0462,0,0.258,0.17 -0.667,0.184,0.184,0,0,1,0,0.281,0.591,0.0462,0,0,0.34 -0.667,0.321,0.321,0,0,1,0,0.14,0.621,0.0895,0,0.0601,0.102 -0.667,0.321,0.321,0,0,1,0,0.14,0.621,0.0895,0,0.249,0 -0.667,0.321,0.321,0,0,0.9,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0.4,0.14,0.621,0.0895,0,0.112,0 -0.667,0.321,0.321,0,0,0,1,0.14,0.621,0.0895,0,0.21,0.148 -0.667,0.321,0.321,0,0,0,1,0.14,0.621,0.0895,0,0,0.0297 -0.667,0.312,0.312,0,0,0,1,0.14,0.621,0.0997,0,0.335,0 -0.667,0.312,0.312,0,0,0,1,0.14,0.621,0.0997,0,0.395,0 -0.667,0.312,0.312,0,0,0,0.2,0.14,0.621,0.0997,0,0.446,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.275,0.139 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.286 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.164 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.187 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.173 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.313 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.352 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.297 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.105 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,0.3,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,1,0,1,0,0.14,0.642,0.153,0,0.395,0 -0.667,0.298,0.298,0.6,0,1,0,0.14,0.642,0.153,0,0.309,0 -1,0.422,0.422,0,0,0.9,0,0,0.682,0.222,0,0,0 -1,0.422,0.422,0,0,0,0.4,0,0.682,0.222,0,0.618,0 -1,0.422,0.422,0,0,0,1,0,0.682,0.222,0,0.27,0 -1,0.422,0.422,0,0,0,1,0,0.682,0.222,0,0,0 -1,0.464,0.464,0,0,0,0.7,0,0.728,0.277,0,0.418,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.496,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.408,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.137,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.27,0.122 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.348,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.468,0.122 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.429,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.249,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.249,0.61 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.223,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.249,0.366 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.524,0.488 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.365,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.0386,0.209 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.541,0.244 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.335,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.488 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.23 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.61 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.426,0.426,1,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.185 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.177 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0.0355 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0.25 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0.068 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0.272 -1,0.41,0.41,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.41,0.41,0.8,0,0,0,0,0.651,0.388,0,0,0 -1,0.41,0.41,0.6,0,0,0,0,0.651,0.388,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.324 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.122 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.127 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.523 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.299 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.161 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.0642 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.244 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.2 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.61 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.253 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.122 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.164 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.131 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.116 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0.8,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,1,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,1,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0.1,0,0,0,0,0.651,0.268,0,0,0.34 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.29,0.29,0,0,1,0,0.14,0.621,0.265,0,0.27,0.306 -0.667,0.29,0.29,0,0,0.4,0,0.14,0.621,0.265,0,0.197,0 -0.667,0.298,0.298,0,0,0,0.9,0.14,0.642,0.291,0,0,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.291,0,0.0129,0 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.291,0,0.369,0.171 -0.667,0.298,0.298,0,0,0,1,0.14,0.642,0.291,0,0.073,0.19 -0.667,0.298,0.298,0,0,0,0.7,0.14,0.642,0.291,0,0.309,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0.369,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.137,0.326 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.236,0.309 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.519,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.073,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.0987,0.128 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.249,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.361,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.283,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.137,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.073,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0.309,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.0258,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.137,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.386,0.122 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.244 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.335,0.122 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0.296,0.244 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.406,0.157 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.384,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.275,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.343,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.122 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.366 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.308 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0816,0.0816,0.3,0,0,0,0.281,0.56,0.0236,0,0,0.157 -1,0.0816,0.0816,1,0,0,0,0.281,0.56,0.0236,0,0,0.0941 -1,0.342,0.342,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.342,0.342,1,0,0,0,0,0.589,0.0632,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.205 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.161 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.0642 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.168 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.394 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.156 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.345 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.276 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.241 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0991 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.254 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.169 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.169 -0.333,0.171,0.171,0.8,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0,0.153 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0.0612 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.169,0.169,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0.5,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.366 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.696,0,0.366 -1,0.928,0.928,0,1,0,0,0,0.744,0.791,0.179,0,0.122 -1,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.179,0,0 -1,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.332,0,0 -1,0.635,0.635,0,1,0,0,0.14,0.683,0.532,0.505,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0.418,0,0 -1,0.555,0.555,0,1,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0.1,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.174 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.174 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.33 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.033 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.159 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.0637 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.433,0.433,0,0,0.5,0,0,0.635,0.0871,0,0.283,0 -1,0.433,0.433,0,0,1,0,0,0.635,0.0871,0,0,0.19 -0.667,0.305,0.305,0,0,1,0,0.14,0.611,0.0634,0,0.249,0 -0.667,0.305,0.305,0,0,0.4,0,0.14,0.611,0.0634,0,0.137,0 -0.667,0.305,0.305,0,0,0,0.9,0.14,0.611,0.0634,0,0.0258,0 -0.667,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0.0386,0.254 -0.667,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0.236,0 -0.667,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0,0 -0.667,0.318,0.318,0,0,0,0.7,0.14,0.621,0.0764,0,0.236,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0.0987,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.382,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.618,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.283,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.296,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.356,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.0601,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.0601,0.185 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.361,0.488 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.361,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.309,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.27,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.27,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.18,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.476,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.605,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.309,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.159,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.609,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.309,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.481,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.395,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.137,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.481,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.279,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.155,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.159,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.309,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.236,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.283,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.444,0.244 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.148,0.366 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.335,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.137,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.236,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.0386,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.124,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0.8,0,0,0,0.14,0.704,0.232,0,0.685,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0.5,0.366 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0.296,0 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0.446,0 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0.159,0.488 -1,0.567,0.567,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.431,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.457,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.588,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.219,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0.343,0.122 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.524 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.0634 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.317 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.807,0.807,1,0,0,0,0,0.682,0.749,0,0,0 -1,0.807,0.807,1,0,0,0,0,0.682,0.749,0,0,0.17 -1,0.807,0.807,1,0,0,0,0,0.682,0.749,0,0,0.482 -1,0.555,0.555,1,0,0,0,0.14,0.642,0.505,0,0,0.488 -1,0.555,0.555,1,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0.4,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.247 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.102 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.17 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.198 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.141 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0706 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.157 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0314 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.332 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.17,0.17,0.1,0,0,0,0.281,0.591,0.0767,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0.8,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0.5,0,0,0,0.774,0.64,0.435,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.386,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.658,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0.462,0,0 -1,0.895,0.895,0,1,0,0,0,0.774,0.64,0,0,0.244 -1,0.895,0.895,0,0.1,0,0,0,0.774,0.64,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.289 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.334 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.0625 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0.221 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,0.3,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.114,0.114,1,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.324 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.0324 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.144 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.173 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.301 -0.333,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.0893 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0.297 -0.333,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.184,0.184,0.7,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.667,0.395,0.395,0.8,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0.446,0,0 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0.446,0,0.122 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0,0,0 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0.587,0,0 -0.667,0.395,0.395,1,1,0,0,0.14,0.704,0.232,0.478,0,0 -0.667,0.507,0.507,1,1,0,0,0.14,0.714,0.31,0.478,0,0 -0.667,0.507,0.507,1,1,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.507,0.507,0.9,0.1,0,0,0.14,0.714,0.31,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.804,0,0.252 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.554,0,0.122 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.56,0,0.122 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.446,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.326,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.522,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.418,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.277,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.332,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.413,0,0.122 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.679,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.467,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.652,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.297 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.165 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0661 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0.5,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.222,0.222,0.3,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.222,0.222,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.736,0.736,0.9,0,0,0,0,0.79,0.457,0,0,0.122 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,0.3,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.635,0.635,1,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0.1,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0.243 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.347 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0694 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.177 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.142 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.314 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.167 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.133 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.193 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.128 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0.186 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0.275 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.17 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -1,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -1,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.29,0.29,0.8,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0.122 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0.244 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.29,0.29,1,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.174,0.174,1,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,1,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0.5,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.244 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.366 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.122 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.366 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.244 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.333 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.488 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0.172 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.13 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.134 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.323 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.276 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.103 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.102 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.34 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.102 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.0914 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0.0305 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.163 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0.6,0,0,0,0.14,0.619,0.144,0,0,0.25 -1,0.299,0.299,0.8,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.103 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.191 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.264 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.0989 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.488 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.366 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.61 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.319 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.488 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.101 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.202 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.129 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.0322 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.122 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.122 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.601,0.274,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.601,0.274,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.122 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.343 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.386 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.244 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.245 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0.4,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0.3,0,0,0,0.14,0.578,0.0478,0,0,0.161 -0.667,0.143,0.143,1,0,0,0,0.281,0.57,0.0318,0,0,0.161 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0.9,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.488 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.245 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0.5,0,0,0.281,0.59,0.0582,0.478,0,0.101 -0.333,0.17,0.17,0,1,0,0,0.281,0.59,0.0582,0.397,0,0 -0.333,0.17,0.17,0,1,0,0,0.281,0.59,0.0582,0.435,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.59,0.0633,0.223,0,0 -0.333,0.164,0.164,0,0.9,0,0,0.281,0.59,0.0633,0.571,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0.614,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0.462,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0.332,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0.31,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0.299,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0.342,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.0662,0.391,0,0.122 -0.333,0.159,0.159,0,0.4,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.516,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.435,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.489,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.261,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.755,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.397,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.37,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.473,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0.293,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.826,0,0 -1,0.379,0.379,0,0,0,0,0,0.679,0.224,0.28,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.28,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.592,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.212,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.467,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.244 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.353,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.467,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.408,0,0 -1,0.291,0.291,0.8,0,0,0,0.14,0.701,0.234,0.44,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0.166,0,0.244 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0.166,0,0.122 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.366 -1,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0.2,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.488 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.159 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.34 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.223 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0318 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.258 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.339 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.442 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.0341 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.177 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.345 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.148 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.34 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0679 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.185 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.123 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.277 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.175 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.35 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0.3,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0.244 -0.333,0.162,0.162,0.9,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.334 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.167 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.366 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.35 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.147 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.266 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.527 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.19 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.138 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.345 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.191 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.154 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.2 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0499 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.345 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.155 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.062 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.263 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0987 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.303 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0321 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.571 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.169 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.122 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.348 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.47 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.0348 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.503 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.61 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.244 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.289 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0.8,0,0,0,0.14,0.701,0.436,0,0,0.0313 -0.667,0.429,0.429,1,0,0,0,0.14,0.701,0.436,0,0,0.156 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.336 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.134 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.16 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0641 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.197 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.162 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0969 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.176 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.105 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.243 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.106 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.283 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0.3,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.64,0.155,0,0,0.244 -0.667,0.274,0.274,0.1,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.366 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.261,0,0.122 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.408,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0,0,0 -1,0.619,0.619,0,0.4,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0.3,0,0,0,0,0.771,0.646,0,0,0.104 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.382 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.167 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.333 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.0333 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0.6,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.301,0.301,0,0,0.3,0,0.14,0.619,0.11,0,0,0 -1,0.299,0.299,0,0,1,0,0.14,0.619,0.144,0,0.137,0 -1,0.299,0.299,0,0,0.2,0.1,0.14,0.619,0.144,0,0.408,0 -1,0.299,0.299,0,0,0,1,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0.3,0.14,0.619,0.144,0,0.296,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0.618,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.0386,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.433,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.15,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0.395,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.418,0,0.244 -0.333,0.16,0.16,0,0.8,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.109,0.587,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.109,0.359,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,1,0.8,0,0.281,0.59,0.109,0,0.322,0 -0.333,0.16,0.16,0,1,1,0,0.281,0.59,0.109,0,0,0 -1,0.269,0.269,0,0.1,1,0,0.14,0.619,0.234,0,0.532,0 -1,0.269,0.269,0,0,1,0,0.14,0.619,0.234,0,0.519,0 -1,0.269,0.269,0,0,0.8,0,0.14,0.619,0.234,0,0,0 -1,0.269,0.269,0,0,0,0.5,0.14,0.619,0.234,0,0.15,0.122 -1,0.269,0.269,0,0,0,1,0.14,0.619,0.234,0,0.0258,0.488 -1,0.269,0.269,0,0,0,1,0.14,0.619,0.234,0,0,0 -1,0.268,0.268,0,0,0,1,0.14,0.619,0.267,0,0.468,0 -1,0.268,0.268,0,0,0,0.9,0.14,0.619,0.267,0,0.361,0 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.122 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0.446,0 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0.614,0,0 -1,0.412,0.412,0,0.8,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.468,0.484,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.468,0.418,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.31,0,0.122 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0,0,0.244 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.495,0,0 -1,0.484,0.484,0,0.1,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0.576,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0.359,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.402,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.283 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.106 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.471 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.507 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.122 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.122 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.274 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.342 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.101 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.101 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.259 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.0971 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.105 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.105 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.261 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.0326 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.304 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0.1,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.281,0.59,0.109,0,0,0.122 -0.667,0.16,0.16,1,0,0,0,0.281,0.59,0.109,0,0,0.366 -1,0.271,0.271,0.7,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.122 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.104 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.487 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.102 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.204 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.488 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0.1,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0.244 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0.8,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.488 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.488 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.109 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.0652 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.229 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.434 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.163 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0976 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.122 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.488 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0.8,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0.3,0,0,0,0,0.771,0.343,0,0,0.175 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.175 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.243 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.488 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0.653 -1,0.484,0.484,0.7,0,0,0,0,0.787,0.461,0,0,0.254 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.354 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0354 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.62,0,0.177 -1,0.619,0.619,0,1,0,0,0,0.771,0.646,0.38,0,0.177 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.386,0,0.244 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.658,0,0.401 -1,0.783,0.783,0,1,1,0,0,0.741,0.797,0,0.0258,0.397 -1,0.783,0.783,0,0.9,1,0,0,0.741,0.797,0.674,0.249,0 -1,0.783,0.783,0,0,1,0,0,0.741,0.797,0.321,0,0 -1,0.88,0.88,0,0,0.1,0.2,0,0.679,0.756,0.321,0.236,0 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.707,0,0.289 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.413,0,0.266 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.261,0,0 -1,0.88,0.88,0,0,0,1,0,0.679,0.756,0.353,0,0 -1,0.603,0.603,0,0,0,1,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0.7,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.156 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.172 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.172 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.331 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.132 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.162 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.174 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.203 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.203 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.254 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.488 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0.8,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0.205 -0.667,0.162,0.162,0.4,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0.3,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.667,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.488 -1,0.291,0.291,0.9,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.122 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.167 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.456 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.212 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.184 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.046 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.105 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.14 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.224 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.164 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.22 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.283 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.488 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.366 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.295 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.313 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.366 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.335 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.0669 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.488 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.278 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0697 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.349 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0349 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.854 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0.538,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.601,0.0853,0.576,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.601,0.0853,0.288,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.601,0.0853,0.478,0,0 -0.667,0.269,0.269,0,1,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0.4,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0.337,0,0 -0.333,0.17,0.17,0,1,0,0,0.281,0.631,0.125,0.56,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.413,0,0.122 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.543,0,0 -0.667,0.339,0.339,0,0.4,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0.3,0,0,0,0.14,0.712,0.313,0,0,0.26 -0.667,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.154 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.222 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.353 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0.2,0,0,0,0,0.741,0.797,0,0,0.406 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.353 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.122 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,1,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.0518,0.0518,0.7,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.57 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.171 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0937 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0625 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0.3,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,1,0,0,0,0.14,0.609,0.0639,0,0,0.122 -0.667,0.301,0.301,1,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.619,0.077,0,0,0.175 -0.667,0.301,0.301,1,0,0,0,0.14,0.619,0.077,0,0,0.035 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0.6,0,0,0,0.281,0.59,0.0465,0,0,0.143 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0.3,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0.1,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.61 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.122 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.488 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.366 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0.3,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,1,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0.5,0,0,0,0,0.787,0.461,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.175 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.297 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.366 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.122 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.122 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0964 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.0964 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.27 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.203 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.172,0.172,0.1,0,0,0,0.281,0.585,0.0436,0,0,0.135 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.0641,0,0,0.271 -0.667,0.175,0.175,0.3,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0.565,0,0 -0.667,0.175,0.175,0,0.8,0,0,0.281,0.59,0.0641,0.283,0,0 -0.667,0.175,0.175,0,1,0,0,0.281,0.59,0.0641,0.402,0,0 -0.667,0.175,0.175,0,1,0,0,0.281,0.59,0.0641,0.533,0,0 -0.667,0.299,0.299,0,1,0,0,0.14,0.619,0.144,0.685,0,0 -0.667,0.299,0.299,0,0.6,0,0,0.14,0.619,0.144,0.408,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0.299,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0.348,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0.277,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.266,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.255,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.435,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.342,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.424,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.266,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.266,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.418,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.533,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.418,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.451,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.272,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.408,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.473,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0.6,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0.6,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.366 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.122 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.488 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.244 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.102 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.34 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0.1,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.424,0.424,1,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,1,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,0.7,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.206,0,0,0 -1,0.424,0.424,0,0.3,0,0,0,0.648,0.206,0.342,0,0 -1,0.424,0.424,0,1,0,0,0,0.648,0.206,0.402,0,0 -1,0.411,0.411,0,1,0,0,0,0.648,0.246,0.397,0,0 -1,0.411,0.411,0,1,0,0,0,0.648,0.246,0.28,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.619,0.17,0.28,0,0 -0.667,0.291,0.291,0,0.1,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0.478,0,0.122 -0.333,0.159,0.159,0,0.8,0,0,0.281,0.59,0.126,0,0,0.244 -0.333,0.159,0.159,0,1,0,0,0.281,0.59,0.126,0.424,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.59,0.126,0.37,0,0 -0.333,0.159,0.159,0,1,0,0,0.281,0.59,0.142,0.462,0,0 -0.333,0.159,0.159,0,0.6,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0.435,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0.342,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0.505,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0.359,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0.457,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0.488 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.366 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.61 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.122 -1,0.412,0.412,0.6,0,0,0,0,0.771,0.468,0,0,0.488 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0.244 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0.6,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0.6,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.488 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.732 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.366 -1,0.88,0.88,1,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,1,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0.4,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.0936 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.4 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.488 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.488 -0.667,0.17,0.17,0,0,0.5,0,0.281,0.631,0.125,0,0.0129,0 -0.667,0.17,0.17,0,0,1,0,0.281,0.631,0.125,0,0.236,0 -1,0.291,0.291,0,0,0,0.3,0.14,0.701,0.234,0,0.421,0 -1,0.291,0.291,0,0,0,1,0.14,0.701,0.234,0,0.283,0 -1,0.291,0.291,0,0,0,1,0.14,0.701,0.234,0,0,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.322,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.309,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.309,0.244 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.137,0 -1,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.283,0.488 -1,0.339,0.339,0,0,0,0.1,0.14,0.712,0.313,0,0.283,0.122 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.348,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.296,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.122 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.519,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.421,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.618,0.366 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.0987,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.378,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.189,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0.3,0,0,0,0.14,0.681,0.537,0,0,0.122 -1,0.538,0.538,1,0,0,0,0.14,0.681,0.537,0,0,0.244 -1,0.88,0.88,0.1,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.244 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.244 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.488 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.23 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.154 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0309 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0.1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,1,0,0.281,0.59,0.0633,0,0.283,0 -0.333,0.164,0.164,0,0,0.5,0,0.281,0.59,0.0633,0,0.249,0 -0.333,0.164,0.164,0,0,0,0.8,0.281,0.59,0.0633,0,0.223,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0.0129,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0.296,0 -0.333,0.16,0.16,0,0,0,0.6,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0.3,0,0,0,0.281,0.59,0.0662,0,0,0.122 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0.5,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.488 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.248 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.172 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.191 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.189 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.122 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.244 -1,0.538,0.538,0,0.5,0,0,0.14,0.681,0.537,0.364,0,0.488 -1,0.538,0.538,0,1,0,0,0.14,0.681,0.537,0.37,0,0.122 -1,0.538,0.538,0,1,0,0,0.14,0.681,0.537,0.462,0,0 -1,0.538,0.538,0,1,0,0,0.14,0.681,0.537,0.69,0,0 -1,0.538,0.538,0,0.9,0,0,0.14,0.681,0.537,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.732 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.195 -1,0.0798,0.0798,0.3,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.11,0.11,1,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.11,0.11,1,0,0,0,0.14,0.557,0.0316,0,0,0.164 -1,0.11,0.11,0.9,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.324 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.204 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.102 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.231 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.167 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0.5,0,0,0.281,0.59,0.053,0.353,0,0 -0.333,0.174,0.174,0,1,0,0,0.281,0.59,0.053,0.223,0,0.122 -0.333,0.174,0.174,0,1,0,0,0.281,0.59,0.053,0.5,0,0 -0.333,0.17,0.17,0,1,0,0,0.281,0.59,0.0582,0.31,0,0 -0.333,0.17,0.17,0,0.9,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0.3,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0.122 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0.3,0,0,0,0.14,0.619,0.117,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.61 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.541,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.309,0 -0.667,0.339,0.339,0,0,1,0,0.14,0.712,0.313,0,0.369,0 -0.667,0.339,0.339,0,0,0.1,0.2,0.14,0.712,0.313,0,0.369,0 -0.667,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0.223,0 -0.667,0.339,0.339,0,0,0,1,0.14,0.712,0.313,0,0,0.244 -0.667,0.429,0.429,0,0,0,1,0.14,0.701,0.436,0,0.532,0.122 -0.667,0.429,0.429,0,0,0,1,0.14,0.701,0.436,0,0.296,0 -0.667,0.429,0.429,0,0,0,1,0.14,0.701,0.436,0,0.433,0 -0.667,0.429,0.429,0,0,0,0.7,0.14,0.701,0.436,0,0.571,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.567,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.223,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.348,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.369,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.124,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.356,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.296,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.244 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0.219 -1,0.236,0.236,0.5,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.122 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.354 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0354 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.169 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.305 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.248 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.244 -1,0.484,0.484,0,0.5,0,0,0,0.787,0.461,0.402,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.38,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.391,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.424,0,0 -1,0.484,0.484,0.3,0.9,0,0,0,0.787,0.461,0.31,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0.31,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0.5,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.176 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.278 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.157 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0629 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0.246 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,1,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0.3,0,0,0,0.281,0.57,0.0318,0,0,0.168 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0673 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.35 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0.5,0,0,0.14,0.701,0.234,0.277,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.386,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.571,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.332,0,0 -1,0.412,0.412,0,0.9,0,0,0,0.771,0.343,0.359,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.516,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.326,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.337,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.174,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.174,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.587,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.375,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.364,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.413,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.418,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.538,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.31,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.366 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.227 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.366 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.106 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.353 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.106 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.122 -0.667,0.279,0.279,0.6,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0.8,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.366 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.244 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.488 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0.6,0,0,0,0.14,0.671,0.308,0,0,0.488 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0.198 -1,0.412,0.412,0.6,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.0626 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.188 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.105 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.35 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.315 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.0985 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.164 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.366 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.104 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.104 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.122 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0.205 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,0.6,0,0,0,0.14,0.701,0.318,0,0,0.122 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.122 -1,0.484,0.484,0.2,0.3,0,0,0,0.787,0.551,0.641,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.364,0,0.122 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.342,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0.293,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.551,0,0,0.122 -1,0.619,0.619,0,1,0,0,0,0.771,0.725,0.413,0,0.122 -1,0.619,0.619,0,0.6,0,0,0,0.771,0.725,0.424,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.239,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.603,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.283,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.418,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.25,0,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.609,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.533,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.266,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.342,0,0.122 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.81,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.435,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.293,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.527,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.495,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.277,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.543,0,0.366 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.44,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.391,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.505,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.166,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.166,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.33 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.132 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.249,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,1,0,0.14,0.578,0.0478,0,0.446,0.296 -1,0.236,0.236,0.3,0,0.6,0,0.14,0.578,0.0478,0,0.0601,0 -1,0.236,0.236,1,0,0,0.7,0.14,0.578,0.0478,0,0,0 -1,0.417,0.417,1,0,0,1,0,0.633,0.0879,0,0.532,0.0329 -1,0.417,0.417,1,0,0,1,0,0.633,0.0879,0,0.361,0.197 -1,0.417,0.417,1,0,0,0.2,0,0.633,0.0879,0,0.249,0 -1,0.417,0.417,1,0,0,0,0,0.633,0.0879,0,0.309,0 -1,0.417,0.417,1,0,0,0,0,0.633,0.0879,0,0.236,0 -1,0.417,0.417,0.7,0,0,0,0,0.633,0.0879,0,0.618,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.309,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.137,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.0386,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.073,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.249,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.185,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.361,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.635,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.425,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.143,0,0.464,0 -1,0.411,0.411,0.3,0,0,0,0,0.648,0.143,0,0.403,0 -1,0.411,0.411,1,0,0,0,0,0.648,0.143,0,0.815,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0.283,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0.283,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0.296,0 -0.667,0.279,0.279,1,0,0,0,0.14,0.619,0.111,0,0.453,0 -0.667,0.279,0.279,1,0,0,0,0.14,0.619,0.111,0,0.453,0.488 -0.667,0.279,0.279,0.7,0,0,0,0.14,0.619,0.111,0,0,0.122 -0.667,0.279,0.279,0,0.5,0,0,0.14,0.619,0.111,0.522,0.309,0 -0.667,0.279,0.279,0,1,0,0,0.14,0.619,0.111,0.353,0,0 -0.667,0.279,0.279,0,1,0,0,0.14,0.619,0.111,0.842,0,0.122 -0.667,0.271,0.271,0,1,0,0,0.14,0.619,0.117,0.359,0,0 -0.667,0.271,0.271,0,0.9,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.122 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.616,0.104,0,0,0.244 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,1,0,1,0,0.281,0.631,0.125,0,0.584,0 -0.333,0.17,0.17,0.5,0,1,0,0.281,0.631,0.125,0,0.0601,0.122 -0.667,0.291,0.291,0,0,1,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,1,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0.6,0,0.14,0.701,0.234,0,0,0.61 -0.667,0.291,0.291,0,0,0,0.7,0.14,0.701,0.234,0,0,0.122 -1,0.484,0.484,0,0,0,0.7,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.359,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.315,0,0.122 -1,0.484,0.484,0,1,1,0,0,0.787,0.461,0.207,0.369,0 -1,0.484,0.484,0,1,1,0,0,0.787,0.461,0.207,0.459,0 -1,0.484,0.484,0,1,1,0,0,0.787,0.461,0.603,0.18,0 -1,0.619,0.619,0,1,0.1,0.2,0,0.771,0.646,0.402,0.438,0 -1,0.619,0.619,0,0.9,0,1,0,0.771,0.646,0.554,0.0386,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0.424,0.395,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0,0.369,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0.217,0.309,0 -1,0.619,0.619,0,0,0,0.2,0,0.771,0.646,0.533,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.587,0.421,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.397,0.335,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.0258,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.348,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.309,0.122 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.174 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0349 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.479 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.149 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0299 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.385 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.292 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.34 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.488 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.244 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.301,0.301,0,0,0.5,0,0.14,0.619,0.077,0,0.361,0 -0.333,0.175,0.175,0,0,1,0,0.281,0.59,0.0465,0,0,0.122 -0.333,0.174,0.174,0,0,0,0.3,0.281,0.59,0.053,0,0.21,0 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0.27,0 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0.0901,0.244 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0,0.488 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0.0987,0.122 -0.333,0.174,0.174,0,0,0,1,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0.6,0.281,0.59,0.0582,0,0.283,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0.283,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0.234,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0.384,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0.3,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.271,0.271,0.9,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,1,0,0.14,0.64,0.155,0,0.725,0 -0.667,0.269,0.269,0,0,0.5,0,0.14,0.64,0.155,0,0.137,0 -0.667,0.269,0.269,0,0,0,0.8,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,1,0.14,0.671,0.191,0,0.451,0 -0.667,0.274,0.274,0,0,0,1,0.14,0.671,0.191,0,0.464,0 -1,0.386,0.386,0,0,0,1,0,0.725,0.279,0,0,0.244 -1,0.386,0.386,0,0,0,1,0,0.725,0.279,0,0,0 -1,0.386,0.386,0,0,0,1,0,0.725,0.279,0,0,0.366 -1,0.386,0.386,0,0,0,0.1,0,0.725,0.279,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.61 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.122 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.25 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.155 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.031 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0.3,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.314 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.0697 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.122 -1,0.783,0.783,1,0.5,0,0,0,0.741,0.797,0.315,0,0 -1,0.783,0.783,0.3,1,0,0,0,0.741,0.797,0.446,0,0.176 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.592,0,0.282 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.418,0,0 -1,0.783,0.783,0,0.9,0,0,0,0.741,0.797,0.288,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.258,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0.258,0,0.276 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.171 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.239 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0.122 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.4,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.278 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.196 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.245 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.61 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.133 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.244 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.244 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.161 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.366 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.244 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.322 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.361,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.393,0.244 -0.333,0.159,0.159,0,0,1,0,0.281,0.601,0.0853,0,0.135,0 -0.333,0.159,0.159,0,0,0.6,0,0.281,0.601,0.0853,0,0,0.244 -0.333,0.159,0.159,0,0,0,0.7,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0,0,0,0.7,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.616,0.104,0,0,0.366 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.244 -0.667,0.291,0.291,0.5,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.488 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.403 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.0637 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.488 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.366 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.59 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.0692 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.145 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.169 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.236 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.185 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0941 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.282 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.366 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0.3,0,0,0,0.14,0.671,0.191,0,0,0.244 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.191,0,0,0.366 -0.667,0.274,0.274,0.1,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.291,0.291,0,0.5,0,0,0.14,0.701,0.234,0.391,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.304,0,0 -0.667,0.291,0.291,0,1,0,0,0.14,0.701,0.234,0.527,0,0 -0.667,0.339,0.339,0,1,0,0,0.14,0.712,0.313,0.424,0,0 -0.667,0.339,0.339,0,0.9,0,0,0.14,0.712,0.313,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -1,0.484,0.484,0.8,0,0,0,0,0.787,0.461,0.359,0,0 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0.5,0,0.122 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0.266,0,0.366 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0.429,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0.429,0,0 -1,0.619,0.619,0.2,0,0,0,0,0.771,0.646,0.685,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0.446,0,0.122 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.348,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.745,0,0.122 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.244 -0.667,0.603,0.603,0,0,1,0,0.14,0.64,0.509,0,0.369,0 -0.667,0.603,0.603,0,0,1,0,0.14,0.64,0.509,0,0.0601,0 -0.667,0.603,0.603,0,0,1,0,0.14,0.64,0.509,0,0,0 -0.667,0.415,0.415,0,0,0.1,0.2,0.14,0.599,0.31,0,0.425,0 -0.667,0.415,0.415,0,0,0,1,0.14,0.599,0.31,0,0.18,0 -1,0.597,0.597,0,0,0,0.2,0,0.617,0.457,0,0.348,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0.309,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0.137,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0.185,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.353 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.169 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.237 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.1 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.167 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.189 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.236 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.163 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.163 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.175,0.175,0.1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.338 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.535 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.347 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0694 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0.3,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0.5,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.412,0.412,0,0.5,0,0,0,0.771,0.343,0.478,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.63,0,0 -1,0.412,0.412,0,1,0,0,0,0.771,0.343,0.467,0,0 -1,0.484,0.484,0,1,0,0,0,0.787,0.461,0.386,0,0 -1,0.484,0.484,0,0.9,0.5,0,0,0.787,0.461,0.247,0.283,0 -1,0.484,0.484,0,0,1,0,0,0.787,0.461,0.247,0,0 -1,0.484,0.484,0,0,1,0,0,0.787,0.461,0.283,0.433,0 -1,0.484,0.484,0,0,0.6,0,0,0.787,0.461,0,0.513,0 -1,0.484,0.484,0,0,0,0.7,0,0.787,0.461,0,0.513,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0,0.361,0 -1,0.619,0.619,0,0,0,1,0,0.771,0.646,0,0.258,0 -1,0.619,0.619,0,0,0,0.2,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0.481,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.244 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.244 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.334 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.244 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0.489,0,0 -0.667,0.174,0.174,0,0.8,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.413,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.348,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.321,0,0.244 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0.489,0,0.366 -0.667,0.174,0.174,0,1,0,0,0.281,0.59,0.0809,0,0,0.122 -0.667,0.17,0.17,0,0.1,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0.478,0,0 -0.667,0.164,0.164,0,0.8,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.164,0.164,0,1,0,0,0.281,0.59,0.102,0.342,0,0 -0.667,0.164,0.164,0,1,0,0,0.281,0.59,0.102,0.505,0,0.122 -0.667,0.164,0.164,0,1,0,0,0.281,0.59,0.102,0.56,0,0.122 -0.667,0.164,0.164,0,0.6,0,0,0.281,0.59,0.102,0.429,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.272,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.446,0,0.61 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.315,0,0.488 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.266,0,0.244 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.598,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.185,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0.185,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0.696,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.6,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.8,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.222 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.168,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.168,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.168,0,0,0.366 -0.333,0.194,0.194,1,0,0,0,0.281,0.637,0.196,0,0,0.244 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.122 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.122 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.244 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.122 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.106 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.176 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.277 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.0346 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.1 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.099 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.231 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.105 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.245 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.102 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.17 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.6,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.269,0.269,0.8,0,0,0,0.14,0.619,0.234,0,0,0.122 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0.122 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.366 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.122 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.122 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.122 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.244 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.244 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -1,0.538,0.538,0,0,0.3,0,0.14,0.681,0.574,0,0,0 -1,0.538,0.538,0,0,1,0,0.14,0.681,0.574,0,0.468,0 -1,0.538,0.538,0,0,1,0,0.14,0.681,0.574,0,0.283,0 -1,0.538,0.538,0,0,0.8,0,0.14,0.681,0.574,0,0,0 -1,0.603,0.603,0,0,0,0.5,0.14,0.64,0.53,0,0.309,0.122 -1,0.603,0.603,0,0,0,1,0.14,0.64,0.53,0,0.137,0 -1,0.603,0.603,0,0,0,1,0.14,0.64,0.53,0,0,0.488 -1,0.603,0.603,0,0,0,0.4,0.14,0.64,0.53,0,0.348,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0.592,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0.406,0.105 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.195,0.07 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.597,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.275,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.597,0.597,0.6,0,0,0,0,0.617,0.496,0,0,0 -1,0.415,0.415,1,0,0,0,0.14,0.599,0.337,0,0,0.122 -1,0.183,0.183,1,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.568,0.157,0,0,0.265 -1,0.183,0.183,0.6,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.244 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.122 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.158 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.185 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.122 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,0.3,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.172,0.172,1,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0.5,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.125,0,0,0.244 -0.667,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0.5,0,0,0,0.14,0.712,0.313,0,0,0.244 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.244 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.783,0.783,0,0.5,0,0,0,0.741,0.797,0.255,0,0 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.473,0,0 -1,0.783,0.783,0,1,0,0,0,0.741,0.797,0.402,0,0.122 -1,0.603,0.603,0,1,0,0,0.14,0.64,0.509,0.402,0,0 -1,0.603,0.603,0,1,0,0,0.14,0.64,0.509,0.5,0,0 -1,0.603,0.603,0,1,0,0,0.14,0.64,0.509,0,0,0.366 -1,0.603,0.603,0,0.4,0,0,0.14,0.64,0.509,0.543,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.122 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.128 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.196 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.343 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.0343 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.183 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.307 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.128 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.335 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.244 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.177 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0.318 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0.3,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0.4,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.0386,0.122 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0.3,0.281,0.591,0.0767,0,0.562,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.0767,0,0.3,0.122 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0.6,0.281,0.591,0.0767,0,0.567,0 -0.333,0.149,0.149,0.3,0,0,0,0.281,0.591,0.0767,0,0.223,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0.1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.682,0.222,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.25 -1,0.353,0.353,0.3,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,1,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,1,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,0.5,0,0,0,0,0.728,0.277,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.169 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.339 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0678 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0.5,0,0,0.774,0.64,0,0.249,0 -1,0.523,0.523,0,0,1,0,0,0.774,0.64,0,0,0 -1,0.464,0.464,0,0,1,0,0.14,0.683,0.532,0,0.526,0 -1,0.464,0.464,0,0,1,0,0.14,0.683,0.532,0,0.23,0 -1,0.464,0.464,0,0,1,0,0.14,0.683,0.532,0,0,0.244 -1,0.464,0.464,0,0,0,0.3,0.14,0.683,0.532,0,0,0.103 -1,0.464,0.464,0,0,0,1,0.14,0.683,0.532,0,0,0.732 -1,0.464,0.464,0,0,0,1,0.14,0.683,0.532,0,0,0.366 -1,0.549,0.549,0,0,0,1,0.14,0.642,0.505,0,0,0.134 -1,0.549,0.549,0,0,0,1,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0.1,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.211 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.353 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.165 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.0659 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.295 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.177 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.208 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.158 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.126 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.183 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.366 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.169 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.101 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.25 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.61 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.484 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.171 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.167 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.854 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.273 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.534 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.235 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.126 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0316 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.366 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.3,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0.5,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0.359,0,0.403 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0.647,0,0 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0,0,0 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0.696,0,0 -1,0.365,0.365,0,1,0,0,0.14,0.704,0.432,0.364,0,0 -1,0.464,0.464,0,0.3,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.163 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0652 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.122 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.366 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.172 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.172 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.318 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.113 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0.5,0,0,0.281,0.591,0.073,0.451,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.073,0.522,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.073,0.288,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.0767,0.625,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,1,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0.3,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.244 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.366 -1,0.371,0.371,1,0.5,0,0,0,0.774,0.34,0.451,0,0 -1,0.371,0.371,1,1,0,0,0,0.774,0.34,0.353,0,0 -1,0.371,0.371,1,1,0,0,0,0.774,0.34,0.413,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0.8,0,0,0,0.79,0.457,0.424,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0.44,0,0.366 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0.38,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0.56,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.288,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.332,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.174,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.174,0,0 -1,0.523,0.523,0.4,0,0,0,0,0.774,0.64,0.386,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.408,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.31,0,0.157 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0941 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.412 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.412 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.366 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.334 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0667 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0.402,0,0.211 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.832,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.848,0,0 -0.667,0.278,0.278,0,1,0,0,0.14,0.621,0.143,0.234,0,0 -0.667,0.278,0.278,0,0.8,0,0,0.14,0.621,0.143,0.234,0,0.16 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0.484,0,0.0639 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0.234,0,0 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0,0,0 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0,0,0 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.536 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.069 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.138 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.0692 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0.177 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.142 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0.8,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0.5,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.366 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.366 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.287 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0661 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.34 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.299 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0.519 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.143,0,0,0.162 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.143,0,0,0.0649 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.27,0.27,0.6,0,0,0,0.14,0.621,0.169,0,0,0.268 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.167 -0.667,0.27,0.27,0,0,0.5,0,0.14,0.621,0.169,0,0.309,0 -0.667,0.27,0.27,0,0,1,0,0.14,0.621,0.169,0,0,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.335,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.249,0.163 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0.3,0.14,0.621,0.185,0,0.0987,0 -0.667,0.259,0.259,0,0,0,1,0.14,0.621,0.185,0,0.309,0.366 -0.667,0.259,0.259,0,0,0,1,0.14,0.621,0.185,0,0.21,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.382,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.309,0.488 -0.667,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0,0.122 -0.667,0.15,0.15,0,0,0,0.6,0.281,0.591,0.108,0,0.159,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0.296,0.122 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.15,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.408,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.567,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.412,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0.402,0,0 -0.667,0.149,0.149,0,1,0,0,0.281,0.591,0.141,0.451,0,0 -0.667,0.149,0.149,0,1,0,0,0.281,0.602,0.154,0,0,0.18 -0.667,0.149,0.149,0,1,0,0,0.281,0.602,0.154,0.467,0,0 -0.667,0.149,0.149,0,1,0,0,0.281,0.602,0.154,0.478,0,0 -0.667,0.149,0.149,0,0.3,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.171 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.0342 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.0982 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.305,0,0,0.488 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.264,0.264,1,0,1,0,0.14,0.704,0.315,0,0.322,0.231 -0.667,0.264,0.264,0.5,0,1,0,0.14,0.704,0.315,0,0.536,0.122 -0.667,0.264,0.264,0,0,1,0,0.14,0.704,0.315,0,0.455,0 -0.667,0.264,0.264,0,0,0,0.3,0.14,0.704,0.315,0,0.373,0 -0.667,0.264,0.264,0,0,0,1,0.14,0.704,0.315,0,0.322,0.527 -1,0.371,0.371,0,0,0,1,0,0.774,0.464,0,0.309,0.0967 -0.667,0.296,0.296,0,0,0,1,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,1,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0.1,0.14,0.714,0.371,0,0,0.486 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.382 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.244 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.244 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.122 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.244 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.122 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.148 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.116,0.116,1,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,1,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,0.9,0,0,0,0.281,0.565,0.0869,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.221 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.329 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.0659 -0.667,0.228,0.228,0.8,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,1,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,1,0,0,0,0.14,0.58,0.0474,0,0,0.306 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.238 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.114 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.0335 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.268 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.488 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0.5,0,0.281,0.591,0.0767,0,0.283,0.0323 -0.333,0.149,0.149,0,0,1,0,0.281,0.591,0.0767,0,0.361,0.129 -0.333,0.149,0.149,0,0,0,0.3,0.281,0.602,0.0846,0,0.369,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0.468,0.244 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0.446,0 -0.333,0.149,0.149,0,0,0,1,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0.1,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.333,0.151,0.151,0.8,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.296,0.296,0.7,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.162 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.276 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.118 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.16 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0641 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0956 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.32 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0.4,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0.8,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.244 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.366 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.247 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0.5,0,0,0,0.744,0.791,0.348,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.304,0,0.122 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.505,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.478,0,0 -1,0.671,0.671,0,0.8,0,0,0,0.744,0.791,0.527,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.467,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.321,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.386,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.168,0,0.342 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.168,0,0.19 -1,0.799,0.799,0,1,0,0,0,0.682,0.749,0.451,0,0 -1,0.405,0.405,0,1,0,0,0.14,0.6,0.307,0.571,0,0 -1,0.405,0.405,0,1,0,0,0.14,0.6,0.307,0.5,0,0.145 -1,0.405,0.405,0,1,0,0,0.14,0.6,0.307,0.299,0,0 -1,0.405,0.405,0.8,1,0,0,0.14,0.6,0.307,0.31,0,0 -1,0.405,0.405,1,0.8,0,0,0.14,0.6,0.307,0.31,0,0 -1,0.405,0.405,1,0,0,0,0.14,0.6,0.307,0.402,0,0.122 -1,0.183,0.183,1,0,0,0,0.14,0.569,0.136,0.245,0,0 -1,0.183,0.183,0.5,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0923 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.299 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.0708 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.156 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0415 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.253 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0.413,0,0 -0.333,0.139,0.139,0,1,0,0,0.281,0.571,0.0316,0.375,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.342,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.478,0,0 -0.333,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.614,0,0 -0.333,0.167,0.167,0,0.8,0,0,0.281,0.586,0.0396,0.663,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.402,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.462,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.587,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.375,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.326,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0.527,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.101 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.234 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.265 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.323 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.398 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.203 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0.8,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0.6,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.732 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0.5,0,0,0.774,0.64,0,0.361,0 -1,0.523,0.523,0,0,1,0,0,0.774,0.64,0,0,0.244 -1,0.671,0.671,0,0,1,0,0,0.744,0.791,0,0.504,0 -1,0.671,0.671,0,0,1,0,0,0.744,0.791,0,0.53,0 -1,0.671,0.671,0,0,1,0,0,0.744,0.791,0,0.73,0 -1,0.671,0.671,0,0,0,0.3,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,1,0,0.744,0.791,0,0.185,0.244 -1,0.671,0.671,0,0,0,1,0,0.744,0.791,0,0.573,0 -1,0.799,0.799,0,0,0,1,0,0.682,0.749,0,0.204,0 -1,0.799,0.799,0,0,0,1,0,0.682,0.749,0,0.322,0 -1,0.799,0.799,0,0,0,0.1,0,0.682,0.749,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0.249,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.348 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.276 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.103 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.148 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.208 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.104 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.61 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0.3,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0.488 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0.366 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0.9,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.276 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.244 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.192 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.14 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0.3,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0.341 -1,0.523,0.523,0.4,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.175 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.105 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.327 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.155 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.731 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.227 -1,0.0495,0.0495,0.3,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0503,0.0503,0.1,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.33 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.207 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.155 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.176 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.351 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.141 -1,0.317,0.317,0.3,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.402,0.402,0.1,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.244 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0923 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.366 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.366 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.244 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.337 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.244 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.191 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.123 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.0617 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.366 -0.333,0.154,0.154,0.3,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0.4,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.244 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.366 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.244 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.122 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.122 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.366 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.151 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,1,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0223,0,0,0.308 -1,0.0781,0.0781,0.5,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0264,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0264,0,0,0.333 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0264,0,0,0.435 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0.333 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0.0666 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.24 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,0.3,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.284,0.284,1,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.286,0.286,0.1,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.333,0.164,0.164,0,0.5,0,0,0.281,0.591,0.0803,0.489,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0803,0.375,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0803,0.359,0,0 -0.333,0.16,0.16,0,1,0,0,0.281,0.591,0.0934,0.522,0,0 -0.333,0.16,0.16,0,0.8,0,0,0.281,0.591,0.0934,0.293,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0.293,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.335,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.21,0 -0.667,0.259,0.259,0,0,1,0,0.14,0.621,0.185,0,0.322,0 -0.667,0.251,0.251,0,0,1,0,0.14,0.621,0.198,0,0.408,0 -0.667,0.251,0.251,0,0,0.5,0,0.14,0.621,0.198,0,0.309,0 -0.333,0.15,0.15,0,0,0,0.8,0.281,0.591,0.108,0,0.361,0.244 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.232,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0.249,0 -0.333,0.15,0.15,0,0,0,1,0.281,0.591,0.108,0,0,0.244 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.125,0,0.309,0.167 -0.333,0.149,0.149,0,0,0,1,0.281,0.591,0.125,0,0.309,0.488 -0.333,0.149,0.149,0,0,0,0.1,0.281,0.591,0.125,0,0.27,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.0987,0.132 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.309,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.0258,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.408,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.296,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.395,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.318,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.223,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.348,0 -0.667,0.249,0.249,0.3,0,0,0,0.14,0.642,0.291,0,0.073,0.244 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.249,0.249,0.1,0,0,0,0.14,0.642,0.291,0,0.472,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.584,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.661,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.618,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.283,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.137,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.236,0.488 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.348,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.21,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.612,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.539,0.244 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.296,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0.545,0.488 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0.618,0.366 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.296,0.296,0,0.5,0,0,0.14,0.714,0.371,0.457,0.472,0 -0.667,0.296,0.296,0,1,0,0,0.14,0.714,0.371,0.348,0.476,0 -0.667,0.296,0.296,0,1,0,0,0.14,0.714,0.371,0.364,0.253,0 -0.667,0.365,0.365,0,1,0,0,0.14,0.704,0.485,0.63,0,0 -0.667,0.365,0.365,0,1,0,0,0.14,0.704,0.485,0.179,0,0 -1,0.523,0.523,0,1,0,0,0,0.774,0.719,0.179,0,0 -1,0.523,0.523,0,0.3,0,0,0,0.774,0.719,0.478,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0.3,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0.122 -0.667,0.259,0.259,0.9,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0.249,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0.249,0.244 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.621,0.13,0,0.348,0 -0.667,0.249,0.249,0,0,0.5,0,0.14,0.621,0.13,0,0.197,0 -0.667,0.249,0.249,0,0,0,0.8,0.14,0.621,0.13,0,0,0.366 -0.667,0.249,0.249,0,0,0,1,0.14,0.621,0.137,0,0,0.366 -0.667,0.249,0.249,0,0,0,1,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,1,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0.6,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.488 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.3,0,0,0,0.14,0.704,0.232,0,0,0.488 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0.244 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.35 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.203 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.518 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0.3,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.346 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.592 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.17 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.339 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0339 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.281,0.56,0.0171,0,0.309,0 -1,0.0495,0.0495,0,0,1,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0.3,0.281,0.56,0.0171,0,0.47,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0171,0,0.273,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0171,0,0.296,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0157,0,0.361,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.56,0.0157,0,0.309,0 -1,0.0495,0.0495,0,0,0,0.1,0.281,0.56,0.0157,0,0.0515,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.494,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.137,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.336 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.328 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0657 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.14 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.348 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.177 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0354 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.146 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.303 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.488 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.244 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0.6,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0.5,0,0,0,0.79,0.457,0.304,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.457,0.337,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.457,0.38,0,0.244 -1,0.42,0.42,0,1,0,0,0,0.79,0.457,0.37,0,0 -1,0.42,0.42,0,0.8,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.614,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.56,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.598,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.386,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.299,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.435,0,0.154 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.299,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.527,0,0.122 -1,0.671,0.671,0.8,0,0,0,0,0.744,0.791,0.215,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0.215,0,0.122 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.424,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.255,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.348,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.603,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.121 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.165 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0.132 -1,0.228,0.228,0.1,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.208 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.743 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.163 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.163 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.14,0.673,0.19,0,0,0.366 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.366 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.366 -0.667,0.252,0.252,0.5,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.8,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.6,0,0,0,0.14,0.704,0.232,0,0,0.366 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.464,0.464,0,0.5,0,0,0.14,0.683,0.532,0.332,0,0 -1,0.464,0.464,0,1,0,0,0.14,0.683,0.532,0.293,0,0 -1,0.464,0.464,0,1,0,0,0.14,0.683,0.532,0.397,0,0.122 -1,0.464,0.464,0,1,0,0,0.14,0.683,0.532,0.859,0,0 -1,0.464,0.464,0,0.8,0,0,0.14,0.683,0.532,0.209,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0.209,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.366 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.451,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.418,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.853,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.31,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0.38,0,0.287 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.166 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0666 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.205 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0.9,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0.3,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0.4,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0.3,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,1,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.5,0,0,0,0,0.774,0.64,0.505,0,0 -1,0.523,0.523,0,1,0,0,0,0.774,0.64,0.266,0,0.122 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.226,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.226,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.755,0,0 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.293,0,0 -1,0.671,0.671,0,0.8,0,0,0,0.744,0.791,0.424,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.582,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.473,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.446,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.337,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.366 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.444 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.541 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0351 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.233 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.177 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0706 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.457 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.287 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.465 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.175 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.14 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0.3,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0.332,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0.413,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0.696,0,0 -1,0.42,0.42,1,1,0,0,0,0.79,0.457,0.408,0,0 -1,0.523,0.523,1,0.3,0,0,0,0.774,0.64,0.495,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.424,0,0.488 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0.272,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.366 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.246 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.122 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0637 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.354 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.0354 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.337 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.0337 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.166 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.288 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.122 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.203 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.255 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.206 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.154 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.244 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.473 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.156 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.156 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.0934 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.122 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.682,0.427,0,0,0 -1,0.349,0.349,0.3,0,0,0,0,0.682,0.427,0,0,0 -1,0.349,0.349,1,0,0,0,0,0.682,0.427,0,0,0 -1,0.349,0.349,1,0,1,0,0,0.682,0.427,0,0.283,0 -1,0.349,0.349,1,0,1,0,0,0.682,0.427,0,0.249,0 -1,0.349,0.349,1,0,1,0,0,0.682,0.427,0,0,0 -1,0.353,0.353,1,0,1,0,0,0.728,0.449,0,0.21,0 -1,0.353,0.353,1,0,0.5,0,0,0.728,0.449,0,0.249,0 -1,0.353,0.353,1,0,0,0.8,0,0.728,0.449,0,0,0.244 -1,0.353,0.353,1,0,0,1,0,0.728,0.449,0,0.223,0 -1,0.353,0.353,1,0,0,1,0,0.728,0.449,0,0.296,0 -1,0.353,0.353,0.8,0,0,1,0,0.728,0.449,0,0.0987,0 -1,0.371,0.371,0,0,0,1,0,0.774,0.464,0,0.296,0 -1,0.371,0.371,0,0,0,1,0,0.774,0.464,0,0.459,0 -1,0.371,0.371,0,0,0,0.1,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0.283,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0.296,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.244 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.0386,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.197,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.249,0.488 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.483,0.366 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.298,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.296,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.159,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.459,0.488 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.545,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.137,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.361,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.288,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.236,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.249,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0.8,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0.6,0,0,0,0,0.682,0.78,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.227 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.101 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.101 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.339 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0.8,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0.189 -1,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,1,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0.5,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.244 -1,0.352,0.352,0,0,0,0,0,0.651,0.288,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.366 -0.667,0.249,0.249,0.8,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.252,0.252,1,0,0.5,0,0.14,0.673,0.305,0,0.0601,0.244 -1,0.353,0.353,1,0,1,0,0,0.728,0.449,0,0,0 -1,0.353,0.353,1,0,1,0,0,0.728,0.449,0,0,0 -1,0.353,0.353,1,0,0.5,0,0,0.728,0.449,0.37,0,0.244 -1,0.353,0.353,0.8,1,0,0.8,0,0.728,0.449,0.408,0,0 -1,0.371,0.371,0,1,0,1,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,1,0,1,0,0.774,0.464,0.701,0,0.366 -1,0.371,0.371,0,1,0,1,0,0.774,0.464,0.272,0,0.122 -1,0.371,0.371,0,1,0,0.6,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0.8,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0.3,0,0,0,0,0.744,0.845,0,0,0.528 -1,0.671,0.671,1,0,0,0,0,0.744,0.845,0,0,0.194 -1,0.799,0.799,0.1,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.366 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.244 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.366 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.244 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.244 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.122 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.244 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0.122 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0.488 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0.4,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.3 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.161 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.0642 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.273 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.377 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.035 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.315 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.518 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.0305 -0.667,0.249,0.249,0.8,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0.6,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.301 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.0335 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.366 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.244 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.339 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.271 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.276 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.068 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.068 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.165 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.132 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.122 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.244 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.108 -0.667,0.296,0.296,0.3,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.244 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.122 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.464,0.464,1,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0.1,0,0,0,0.14,0.683,0.532,0,0,0.122 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.341 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.127 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0.3,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,1,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0.1,0,0,0,0,0.589,0.0632,0,0,0.109 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.167 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.334 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.403 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.249 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.35 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.156 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0936 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.333 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.667,0.259,0.259,0.8,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0.6,0,0,0,0.14,0.621,0.11,0,0,0.291 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.156 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.159 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.157,0.157,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.244 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.366 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.6,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.154 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.244 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.366 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.232 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.158 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.169 -0.667,0.139,0.139,0.3,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.281,0.571,0.0316,0,0,0.155 -0.667,0.139,0.139,0.5,0,0.5,0,0.281,0.571,0.0316,0,0.0601,0.031 -0.667,0.139,0.139,0,0,1,0,0.281,0.571,0.0316,0,0,0 -0.667,0.167,0.167,0,0,1,0,0.281,0.586,0.0396,0,0.296,0 -0.667,0.167,0.167,0,0,1,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,1,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0.3,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,1,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0,0.336 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0,0.168 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0.6,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.488 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.221 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.153 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.427 -1,0.371,0.371,0.8,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0.4,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.268 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.488 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.335 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.401 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0.1 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.161 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.0642 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.336 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.189 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.542 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0353 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.218 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.122 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.488 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.488 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.244 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0.8,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,1,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,1,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.147 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.197 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.246 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0.299 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.0318 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.127 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.366 -0.667,0.16,0.16,0.8,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.366 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.122 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.122 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.185 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.174 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.174 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.122 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.244 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.697 -0.667,0.296,0.296,0.3,0,0,0,0.14,0.714,0.371,0,0,0.437 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.547,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.24 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.204 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.224 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.122 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.134 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.136 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.235 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.122 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.122 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0.31,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.418,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.326,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.571,0,0 -1,0.0495,0.0495,0,0.8,0,0,0.421,0.562,0.0181,0.359,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.326,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,0.3,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.167,0.167,1,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.168,0.168,0.1,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.168,0.168,0,0,0.5,0,0.281,0.591,0.0636,0,0.0601,0 -1,0.168,0.168,0,0,1,0,0.281,0.591,0.0636,0,0.236,0 -1,0.404,0.404,0,0,0,0.3,0,0.651,0.155,0,0.124,0 -1,0.404,0.404,0,0,0,1,0,0.651,0.155,0,0.0987,0 -1,0.404,0.404,0,0,0,1,0,0.651,0.155,0,0.408,0 -0.667,0.278,0.278,0,0,0,0.6,0.14,0.621,0.143,0,0.322,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0.258,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0.262,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0.369,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.335,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.223,0.488 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.172,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.558,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.296,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.296,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.283,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.0258,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.258,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,0.3,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.149,0.149,1,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.151,0.151,1,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.151,0.151,1,0,0,0,0.281,0.617,0.162,0,0,0.732 -0.667,0.151,0.151,1,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.244 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.488 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0.652,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0.337,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0.701,0,0 -1,0.42,0.42,0,1,0,0,0,0.79,0.547,0,0,0.122 -1,0.523,0.523,0,0.3,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.209 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.122 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.134 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.168 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.351 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0351 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.168 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0335 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0.5,0,0,0.281,0.586,0.0396,0.489,0,0.148 -0.667,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.391,0,0 -0.667,0.167,0.167,0,1,0,0,0.281,0.586,0.0396,0.592,0,0 -0.667,0.284,0.284,0,1,0,0,0.14,0.611,0.0634,0.397,0,0.171 -0.667,0.284,0.284,0,0.8,0,0,0.14,0.611,0.0634,0.261,0,0.171 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0.261,0,0 -0.667,0.286,0.286,0,0,1,0,0.14,0.621,0.0764,0.397,0.494,0 -0.667,0.286,0.286,0,0,0.5,0,0.14,0.621,0.0764,0,0.309,0 -0.667,0.286,0.286,0,0,0,0.8,0.14,0.621,0.0764,0,0.442,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0.468,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0.433,0 -0.333,0.168,0.168,0,0,0,1,0.281,0.591,0.0462,0,0.0987,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.591,0.0527,0,0.249,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.591,0.0527,0,0.283,0.122 -0.333,0.164,0.164,0,0,0,0.1,0.281,0.591,0.0527,0,0.195,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.135,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.486,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.243,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.283,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.361,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.137,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.395,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.309,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.137,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.236,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.073,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.0515,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.0129,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.433,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.571,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.21,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.502,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.313,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.597,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.283,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.384,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.234,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.631,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.258,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.249,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.236,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.309,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.361,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.506,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.8,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.122 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.244 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.366 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0.1,0,0,0,0,0.774,0.64,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.366 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.27 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.683 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.24 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.173 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.173 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0.5,0,0.281,0.591,0.0527,0,0.309,0.122 -0.333,0.164,0.164,0,0,1,0,0.281,0.591,0.0527,0,0.416,0.244 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0578,0,0.18,0.244 -0.333,0.16,0.16,0,0,0.5,0,0.281,0.591,0.0578,0,0.236,0 -0.667,0.27,0.27,0,0,0,0.8,0.14,0.621,0.0997,0,0.197,0.244 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0578,0,0.481,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0578,0,0.249,0 -0.667,0.27,0.27,0,0,0,1,0.14,0.621,0.0997,0,0.0515,0.122 -0.667,0.259,0.259,0,0,0,0.6,0.14,0.621,0.11,0,0.296,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.112,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.137,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.15,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.309,0.122 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.532,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.481,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.296,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.223,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.369,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.258,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.283,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.27,0.122 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.335,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.532,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.283,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.249,0.249,0,0,0.5,0,0.14,0.642,0.153,0,0.309,0 -0.667,0.249,0.249,0,0,1,0,0.14,0.642,0.153,0,0,0.122 -0.667,0.252,0.252,0,0,1,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0.5,0,0.14,0.673,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0.8,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0.8,0,0,1,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,1,0,0,1,0.281,0.617,0.103,0,0,0 -0.667,0.252,0.252,1,0,0,1,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,1,0,0,1,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,1,0.14,0.704,0.232,0,0,0.301 -0.667,0.264,0.264,1,0,0,0.1,0.14,0.704,0.232,0,0,0.334 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.122 -1,0.371,0.371,0.4,0,0,0,0,0.774,0.34,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.337 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.303 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.488 -1,0.42,0.42,0,0,1,0,0,0.79,0.457,0,0.459,0 -1,0.42,0.42,0,0,1,0,0,0.79,0.457,0,0.258,0 -1,0.42,0.42,0,0,1,0,0,0.79,0.457,0,0.444,0 -1,0.523,0.523,0,0,1,0,0,0.774,0.64,0,0.148,0 -1,0.523,0.523,0,0,0.5,0,0,0.774,0.64,0,0.27,0 -0.667,0.365,0.365,0,0,0,0.8,0.14,0.704,0.432,0,0.258,0 -0.667,0.365,0.365,0,0,0,1,0.14,0.704,0.432,0,0,0 -0.667,0.365,0.365,0,0,0,1,0.14,0.704,0.432,0,0,0.366 -0.667,0.365,0.365,0,0,0,1,0.14,0.704,0.432,0,0,0 -1,0.671,0.671,0,0,0,0.6,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.488 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.122 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0945 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.177 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.158 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.0316 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.17 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.339 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.102 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.167 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.134 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0.8,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.157,0.157,0.6,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.296 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0.8,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.799,0.799,1,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0.5,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.244 -1,0.799,0.799,0,0.5,0,0,0,0.682,0.749,0.647,0,0.366 -1,0.799,0.799,0,1,0,0,0,0.682,0.749,0.353,0,0.417 -1,0.799,0.799,0,1,0,0,0,0.682,0.749,0.304,0,0.0347 -1,0.582,0.582,0,1,0,0,0,0.62,0.453,0.473,0,0 -1,0.582,0.582,0,0.8,0,0,0,0.62,0.453,0.582,0,0.122 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.122 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0.44,0,0 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.136 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.337 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.2 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.207 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.142 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.248 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.349 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0349 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.154 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0309 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.177 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.366 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.204 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.154 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,0.3,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0.122 -0.667,0.264,0.264,0.5,0,0,0,0.14,0.704,0.232,0,0,0.366 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.122 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.142 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.342 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.122 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.631 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.122 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.196 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.244 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.139 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.209 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.122 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.257 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.327 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.196 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.193 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.0643 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.312 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.193 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.381 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0651 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.366 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.263,0.263,0.8,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.263,0.263,1,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.263,0.263,1,0,0,0,0.421,0.548,0.147,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0.3,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,1,0,0.5,0,0.421,0.591,0.315,0,0.249,0 -1,0.238,0.238,0.3,0,1,0,0.421,0.591,0.315,0,0,0 -1,0.247,0.247,0,0,1,0,0.421,0.617,0.326,0,0.296,0 -1,0.247,0.247,0,0,1,0,0.421,0.617,0.326,0,0.348,0 -1,0.247,0.247,0,0,1,0,0.421,0.617,0.326,0,0.408,0 -1,0.345,0.345,0,0,0,0.3,0.421,0.645,0.479,0,0.592,0 -1,0.345,0.345,0,0,0,1,0.421,0.645,0.479,0,0.408,0.122 -1,0.345,0.345,0,0,0,1,0.421,0.645,0.479,0,0.296,0 -1,0.384,0.384,0,0,0,1,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,1,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.386 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.488 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.244 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.244 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.286 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.23 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.366 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.366 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.488 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.122 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.122 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.122 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.244 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.244 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.244 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.244 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.235,0.235,0.3,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.235,0.235,1,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.235,0.235,1,0,0,0,0.421,0.548,0.24,0,0,0.337 -1,0.235,0.235,0.5,0,0,0,0.421,0.548,0.24,0,0,0.0337 -1,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.168 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.606 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.158 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.154 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.366 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.366 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.488 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.66 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.398 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0.3,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.743,0,0,0.244 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0.122 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0.9,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.219,0.219,0,0.5,0,0,0.614,0.546,0.182,0.299,0,0 -0.667,0.219,0.219,0,1,0,0,0.614,0.546,0.182,0.435,0,0.122 -1,0.388,0.388,0,1,0,0,0.807,0.531,0.345,0.397,0,0 -1,0.388,0.388,0,1,0,0,0.807,0.531,0.345,0.446,0,0 -1,0.388,0.388,0,0.7,0,0,0.807,0.531,0.345,0.609,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0.359,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.336 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0671 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.157 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0314 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.297 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0329 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.244 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0.9,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0.5,0,0,0.421,0.617,0.239,0.25,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.435,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.38,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.554,0,0 -0.667,0.247,0.247,0,0.7,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.273,0.273,0,0.5,0,0,0.749,0.626,0.32,0.315,0,0 -0.667,0.273,0.273,0,1,0,0,0.749,0.626,0.32,0.359,0,0.122 -0.667,0.273,0.273,0,1,0,0,0.749,0.626,0.32,0.386,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0.7,0,0,0.912,0.658,0.473,0.326,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.478,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.253,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.253,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.554,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.543,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.31,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.495,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.207 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.289 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.167 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.135 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.189 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.343 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0241,0,0,0.137 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0.195 -1,0.104,0.104,0.9,0,0,0,0.807,0.497,0.0323,0,0,0.0649 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0.5,0,0.807,0.514,0.0488,0,0.283,0 -1,0.222,0.222,0,0,1,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,1,0,0.807,0.514,0.0488,0,0.481,0 -1,0.222,0.222,0.3,0,1,0,0.807,0.514,0.0488,0,0.0601,0 -1,0.222,0.222,1,0,1,0,0.807,0.514,0.0488,0,0,0 -0.667,0.277,0.277,1,0,0,0.3,0.421,0.54,0.0653,0,0.451,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.451,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.283,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.159,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0.0987,0 -0.667,0.277,0.277,1,0,0,1,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,1,0,0,0.5,0.421,0.548,0.0788,0,0.373,0 -0.667,0.274,0.274,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0.6,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.488 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0.3,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.345,0.345,0.1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.488 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0.3,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,1,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.244 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,1,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0.2,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.628 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.143 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.305 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.34 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.17 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.34 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.136 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.204 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.102 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0.3,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.39,0.39,0.1,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0.122 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0.5,0,0,0.421,0.548,0.0788,0.348,0,0.281 -0.667,0.274,0.274,0,1,0,0,0.421,0.548,0.0788,0.408,0,0.366 -0.667,0.274,0.274,0,1,0,0,0.421,0.548,0.0788,0.473,0,0 -0.333,0.162,0.162,0,1,0,0,0.421,0.555,0.0473,0.543,0,0.0669 -0.333,0.162,0.162,0,1,0,0,0.421,0.555,0.0473,0.285,0,0.335 -0.333,0.162,0.162,0,1,0,0,0.421,0.555,0.0473,0.285,0,0 -0.333,0.156,0.156,0,0.1,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.484,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.565,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.348,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.446,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0.478,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0.473,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.366 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0751,0,0.0515,0 -0.667,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0,0.122 -0.667,0.142,0.142,0,0,0,0.3,0.421,0.555,0.0789,0,0.644,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.0987,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.309,0.122 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.532,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.309,0 -0.667,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0,0.244 -0.667,0.142,0.142,0,0,0,0.5,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.488 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0.3,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -1,0.345,0.345,0.1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.488 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.366 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.366 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.214 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.172 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.0343 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.354 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.598 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.349 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.175 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0.3,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.328,0.328,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0.9,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.137 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.157 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.0945 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.488 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.181 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.175 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.169 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.236 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0.342 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0.103 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.136,0.136,0,0.5,1,0,0.614,0.538,0.0323,0.353,0.0858,0 -0.667,0.136,0.136,0,1,1,0,0.614,0.538,0.0323,0.315,0,0 -0.667,0.136,0.136,0,1,1,0,0.614,0.538,0.0323,0.402,0,0 -0.667,0.136,0.136,0,1,0,0.3,0.614,0.538,0.0323,0.478,0,0 -0.667,0.136,0.136,0,1,0,1,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,1,0,1,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0.1,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,1,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0.3,0,0,0.9,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0.9,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.254 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.244 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.122 -0.667,0.256,0.256,0.8,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0.348,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0.44,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0.516,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.555,0.0676,0.478,0,0 -0.667,0.235,0.235,0,0.2,0,0,0.421,0.548,0.134,0.217,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0.3,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,0.1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0,0.163,0 -1,0.467,0.467,0,0,0.5,0,1,0.645,0.662,0,0.597,0 -1,0.467,0.467,0,0,0,0.8,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0.6,1,0.645,0.662,0,0.356,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.0258,0.366 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.283,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.21,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.335,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.073,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.0987,0.122 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.137,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.361,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.421,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.283,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0.236,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.173 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.277 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.166 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.166 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.548 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.125 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.0625 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.274,0.274,0.3,0,0,0,0.421,0.548,0.113,0,0,0.279 -1,0.274,0.274,1,0,0,0,0.421,0.548,0.113,0,0,0.23 -1,0.274,0.274,1,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.274,0.274,0.5,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.551 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.414 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.166 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.0994 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.409 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.244 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.147 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.331 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.266 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.506 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.0984 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.189 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.151 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.173 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.488 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.238 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0.3,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.244 -0.667,0.328,0.328,1,0,1,0,0.807,0.617,0.501,0,0.515,0.366 -0.667,0.328,0.328,1,0,1,0,0.807,0.617,0.501,0,0.155,0 -1,0.467,0.467,1,0,1,0,1,0.645,0.743,0,0,0 -1,0.595,0.595,1,0,1,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0.3,0,0.5,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0.8,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0.6,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0.3,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,1,0,1,0,0.421,0.548,0.147,0,0.296,0 -1,0.263,0.263,0.5,0,1,0,0.421,0.548,0.147,0,0.137,0 -1,0.263,0.263,0,0,1,0,0.421,0.548,0.147,0,0,0 -1,0.37,0.37,0,0,0,0.3,0.421,0.542,0.212,0,0.386,0 -1,0.37,0.37,0,0,0,1,0.421,0.542,0.212,0,0.21,0 -1,0.37,0.37,0,0,0,1,0.421,0.542,0.212,0,0,0 -1,0.359,0.359,0,0,0,1,0.421,0.542,0.252,0,0.369,0 -1,0.359,0.359,0,0,0,1,0.421,0.542,0.252,0,0.361,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0.309,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0.0901,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0.459,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.348,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.137,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.421,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.408,0.488 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.122 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.159,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.223,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.258,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.73,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.519,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.361,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.0987,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.348,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.395,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.519,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.262,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.27,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.309,0.122 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.0987,0.122 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.421,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.366 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.488 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.488 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.467,0.467,0.8,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.743,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.366 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.244 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0.366 -0.667,0.413,0.413,0.3,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0.433,0 -1,0.0768,0.0768,0,0,0.5,0,0.614,0.529,0.0241,0,0.073,0 -1,0.0768,0.0768,0,0,0,0.8,0.614,0.529,0.0241,0,0.0386,0 -1,0.136,0.136,0,0,0,1,0.614,0.538,0.0323,0,0.21,0 -1,0.136,0.136,0,0,0,1,0.614,0.538,0.0323,0,0.283,0 -1,0.136,0.136,0,0,0,1,0.614,0.538,0.0323,0,0.481,0 -1,0.136,0.136,0,0,0,0.5,0.614,0.538,0.0323,0,0.532,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0.176,0.204 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0.296,0.102 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0.249,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.296,0.27 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.249,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.1 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.262 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.167 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.0334 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.429 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.341 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.366 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.283 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.175 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.414 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0426 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.292 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.366 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.61 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.366 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.488 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.366 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.244 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.244 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.488 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.345 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.103 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.159 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.0318 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.506,0.167 -0.667,0.163,0.163,0,0,1,0,0.421,0.551,0.0406,0,0.172,0.234 -0.667,0.277,0.277,0,0,1,0,0.421,0.54,0.0653,0,0.481,0 -0.667,0.277,0.277,0,0,0.5,0,0.421,0.54,0.0653,0,0.21,0 -0.667,0.277,0.277,0,0,0,0.8,0.421,0.54,0.0653,0,0.249,0 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.283,0.35 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.569,0.663 -0.333,0.162,0.162,0,0,0,1,0.421,0.555,0.0473,0,0.135,0.244 -0.333,0.162,0.162,0,0,0,0.5,0.421,0.555,0.0473,0,0.361,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0.185,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0.455,0.167 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.0129,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.27,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.223,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.459,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.21,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0.3,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.345,0.345,0.1,0,0,0,0.421,0.645,0.351,0,0,0.189 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.137 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0.467,0,0.102 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.326,0,0.122 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.22,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.22,0,0.158 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.364,0,0.0634 -1,0.384,0.384,0,0.2,0,0,0.912,0.658,0.473,0.734,0,0 -1,0.384,0.384,0.3,0,0,0,0.912,0.658,0.473,0.538,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.398 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.184 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.488 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.244 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.164 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.156 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0624 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0.9,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0.489,0,0.244 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.565,0,0.122 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.783,0,0.244 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.446,0,0 -0.667,0.273,0.273,0,0.2,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0.3,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,1,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.384,0.384,0.1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.156 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0936 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.472 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.244 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.308 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.244 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.165 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.198 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.226 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.167 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.1 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.349 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.349 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.14 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.312 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0352 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.211 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.122 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0.124,0 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0.249,0 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0.3,0.421,0.548,0.134,0,0.0258,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.134,0,0.172,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.134,0,0.541,0.122 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0.0386,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.142,0,0.249,0 -0.667,0.235,0.235,0.3,0,0,0.9,0.421,0.548,0.142,0,0.249,0.172 -1,0.327,0.327,1,0,0,0,0.421,0.542,0.205,0,0.545,0.191 -1,0.328,0.328,0.1,0,0,0,0.421,0.568,0.23,0,0.459,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.605,0.244 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.223,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.148,0.148,0.3,0,0,0,0.421,0.589,0.128,0,0,0 -1,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.244 -1,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.366 -1,0.247,0.247,0.5,0,0,0,0.421,0.617,0.239,0,0,0.488 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.244 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0.489,0,0 -1,0.273,0.273,0,1,0,0,0.749,0.626,0.32,0.478,0,0 -1,0.328,0.328,0,1,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,1,0,0,0.807,0.617,0.446,0.788,0,0 -1,0.328,0.328,0,1,0,0,0.807,0.617,0.446,0.511,0,0 -1,0.328,0.328,0,0.2,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0.8,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,1,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.295 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.26 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.349 -0.667,0.274,0.274,0,0,0.5,0,0.421,0.548,0.0788,0,0.0386,0.174 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0.3,0.421,0.548,0.0788,0,0.408,0 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.369,0.17 -0.667,0.274,0.274,0,0,0,1,0.421,0.548,0.0788,0,0.309,0.0339 -0.333,0.156,0.156,0,0,0,1,0.421,0.555,0.0541,0,0.159,0 -0.333,0.156,0.156,0,0,0,1,0.421,0.555,0.0541,0,0.361,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.309,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.506,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.309,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.223,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.0129,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.629,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.444,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.605,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.112,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0987,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.249,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0129,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.283,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0987,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.0129,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.309,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.309,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.283,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.558,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.309,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.172,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.309,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.137,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.0987,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.258,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.21,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.341 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.3 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.488 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.214 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.157 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.0941 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.366 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.488 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.332 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0663 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0.3,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0.122 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0.3,0,0.5,0,0.421,0.555,0.0654,0,0.0258,0.366 -1,0.162,0.162,1,0,1,0,0.421,0.555,0.0654,0,0.494,0 -1,0.156,0.156,1,0,0,0.3,0.421,0.555,0.0826,0,0.185,0.24 -1,0.156,0.156,0.5,0,0,1,0.421,0.555,0.0826,0,0.382,0.122 -1,0.156,0.156,0,0,0,1,0.421,0.555,0.0826,0,0,0.122 -1,0.37,0.37,0,0,0,0.6,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.643 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.153 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.245 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.169 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.101 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.343 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.587 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.323 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.0323 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0.5,0,0,0.421,0.548,0.24,0.337,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.24,0.391,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.24,0.255,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.273,0.462,0,0 -0.667,0.235,0.235,0,0.7,0,0,0.421,0.548,0.273,0.391,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0.397,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0.321,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0.386,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0.212,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0.212,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0.467,0,0 -0.667,0.235,0.235,0.8,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,0.6,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.366 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.366 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0.488 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0.488 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0.554,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0.424,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0.473,0,0 -1,0.726,0.726,0,1,0,0,1,0.568,0.806,0.489,0,0.244 -1,0.557,0.557,0,0.2,0,0,1,0.516,0.509,0.467,0,0.244 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0.418,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0.429,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.244 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.265 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.066 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.33 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0.3,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.156,0.156,1,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.153,0.153,0.3,0,0,0,0.421,0.555,0.0961,0,0,0.488 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.244 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.244 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.488 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0.122 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.142,0.142,0.4,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.244 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.244 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.34 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.102 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.12 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.207 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.164 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.164 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.337 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.101 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.17 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.536 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0.3,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0.1,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.488 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0.1,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0.5,0,0,1,0.645,0.662,0.332,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.5,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.658,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.636,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0,0,0 -0.667,0.413,0.413,0,0.1,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.284 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0969 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.225 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.174 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0695 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.329 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0987 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.614,0.529,0.0158,0,0,0.244 -1,0.0495,0.0495,1,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.301 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.288 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.222,0.222,0.1,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.144 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.279 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.071 -0.667,0.247,0.247,0.3,0,0,0,0.421,0.617,0.239,0,0,0.248 -0.667,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.467,0.467,0.6,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.331 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.176 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.106 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.222 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.166 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.233 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.488 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.253 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.334 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.191 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.239 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.107 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0328 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.197 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.238 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.101 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.337 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.467 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.205 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0751,0,0.283,0 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0789,0,0.519,0 -0.333,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0789,0,0.446,0.244 -0.333,0.142,0.142,0,0,0,0.8,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0.6,0.421,0.555,0.0789,0,0.0258,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.0386,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.408,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.0129,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.489,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.142,0 -0.333,0.142,0.142,0.3,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,1,0.5,0,0,0.421,0.645,0.351,0.685,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.391,0,0.366 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.527,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.435,0,0 -1,0.384,0.384,0,0.7,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.516,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.37,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0.576,0,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.418,0.532,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.226,0,0.122 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.226,0,0.122 -0.667,0.328,0.328,0,0,0,0.3,0.807,0.617,0.446,0.44,0,0 -0.667,0.328,0.328,0,0,0,1,0.807,0.617,0.446,0,0,0.122 -1,0.328,0.328,0,0,0,0.1,0.807,0.617,0.446,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.157 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0629 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.488 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.61 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0.289 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0.168 -1,0.0768,0.0768,0.6,0,0,0,0.614,0.529,0.0241,0,0,0.201 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.216 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.199 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0498 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.61 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.366 -0.667,0.163,0.163,0.8,0,0,0,0.421,0.551,0.0406,0,0,0.507 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0.366 -0.667,0.163,0.163,0.8,0,0,0,0.421,0.551,0.0406,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.239 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.1 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.301 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.342 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.137 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.498 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0341 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.154 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0615 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.177 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0.5,0,0.421,0.548,0.0788,0,0.0858,0.165 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0,0.0329 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0.558,0 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0.519,0 -0.667,0.274,0.274,0,0,1,0,0.421,0.548,0.0788,0,0.223,0 -0.667,0.263,0.263,0,0,0,0.3,0.421,0.548,0.0923,0,0.468,0.141 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.348,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.519,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.0258,0.101 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.545,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.309,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.574,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.431,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.296,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.0258,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.309,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.283,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.159,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.579,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.541,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.0386,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.73,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.18,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.24,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.421,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.0258,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.506,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.249,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.348,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.309,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.526,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.255,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.524,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.155,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.244 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.488 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0.473,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.37,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.435,0,0.122 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.625,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0.6,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.34 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.204 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0.8,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.366 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.679,0,0 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.177,0,0 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.177,0,0 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.565,0,0.488 -1,0.413,0.413,0,1,0,0,0.807,0.6,0.55,0.565,0,0.122 -1,0.275,0.275,0,0.2,0,0,0.614,0.564,0.269,0.429,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0.353,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.167 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.234 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.21 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.138 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,0.3,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.142,0.142,1,0,0,0,0.421,0.564,0.159,0,0,0.366 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.122 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.244 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.244 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.366 -0.667,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.366 -0.667,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.244 -0.667,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.366 -0.667,0.148,0.148,0.9,0,0,0,0.421,0.589,0.172,0,0,0 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.366 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.488 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.244 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.244 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.175 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.246 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.488 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.323 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.168 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.337 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.135 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.336 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.14 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.213 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.213 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.157 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.0627 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.156 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.326 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.364 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.506 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.244 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.114 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.207 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.225 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.244 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.0954 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.159 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.122 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.366 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.501,0.501,0,0.5,0,0,0.807,0.566,0.543,0.679,0,0 -0.667,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.304,0,0 -0.667,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.614,0,0.122 -0.667,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.571,0,0 -0.667,0.501,0.501,0,0.7,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.122 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.258,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.137,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0.433,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0.0858,0 -1,0.0768,0.0768,0,0,1,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0.3,0.807,0.514,0.0488,0,0.433,0.23 -1,0.222,0.222,0.3,0,0,1,0.807,0.514,0.0488,0,0.0129,0 -1,0.222,0.222,1,0,0,1,0.807,0.514,0.0488,0,0.185,0 -1,0.308,0.308,0.1,0,0,1,1,0.49,0.0653,0,0.137,0 -1,0.308,0.308,0,0,0,1,1,0.49,0.0653,0,0.309,0.154 -1,0.308,0.308,0,0,0,1,1,0.49,0.0653,0,0,0.0617 -1,0.39,0.39,0,0,0,0.5,0.421,0.529,0.09,0,0.262,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.0601,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.322,0.212 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0.249,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.309,0.141 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.0386,0.281 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.442,0 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.438,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0.502,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.0601,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.137,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.0129,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.541,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.249,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.283,0.61 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.47,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.655,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.33,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.309,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.408,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.408,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.433,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.498,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.476,0.244 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.464,0.366 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.536,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.348,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.444,0 -0.667,0.237,0.237,0.3,0,0,0,0.421,0.548,0.119,0,0.457,0.122 -0.667,0.237,0.237,1,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.134,0,0.446,0 -0.667,0.235,0.235,0.5,0,0,0,0.421,0.548,0.134,0,0.395,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.519,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.408,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.361,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.468,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.223,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.0987,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.249,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.205,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.438,0.236 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.253,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.0858,0.122 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.361,0.104 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.258,0.173 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.558,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.137,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.258,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.451,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.18,0 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.366 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.244 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.262 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0689 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.345 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.103 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.164 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.176 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.475 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.141 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.158 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0315 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0.348,0.122 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0751,0,0.309,0.298 -0.667,0.235,0.235,0,0,1,0,0.421,0.548,0.134,0,0,0.247 -0.333,0.142,0.142,0,0,1,0,0.421,0.555,0.0789,0,0.223,0 -0.333,0.142,0.142,0,0,0.5,0,0.421,0.555,0.0789,0,0.361,0 -0.333,0.142,0.142,0,0,0,0.8,0.421,0.555,0.0789,0,0.309,0.104 -0.333,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.283,0.173 -0.333,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.258,0 -0.333,0.142,0.142,0,0,0,1,0.421,0.555,0.0789,0,0.283,0 -0.333,0.142,0.142,0,0,0,1,0.421,0.564,0.0871,0,0.159,0 -0.333,0.142,0.142,0,0,0,1,0.421,0.564,0.0871,0,0.0386,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.691,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.348,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.137,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0.519,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0.296,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.8,0,0,0,0.421,0.576,0.106,0,0.558,0 -0.333,0.144,0.144,0.6,0,0,0,0.421,0.576,0.106,0,0.283,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.236,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.27,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.236,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.0386,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.296,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.21,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.488 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.488 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.275,0.275,0.8,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.275,0.275,0.6,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.163 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.586 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.61 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.183 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.122 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0336 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.336 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0316 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0.5,0,0,0.614,0.529,0.0188,0.234,0,0 -1,0.05,0.05,1,1,0,0,0.614,0.529,0.0188,0.408,0,0 -1,0.05,0.05,1,1,0,0,0.614,0.529,0.0188,0.326,0,0 -1,0.0768,0.0768,1,1,0,0,0.614,0.529,0.0241,0.299,0,0 -1,0.0768,0.0768,1,1,0,0,0.614,0.529,0.0241,0,0,0.177 -1,0.104,0.104,1,1,0,0,0.807,0.497,0.0323,0,0,0.0355 -1,0.104,0.104,1,0.1,0,0,0.807,0.497,0.0323,0,0,0 -1,0.104,0.104,1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.104,0.104,0.6,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.548 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0341 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.34 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.17 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.488 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.488 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.2 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0501 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.324 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.488 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0.5,0,0,0.421,0.645,0.351,0.473,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.451,0,0 -1,0.345,0.345,0,1,0,0,0.421,0.645,0.351,0.473,0,0.244 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.473,0.484,0,0.122 -1,0.384,0.384,0.3,1,0,0,0.912,0.658,0.473,0.179,0,0 -1,0.384,0.384,1,1,0,0,0.912,0.658,0.473,0.179,0,0.122 -1,0.384,0.384,1,0.1,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0.288,0,0 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0.25,0,0 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0.397,0,0 -1,0.467,0.467,0.3,0,0.5,0,1,0.645,0.662,0,0.236,0 -1,0.467,0.467,0,0,1,0,1,0.645,0.662,0.337,0,0.244 -1,0.467,0.467,0,0,0,0.3,1,0.645,0.662,0.462,0.438,0.366 -1,0.467,0.467,0,0,0,1,1,0.645,0.662,0,0.567,0 -1,0.467,0.467,0,0,0,1,1,0.645,0.662,0,0.206,0.244 -1,0.595,0.595,0,0,0,1,1,0.619,0.817,0,0.579,0.244 -1,0.595,0.595,0,0,0,1,1,0.619,0.817,0,0.361,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.249,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.27,0.488 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.296,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.309,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.433,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.446,0.366 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.249,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.836 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.296 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.243 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.173 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.139 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0.3,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0.1,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0751 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.353 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.21 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.325 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.159 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.175 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.349 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.182 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0.3,0,0,0,0.421,0.548,0.113,0,0,0.122 -0.667,0.245,0.245,1,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,1,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0.5,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.153 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.238,0.238,0.8,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.366 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.244 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.259 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.139 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.087 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.332 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.106 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.199 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.366 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.248 -0.667,0.263,0.263,0.3,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,1,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0.5,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0.5,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.244 -0.333,0.144,0.144,0,0,1,0,0.421,0.576,0.106,0,0.223,0 -0.333,0.144,0.144,0,0,1,0,0.421,0.576,0.106,0,0.309,0 -0.667,0.238,0.238,0,0,1,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0.3,0.421,0.617,0.239,0,0.455,0 -0.667,0.247,0.247,0,0,0,1,0.421,0.617,0.239,0,0.309,0 -0.667,0.247,0.247,0,0,0,0.1,0.421,0.617,0.239,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.0858,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.249,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.738,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.283,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.223,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.408,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.361,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.283,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.486,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.492,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.244 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.211 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.17 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.102 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.366 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.177 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.344 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.103 -1,0.256,0.256,0,0,0.5,0,0.421,0.548,0.174,0,0.369,0 -1,0.256,0.256,0,0,1,0,0.421,0.548,0.174,0,0.309,0 -1,0.343,0.343,0,0,1,0,0.421,0.542,0.277,0,0.369,0 -1,0.343,0.343,0,0,0.5,0,0.421,0.542,0.277,0,0.249,0.165 -1,0.343,0.343,0,0,0,0.8,0.421,0.542,0.277,0,0,0.0661 -1,0.343,0.343,0,0,0,1,0.421,0.542,0.277,0,0.249,0 -1,0.343,0.343,0,0,0,1,0.421,0.542,0.277,0,0,0 -0.667,0.245,0.245,0,0,0,0.1,0.421,0.548,0.191,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -1,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.122 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.122 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.122 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.244 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.122 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.244 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.488 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.122 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.177 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.071 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.273 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.61 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.488 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.244 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.244 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.488 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0.31,0,0 -0.667,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.435,0,0 -0.667,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.228,0,0 -0.667,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.228,0,0 -0.667,0.23,0.23,0,1,0,0,0.421,0.563,0.301,0.315,0,0 -0.667,0.23,0.23,0,0.1,0,0,0.421,0.563,0.301,0.587,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0.478,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0.489,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0.391,0,0.488 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0.429,0,0.122 -0.667,0.233,0.233,0.8,0,0,0,0.421,0.588,0.316,0.37,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.316,0.198,0,0.122 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0.198,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0.366 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.366 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.108 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.163 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.327 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.155 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.605,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.309,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0.1,0.2,0.421,0.554,0.0595,0,0.361,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.554,0.0595,0,0.369,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0.361,0 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0.258,0.244 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0.3,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.61 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.366 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.202 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.202 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.239 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.299 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.354 -1,0.338,0.338,0.8,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,1,0,1,0,0.912,0.653,0.474,0,0.408,0 -1,0.377,0.377,1,0,0.5,0,0.912,0.653,0.474,0,0.27,0 -1,0.377,0.377,1,0,0,0.8,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,1,0,0,1,0.912,0.653,0.474,0,0.0858,0 -1,0.377,0.377,0.2,0,0,1,0.912,0.653,0.474,0,0.0515,0 -1,0.377,0.377,0,0,0,1,0.912,0.653,0.474,0,0.296,0 -1,0.461,0.461,0,0,0,1,1,0.64,0.664,0,0.648,0.134 -1,0.461,0.461,0,0,0,0.7,1,0.64,0.664,0,0.352,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.0601,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.193 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.193 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.145 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.268 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.338 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.162 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0972 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.222 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.157 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0629 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.16 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.096 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.138 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.734,0,0 -0.667,0.233,0.233,0,1,0,0,0.421,0.588,0.196,0.185,0,0.488 -0.667,0.233,0.233,0,1,0,0,0.421,0.588,0.196,0.185,0,0 -0.667,0.233,0.233,0,1,0,0,0.421,0.588,0.196,0.266,0,0.171 -1,0.324,0.324,0,1,0,0,0.421,0.602,0.287,0.418,0,0.343 -1,0.338,0.338,0,0.1,0,0,0.421,0.64,0.352,0.424,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.242,0.242,0.8,0,0,0,0.421,0.614,0.24,0,0,0.205 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0.4,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.159 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0.5,0,1,0.64,0.664,0,0.137,0.17 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.0129,0.0339 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.309,0 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.223,0.244 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0.2,0.1,1,0.615,0.82,0,0.433,0.277 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.283,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.579,0.122 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.283,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.459,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.571,0.219 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.309,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.185,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.0515,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.27,0.167 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.0129,0.334 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.124,0.0334 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.283,0.366 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0.249,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0.137,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.296,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.481,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.236,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.149 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.161 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.202 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.253 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.162 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0.5,0,0.421,0.554,0.0678,0,0.249,0.122 -0.333,0.141,0.141,0,0,1,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.135,0,0.567,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.135,0,0.421,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.135,0,0.506,0 -0.667,0.23,0.23,0,0,0.2,0.1,0.421,0.546,0.135,0,0.446,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.135,0,0.309,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.135,0,0.361,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.142,0,0.249,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.142,0,0.369,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.283,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.197,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.258,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.309,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.0987,0.366 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0.3,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.9,0,0,0,0.421,0.588,0.196,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.25 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.488 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.366 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.244 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.16 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0.5,0,0.421,0.554,0.0753,0,0.27,0 -0.333,0.14,0.14,0,0,1,0,0.421,0.554,0.0753,0,0.27,0.122 -0.333,0.14,0.14,0,0,1,0,0.421,0.554,0.0753,0,0.0601,0 -0.333,0.14,0.14,0,0,0.6,0,0.421,0.554,0.0753,0,0.249,0 -0.333,0.14,0.14,0,0,0,0.7,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.382,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.283,0.244 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.0987,0 -0.333,0.14,0.14,0,0,0,0.4,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.124,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.322,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.0601,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0.3,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.122 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.122 -0.667,0.233,0.233,0.7,0,0,0,0.421,0.588,0.196,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.366 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.61 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.375,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.359,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.435,0,0.366 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.353,0,0 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.625,0,0 -1,0.461,0.461,0,0.5,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.37,0,0 -1,0.59,0.59,0,1,0,0,1,0.615,0.82,0.467,0,0.122 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0.375,0,0 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0.283,0,0.122 -1,0.273,0.273,0,1,0,0,0.614,0.562,0.269,0.511,0,0 -1,0.273,0.273,0,0.5,0,0,0.614,0.562,0.269,0.652,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.168 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.177 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.355 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0355 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.115 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0.3,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.168 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.324 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,0.3,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0.244 -0.667,0.232,0.232,1,0.5,0,0,0.421,0.546,0.12,0.364,0,0.244 -0.667,0.232,0.232,1,1,0,0,0.421,0.546,0.12,0.446,0,0 -0.667,0.232,0.232,0.9,1,0,0,0.421,0.546,0.12,0.549,0,0 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.12,0.348,0,0 -0.667,0.232,0.232,0,0.6,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.331 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.221 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0.5,0,0,0.912,0.653,0.474,0.647,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.478,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.408,0,0 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.424,0,0 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.236,0,0.122 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.236,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.375,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.438,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.219,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.435,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.658,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.451,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.538,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.484,0,0.163 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.326,0,0.0326 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.478,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.435,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.227 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0.5,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.122 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.244 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.244 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.209 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.244 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.253 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.122 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.0676 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.257 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.244 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.159 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.0637 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.279 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.0698 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.488 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.488 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.488 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.122 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.122 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.122 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.122 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.244 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.244 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.366 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.122 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0.244 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.292 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.0339 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.237 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.597 -1,0.22,0.22,0.3,0,0,0,0.807,0.512,0.0489,0,0,0.344 -1,0.22,0.22,1,0,0,0,0.807,0.512,0.0489,0,0,0.0689 -1,0.305,0.305,1,0,0,0,1,0.487,0.0655,0,0,0 -1,0.305,0.305,0.5,0,0,0,1,0.487,0.0655,0,0,0 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.128 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.196 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0652 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.189 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.364 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.165 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0659 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.122 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.128 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.488 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.121 -1,0.0763,0.0763,0,0,0.5,0,0.614,0.528,0.0241,0,0.348,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0.391,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0.253,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0.571,0 -1,0.0763,0.0763,0,0,1,0,0.614,0.528,0.0241,0,0,0 -1,0.22,0.22,0,0,0.2,0.1,0.807,0.512,0.0489,0,0.309,0 -1,0.22,0.22,0,0,0,1,0.807,0.512,0.0489,0,0.073,0.161 -1,0.22,0.22,0,0,0,1,0.807,0.512,0.0489,0,0.506,0.0646 -1,0.22,0.22,0,0,0,0.6,0.807,0.512,0.0489,0,0.408,0.258 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0.395,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.167 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.234 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.533,0,0 -0.333,0.141,0.141,0,1,0,0,0.421,0.575,0.106,0.315,0,0 -0.333,0.146,0.146,0,1,0,0,0.421,0.588,0.128,0.299,0,0 -0.333,0.146,0.146,0,1,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.242,0.242,0,1,0,0,0.421,0.614,0.24,0.25,0,0 -0.667,0.242,0.242,0,1,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0.5,0,0,0.421,0.614,0.24,0.505,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0.277,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.277,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.408,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.473,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.413,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.375,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.473,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.554,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.304,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.614,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.31,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.353,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.511,0,0.122 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.364,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.732 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.122 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.157 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.0629 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.117 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.209 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.14 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.209 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.174 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.261 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.202 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0.3,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,1,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.9,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0.5,0,0,0.421,0.64,0.352,0.571,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.326,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.489,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.663,0,0 -1,0.338,0.338,0,0.6,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.17 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.224 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.301 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.898 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.355 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.419 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.649 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.161 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.295 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.104 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.311 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.332 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.133 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.209 -0.333,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.14,0.14,0,0,0.5,0,0.421,0.554,0.0791,0,0.283,0 -0.667,0.14,0.14,0,0,1,0,0.421,0.554,0.0791,0,0.373,0 -0.333,0.14,0.14,0,0,1,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0.6,0,0.421,0.562,0.0873,0,0.0987,0 -0.333,0.14,0.14,0,0,0,0.7,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.562,0.0873,0,0.0386,0 -0.333,0.14,0.14,0,0,0,1,0.421,0.562,0.0873,0,0.249,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.249,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.159,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.657,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.309,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.223,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.0129,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.0386,0.174 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.262 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0.245,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0.335,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0.348,0.219 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.395,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.0515,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.283,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.369,0.344 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.322,0.566 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.35 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.33,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.309,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.0601,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.137,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.0644,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0.361,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0.223,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.122 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.172,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.223,0.122 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.249,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.296,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.185,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.223,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.472,0.366 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.639,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.283,0.122 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0.421,0.244 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.471 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.133 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.167 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.134 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.292 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0339 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.258,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.395,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.288,0 -0.333,0.15,0.15,0,0,0.7,0,0.421,0.554,0.0595,0,0.444,0 -0.333,0.15,0.15,0,0,0,0.6,0.421,0.554,0.0595,0,0.444,0 -0.333,0.145,0.145,0,0,0,1,0.421,0.554,0.0648,0,0.399,0 -0.333,0.145,0.145,0.3,0,0,1,0.421,0.554,0.0648,0,0.137,0.122 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0.488 -0.333,0.145,0.145,1,0,0,1,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,1,0,0,0.3,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0.5,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.244 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.244 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.244 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.179 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.244 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.156 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.0625 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.365 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.244 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.488 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.142 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.188 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.235 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.344 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.655 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.511 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.394 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.165 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.198 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,0.8,0,0,0,0.421,0.549,0.0444,0,0,0.169 -1,0.162,0.162,0.6,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.124 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.521 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.231 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.131 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.287 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.19 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.0474 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.244 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.244 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.61 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0.3,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.301,0,0,0.244 -0.667,0.23,0.23,0.1,0,0,0,0.421,0.563,0.301,0,0,0.244 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.488 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.244 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.147 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.169 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.0678 -1,0.162,0.162,0,0.5,0,0,0.421,0.549,0.0444,0.587,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.549,0.0444,0.446,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.549,0.0444,0.293,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.549,0.0444,0.533,0,0 -1,0.162,0.162,0,0.6,0,0,0.421,0.549,0.0444,0,0,0.166 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.0331 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.53 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.0668 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.131 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.23 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.366 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.244 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.122 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0.8,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.301,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0.244 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0.122 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0.6,0,0,0,0.421,0.64,0.481,0,0,0.244 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.263 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.366 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.122 -1,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.294 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0344 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.244 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.659 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.0341 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.158 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.0947 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.241 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.206 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.244 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.241 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.3,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.244 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.122 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.259 -1,0.377,0.377,0.1,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.122 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.366 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.366 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.224 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.488 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.366 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.207 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.128 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.128 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.344 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.0688 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.169 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.337 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.273 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0.9,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.488 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.667,0.242,0.242,0.8,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.122 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.244 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.244 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0.2,0,0,0,0.912,0.653,0.474,0.571,0,0.122 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.554,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.549,0,0 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.516,0,0 -1,0.461,0.461,0,0.1,0,0,1,0.64,0.664,0.522,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.679,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0.488 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.384 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.1 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.147 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.177 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.353 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.122 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.366 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.244 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0.3,0,0,0,0.421,0.588,0.128,0,0,0.244 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.321,0,0,0.122 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.227 -1,0.377,0.377,0.3,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.167 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.167 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.252 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.068 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.34 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.102 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.343 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.24 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.279 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.166 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.176 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.488 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0.1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0.3,0,0,0,0.421,0.588,0.128,0,0,0.488 -0.333,0.146,0.146,1,0,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0.5,0,0,0,0.421,0.614,0.24,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.332 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.155 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.924,0,0.156 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.272,0,0.0938 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0.457,0,0 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0.533,0,0.361 -0.667,0.41,0.41,0,1,0,0,0.807,0.597,0.552,0,0,0.137 -0.667,0.41,0.41,0,0.5,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.213 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.35 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.158 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0632 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.236,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.137,0 -1,0.0499,0.0499,0,0,1,0,0.614,0.528,0.0189,0,0.579,0 -1,0.0499,0.0499,0,0,1,0,0.614,0.528,0.0189,0,0.223,0 -1,0.0499,0.0499,0,0,0.7,0,0.614,0.528,0.0189,0,0.322,0 -1,0.0499,0.0499,0,0,0,0.6,0.614,0.528,0.0189,0,0.348,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.489,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.588,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.382,0 -1,0.0763,0.0763,0,0,0,1,0.614,0.528,0.0241,0,0.481,0 -1,0.0763,0.0763,0,0,0,0.9,0.614,0.528,0.0241,0,0.27,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0.296,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.0987,0.171 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.0258,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.296,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.177 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.177 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.325 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.175 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.0701 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.262 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0328 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.122 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.138 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.244 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.366 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.244 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0.5,0,0.421,0.554,0.0791,0,0.0258,0.244 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0.6,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0.7,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.159,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,0.3,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0.1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.299 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.475 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.402 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.0947 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.342 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0684 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.171 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0.5,0,0.421,0.546,0.113,0,0.369,0 -1,0.258,0.258,1,0,1,0,0.421,0.546,0.148,0,0.208,0 -1,0.258,0.258,1,0,1,0,0.421,0.546,0.148,0,0.148,0 -1,0.258,0.258,1,0,0.6,0,0.421,0.546,0.148,0,0.283,0 -1,0.362,0.362,1,0,0,0.7,0.421,0.538,0.212,0,0.73,0 -1,0.362,0.362,1,0,0,1,0.421,0.538,0.212,0,0.382,0 -0.667,0.258,0.258,1,0,0,1,0.421,0.546,0.148,0,0.0601,0 -0.667,0.25,0.25,1,0,0,1,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,1,0,0,1,0.421,0.546,0.175,0,0.644,0 -0.667,0.25,0.25,1,0,0,0.8,0.421,0.546,0.175,0,0.0515,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0.5,0,0,0,0.421,0.546,0.175,0,0.137,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0.361,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.249,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.0987,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.519,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.309,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0.359,0,0 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.205,0.587,0,0.122 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.232,0.232,0,1,0,0,0.421,0.546,0.205,0.685,0,0 -0.333,0.141,0.141,0,1,0,0,0.421,0.554,0.111,0.391,0,0.122 -0.333,0.141,0.141,0,0.1,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0.266,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.511,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.182,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.182,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0.842,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0.484,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0.505,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0.473,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0.457,0,0.366 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.274,0.533,0.249,0 -0.667,0.23,0.23,0,0,1,0,0.421,0.546,0.274,0,0.258,0.488 -0.667,0.23,0.23,0,0,1,0,0.421,0.563,0.301,0,0,0.122 -0.667,0.23,0.23,0,0,0.1,0.2,0.421,0.563,0.301,0,0.506,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.301,0,0.457,0 -0.667,0.23,0.23,0,0,0,1,0.421,0.563,0.301,0,0.135,0 -0.667,0.23,0.23,0,0,0,0.5,0.421,0.563,0.301,0,0.554,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0.433,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.556,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.53,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.395,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.488 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0946 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.143 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.528 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0972 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.454 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.488 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.244 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.244 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.345 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.0689 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.2 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0499 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.242 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.171 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.0683 -1,0.258,0.258,0.8,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.258,0.258,0.6,0,0,0,0.421,0.546,0.148,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.245 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.0997 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.0665 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.333,0.145,0.145,0.3,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.205,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.538,0.298,0,0,0.122 -1,0.324,0.324,1,0,0,0,0.421,0.538,0.298,0,0,0 -1,0.324,0.324,0.3,0,0,0,0.421,0.538,0.298,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,1,0,0.421,0.538,0.352,0,0.519,0 -1,0.32,0.32,0,0,0.5,0,0.421,0.538,0.352,0,0.0858,0 -1,0.32,0.32,0,0,0,0.8,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,1,0.421,0.538,0.352,0,0.258,0 -1,0.32,0.32,0,0,0,0.9,0.421,0.538,0.352,0,0.0858,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0.488 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.27,0.244 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.421,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.373,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.223,0.244 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.249,0.366 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.223,0.366 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.137,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0.122 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0.8,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.61 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.244 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.122 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0.122 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.191 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.402 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.276 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.366 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.387 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.421,0.549,0.0407,0,0,0.244 -0.333,0.162,0.162,1,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0.122 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0.7,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.488 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.61 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0.414 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.318 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.192 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.0775 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.122 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0.5,0,0,0.749,0.623,0.321,0.5,0,0 -0.667,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.353,0,0.122 -0.667,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.582,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.448,0.266,0,0 -0.667,0.324,0.324,0,0.6,0,0,0.807,0.614,0.448,0.424,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.353,0,0.194 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.429,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.347 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.353 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.244 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.122 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.34 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.34 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.068 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.466 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0334 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.213 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.355 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.106 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.234 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.104 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.209 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,0.3,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.14,0.14,1,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.5,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0.332,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.402,0,0 -1,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0,0,0 -1,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.636,0,0 -1,0.268,0.268,0,1,0,0,0.749,0.623,0.321,0.424,0,0.122 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.326,0,0 -1,0.377,0.377,0,0.5,0,0,0.912,0.653,0.474,0.408,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.418,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.266,0,0.488 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.408,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.799,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.258,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.258,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.44,0,0.366 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.592,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.255,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.734,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.332,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.326,0,0.244 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.766,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.435,0,0.19 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.236,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.236,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0988 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.488 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.332 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.0663 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.169 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.338 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.168 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.202 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.349 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.279 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0.5,0,0,0.421,0.554,0.0542,0.359,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.554,0.0542,0.25,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.554,0.0542,0.799,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0.6,0.5,0,0.421,0.554,0.0595,0,0.309,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.309,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.554,0.0595,0,0.382,0 -0.333,0.15,0.15,0,0,0.6,0,0.421,0.554,0.0595,0,0.519,0 -0.667,0.25,0.25,0,0,0,0.7,0.421,0.546,0.103,0,0,0 -0.667,0.24,0.24,0,0,0,1,0.421,0.546,0.114,0,0.382,0 -0.667,0.24,0.24,0,0,0,1,0.421,0.546,0.114,0,0.369,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.425,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.227,0.122 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.275,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.433,0 -0.667,0.232,0.232,0.3,0,0,0,0.421,0.546,0.12,0,0.21,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0.244 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0.137,0 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0.0987,0 -0.667,0.232,0.232,0.9,0,0,0,0.421,0.546,0.12,0,0.309,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.476,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.464,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.442,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.0858,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.399,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.395,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.0601,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.122 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.366 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.319 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.197 -1,0.338,0.338,0,0.5,0,0,0.421,0.64,0.352,0.429,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.571,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.352,0.625,0,0.244 -1,0.377,0.377,0,1,0,0,0.912,0.653,0.474,0.424,0,0.612 -1,0.377,0.377,0,0.6,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.549,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.277,0,0.171 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.522,0,0.0342 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.315,0,0 -1,0.461,0.461,0.3,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.122 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0.529 -1,0.41,0.41,0.5,0,0,0,0.807,0.597,0.552,0,0,0.0652 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0537 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.168 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.223 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.732 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -0.667,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.112 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.173 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.104 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.184 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.122 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.366 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.366 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0.3,0,0,0,0.421,0.588,0.196,0,0,0.488 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.488 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0.5,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.244 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.488 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0 -0.667,0.324,0.324,0.8,0,0,0,0.807,0.614,0.448,0,0,0 -0.667,0.324,0.324,1,0,0,0,0.807,0.614,0.448,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.244 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.366 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,0.8,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0499,0.0499,1,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.103,0.103,1,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.162,0.162,0.8,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0.2,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.122 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.122 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.122 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.134 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.122 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.349 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.331 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.122 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.14 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.297 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.33 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.033 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.167 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.445 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0.38,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.554,0.146,0,0,0.377 -0.333,0.14,0.14,0,1,0,0,0.421,0.554,0.146,0.462,0,0.2 -0.333,0.14,0.14,0,1,0,0,0.421,0.554,0.146,0.533,0,0.244 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.16,0.62,0,0 -0.333,0.14,0.14,0,0.1,0,0,0.421,0.562,0.16,0.37,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0.571,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0.571,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0.337,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0.408,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0.8,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0.6,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0 -0.667,0.242,0.242,0,0.5,0,0,0.421,0.614,0.327,0.473,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.481,0.636,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,1,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,0,0.6,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.122 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.324,0.324,0,0.5,0,0,0.807,0.614,0.503,0.435,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.503,0.402,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.503,0.228,0,0 -0.667,0.324,0.324,0,1,0,0,0.807,0.614,0.503,0.37,0,0 -0.667,0.324,0.324,0,0.6,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.122 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.366 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.366 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.189 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0946 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.159 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0.13 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,0.8,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.27,0.27,1,0,0.5,0,0.421,0.546,0.113,0,0.0129,0 -1,0.381,0.381,1,0,1,0,0.421,0.538,0.16,0,0,0 -1,0.381,0.381,1,0,1,0,0.421,0.538,0.16,0,0.373,0 -1,0.381,0.381,1,0,1,0,0.421,0.538,0.16,0,0.0987,0 -1,0.362,0.362,1,0,1,0,0.421,0.538,0.212,0,0,0 -1,0.362,0.362,1,0,0.2,0.1,0.421,0.538,0.212,0,0.356,0 -1,0.362,0.362,1,0,0,1,0.421,0.538,0.212,0,0.414,0 -1,0.362,0.362,0.6,0,0,1,0.421,0.538,0.212,0,0.23,0.244 -1,0.362,0.362,0,0,0,1,0.421,0.538,0.212,0,0.27,0 -1,0.362,0.362,0,0,0,1,0.421,0.538,0.212,0,0.137,0.122 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.431,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.384,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.361,0.488 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.361,0 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.0386,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.262,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.335,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.47,0 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.431,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.163,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.163,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.309,0.61 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.322,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.309,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.309,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.369,0.122 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.219,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.33,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.283,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.283,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.356,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.156 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.244 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.122 -1,0.338,0.338,0.8,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0.244 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.61 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.122 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,1,0,0,0,1,0.615,0.876,0,0,0.244 -1,0.59,0.59,0.5,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.122 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.244 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.295 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.159 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.128 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.337 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.236 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.298 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.342 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.173 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.158 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.366 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.366 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.259 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0.402,0,0.122 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.315,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.234,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.234,0,0 -0.333,0.14,0.14,0,1,0,0,0.421,0.562,0.0873,0.647,0,0 -0.333,0.141,0.141,0,0.1,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.478,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.484,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.467,0,0.31 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.435,0,0.356 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0.516,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.345 -1,0.338,0.338,0.3,0,0,0,0.421,0.64,0.352,0,0,0.138 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.122 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.312 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.307 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.122 -1,0.377,0.377,0.3,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0.5,0,1,0.64,0.664,0,0.0987,0 -1,0.461,0.461,0,0,1,0,1,0.64,0.664,0,0.506,0 -1,0.59,0.59,0,0,0,0.3,1,0.615,0.82,0,0.425,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.464,0.488 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.382,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.73,0 -1,0.59,0.59,0,0,0,1,1,0.615,0.82,0,0.309,0 -1,0.41,0.41,0,0,0,1,0.807,0.597,0.552,0,0.361,0 -1,0.496,0.496,0,0,0,0.2,0.807,0.563,0.523,0,0.348,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.321 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.168 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.0671 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.297 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.187 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0.0935 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.157 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.156 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0624 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.366 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.244 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.122 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0.8,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0.6,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.488 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.244 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.122 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.366 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,0.8,0.5,0,0,0.912,0.653,0.474,0.353,0,0.193 -1,0.377,0.377,1,1,0,0,0.912,0.653,0.474,0.554,0,0 -0.667,0.268,0.268,1,1,0,0,0.749,0.623,0.321,0.451,0,0 -1,0.377,0.377,1,1,0,0,0.912,0.653,0.474,0.527,0,0 -1,0.377,0.377,1,0.6,0,0,0.912,0.653,0.474,0.274,0,0 -1,0.377,0.377,0.8,0,0,0,0.912,0.653,0.474,0.274,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.244 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.122 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.366 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.326 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.0652 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.122 -1,0.72,0.72,0,0,1,0,1,0.563,0.777,0,0.519,0 -1,0.72,0.72,0,0,1,0,1,0.563,0.777,0,0.236,0.271 -1,0.496,0.496,0,0,1,0,0.807,0.563,0.523,0,0.309,0.0339 -1,0.386,0.386,0,0,0.1,0.2,0.807,0.529,0.318,0,0.459,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.112,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.283,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.296,0 -1,0.386,0.386,0,0,0,1,0.807,0.529,0.318,0,0.296,0 -1,0.183,0.183,0,0,0,1,0.807,0.503,0.141,0,0.309,0 -1,0.183,0.183,0,0,0,1,0.807,0.503,0.141,0,0.322,0 -1,0.116,0.116,0,0,0,1,0.614,0.532,0.0783,0,0,0.122 -1,0.116,0.116,0,0,0,0.1,0.614,0.532,0.0783,0,0.369,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.348,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.369,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.322,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.348,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.309,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.296,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.472,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.309,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.309,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.369,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.232,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.236,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.558,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.0987,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.249,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.361,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.468,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.309,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.361,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.382,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.631,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.309,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.396 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.153 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.0612 -0.333,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0.4,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0.3,0,0,0,0.421,0.563,0.153,0,0,0.122 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.153,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.488 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.122 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.196 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.136 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.36 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.339 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0677 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0.3,0,0,0,0.614,0.537,0.0316,0,0,0.149 -0.667,0.136,0.136,1,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.34 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.34 -0.333,0.163,0.163,0.9,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.558 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.1 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.575 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.237 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.135 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.275 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.309 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.337 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.167 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0668 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.264 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0659 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.138 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.142 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.198 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.234 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.352 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.341 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.0682 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.281 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0956 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0.8,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0.6,0,0,0,0.749,0.623,0.31,0.364,0,0 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.647,0,0.122 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.359,0,0.244 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.342,0,0 -0.667,0.362,0.362,0,0.1,0,0,0.807,0.614,0.432,0.391,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.366 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.337 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.303 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.366 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.299 -1,0.397,0.397,0.3,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,1,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0.5,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.312 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.285 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.22 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.134 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.31 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0335 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.201 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.344 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.103 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0.5,0,0,1,0.615,0.79,0.473,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.761,0,0.283 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.435,0,0.161 -1,0.788,0.788,0,1,0,0,1,0.563,0.749,0.549,0,0 -1,0.788,0.788,0,0.6,0,0,1,0.563,0.749,0,0,0.488 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.337,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.527,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0.5,0,0.421,0.546,0.142,0,0.296,0 -1,0.263,0.263,0,0,1,0,0.421,0.546,0.142,0,0.309,0 -1,0.256,0.256,0,0,0,0.3,0.421,0.546,0.169,0,0.137,0 -1,0.256,0.256,0,0,0,1,0.421,0.546,0.169,0,0.309,0 -1,0.256,0.256,0,0,0,1,0.421,0.546,0.169,0,0,0 -0.667,0.153,0.153,0,0,0,1,0.421,0.554,0.0933,0,0.373,0 -0.667,0.153,0.153,0,0,0,1,0.421,0.554,0.0933,0,0.0601,0 -0.667,0.153,0.153,0,0,0,1,0.421,0.554,0.0933,0,0,0 -0.667,0.147,0.147,0,0,0,0.1,0.421,0.554,0.101,0,0.369,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.369,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.0258,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.348,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.472,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.249,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.258,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.73,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.408,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.0601,0.122 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.543,0.366 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.47,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.249,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.0515,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.0601,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.0987,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.575,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.313,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.631,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.193,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.451,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.579,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.159,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.309,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.0601,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.0258,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.408,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.382,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.137,0.244 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.407 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.098 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.315,0,0,0.122 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.289,0.289,0.1,0,0,0,0.749,0.623,0.37,0,0,0.334 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.244 -0.667,0.289,0.289,0,0.5,0,0,0.749,0.623,0.37,0.37,0,0 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.37,0.38,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.546,0.418,0,0.244 -1,0.518,0.518,0,1,0,0,1,0.64,0.718,0.293,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.718,0.321,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.718,0,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.315,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.446,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.473,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.457,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.582,0,0.488 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0.339 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0.3,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,1,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0.5,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.488 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.366 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.488 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.366 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.427,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.488 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.488 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.366 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.341 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.0341 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0.3,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0,0 -1,0.788,0.788,0.1,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.244 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.366 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.217 -1,0.571,0.571,0,0,0.5,0,1,0.512,0.492,0,0.137,0 -1,0.571,0.571,0,0,1,0,1,0.512,0.492,0,0.236,0 -1,0.183,0.183,0,0,0,0.3,0.807,0.503,0.155,0,0.124,0 -1,0.183,0.183,0,0,0,1,0.807,0.503,0.155,0,0.421,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0.545,0.349 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0.459,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.309,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.0386,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0.433,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0.0386,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0.345 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.192 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.353 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0353 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.333 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.2 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.339 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.0678 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.244 -0.333,0.163,0.163,0,0.5,0,0,0.421,0.549,0.0396,0.462,0,0 -0.333,0.163,0.163,0,1,0,0,0.421,0.549,0.0396,0.625,0,0 -0.333,0.163,0.163,0,1,0,0,0.421,0.549,0.0396,0.408,0,0 -0.333,0.162,0.162,0,1,0,0,0.421,0.554,0.0461,0.495,0,0 -0.333,0.162,0.162,0,0.6,0,0,0.421,0.554,0.0461,0.234,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0.234,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0.299,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.114 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.333 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0998 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0.366 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0.5,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0.8,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0.6,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,1,0.5,0,0,0.421,0.614,0.232,0.391,0,0 -0.667,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.44,0,0 -0.667,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.332,0,0.122 -0.667,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.413,0,0 -0.667,0.252,0.252,1,0.6,0,0,0.421,0.614,0.232,0.215,0,0 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0.215,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0.467,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0.8,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.488 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.273 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.147 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.147 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.441 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.246 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.158 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0.5,0,0,0.421,0.64,0.339,0.462,0,0 -1,0.353,0.353,0,1,0,0,0.421,0.64,0.339,0.565,0,0 -1,0.353,0.353,0,1,0,0,0.421,0.64,0.339,0.549,0,0.122 -1,0.408,0.408,0.8,1,0,0,0.912,0.653,0.457,0.429,0,0 -1,0.408,0.408,1,0.6,0,0,0.912,0.653,0.457,0.286,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0.572,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0.38,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.279 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0941 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.326 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.0326 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.328 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.207 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.164 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.352 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.211 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.366 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.488 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0.3,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.143,0.143,0.1,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.366 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.366 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.174 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.348 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.104 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.366 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.173 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.328 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.262 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.228 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.0652 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.193 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.0964 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.199 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.244 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.122 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.122 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.244 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.417 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.244 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.244 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.135 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.0327 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.327 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0327 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.306 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.283 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.113 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.166 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.199 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0.102 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.155 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.0311 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.301 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.0334 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.17 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.278 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.366 -0.667,0.274,0.274,0.3,0,0,0,0.421,0.546,0.0764,0.288,0,0.122 -0.333,0.162,0.162,1,1,0,0,0.421,0.554,0.0461,0.571,0,0 -0.667,0.274,0.274,1,1,0,0,0.421,0.546,0.0764,0.168,0,0 -0.667,0.274,0.274,1,1,0,0,0.421,0.546,0.0764,0.168,0,0 -0.667,0.274,0.274,1,1,0,0,0.421,0.546,0.0764,0.457,0,0 -0.667,0.263,0.263,1,0.1,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,1,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.156,0.156,0.9,0,0,0,0.421,0.554,0.0526,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0.244 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0.5,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.366 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0.5,0,0,1,0.64,0.64,0.63,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.397,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.598,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.424,0,0 -1,0.518,0.518,0,0.6,0,0,1,0.64,0.64,0.277,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.277,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.337,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.603,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.177 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.0354 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.366 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.442 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.122 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.236,0 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.258,0 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.519,0 -1,0.408,0.408,0,0,1,0,0.912,0.653,0.546,0,0.309,0 -1,0.408,0.408,0,0,0.5,0,0.912,0.653,0.546,0,0.0601,0 -1,0.408,0.408,0,0,0,0.8,0.912,0.653,0.546,0,0,0.122 -1,0.518,0.518,0,0,0,1,1,0.64,0.718,0,0.421,0 -1,0.518,0.518,0.3,0,0,1,1,0.64,0.718,0,0.309,0 -1,0.518,0.518,1,0,0,1,1,0.64,0.718,0,0.369,0 -1,0.518,0.518,1,0,0,0.2,1,0.64,0.718,0,0.554,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0.262,0.122 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0.283,0.244 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.429,0.366 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.631,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.223,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.27,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.296,0.122 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0.524,0 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0.476,0 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0.122 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0.151 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,1,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,1,0,0,0,1,0.512,0.492,0,0,0.244 -1,0.571,0.571,1,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0.9,0,0,0,1,0.512,0.492,0,0,0.407 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.526 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.248 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.218 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.178 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.127 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.203 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.184 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.138 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.236 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0.462,0,0 -0.667,0.237,0.237,0,1,0,0,0.421,0.546,0.198,0.565,0,0.244 -0.667,0.237,0.237,0.8,1,0,0,0.421,0.546,0.198,0,0,0.366 -0.667,0.237,0.237,1,1,0,0,0.421,0.546,0.198,0.446,0,0 -0.667,0.237,0.237,1,1,0,0,0.421,0.546,0.198,0.38,0,0.244 -0.667,0.235,0.235,1,1,0,0,0.421,0.546,0.232,0.554,0,0 -0.667,0.235,0.235,1,0.5,0,0,0.421,0.546,0.232,0,0,0.244 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0.587,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0.375,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.232,0.609,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.435,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.236,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.236,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.424,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.429,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.29,0.429,0,0 -0.667,0.236,0.236,0.1,0,0,0,0.421,0.563,0.29,0.587,0,0.244 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0.321,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0.364,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0.549,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.446,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.397,0,0.244 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.397,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.62,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.236,0,0.122 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.236,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.495,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.37,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.505,0,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.451,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0.38,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.554,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.321,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.337,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.446,0,0.488 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.326,0,0.122 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.429,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.44,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.25,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.457,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.435,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.582,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.582,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.435,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.153 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.061 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.264 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.281 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.0956 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.354 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0354 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.165 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.132 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.488 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0.3,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0.5,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0.5,0,0,0.912,0.653,0.457,0.5,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.408,0,0.122 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.375,0,0 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.418,0,0 -1,0.518,0.518,0,0.6,0,0,1,0.64,0.64,0.277,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.533,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.467,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.533,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.182,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.182,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.413,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.527,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.359,0,0.488 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.408,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.359,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.587,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.326,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.386,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.576,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.446,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0.244 -0.667,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.342 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.348 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.032 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.288 -0.667,0.222,0.222,0,0,0.5,0,0.807,0.512,0.0474,0,0.361,0 -0.667,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0.5,0,0.807,0.512,0.0474,0,0,0.17 -0.333,0.136,0.136,0,0,0,0.8,0.614,0.537,0.0316,0,0,0.238 -0,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0.9,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.488 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0.3,0,0,0,0.421,0.64,0.339,0.44,0,0 -1,0.252,0.252,1,1,0,0,0.421,0.614,0.232,0.337,0,0 -1,0.289,0.289,1,1,0,0,0.749,0.623,0.31,0,0,0 -1,0.289,0.289,1,1,0,0,0.749,0.623,0.31,0.56,0,0.366 -1,0.408,0.408,1,1,0,0,0.912,0.653,0.457,0.375,0,0.244 -1,0.408,0.408,1,0.1,0,0,0.912,0.653,0.457,0.38,0,0 -1,0.408,0.408,0.4,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.446,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.462,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.353,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.321,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.219 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.171 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.308 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0.3,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.366 -0.333,0.142,0.142,0,0.5,0,0,0.421,0.554,0.0766,0.489,0,0 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.0766,0.473,0,0.366 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.0766,0.56,0,0 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.0766,0.658,0,0 -0.333,0.142,0.142,0,0.6,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0.685,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.522,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.462,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.418,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.446,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.304,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0.652,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.366 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0.587,0,0.488 -1,0.353,0.353,0,1,0,0,0.421,0.64,0.339,0.391,0,0.244 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.484,0,0.366 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.609,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.37,0,0 -1,0.408,0.408,0,0.5,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.533,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.467,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.522,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.418,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.179,0,0.17 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.179,0,0.0681 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.538,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.5,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.293,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.511,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.473,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.647,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.353,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.264,0,0.421 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.264,0,0.106 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0.402,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0.728,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.246 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.17 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.202 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.208 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.162 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.341 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.341 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.102 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.175 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.035 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.165 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.287 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.168 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.202 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.538,0.198,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.167 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.338 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0.488 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0.244 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0.9,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.366 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.366 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.366 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.488 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.211 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.134 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.26 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.161 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.161 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.342 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.308 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0312 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.218 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.34 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.034 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.366 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.204 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.488 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.245 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0925 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0.3,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,1,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0.4,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.183 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.185 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.337 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.333 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.654 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.385 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.353,0.353,0,0,1,0,0.421,0.64,0.339,0,0.21,0 -1,0.353,0.353,0,0,1,0,0.421,0.64,0.339,0.457,0.249,0 -1,0.353,0.353,0,1,1,0,0.421,0.64,0.339,0.418,0,0.122 -1,0.353,0.353,0.8,1,0,0.3,0.421,0.64,0.339,0,0.185,0 -1,0.353,0.353,1,1,0,1,0.421,0.64,0.339,0.255,0.309,0 -1,0.353,0.353,1,1,0,1,0.421,0.64,0.339,0.522,0,0.122 -1,0.408,0.408,0,0.1,0,1,0.912,0.653,0.457,0,0.408,0 -1,0.408,0.408,0,0,0,0.7,0.912,0.653,0.457,0.408,0.309,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.283,0.427,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.171,0.217,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.171,0,0 -1,0.408,0.408,0,1,0,0,0.912,0.653,0.457,0.522,0,0 -1,0.518,0.518,0,0.1,0,0,1,0.64,0.64,0.592,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.457,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.462,0,0.122 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.609,0,0 -1,0.788,0.788,0,0.1,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.122 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.366 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.235,0.235,0,0.5,0,0,0.421,0.546,0.232,0.348,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.685,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.538,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.299,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.19,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.232,0.19,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.488 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.366 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.488 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,0.3,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.366 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.61 -1,0.518,0.518,0.4,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.333 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.0999 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.366 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.122 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.163 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.195 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.122 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.105 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.162,0.162,1,0,0,0,0.421,0.554,0.0636,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.1 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.147 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,0.3,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.153,0.153,1,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.245,0.245,1,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0.5,0,0,0,0.421,0.546,0.184,0.402,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0.592,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0.462,0,0 -0.667,0.245,0.245,0,1,0,0,0.421,0.546,0.184,0.435,0,0 -0.667,0.237,0.237,0,0.1,0,0,0.421,0.546,0.198,0.332,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0.353,0,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.366 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.287,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.17 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.549 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.122 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0.5,0,0,0.421,0.563,0.29,0.418,0,0 -0.667,0.236,0.236,0,1,0,0,0.421,0.563,0.29,0.326,0,0 -1,0.329,0.329,0,1,0,0,0.421,0.563,0.427,0.38,0,0 -1,0.334,0.334,0,1,0,0,0.421,0.602,0.448,0.402,0,0 -1,0.334,0.334,0,0.6,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.31,0,0.218 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0.5,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.457,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0.364,0,0 -0.333,0.151,0.151,0,0,0.5,0,0.421,0.588,0.167,0.326,0.223,0.174 -0.667,0.252,0.252,0,0,1,0,0.421,0.614,0.315,0.182,0,0.4 -0.667,0.252,0.252,0,0,0,0.3,0.421,0.614,0.315,0.182,0.249,0 -0.667,0.252,0.252,0,0,0,1,0.421,0.614,0.315,0,0.124,0.488 -0.667,0.252,0.252,0,0,0,1,0.421,0.614,0.315,0,0.223,0.366 -0.667,0.289,0.289,0,0,0,1,0.749,0.623,0.37,0,0.567,0.15 -0.667,0.289,0.289,0,0,0,1,0.749,0.623,0.37,0,0.348,0 -0.667,0.289,0.289,0,0,0,1,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0.1,0.749,0.623,0.37,0,0.172,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0.0258,0.488 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.322,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.433,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.185,0.244 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.112,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.164 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.488 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.163 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.0978 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.172 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.103 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.163 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.354 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.0354 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.172 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.069 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.205 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.488 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.247 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.291 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.237 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.224 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.339 -1,0.408,0.408,0.5,0,0,0,0.912,0.653,0.457,0,0,0.224 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.332 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.219 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.303 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0674 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.527 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.161 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.17 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0679 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.122 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0733 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.288 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.351 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.158 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.063 -0.667,0.277,0.277,0,0,1,0,0.421,0.537,0.0633,0,0.309,0 -0.667,0.277,0.277,0,0,1,0,0.421,0.537,0.0633,0.418,0.309,0 -0.667,0.277,0.277,0,1,1,0,0.421,0.537,0.0633,0.402,0.309,0 -0.667,0.277,0.277,0,1,0,0.3,0.421,0.537,0.0633,0,0.506,0 -0.667,0.277,0.277,0,1,0,1,0.421,0.537,0.0633,0.364,0.395,0 -0.667,0.277,0.277,0,1,0,0,0.421,0.537,0.0633,0.38,0,0 -0.667,0.274,0.274,0,1,0,0,0.421,0.546,0.0764,0,0.575,0 -0.667,0.274,0.274,0,0.5,0,0,0.421,0.546,0.0764,0.511,0.412,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0.462,0.296,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0.459,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0.348,0.15,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0.446,0.476,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.167,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.296,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.283,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.309,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.283,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.0515,0.122 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.472,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.631,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.309,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.433,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.112,0.122 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.258,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.408,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.459,0.244 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.258,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.395,0.122 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.496,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.521,0.61 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.369,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.159,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.0386,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0.366 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.244 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.366 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.366 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0.322 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.131,0.131,0,0,0,0,1,0.461,0.0392,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.167 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.1 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.172 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0.8,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.488 -0.667,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.244 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0.5,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.134 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.17 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.4 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.168 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.171 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.136 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.124,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,1,0,0.421,0.554,0.0657,0,0.296,0 -0.667,0.143,0.143,0,0,0.5,0,0.421,0.554,0.0657,0,0.391,0.122 -0.667,0.143,0.143,0,0,0,0.8,0.421,0.554,0.0657,0,0.313,0 -0.667,0.142,0.142,0,0,0,0.5,0.421,0.554,0.073,0,0.236,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.309,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.296,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.258,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.249,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.159,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.472,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.0386,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0.283,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0.0258,0 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.519,0 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.275,0 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.335,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.124,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.0386,0.488 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.614,0.366 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.155,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.296,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.408,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.185,0.291 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0338 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.373,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.249,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.137,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.21,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.519,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.122 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.05,0.05,1,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0.5,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.179 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0.5,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.222 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.156 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.0312 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.488 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.122 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.122 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,1,0,0.244 -0.333,0.151,0.151,0,1,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0,1,0,0,0.585,0.592,0.163,0.326,0,0 -0.333,0.169,0.169,0,1,0,0,0.585,0.592,0.163,0.418,0,0.488 -0.667,0.289,0.289,0,1,0,0,0.749,0.623,0.31,0.326,0,0 -0.667,0.289,0.289,0,0.1,0,0,0.749,0.623,0.31,0.451,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.244 -0.667,0.362,0.362,0,0.5,0,0,0.807,0.614,0.432,0.636,0,0.122 -0.667,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0.489,0,0.122 -0.667,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0.587,0,0 -0.667,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.362,0.362,0,0.6,0,0,0.807,0.614,0.432,0.364,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.283,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,0.8,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.296,0.296,1,0,0,0,0.614,0.562,0.26,0,0,0.122 -0.667,0.296,0.296,1,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,1,0,0,0,0.807,0.529,0.307,0,0,0.122 -1,0.397,0.397,0.9,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.333 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.2 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.129 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.0966 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.547 -1,0.104,0.104,0.3,0,0,0,0.807,0.495,0.0314,0,0,0.104 -1,0.104,0.104,1,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.222,0.222,0.1,0,0,0,0.807,0.512,0.0474,0,0,0.137 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.309 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.366 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.122 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.488 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.244 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.244 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.315 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.341 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0.8,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,1,0,0,0,1,0.64,0.64,0.397,0,0.122 -1,0.518,0.518,1,1,0,0,1,0.64,0.64,0.533,0,0.244 -1,0.668,0.668,1,1,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0.5,1,0,0,1,0.615,0.79,0.424,0,0 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.337,0,0 -1,0.462,0.462,0,0.1,0,0,0.807,0.597,0.532,0.56,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.239,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.848,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.478,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.527,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.239,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.366 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0.31,0,0.488 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0.451,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.375,0,0 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.467,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.554,0.0636,0.413,0,0 -1,0.162,0.162,0,1,0,0,0.421,0.554,0.0636,0.174,0,0 -0.667,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0181,0.174,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.23 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.104 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.173 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0.3,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.359,0.359,1,0,0,0,0.421,0.538,0.244,0,0,0 -1,0.343,0.343,0.1,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.122 -0.333,0.144,0.144,0.8,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.162,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.305,0,0,0.244 -0.667,0.239,0.239,0.9,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.122 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.732 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.122 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.366 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.244 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0.122 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0.154 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.306 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.288 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.35 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.15 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.244 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.257 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.0679 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.34 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.136 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.284 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.176 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.0703 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.366 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.244 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.244 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.122 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.244 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.244 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.732 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.244 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.244 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.244 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,0.3,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.542,0.542,1,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0.366 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0.244 -0.667,0.223,0.223,1,0,0,0,0.614,0.545,0.176,0,0,0.122 -0.667,0.223,0.223,0.4,0,0,0,0.614,0.545,0.176,0,0,0.156 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.366 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.122 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.244 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.341 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.156 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.122 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.341 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.334 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.14 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.194 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.13 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0.3,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -1,0.334,0.334,1,0,0,0,0.421,0.602,0.276,0,0,0.316 -1,0.334,0.334,1,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,1,0,0,0,0.421,0.602,0.276,0,0,0.244 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0.122 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0.162 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0.0649 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0.3,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.121 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.212 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.716 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.284 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.276 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.295 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.244 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.234 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.285 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.122 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0.3,0,0,0,0.421,0.546,0.0894,0,0,0.177 -0.667,0.263,0.263,1,0,0,0,0.421,0.546,0.0894,0,0,0.141 -0.667,0.263,0.263,0.1,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.329 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0658 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.273 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.19 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0.3,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,1,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,1,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0.9,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0.397,0,0 -0.333,0.143,0.143,0,1,0,0,0.421,0.554,0.0657,0.438,0,0.122 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.073,0.219,0,0 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.073,0.484,0,0.366 -0.333,0.142,0.142,0,1,0,0,0.421,0.554,0.073,0.212,0,0.122 -0.333,0.142,0.142,0,0.1,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.488 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.24 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.366 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.658 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.55 -0.667,0.289,0.289,0.8,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.0353 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.353 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.353 -1,0.408,0.408,0.9,0,0,0,0.912,0.653,0.457,0,0,0.141 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.49 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -0.333,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0.9,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0.5,0,0.421,0.554,0.0577,0,0.309,0 -0.333,0.153,0.153,0,0,1,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,1,0,0.421,0.554,0.0577,0,0.446,0 -0.333,0.153,0.153,0,0,0.5,0,0.421,0.554,0.0577,0,0.249,0 -0.333,0.153,0.153,0,0,0,0.8,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,1,0.421,0.554,0.0628,0,0.408,0 -0.333,0.147,0.147,0,0,0,1,0.421,0.554,0.0628,0,0.27,0 -0.333,0.147,0.147,0,0,0,1,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0.2,0.421,0.554,0.0628,0,0.421,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0.258,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0.232,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0.296,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.333 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.41 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.247 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0985 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.652 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.244 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.488 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.122 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.244 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.366 -0.667,0.239,0.239,0.3,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.244 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.244 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.366 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.244 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.488 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.61 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.206,0.206,0.8,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,1,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.206,0.206,1,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.256,0.256,1,0,0,0,0.614,0.579,0.274,0,0,0 -0.333,0.256,0.256,0.5,0,0,0,0.614,0.579,0.274,0,0,0.244 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.244 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.432 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0917 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0.356,0 -1,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0.223,0.175 -1,0.222,0.222,0,0,1,0,0.807,0.512,0.0474,0,0,0.175 -1,0.222,0.222,0,0,0,0.3,0.807,0.512,0.0474,0,0.283,0 -1,0.222,0.222,0,0,0,1,0.807,0.512,0.0474,0,0.0987,0 -1,0.222,0.222,0,0,0,1,0.807,0.512,0.0474,0,0,0 -1,0.39,0.39,0,0,0,1,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,1,0.421,0.525,0.087,0,0,0.34 -1,0.39,0.39,0,0,0,1,0.421,0.525,0.087,0,0,0.34 -1,0.39,0.39,0,0,0,0.1,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.271 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.175 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.035 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.244 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.122 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.244 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.143,0.143,0.3,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.421,0.546,0.116,0,0,0 -0.667,0.237,0.237,0.5,0,0.5,0,0.421,0.546,0.116,0,0.395,0 -0.667,0.237,0.237,0,0,1,0,0.421,0.546,0.116,0,0.0644,0 -0.667,0.235,0.235,0,0,0,0.3,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.546,0.13,0,0.296,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,1,0.421,0.546,0.13,0,0.309,0 -0.667,0.235,0.235,0,0,0,0.7,0.421,0.546,0.13,0,0.296,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.506,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.352,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.142,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.485,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.236,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.185,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.519,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.427,0.488 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.217,0.122 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.348,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.395,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.223,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.459,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.223,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.073,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.0258,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.122 -1,0.353,0.353,0.8,0,0,0,0.421,0.64,0.339,0,0.236,0 -1,0.353,0.353,0.6,0,0,0,0.421,0.64,0.339,0,0.236,0.122 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0.258,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.636 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.274 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.594 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.122 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0627 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.533,0,0.0941 -1,0.362,0.362,0,1,0,0,0.807,0.614,0.432,0.315,0,0 -1,0.462,0.462,0,1,0,0,0.807,0.597,0.532,0.264,0,0 -1,0.462,0.462,0,1,0,0,0.807,0.597,0.532,0.264,0,0 -1,0.462,0.462,0,1,0,0,0.807,0.597,0.532,0.424,0,0 -1,0.462,0.462,0,0.1,0,0,0.807,0.597,0.532,0.571,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.777,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.312,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.312,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.353,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.359,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.353,0,0.706 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.386,0,0.102 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.488 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.324 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.0324 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.17 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.272 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.122 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.386 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.177 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.0706 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.178 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.335 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0.5,0,0,0.421,0.588,0.19,0.304,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0.315,0,0 -0.333,0.144,0.144,0,1,0,0,0.421,0.575,0.103,0.516,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0.527,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0.511,0,0 -0.667,0.239,0.239,0,1,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.3,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0.5,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.244 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.122 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.488 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.122 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.244 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.244 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.256 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.117 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0351 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.351 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.122 -1,0.286,0.286,0.8,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.457 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.539 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.034 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0.14 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0.244 -1,0.392,0.392,0.4,0,0,0,0.421,0.542,0.212,0,0,0.195 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.0974 -1,0.392,0.392,0.8,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0.1,0,0,0,0.421,0.542,0.252,0,0,0.4 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.488 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.122 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0.402,0,0 -0.667,0.251,0.251,0,1,0,0,0.421,0.548,0.204,0.293,0,0.122 -0.667,0.251,0.251,0,1,0,0,0.421,0.548,0.204,0.166,0,0 -0.667,0.249,0.249,0,1,0,0,0.421,0.548,0.24,0.166,0,0.244 -0.667,0.249,0.249,0,1,0,0,0.421,0.548,0.24,0.522,0,0.122 -0.667,0.249,0.249,0.8,0.2,0,0,0.421,0.548,0.24,0.571,0,0 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.24,0.277,0,0 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.149,0.149,0.1,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0.8,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0.488 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0.385 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0.0701 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.0701 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.28 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0.295 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0.138 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,1,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,1,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0.9,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.16 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.462 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.244 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.129 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0.18 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.732 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,1,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,1,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,1,0,0,0,0.421,0.555,0.0654,0,0,0.327 -1,0.286,0.286,0.5,0,0,0,0.421,0.548,0.113,0,0,0.0327 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.488 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.488 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.488 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.244 -0.667,0.249,0.249,0,0,1,0,0.421,0.548,0.24,0,0.361,0 -0.667,0.249,0.249,0,0,1,0,0.421,0.548,0.273,0,0.309,0 -0.667,0.249,0.249,0,0,1,0,0.421,0.548,0.273,0,0.0987,0.244 -0.667,0.249,0.249,0,0,0,0.3,0.421,0.548,0.273,0,0.262,0 -0.667,0.249,0.249,0,0,0,1,0.421,0.548,0.273,0,0.433,0.488 -0.667,0.249,0.249,0,0,0,1,0.421,0.548,0.273,0,0.0601,0.244 -0.667,0.249,0.249,0,0,0,0.4,0.421,0.548,0.273,0,0.421,0.122 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0.249,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0.8,0,0,0,0.421,0.564,0.159,0,0.519,0 -0.667,0.15,0.15,1,0,0,0,0.421,0.564,0.159,0,0.283,0 -0.667,0.15,0.15,1,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,1,0,0,0,0.421,0.564,0.159,0,0.408,0 -0.667,0.259,0.259,0.5,0,0,0,0.421,0.591,0.315,0,0.288,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.236,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.369,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.309,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0.348,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.459,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.421,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.556,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.423,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.369,0.244 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.0258,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.27,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.283,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.159,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.369,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.392,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.587,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0.408,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.168 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.379 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.289 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.417 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0346 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.339 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.203 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.312 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.149,0.149,0.1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.219 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.154 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.49 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.488 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0.5,0,0,0.807,0.6,0.55,0.511,0,0 -0.667,0.554,0.554,0,1,0,0,0.807,0.6,0.55,0.397,0,0.244 -0.667,0.554,0.554,0,1,0,0,0.807,0.6,0.55,0.527,0,0 -1,0.851,0.851,0,1,0,0,1,0.568,0.774,0.342,0,0 -1,0.851,0.851,0,0.7,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.139,0.139,0.8,0.5,0,0,0.614,0.538,0.0323,0.826,0,0.366 -1,0.139,0.139,1,1,0,0,0.614,0.538,0.0323,0.402,0,0 -1,0.139,0.139,1,1,0,0,0.614,0.538,0.0323,0.668,0,0.305 -1,0.228,0.228,0.1,1,0,0,0.807,0.514,0.0488,0.204,0,0 -1,0.228,0.228,0,1,0,0,0.807,0.514,0.0488,0.204,0,0 -1,0.228,0.228,0,1,0,0,0.807,0.514,0.0488,0.375,0,0 -0.667,0.167,0.167,0,0.1,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.543,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.62,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.44,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0.522,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0.272,0,0.336 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.168 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.366 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.273 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.148 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0297 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.122 -0.667,0.286,0.286,0.8,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.539 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.244 -1,0.501,0.501,0.1,0,0,0,0.912,0.658,0.473,0,0,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.366 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.244 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.366 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.137 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.457 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.807,0.497,0.0158,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.161 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.161 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0642 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.292 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0311 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0932 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.334 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.27 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.7 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.105 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.246 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.351 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0.8,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0.9,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0.8,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.488 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.244 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0.122 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.806,0.806,1,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0.1,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.339 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.373 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.207 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0.207 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.177 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.142 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.177 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.244 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.249,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.0515,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0.3,0.421,0.555,0.0676,0,0.0987,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.555,0.0676,0,0.137,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.555,0.0676,0,0,0.244 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0.15,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0.296,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0.0987,0 -0.333,0.149,0.149,0,0,0,0.2,0.421,0.555,0.0751,0,0.399,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0.137,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.236,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.309,0.366 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.249,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.258,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0.5,0,0,0.421,0.564,0.0871,0.766,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.564,0.0871,0.315,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.564,0.0871,0.364,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.576,0.106,0.418,0,0 -0.333,0.154,0.154,0,0.7,0,0,0.421,0.576,0.106,0.239,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.239,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.321,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.478,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.364,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0.3,0,0,0,0.421,0.617,0.239,0.446,0,0.122 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0.467,0,0.244 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0.701,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.435,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.359,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.467,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.625,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.307,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.307,0,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.435,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.28 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.231 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.169 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.27 -1,0.0781,0.0781,0.8,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0.6,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.363 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.195 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0.0486 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.334 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.278 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.197 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.61 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.461 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.244 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0.3,0,0,0,0.421,0.542,0.11,0,0,0.323 -1,0.404,0.404,1,0,0,0,0.421,0.542,0.11,0,0,0.259 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.228 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.244 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0627 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0.8,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0.6,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.149,0.149,0.1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.366 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.244 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.278 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0313 -0.667,0.554,0.554,0.8,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.55,0,0,0.244 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0.5,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.191 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.287 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.31 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0.172 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0.103 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0.249 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0.066 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.264 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.345 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0345 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.244 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0.8,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.168,0.168,0.5,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.244 -1,0.392,0.392,0.8,0,0,0,0.421,0.542,0.212,0,0,0.122 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0.244 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,1,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.244 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.122 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.122 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0.7,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.167 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.189 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.397 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0.16 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0.128 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0.3,0,0,0,0.421,0.542,0.401,0,0,0.168 -1,0.349,0.349,1,0,0,0,0.421,0.542,0.401,0,0,0.134 -1,0.349,0.349,1,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0.355 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0.9,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.176 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.141 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.1 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.169 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.0337 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.278 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.244 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.291 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.0676 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.122 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.122 -0.667,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0,0.0987,0.174 -0.667,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0,0.159,0 -0.667,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0,0,0.122 -0.667,0.454,0.454,0,0,0,0.3,0.807,0.617,0.501,0,0.258,0 -0.667,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.137,0.488 -0.667,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.296,0.122 -0.667,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.0601,0 -0.667,0.554,0.554,0,0,0,0.8,0.807,0.6,0.588,0,0.0987,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0.348,0.122 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0.356,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0.416,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0.425,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.276 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.244 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.244 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.213 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.196 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.166 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.0996 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.161 -1,0.164,0.164,0.8,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,1,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,1,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,1,0,0,0,0.421,0.555,0.0826,0,0,0.231 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0.168 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0.302 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.364,0.364,1,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0.8,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.215 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0.5,0,0,0.421,0.542,0.277,0.587,0,0 -1,0.352,0.352,0,1,0,0,0.421,0.542,0.297,0.446,0,0.172 -1,0.352,0.352,0,1,0,0,0.421,0.542,0.297,0.391,0,0.0343 -1,0.352,0.352,0.8,1,0,0,0.421,0.542,0.297,0.554,0,0 -1,0.352,0.352,0.6,1,0,0,0.421,0.542,0.297,0.223,0,0 -1,0.352,0.352,0,1,0,0,0.421,0.542,0.297,0.223,0,0 -0.667,0.251,0.251,0,0.1,0,0,0.421,0.548,0.204,0.5,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0.74 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0.488 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.244 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.122 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.244 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.488 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.293 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0329 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.329 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0329 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.508 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.122 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0.3,0,0,0,0.421,0.555,0.0473,0,0,0.103 -0.333,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0.324 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.398 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.0617 -0.333,0.16,0.16,1,0.5,0,0,0.421,0.555,0.0593,0.402,0,0 -0.333,0.16,0.16,1,1,0,0,0.421,0.555,0.0593,0.565,0,0 -0.333,0.16,0.16,1,1,0,0,0.421,0.555,0.0593,0.582,0,0 -0.333,0.16,0.16,1,1,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,1,0.7,0,0,0.421,0.555,0.0593,0.533,0,0 -0.333,0.16,0.16,1,0,0,0,0.421,0.555,0.0593,0.212,0,0.122 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.207,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.207,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.332,0,0.122 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.0646,0.489,0,0 -0.333,0.154,0.154,0.4,0,0,0,0.421,0.555,0.0646,0.598,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.299,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.435,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.451,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.647,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.467,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.3,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0.1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.404,0.404,0,0,1,0,0.421,0.645,0.351,0,0.395,0 -1,0.404,0.404,0,0,0.5,0,0.421,0.645,0.351,0,0.305,0 -1,0.404,0.404,0,0,0,0.8,0.421,0.645,0.351,0,0.155,0.244 -1,0.404,0.404,0,0.5,0,1,0.421,0.645,0.351,0.342,0.15,0 -1,0.404,0.404,0,1,0,0.9,0.421,0.645,0.351,0.804,0.236,0 -1,0.404,0.404,0,1,0,0,0.421,0.645,0.351,0.549,0,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0.353,0.429,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0,0.27,0.122 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0.1,0,0,0.912,0.658,0.473,0,0.506,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.249,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.137,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.122 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.409 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.265 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.122 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.957 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.191 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.173 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.167 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.1 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.243 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.199 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.249 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0635 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.107 -0.667,0.286,0.286,0.8,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.106 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.286 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.319 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.366 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.324 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.231 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.366 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0.5,0,0.614,0.538,0.0323,0,0.309,0 -1,0.139,0.139,0,0,1,0,0.614,0.538,0.0323,0,0,0 -1,0.284,0.284,0,0,0,0.3,0.421,0.54,0.0653,0,0.438,0 -1,0.284,0.284,0,0,0,1,0.421,0.54,0.0653,0,0.313,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0.322,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0.137,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0.249,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.073,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.455,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.395,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.275,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.348,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.584,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.356,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.732 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.41 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.321,0,0 -0.667,0.259,0.259,0,1,0,0,0.421,0.591,0.196,0.402,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.304,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0,0,0.169 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.505,0,0.169 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0.6,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.175 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.349 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.0349 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.176 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.282 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.316 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.17 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.19 -1,0.806,0.806,0.8,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0.6,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.287 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.419 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.541 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0.451,0,0 -1,0.391,0.391,0,1,0,0,0.807,0.531,0.317,0.587,0,0 -1,0.391,0.391,0,1,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,1,0,0,0.807,0.531,0.317,0.62,0,0 -1,0.22,0.22,0,1,0,0,0.614,0.546,0.167,0.408,0,0.366 -1,0.116,0.116,0,0.2,0,0,0.614,0.533,0.0781,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0.5,0,0.421,0.555,0.0593,0,0.296,0 -0.333,0.16,0.16,0,0,1,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,1,0,0.421,0.555,0.0593,0,0.361,0 -0.333,0.16,0.16,0,0,0.5,0,0.421,0.555,0.0593,0,0.0129,0 -0.333,0.16,0.16,0,0,0,0.8,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,1,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0.9,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0.5,0,0.421,0.548,0.113,0,0.258,0 -0.667,0.259,0.259,0,0,1,0,0.421,0.548,0.113,0,0.459,0 -0.667,0.251,0.251,0,0,0,0.3,0.421,0.548,0.119,0,0,0 -0.667,0.251,0.251,0,0,0,1,0.421,0.548,0.119,0,0.0386,0 -0.667,0.251,0.251,0,0,0,1,0.421,0.548,0.119,0,0,0 -0.667,0.251,0.251,0,0,0,1,0.421,0.548,0.119,0,0.644,0 -0.667,0.251,0.251,0,0,0,0.8,0.421,0.548,0.119,0,0.348,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.073,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.335,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.296,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.335,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.27,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.296,0.366 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.0987,0.488 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.258,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.0386,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.27,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.283,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.258,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0.421,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0.258,0.122 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.351,0.351,0.8,0,0,0,0.421,0.568,0.23,0,0.514,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0.465,0 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.363,0.363,0.1,0,0,0,0.421,0.606,0.286,0,0.159,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0.249,0.244 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0.309,0 -1,0.363,0.363,0.8,0,0,0,0.421,0.606,0.286,0,0.446,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0.288,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0.159,0.366 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.61 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0.249,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0.0515,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0.296,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0.283,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.296,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.322,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.0987,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.732 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.173 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.191 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.338 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.188 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0942 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0339 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.313 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.104 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.348 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.278 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.21 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.105 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.161 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.161 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,0.3,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0.134 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0.63,0,0 -0.667,0.286,0.286,1,1,0,0,0.421,0.548,0.0788,0.429,0,0.244 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0,0,0.451 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0.457,0,0.278 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0.337,0,0 -0.667,0.278,0.278,1,1,0,0,0.421,0.548,0.0923,0.457,0,0 -0.667,0.278,0.278,1,0.6,0,0,0.421,0.548,0.0923,0.288,0,0.19 -0.667,0.278,0.278,0.8,0,0,0,0.421,0.548,0.0923,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.538,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.592,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.353,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.511,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,0.8,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.128,0,0,0.244 -0.333,0.2,0.2,0.1,0,0,0,0.585,0.594,0.168,0,0,0.366 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.244 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.171 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.341 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.102 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.366 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.168 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.35 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.245 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,0.3,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0.6,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.186 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.215 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.344 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.344 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.466 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.122 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.122 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.165 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.197 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.324 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.414 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.34 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.102 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.176 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.352 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.0352 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.0976 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,1,0,1,0.645,0.743,0,0.494,0 -1,0.656,0.656,0,0,0.5,0,1,0.645,0.743,0,0.309,0.366 -1,0.656,0.656,0,0,0,0.8,1,0.645,0.743,0,0.137,0 -1,0.656,0.656,0,0,0,0.5,1,0.645,0.743,0,0.0129,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.0129,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.249,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.361,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.363,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.405,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.545,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.488 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.122 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.17 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.245 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.207 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.103 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.122 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.29 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.122 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.0341 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.341 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.136 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.122 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -1,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.122 -1,0.154,0.154,0.8,0,0,0,0.421,0.555,0.104,0,0,0 -1,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.122 -1,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0 -1,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.15,0.15,0.5,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.244 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.244 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.122 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.155 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.0619 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.354 -0.667,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0.391,0,0.244 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0.353,0,0 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0.826,0,0 -0.667,0.168,0.168,0,1,0,0,0.421,0.589,0.172,0.505,0,0 -0.667,0.168,0.168,0,0.2,0,0,0.421,0.589,0.172,0.31,0,0 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.209,0,0 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.209,0,0.244 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.61 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.516,0,0.122 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.402,0,0.244 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0.446,0,0 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0.565,0,0 -0.667,0.252,0.252,0,0,1,0,0.614,0.589,0.26,0,0.296,0 -0.667,0.252,0.252,0,0,0.5,0,0.614,0.589,0.26,0,0.27,0 -0.667,0.252,0.252,0,0,0,0.8,0.614,0.589,0.26,0,0,0 -0.667,0.252,0.252,0,0,0,1,0.614,0.589,0.26,0,0.532,0 -1,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0.137,0 -1,0.554,0.554,0,0,0,1,0.807,0.6,0.588,0,0,0 -1,0.554,0.554,0,0,0,0.3,0.807,0.6,0.588,0,0.258,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.481,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.202,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.142,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.366 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.41 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0331 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0.8,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0.6,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.8,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.154,0.154,1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0.1,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0.473,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.446,0,0 -0.333,0.2,0.2,0,1,0,0,0.585,0.594,0.168,0,0,0 -0.333,0.2,0.2,0,1,0,0,0.585,0.594,0.168,0.435,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.32,0.467,0,0 -0.667,0.351,0.351,0,0.2,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.244 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.244 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.16 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.032 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.333 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.155 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.273 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0943 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.161 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.736 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.354 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.0709 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.7 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0.122 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.159 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.249 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.667,0.27,0.27,0,0.5,0,0,0.421,0.548,0.103,0.457,0,0.246 -0.667,0.27,0.27,0,1,0,0,0.421,0.548,0.103,0.462,0,0 -0.667,0.27,0.27,0,1,0,0,0.421,0.548,0.103,0.56,0,0 -0.667,0.259,0.259,0,1,0,0,0.421,0.548,0.113,0.239,0,0 -0.667,0.259,0.259,0,0.7,0,0,0.421,0.548,0.113,0.266,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.293,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.462,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.457,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0.554,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0.293,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.249,0 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.283,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.555,0.0676,0,0.369,0 -0.333,0.149,0.149,0,0,0,0.3,0.421,0.555,0.0751,0,0.223,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.8,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,1,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0.2,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.174 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.453 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.136 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.204 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.488 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0348 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.272 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0.3,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,1,0,1,0,0.614,0.538,0.0323,0,0.283,0 -0.667,0.139,0.139,1,0,1,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,1,0,1,0,0.614,0.538,0.0323,0,0,0 -0.667,0.228,0.228,1,0,0,0.3,0.807,0.514,0.0488,0,0,0.236 -0.667,0.228,0.228,1,0,0,1,0.807,0.514,0.0488,0,0,0 -0.333,0.139,0.139,1,0,0,1,0.614,0.538,0.0323,0,0,0 -0.333,0.167,0.167,1,0,0,1,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0.4,0,0,0.8,0.421,0.551,0.0406,0,0,0.163 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.13 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.488 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.333 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.155 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.653 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.188 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.339 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.237 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.201 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.366 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.173 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.433 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.168 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.134 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.199 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0331 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.8,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.6,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.149 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0299 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.231 -0.667,0.286,0.286,0,0.5,0,0,0.421,0.617,0.239,0.353,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.598,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.364,0,0.122 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.489,0,0 -0.667,0.286,0.286,0,0.7,0,0,0.421,0.617,0.239,0.193,0,0.366 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0.193,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.288,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.435,0,0.488 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.424,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.277,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.353,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.375,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.408,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0.576,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0.56,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0.473,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.609,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0.864,0,0 -1,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0.397,0,0.244 -1,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0.435,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.177 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.177 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.296 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.148 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.0297 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.283 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0.6,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.488 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0.5,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.488 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0.5,0,0.421,0.617,0.239,0,0.395,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.0987,0.122 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0.5,0,0.421,0.617,0.239,0,0,0 -1,0.404,0.404,0,0,0,0.8,0.421,0.645,0.351,0,0,0.122 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0.7,0.912,0.658,0.473,0.223,0,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.473,0.332,0,0 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.236,0,0 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.471,0,0.122 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.516,0,0 -1,0.656,0.656,0,0.2,0,0,1,0.645,0.662,0.641,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.44,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.446,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.408,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.446,0,0.122 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0.293,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0.375,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0.489,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.179 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,1,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0.9,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0.429,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.402,0,0 -0.333,0.167,0.167,0,1,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,1,0,0,0.421,0.551,0.0406,0.31,0,0 -0.333,0.167,0.167,0,1,0,0,0.421,0.551,0.0406,0.38,0,0 -0.333,0.167,0.167,0,0.2,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.244 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.366 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0.3,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.251,0.251,0.1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.23,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.244 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.244 -1,0.404,0.404,0,0,1,0,0.421,0.645,0.351,0,0.496,0.122 -1,0.404,0.404,0,0,0.5,0,0.421,0.645,0.351,0,0.273,0 -1,0.404,0.404,0,0,0,0.8,0.421,0.645,0.351,0,0.249,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.446,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.236,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.275,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.296,0 -1,0.501,0.501,0,0,0,0.7,0.912,0.658,0.473,0,0.0987,0.366 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.438,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.142,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.186 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.142 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.122 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.117 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.0342 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.342 -1,0.286,0.286,0.8,0,0,0,0.421,0.548,0.113,0,0,0.103 -1,0.286,0.286,0.6,0,0,0,0.421,0.548,0.113,0,0,0.366 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.244 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.167 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.0333 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.313 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.366 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.122 -0.333,0.15,0.15,0.8,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.244 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.173 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.33 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.244 -0.333,0.168,0.168,0.8,0,0,0,0.421,0.589,0.172,0,0,0 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.172,0,0,0.122 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.383,0,0,0.122 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.383,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0.4,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0.8,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,1,0.5,0,0,1,0.645,0.743,0.37,0,0 -1,0.656,0.656,1,1,0,0,1,0.645,0.743,0.467,0,0 -1,0.656,0.656,1,1,0,0,1,0.645,0.743,0.533,0,0 -1,0.656,0.656,1,1,0,0,1,0.645,0.743,0.228,0,0.35 -1,0.806,0.806,0.4,1,0,0,1,0.619,0.873,0.348,0,0.245 -1,0.806,0.806,0,1,0,0,1,0.619,0.873,0,0,0.366 -1,0.806,0.806,0,0.1,0,0,1,0.619,0.873,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.159 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.127 -1,0.851,0.851,0,0,1,0,1,0.568,0.806,0,0.0129,0 -1,0.851,0.851,0,0,0.5,0,1,0.568,0.806,0,0.348,0.122 -1,0.851,0.851,0,0,0,0.8,1,0.568,0.806,0,0,0.122 -1,0.584,0.584,0,0,0,1,0.807,0.566,0.543,0,0.382,0 -1,0.391,0.391,0,0,0,1,0.807,0.531,0.345,0,0.433,0 -1,0.391,0.391,0,0,0,1,0.807,0.531,0.345,0,0.236,0 -1,0.391,0.391,0,0,0,1,0.807,0.531,0.345,0,0.395,0 -1,0.391,0.391,0,0,0,0.7,0.807,0.531,0.345,0,0.309,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.309,0.244 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.197,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0.485,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.176 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.368 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0.349 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0.105 -1,0.284,0.284,1,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.284,0.284,1,0.5,0,0,0.421,0.54,0.0706,0.592,0,0 -1,0.286,0.286,1,1,0,0,0.421,0.548,0.113,0.527,0,0 -1,0.286,0.286,1,1,0,0,0.421,0.548,0.113,0.554,0,0 -1,0.286,0.286,1,1,0,0,0.421,0.548,0.113,0.625,0,0 -1,0.286,0.286,1,0.7,0,0,0.421,0.548,0.113,0.242,0,0 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0.242,0,0 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0.554,0,0 -1,0.278,0.278,0.1,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0.8,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.244 -0.667,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.366 -0.667,0.154,0.154,0.5,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.645 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.249,0.249,1,0,0.5,0,0.421,0.548,0.24,0,0.369,0 -0.667,0.249,0.249,1,0,1,0,0.421,0.548,0.24,0,0,0.177 -1,0.349,0.349,1,0,1,0,0.421,0.542,0.351,0,0.361,0 -1,0.349,0.349,1,0,1,0,0.421,0.542,0.351,0,0.309,0 -1,0.349,0.349,1,0,1,0,0.421,0.542,0.351,0,0.494,0 -0.667,0.249,0.249,1,0,0,0.3,0.421,0.548,0.24,0,0.433,0 -1,0.349,0.349,1,0,0,1,0.421,0.542,0.401,0,0.27,0.488 -1,0.349,0.349,0.8,0,0,1,0.421,0.542,0.401,0,0,0 -1,0.349,0.349,0,0,0,1,0.421,0.542,0.401,0,0.429,0 -1,0.349,0.349,0,0,0,0.8,0.421,0.542,0.401,0,0.296,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0.223,0.122 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0.296,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0.605,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0.283,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.122 -1,0.363,0.363,0.8,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.479,0,0,0.244 -1,0.404,0.404,0.1,0,0,0,0.421,0.645,0.479,0,0,0.366 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0.614,0,0 -1,0.501,0.501,0,1,0,0,0.912,0.658,0.565,0.524,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.383,0.524,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.383,0.522,0,0 -0.667,0.351,0.351,0,1,0,0,0.749,0.626,0.383,0.614,0,0.366 -0.667,0.351,0.351,0,0.2,0,0,0.749,0.626,0.383,0.402,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.451,0,0.244 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.366 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.248 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.308 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.6,0,0.5,0,0.421,0.562,0.0159,0,0.258,0 -0.667,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0,0 -0.333,0.167,0.167,0,0,0,0.3,0.421,0.551,0.0406,0,0.258,0 -0.333,0.167,0.167,0,0,0,1,0.421,0.551,0.0406,0,0.27,0 -0.333,0.167,0.167,0,0,0,1,0.421,0.551,0.0406,0,0.309,0 -0.333,0.167,0.167,0,0,0,1,0.421,0.551,0.0406,0,0.348,0 -0.333,0.167,0.167,0,0,0,0.8,0.421,0.551,0.0406,0,0.283,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.137,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.296,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.189,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.296,0.244 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.283,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.27,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.438,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.464,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.244 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.244 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.162 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.187 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.244 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.58 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.223 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.238 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.501,0.501,0.8,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0.1,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.366 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.122 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.366 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.228,0.228,1,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0.5,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.284,0.284,0,0,1,0,0.421,0.54,0.0653,0,0.0129,0 -0.667,0.284,0.284,0,0,1,0,0.421,0.54,0.0653,0,0.223,0 -0.667,0.284,0.284,0,0,1,0,0.421,0.54,0.0653,0,0.112,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.548,0.0788,0,0.627,0 -0.667,0.286,0.286,0,0,0.5,0,0.421,0.548,0.0788,0,0.296,0 -0.667,0.286,0.286,0,0,0,0.8,0.421,0.548,0.0788,0,0.579,0 -0.667,0.286,0.286,0,0,0,1,0.421,0.548,0.0788,0,0.348,0 -0.667,0.286,0.286,0,0,0,1,0.421,0.548,0.0788,0,0.137,0 -0.667,0.286,0.286,0,0,0,1,0.421,0.548,0.0788,0,0.262,0 -0.667,0.278,0.278,0,0,0,1,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0.7,0.421,0.548,0.0923,0,0.309,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.408,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.395,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.0601,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.122 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.335,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.309,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.262,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.732 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.366 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0.44,0,0 -0.333,0.154,0.154,0,1,0,0,0.421,0.555,0.0646,0.38,0,0.122 -0.333,0.15,0.15,0,1,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.555,0.0676,0.418,0,0 -0.333,0.15,0.15,0,1,0,0,0.421,0.555,0.0676,0.462,0,0 -0.333,0.15,0.15,0,0.2,0,0,0.421,0.555,0.0676,0.408,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.348,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.565,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.418,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.707,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.61 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0.321,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0.342,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0.473,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.421,0.555,0.0789,0.397,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0.397,0,0.122 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0.4,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.489,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.279,0 -0.667,0.286,0.286,0,0,1,0,0.421,0.617,0.239,0,0.418,0 -1,0.501,0.501,0,0,0,0.3,0.912,0.658,0.473,0,0.418,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.0386,0.244 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.361,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0.137,0 -1,0.501,0.501,0,0,0,1,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0.2,1,0.645,0.662,0,0.481,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.244 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.366 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.164 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.196 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.351 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.494 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.171 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.103 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.618 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.0646 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.422 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.293 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.345 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.1 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.487 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.556 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.8,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.1,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.488 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.122 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.261,0,0.488 -0.667,0.259,0.259,0,1,0,0,0.421,0.591,0.196,0.5,0,0.122 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.179,0,0 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0.179,0,0.418 -0.667,0.286,0.286,0,1,0,0,0.421,0.617,0.239,0,0,0.192 -1,0.404,0.404,0,0.2,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.266 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.167 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.165 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.033 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.186 -1,0.656,0.656,0.8,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0.1,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.488 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.122 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.244 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.107,0.107,0.1,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.12 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.165 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0992 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.211 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.247 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.167 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.1 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.316 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.167 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.478 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.122 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.488 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.149,0.149,0,0,1,0,0.421,0.555,0.0789,0,0.236,0 -0.333,0.149,0.149,0,0,1,0,0.421,0.555,0.0789,0,0.0987,0 -0.333,0.149,0.149,0,0,1,0,0.421,0.555,0.0789,0,0.309,0.122 -0.333,0.15,0.15,0,0,1,0,0.421,0.564,0.0871,0,0.506,0 -0.333,0.15,0.15,0,0,0.5,0,0.421,0.564,0.0871,0,0.382,0 -0.333,0.15,0.15,0,0,0,0.8,0.421,0.564,0.0871,0,0.27,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.564,0.0871,0,0.421,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.564,0.0871,0,0.185,0 -0.333,0.15,0.15,0,0,0,1,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,1,0.421,0.576,0.106,0,0.172,0 -0.333,0.154,0.154,0,0,0,0.7,0.421,0.576,0.106,0,0.236,0.572 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0.348,0.257 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0.382,0.244 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0.236,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.15,0.34 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.296,0.278 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.0386,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.0601,0.161 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.373 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.0386,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.361,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.27,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.288,0.343 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.82,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.206,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.0987,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.663 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.105 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.256 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.244 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.435 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.343 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0686 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.226 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.175 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.14 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.162 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.8,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0.122 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0.488 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0.4,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.244 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.656,0.656,0,0,1,0,1,0.645,0.662,0,0.236,0 -1,0.656,0.656,0,0,1,0,1,0.645,0.662,0,0.309,0.122 -1,0.656,0.656,0,0,1,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0.3,1,0.619,0.817,0,0.567,0 -1,0.806,0.806,0,0,0,1,1,0.619,0.817,0.527,0.27,0 -1,0.806,0.806,0,1,0,1,1,0.619,0.817,0.435,0.361,0 -1,0.806,0.806,0,1,0,1,1,0.619,0.817,0,0,0 -1,0.806,0.806,0,1,0,0.8,1,0.619,0.817,0.505,0.0515,0 -1,0.806,0.806,0,1,0,0,1,0.619,0.817,0.37,0,0 -1,0.851,0.851,0,0.2,0,0,1,0.568,0.774,0.321,0.137,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0.505,0.137,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.275,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.343,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.249,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.309,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0.609,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0.223,0.122 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.542,0.16,0,0,0 -1,0.404,0.404,1,0,0,0,0.421,0.542,0.16,0,0,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0.489,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0.635,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0,0 -1,0.404,0.404,0,0,1,0,0.421,0.542,0.16,0,0.283,0 -1,0.392,0.392,0,0,0.5,0,0.421,0.542,0.212,0,0.322,0 -1,0.392,0.392,0,0,0,0.8,0.421,0.542,0.212,0,0,0 -1,0.392,0.392,0,0,0,1,0.421,0.542,0.212,0,0.369,0 -1,0.392,0.392,0,0,0,1,0.421,0.542,0.212,0,0.378,0 -1,0.392,0.392,0,0,0,1,0.421,0.542,0.212,0,0.464,0 -1,0.392,0.392,0,0,0,0.3,0.421,0.542,0.212,0,0.124,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.258,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.0386,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.0901,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.172,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.0601,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.446,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.258,0.366 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.309,0.244 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.249,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.258,0.122 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.27,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.27,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.369,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.309,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.223,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.459,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.464,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.403,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.223,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.0386,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.472,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.356,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.073,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.296,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.244 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.236,0.366 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0.27,0.244 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.244 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0.506,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.0386,0.244 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.528,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.373,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.0601,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.122 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.309,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.369,0.122 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.249,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.361,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.174 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.715 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.244 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.122 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.122 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.366 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.157 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.286,0.286,0.8,0,0,0,0.421,0.548,0.113,0,0,0.219 -0.667,0.164,0.164,0.6,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.154,0.154,0,0.5,0,0,0.421,0.555,0.104,0.668,0,0 -0.667,0.154,0.154,0,1,0,0,0.421,0.555,0.104,0.505,0,0 -0.667,0.154,0.154,0,1,0,0,0.421,0.555,0.104,0.533,0,0 -0.667,0.154,0.154,0,1,0,0,0.421,0.555,0.104,0.457,0,0 -1,0.352,0.352,0,0.7,0,0,0.421,0.542,0.297,0.228,0,0 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.297,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.488 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.244 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.366 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.122 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.581 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.348 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.0695 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0.228,0,0.307 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.391,0,0 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.166,0,0 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.166,0,0.122 -1,0.363,0.363,0,1,0,0,0.421,0.606,0.464,0.473,0,0 -1,0.363,0.363,0.8,0.2,0,0,0.421,0.606,0.464,0,0,0.252 -1,0.404,0.404,0.6,0,0,0,0.421,0.645,0.479,0.408,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.402,0,0.122 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.0634 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.467,0,0.0951 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.489,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.5,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.293,0,0.244 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.291,0,0.366 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.291,0,0.122 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.386,0,0 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.364,0,0 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.348,0,0.122 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.462,0,0 -1,0.454,0.454,0,0,0.5,0,0.807,0.617,0.501,0.571,0.0515,0 -1,0.454,0.454,0,0,1,0,0.807,0.617,0.501,0.473,0,0.244 -1,0.656,0.656,0,0,1,0,1,0.645,0.743,0.293,0,0 -1,0.806,0.806,0,0,1,0,1,0.619,0.873,0.484,0,0 -1,0.806,0.806,0,0,1,0,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,0.3,1,0.619,0.873,0.353,0,0 -1,0.806,0.806,0,0,0,1,1,0.619,0.873,0,0,0 -1,0.806,0.806,0,0,0,1,1,0.619,0.873,0,0,0.244 -1,0.806,0.806,0,0,0,0.4,1,0.619,0.873,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.244 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.122 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.266 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0.19 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.324 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.232 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.194 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0.3,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,1,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0.2,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0.565,0,0 -0.333,0.0495,0.0495,1,1,0,0,0.421,0.562,0.0159,0.408,0,0 -0.333,0.162,0.162,0.2,1,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,1,0,0,0.281,0.601,0.0774,0.418,0,0 -0.333,0.162,0.162,0,1,0,0,0.281,0.601,0.0774,0.359,0,0 -0.333,0.162,0.162,0,1,0,0,0.281,0.601,0.0774,0.679,0,0 -0.333,0.162,0.162,0,0.9,0,0,0.281,0.601,0.0774,0.353,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.8,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.7,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.491 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.349 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.21 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.269 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0633 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.493 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.115 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0.318,0 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0.481,0 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,1,0,0.281,0.591,0.0486,0,0.361,0 -0.333,0.174,0.174,0,0,0.2,0.1,0.281,0.591,0.0486,0,0.21,0.244 -0.333,0.174,0.174,0,0,0,1,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.504,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.444,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.283,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.27,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.0386,0 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.366 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.488 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0.3,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.122 -1,0.501,0.501,0.2,0.5,0,0,0,0.772,0.307,0.484,0,0 -1,0.501,0.501,0,1,0,0,0,0.772,0.307,0.467,0,0 -1,0.501,0.501,0,1,0,0,0,0.772,0.307,0.375,0,0.244 -1,0.501,0.501,0,1,0,0,0,0.772,0.307,0.299,0,0 -1,0.501,0.501,0,0.9,0,0,0,0.772,0.307,0.386,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.429,0,0.343 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.259 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.175 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.245 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.402 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.175 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.105 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.244 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.183 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.169 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.203 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.344 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.0687 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.172,0.172,1,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0.7,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.265 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.288 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.343 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.244 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.244 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.348 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.104 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.174 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.209 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.245 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.101 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.268 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.348 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.174 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.248 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.088 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0587 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.8,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.16,0.16,0.2,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.244 -0.667,0.294,0.294,0.8,0,0,0,0.14,0.671,0.172,0,0,0.366 -0.667,0.294,0.294,0.7,0,0,0,0.14,0.671,0.172,0,0,0.244 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.522,0,0.122 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.527,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.505,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.402,0,0.122 -1,0.829,0.829,0,0.4,0,0,0,0.772,0.578,0.364,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.299,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.318 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.244 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.366 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.144 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.337 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.231 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.854 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.235 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.188 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.172 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.172 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.33 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.033 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.176 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.0352 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.244 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.401 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.366 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0644 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.405 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.488 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.244 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.331 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.132 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.244 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.488 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.106 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.488 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.244 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.366 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.35,0.35,0.3,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.453,0.453,0.2,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.488 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0.3,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,1,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0.224 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0.366 -1,0.356,0.356,1,0,0,0,0.14,0.599,0.278,0,0,0.244 -1,0.356,0.356,1,0,0,0,0.14,0.599,0.278,0,0,0.121 -1,0.203,0.203,1,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.273 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0584 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.295,0.295,1,0,0,0,0.14,0.609,0.0624,0,0,0 -1,0.295,0.295,1,0,0,0,0.14,0.609,0.0624,0,0,0 -1,0.295,0.295,1,0,0,0,0.14,0.609,0.0624,0,0,0 -0.667,0.175,0.175,0.2,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.122 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.122 -0.667,0.174,0.174,0,0.5,0,0,0.281,0.591,0.0737,0.533,0,0 -0.667,0.174,0.174,0,1,0,0,0.281,0.591,0.0737,0.505,0,0.366 -0.667,0.174,0.174,0,1,0,0,0.281,0.591,0.0737,0.63,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.582,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.302,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.302,0,0 -0.667,0.17,0.17,0,0.4,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.17 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.238 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.192 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.129 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.785 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.66 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.366 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.122 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.133 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.16 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.16 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.169 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.15 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.0301 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.228,0,0,0 -0.333,0.309,0.309,0.3,0,0,0,0.281,0.632,0.228,0,0,0 -0.333,0.309,0.309,1,0,0,0,0.281,0.632,0.228,0,0,0 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.62,0.62,1,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0.7,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0.244 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0.366 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.333,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.122 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -0.667,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -0.667,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0.253 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.158 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0632 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.16 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.171 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.137 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.122 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.17,0.17,0,0.5,0,0,0.281,0.591,0.0855,0.402,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.5,0,0 -0.667,0.17,0.17,0,1,0,0,0.281,0.591,0.0855,0.44,0,0.244 -0.667,0.291,0.291,0,1,0,0,0.14,0.62,0.153,0.315,0,0 -0.667,0.291,0.291,0,0.9,0,0,0.14,0.62,0.153,0.402,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.467,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.364,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.418,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.467,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.237,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.475,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,1,0,0.14,0.62,0.179,0,0.532,0 -0.667,0.271,0.271,0,0,1,0,0.14,0.62,0.179,0,0.258,0.122 -0.667,0.271,0.271,0,0,1,0,0.14,0.62,0.179,0,0.322,0 -0.667,0.269,0.269,0,0,1,0,0.14,0.62,0.21,0,0.197,0 -0.667,0.269,0.269,0,0,0.2,0.1,0.14,0.62,0.21,0,0.0987,0.122 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0,0.244 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0.382,0.122 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0.21,0 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.21,0,0.223,0 -0.667,0.269,0.269,0,0,0,0.1,0.14,0.62,0.239,0,0.665,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.361,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.309,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.373,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.309,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.244 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0.258,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0.309,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0.528,0 -0.667,0.274,0.274,0.3,0,0,0,0.14,0.64,0.263,0,0.541,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0.7,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.327 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.171 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.341 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.0341 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.0542 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.232 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.366 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.13 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.2,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0.266,0,0 -1,0.0798,0.0798,0,1,0,0,0.281,0.56,0.0224,0.505,0,0 -1,0.236,0.236,0,1,0,0,0.14,0.578,0.0433,0.245,0,0.327 -1,0.236,0.236,0,1,0.5,0,0.14,0.578,0.0433,0.245,0.0386,0.0327 -1,0.236,0.236,0,1,1,0,0.14,0.578,0.0433,0.462,0,0 -1,0.236,0.236,0,1,1,0,0.14,0.578,0.0433,0,0.296,0 -1,0.236,0.236,0.3,0.9,0.3,0,0.14,0.578,0.0433,0,0.348,0.154 -1,0.236,0.236,1,0,0,1,0.14,0.578,0.0433,0,0.455,0.0615 -1,0.417,0.417,0.2,0,0,1,0,0.633,0.0786,0,0.197,0 -1,0.417,0.417,0,0,0,1,0,0.633,0.0786,0,0.21,0 -0.667,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.421,0 -0.667,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0,0 -0.667,0.295,0.295,0,0,0,0.7,0.14,0.609,0.0577,0,0.283,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0.288,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0.167,0 -0.667,0.301,0.301,0.3,0,0,0,0.14,0.62,0.0695,0,0.425,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0.446,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0.7,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0.2,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.8,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0.7,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0.3,0,0,0,0.14,0.62,0.118,0,0,0.122 -1,0.269,0.269,1,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0.7,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0.5,0,0.14,0.64,0.139,0,0.0129,0.122 -0.667,0.274,0.274,0,0,1,0,0.14,0.64,0.139,0,0.348,0 -0.667,0.274,0.274,0,0,1,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0.3,0,0.14,0.64,0.139,0,0.309,0 -0.667,0.274,0.274,0,0,0,1,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0.361,0 -0.667,0.294,0.294,0,0,0,0.8,0.14,0.671,0.172,0,0.369,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0.275,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0.172,0 -0.667,0.294,0.294,0.3,0,0,0,0.14,0.671,0.172,0,0,0.154 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0.0617 -0.667,0.35,0.35,0.2,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.255 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.177 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.279 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.308 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.164 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.31 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0.262 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,1,0,0.5,0,0.281,0.57,0.0296,0,0.0601,0.167 -1,0.143,0.143,1,0,1,0,0.281,0.57,0.0296,0,0.335,0.234 -1,0.172,0.172,1,0,1,0,0.281,0.585,0.0368,0,0.446,0 -1,0.172,0.172,0.7,0,0.3,0,0.281,0.585,0.0368,0,0.137,0 -1,0.172,0.172,0,0,0,1,0.281,0.585,0.0368,0,0.408,0 -1,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.0987,0.225 -1,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.172,0 -1,0.295,0.295,0,0,0,1,0.14,0.609,0.0577,0,0.708,0 -1,0.427,0.427,0,0,0,1,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0.7,0,0.649,0.0963,0,0,0.17 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0.34 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.125 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.18 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.488 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.244 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.255 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.233 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.61 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.196 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.488 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0.353,0,0 -0.667,0.453,0.453,0,1,0,0,0.14,0.712,0.28,0.304,0,0.244 -0.667,0.453,0.453,0,1,0,0,0.14,0.712,0.28,0.19,0,0 -0.667,0.453,0.453,0,1,0,0,0.14,0.712,0.28,0.19,0,0.122 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.37,0,0.122 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,0.9,0,0,0,0.772,0.578,0.745,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.473,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.315,0,0.366 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.478,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.391,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.488 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.634 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.0353 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.517 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.726 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.346 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.138 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.156 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.212 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.0354 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.342 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.163 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.098 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.416 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.347 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.453,0.453,0,0,1,0,0.14,0.712,0.28,0,0.0601,0.234 -0.667,0.453,0.453,0,0,1,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.453,0.453,0,0,1,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.569,0.569,0,0,1,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0.2,0.1,0.14,0.702,0.39,0,0,0.149 -0.667,0.569,0.569,0,0,0,1,0.14,0.702,0.39,0,0,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.713,0,0,0.457 -1,0.905,0.905,0,0,0,0.6,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.351 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.351 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.351 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.211 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.137 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.172 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.348 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.0348 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0887 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.167 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.1 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.962 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0704 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.54 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0696 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0.163 -0.667,0.279,0.279,1,0,0,0,0.14,0.62,0.0996,0,0,0.0651 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.7,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.244 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.178 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.126 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.551 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.322 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0.5,0,0,0.14,0.671,0.172,0.571,0,0.168 -0.667,0.294,0.294,0,1,0,0,0.14,0.671,0.172,0.429,0,0 -0.667,0.294,0.294,0,1,0,0,0.14,0.671,0.172,0.446,0,0 -0.667,0.35,0.35,0,1,0,0,0.14,0.702,0.21,0.402,0,0 -0.667,0.35,0.35,0,0.9,0,0,0.14,0.702,0.21,0.323,0,0.401 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.323,0,0.338 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.462,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.44,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0.451,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.181 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0.5,0,0,0,0.772,0.578,0.342,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.478,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.609,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.576,0,0 -1,0.829,0.829,0,0.9,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.149 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.29 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.357 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.087 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.029 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0.7,0,0,0,0.281,0.56,0.0152,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.14,0.558,0.0145,0,0,0.197 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.331 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0662 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.17 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.346 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.366 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.33 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.132 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.161 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.0321 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.249 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0.3,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.7,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.107 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.366 -0.333,0.162,0.162,0.8,0,0,0,0.281,0.601,0.0774,0,0,0.122 -0.333,0.162,0.162,0.7,0,0,0,0.281,0.601,0.0774,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.523 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.19 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.488 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.61 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.337 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.0337 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.175 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.035 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.17,0.17,0.2,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -1,0.394,0.394,0,0,0,0,0,0.649,0.242,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.732 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.122 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.244 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.61 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0.5,0,0,0.741,0.763,0,0.0858,0 -1,0.905,0.905,0,0,1,0,0,0.741,0.763,0,0,0.122 -1,0.905,0.905,0,0,1,0,0,0.741,0.763,0,0.678,0 -1,0.905,0.905,0,0,0.3,0,0,0.741,0.763,0,0.421,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,1,0,0.679,0.704,0,0.356,0 -1,0.821,0.821,0,0,0,1,0,0.679,0.704,0,0.283,0.122 -1,0.821,0.821,0,0,0,1,0,0.679,0.704,0,0.395,0 -1,0.564,0.564,0,0,0,0.2,0.14,0.64,0.475,0,0.258,0.132 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0.0987,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0.0987,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.309,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.309,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.485,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.506,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.0601,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.455,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.339,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.464,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.0987,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.382,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0.468,0.248 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0.283,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.122 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.244 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.244 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.366 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.122 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,1,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0.7,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.122 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.122 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.122 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.168 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.412 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.202 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.403 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.127 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.122 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.179 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.173 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.173 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.338 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.338 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.101 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.156 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0625 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.253 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.073,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.296,0 -0.333,0.16,0.16,0,0,0.8,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0.5,0.281,0.591,0.0669,0,0.541,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.395,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.506,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.618,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0.0258,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0702,0,0.618,0 -0.333,0.159,0.159,0,0,0,0.6,0.281,0.591,0.0702,0,0.361,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.451,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.536,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.0258,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.283,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.296,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.361,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.296,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.309,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.395,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.361,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.283,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0,0.5,0,0,0.281,0.632,0.113,0.342,0.322,0 -0.333,0.2,0.2,0,1,0,0,0.281,0.632,0.113,0.402,0.163,0.488 -0.333,0.2,0.2,0,1,0,0,0.281,0.632,0.113,0.495,0,0.122 -0.667,0.35,0.35,0,1,0,0,0.14,0.702,0.21,0.75,0,0 -0.667,0.35,0.35,0,0.9,0,0,0.14,0.702,0.21,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0.413,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.522,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.283,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.19,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.19,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.44,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.386,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,1,0,0,0.772,0.578,0,0.356,0.256 -1,0.829,0.829,0,0,1,0,0,0.772,0.578,0,0.27,0.185 -1,0.829,0.829,0,0,0.8,0,0,0.772,0.578,0,0.369,0 -1,0.905,0.905,0,0,0,0.5,0,0.741,0.713,0,0.0601,0 -1,0.905,0.905,0,0,0,0.9,0,0.741,0.713,0,0.124,0.488 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.585 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.136 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.122 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0.3,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,1,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0.2,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.257 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.253 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.531 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0661 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.304 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0.5,0,0,0.281,0.591,0.0577,0.44,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.435,0,0.366 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.451,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.353,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.193,0,0 -0.333,0.164,0.164,0,1,0,0,0.281,0.591,0.0577,0.193,0,0.122 -0.333,0.16,0.16,0,0.4,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.3,0,0,0,0.14,0.702,0.21,0,0,0.122 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0.2,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.212 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.137 -1,0.905,0.905,0,0,0.5,0,0,0.741,0.713,0,0.309,0.591 -1,0.905,0.905,0,0,0.9,0,0,0.741,0.713,0,0.283,0.122 -1,0.905,0.905,0,0,0,0.4,0,0.741,0.713,0,0.236,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.713,0,0.309,0.169 -1,0.905,0.905,0,0,0,1,0,0.741,0.713,0,0.0601,0.257 -1,0.821,0.821,0,0,0,0.4,0,0.679,0.676,0,0.223,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.412,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.601,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.464,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.227,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.481,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.296,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.369,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.249,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.283,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.339 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.339 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0678 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0.125 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.667,0.236,0.236,0.8,0,0,0,0.14,0.578,0.0433,0,0,0.317 -0.667,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.236,0.236,0.7,0,0,0,0.14,0.578,0.0433,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.61 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,1,0,0.5,0,0.14,0.64,0.139,0,0.249,0 -0.667,0.274,0.274,1,0,1,0,0.14,0.64,0.139,0,0,0.244 -0.667,0.294,0.294,0.2,0,1,0,0.14,0.671,0.172,0,0.382,0.244 -0.667,0.294,0.294,0,0,1,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0.7,0,0.14,0.671,0.172,0,0,0.122 -0.667,0.294,0.294,0,0,0,0.6,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0.6,0.14,0.702,0.21,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.241 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.319 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.372 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.154 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.349 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.343 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0343 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.395 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.488 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.338 -0.667,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.0338 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0.3,0,0,0,0.281,0.591,0.0486,0,0,0.244 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.244 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0.2,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.159,0 -0.333,0.16,0.16,0,0,1,0,0.281,0.591,0.0604,0,0.369,0 -0.333,0.16,0.16,0,0,0.8,0,0.281,0.591,0.0604,0,0.0386,0 -0.333,0.16,0.16,0,0,0,0.5,0.281,0.591,0.0604,0,0.309,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0604,0,0.335,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.591,0.0604,0,0.485,0 -0.333,0.159,0.159,0,0,0,1,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0.7,0.281,0.591,0.0669,0,0.21,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.322,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.296,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.283,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.185,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.159,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.0601,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.122 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.244 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.122 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.19 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -1,0.655,0.655,0,0.5,0,0,0,0.788,0.413,0.288,0,0.122 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.511,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.37,0,0.488 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.603,0,0.61 -1,0.829,0.829,0,0.9,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.266,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.375,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.413,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.489,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.338 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0.3,0,0,0,0.281,0.56,0.0224,0,0,0.161 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0224,0,0,0.0644 -1,0.33,0.33,0.2,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.266 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.0333 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.128 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.325 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0325 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.174 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.14 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.244 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.109 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.465 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0.3,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,1,0,0,0,0.281,0.591,0.0702,0,0,0 -1,0.274,0.274,0.2,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.366 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.122 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.122 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0.3,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.154 -1,0.417,0.417,0.7,0,0,0,0,0.726,0.25,0,0,0.61 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0.5,0,0,0,0.772,0.578,0.413,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.321,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.505,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.375,0,0 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0,0,0.244 -1,0.905,0.905,0,0.4,0,0,0,0.741,0.713,0.364,0,0.555 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.484,0,0.0481 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.359,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.571,0,0 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.228,0,0.292 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.457,0,0.136 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.326,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.446,0,0.0799 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.188,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.188,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.315,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.304,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.652,0,0.244 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.495,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.424,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.522,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.478,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.332,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.413,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.264,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.264,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0.2,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.337 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.101 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,0.7,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.854 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0.3,0,0.5,0,0,0.788,0.493,0,0.236,0 -1,0.655,0.655,1,0,1,0,0,0.788,0.493,0,0.412,0.122 -1,0.829,0.829,1,0,1,0,0,0.772,0.649,0,0.425,0 -1,0.829,0.829,0.7,0,1,0,0,0.772,0.649,0,0.85,0 -1,0.829,0.829,0,0,0.7,0,0,0.772,0.649,0,0,0.122 -1,0.829,0.829,0,0,0,0.6,0,0.772,0.649,0,0.545,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.649,0,0.309,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.649,0,0,0.244 -1,0.905,0.905,0,0,0,0.2,0,0.741,0.763,0,0.481,0.366 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.481,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.618,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.373,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.197,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.322,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.361,0.488 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.481,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.112,0.122 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.348,0 -1,0.51,0.51,0.3,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0.122 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0 -1,0.51,0.51,1,0,0,0,0,0.618,0.444,0,0,0 -1,0.249,0.249,1,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,1,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,1,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,0.2,0,0,0,0,0.571,0.202,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.202,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0205,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0205,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.295,0.295,0,0.5,0,0,0.14,0.609,0.0624,0.636,0,0 -0.667,0.295,0.295,0,1,0,0,0.14,0.609,0.0624,0.364,0,0 -0.667,0.295,0.295,0,1,0,0,0.14,0.609,0.0624,0.429,0,0 -0.667,0.301,0.301,0,1,0,0,0.14,0.62,0.0991,0.484,0,0 -0.667,0.301,0.301,0,0.9,0,0,0.14,0.62,0.0991,0.234,0,0.488 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0.234,0,0.366 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0.122 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.244 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.244 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.122 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0.5,0,0.14,0.62,0.21,0,0.369,0.122 -0.667,0.269,0.269,0,0,1,0,0.14,0.62,0.21,0,0,0 -1,0.378,0.378,0,0,1,0,0,0.649,0.307,0,0.459,0 -1,0.378,0.378,0,0,0.3,0,0,0.649,0.307,0,0.369,0 -1,0.378,0.378,0,0,0,1,0,0.649,0.307,0,0.73,0 -1,0.379,0.379,0,0,0,0.4,0,0.649,0.35,0,0.584,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0.433,0.244 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0.309,0.122 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0.296,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0,0.244 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.366 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.122 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.408,0 -0,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0181,0,0.223,0 -0.333,0.309,0.309,0,0,1,0,0.281,0.632,0.228,0,0.249,0.122 -0.333,0.309,0.309,0,0,1,0,0.281,0.632,0.228,0,0.0386,0 -0.333,0.309,0.309,0,0,0.2,0.1,0.281,0.632,0.228,0,0.223,0.244 -0.333,0.309,0.309,0,0,0,1,0.281,0.632,0.228,0,0,0 -0.333,0.335,0.335,0,0,0,0.3,0.281,0.621,0.266,0,0.21,0 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.266,0,0.296,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.172 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.15 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.336 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.0672 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.172 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.294 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.61 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.488 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0.3,0,0,0,0.14,0.671,0.172,0,0,0.532 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.299 -1,0.417,0.417,0.2,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.3,0,0,0,0.14,0.702,0.21,0,0,0.244 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.655,0.655,1,0.5,0,0,0,0.788,0.413,0.413,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.429,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.658,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.516,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0,0,0.366 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,1,0.4,0,0,0,0.772,0.578,0.353,0,0 -1,0.829,0.829,0.7,0,0,0,0,0.772,0.578,0.457,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.451,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.457,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.353,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.418,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.397,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.418,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.244 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.156 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.127 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.366 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.488 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.8,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0.2,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.122 -0.333,0.2,0.2,0.8,0,0,0,0.281,0.632,0.113,0,0,0 -0.333,0.2,0.2,1,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0.2,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.174 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.154 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.244 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.157 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.0629 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.244 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.167 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.343 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.137 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.522,0,0.212 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.277,0,0 -0.333,0.172,0.172,0,1,0,0,0.281,0.585,0.0368,0.234,0,0 -0.333,0.172,0.172,0.3,1,0,0,0.281,0.585,0.0368,0.234,0,0 -0.333,0.172,0.172,1,1,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,1,0.4,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0.2,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.138 -1,0.501,0.501,0.3,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0.462,0,0 -1,0.501,0.501,1,1,0,0,0,0.772,0.307,0.397,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.44,0,0 -1,0.655,0.655,1,1,0,0,0,0.788,0.413,0.348,0,0 -1,0.655,0.655,0.2,0.4,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.366 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.488 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0159,0,0.249,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.481,0 -1,0.0798,0.0798,0,0,1,0,0.281,0.56,0.0224,0,0.481,0 -1,0.0798,0.0798,0,0,1,0,0.281,0.56,0.0224,0,0.348,0 -1,0.0798,0.0798,0,0,0.7,0,0.281,0.56,0.0224,0,0.296,0 -1,0.11,0.11,0,0,0,0.6,0.14,0.558,0.0289,0,0.236,0.203 -1,0.11,0.11,0,0,0,1,0.14,0.558,0.0289,0,0.369,0 -1,0.11,0.11,0,0,0,1,0.14,0.558,0.0289,0,0,0 -1,0.236,0.236,0,0,0,1,0.14,0.578,0.0433,0,0.112,0.133 -1,0.236,0.236,0,0,0,0.6,0.14,0.578,0.0433,0,0.185,0.133 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.176,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.258,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.258,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0.348,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.309,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.468,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.223,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.137,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.0987,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.348,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.618,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.0386,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.519,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.21,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.69,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.486,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.164 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.168 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.168 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.263 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.366 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.172 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0688 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.105 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.244 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.366 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0.8,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.122 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.655,0.655,1,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0.7,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.366 -1,0.829,0.829,0,0,0.5,0,0,0.772,0.578,0,0.249,0.244 -1,0.829,0.829,0,0,1,0,0,0.772,0.578,0,0.395,0.122 -1,0.569,0.569,0,0,1,0,0.14,0.702,0.39,0,0.236,0 -1,0.569,0.569,0,0,1,0,0.14,0.702,0.39,0,0.296,0 -1,0.569,0.569,0,0,0.7,0,0.14,0.702,0.39,0,0,0 -1,0.62,0.62,0,0,0,0.6,0.14,0.681,0.481,0,0.283,0 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0.348,0.488 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0,0.122 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0.506,0 -1,0.62,0.62,0,0,0,0.6,0.14,0.681,0.481,0,0.249,0.122 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.073,0.353 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.0858,0.212 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.476,0.244 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.155,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.309,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.249,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.309,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.296,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.168 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.168 -1,0.236,0.236,0.8,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0 -1,0.417,0.417,1,0,0,0,0,0.633,0.0786,0,0,0.264 -1,0.417,0.417,0.7,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0658 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0987 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.488 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.244 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.732 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0.3,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,1,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0.7,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.488 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.122 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.488 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.488 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.571,0,0 -1,0.905,0.905,0,1,0,0,0,0.741,0.713,0.5,0,0.122 -1,0.821,0.821,0,1,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,1,0,0,0,0.679,0.676,0.5,0,0 -1,0.821,0.821,0,1,0,0,0,0.679,0.676,0.554,0,0.244 -1,0.821,0.821,0,0.4,0,0,0,0.679,0.676,0,0,0.244 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0.315,0,0.169 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0.424,0,0.19 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.217,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.217,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.342,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.354 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0708 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.159 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.323 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.647 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.127 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.372 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.176 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.246 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.276 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.122 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.0694 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.139 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.412 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.278 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.244 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.366 -0.333,0.159,0.159,0.8,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0.7,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.244 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.122 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0.5,0,0,0.772,0.419,0,0.283,0 -1,0.501,0.501,0,0,0.9,0,0,0.772,0.419,0,0.361,0.122 -0.667,0.35,0.35,0,0,0,0.4,0.14,0.702,0.285,0,0.0858,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.702,0.285,0,0.249,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0.575,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0.391,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.27,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.223,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.309,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0.395,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.366 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.488 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.122 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.139 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.142 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.199 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0994 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.122 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.244 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.202 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.136 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.102 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -1,0.382,0.382,0,0,0,0,0,0.649,0.259,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -1,0.269,0.269,0,0,0.5,0,0.14,0.62,0.239,0,0.0258,0.244 -0.667,0.159,0.159,0,0,0.9,0,0.281,0.591,0.129,0,0,0 -0.667,0.269,0.269,0,0,0,0.4,0.14,0.62,0.239,0,0.283,0 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.239,0,0.408,0 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.239,0,0,0 -1,0.387,0.387,0,0,0,0.4,0,0.679,0.385,0,0.504,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.457,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.309,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.0601,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.0386,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0.197,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.0386,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.309,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.258,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.236,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.483,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.582,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.369,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0.44,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0.375,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0.337,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.493,0,0,0.122 -1,0.829,0.829,0,1,0,0,0,0.772,0.649,0,0,0 -1,0.829,0.829,0,0.9,0.5,0,0,0.772,0.649,0,0.0386,0 -1,0.829,0.829,0,0,1,0,0,0.772,0.649,0,0,0.244 -1,0.829,0.829,0,0,1,0,0,0.772,0.649,0,0.506,0 -1,0.829,0.829,0,0,0.3,0,0,0.772,0.649,0,0.382,0 -1,0.829,0.829,0,0,0,1,0,0.772,0.649,0,0.345,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0.135,0 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0.309,0.122 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0,0,0 -1,0.905,0.905,0,0,0,0.2,0,0.741,0.763,0,0.309,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.348,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.122 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.545,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.369,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.545,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.0386,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.5,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.268,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.421,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.691,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.322,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.258,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.361,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.309,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.0296 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.118 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0.8,0,0,0,0.281,0.57,0.0296,0,0,0.344 -0.667,0.143,0.143,0.7,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.488 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.165 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0992 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.238 -0.333,0.172,0.172,0.8,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0.7,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.244 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.244 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.321 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.304 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.283 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0668 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.356 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.122 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.278 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.164 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.263 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.286 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.347 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0.455 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.0706 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.114 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.297 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.28 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.244 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.366 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.198 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.171 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0683 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.467 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.069 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.162,0.162,0.8,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0.7,0,0.5,0,0.14,0.671,0.172,0,0.309,0 -0.667,0.294,0.294,0,0,0.9,0,0.14,0.671,0.172,0,0,0 -0.667,0.294,0.294,0,0,0,0.4,0.14,0.671,0.172,0,0.343,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0.361,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0.258,0 -0.667,0.35,0.35,0,0,0,1,0.14,0.702,0.21,0,0.494,0 -0.667,0.35,0.35,0,0,0,0.8,0.14,0.702,0.21,0,0.481,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.0386,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.283,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.309,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.244 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.244 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.488 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.177 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.476 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0354 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.244 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.301 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.189 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.122 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.655 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.344 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.122 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.347 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0.478,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0.473,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0.516,0,0 -0.667,0.143,0.143,0,1,0,0,0.281,0.57,0.0296,0.549,0,0 -0.667,0.172,0.172,0,0.4,0,0,0.281,0.585,0.0368,0.353,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0.366 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.174,0.174,0.7,0,0,0,0.281,0.591,0.0486,0,0,0.122 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.122 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.122 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.366 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.244 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.543,0,0 -1,0.655,0.655,0,1,0,0,0,0.788,0.413,0.38,0,0 -0.667,0.569,0.569,0,1,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.569,0.569,0,1,0,0,0.14,0.702,0.39,0.397,0,0 -0.667,0.569,0.569,0,1,0,0,0.14,0.702,0.39,0.375,0,0.244 -0.667,0.569,0.569,0,0.4,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.122 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.244 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.122 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.244 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.122 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0887 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.234 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.1 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0647 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.162 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.171 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.274 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0629 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0944 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.132 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.492 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.161 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.318,0.318,0,0,0.7,0,0.14,0.618,0.069,0,0.159,0 -1,0.452,0.452,0,0,1,0,0,0.647,0.0955,0,0.644,0.0659 -1,0.452,0.452,0,0,1,0,0,0.647,0.0955,0,0,0.264 -1,0.452,0.452,0,0,1,0,0,0.647,0.0955,0,0.309,0 -1,0.456,0.456,0,0,0.5,0,0,0.647,0.113,0,0.395,0 -1,0.456,0.456,0,0,0,0.8,0,0.647,0.113,0,0.592,0.122 -1,0.456,0.456,0,0,0,1,0,0.647,0.113,0,0.468,0.229 -1,0.456,0.456,0,0,0,1,0,0.647,0.113,0,0.275,0.155 -1,0.456,0.456,0,0,0,1,0,0.647,0.113,0,0.27,0.122 -0.667,0.321,0.321,0,0,0,1,0.14,0.618,0.0807,0,0.27,0.366 -0.667,0.312,0.312,0,0,0,1,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0.4,0.14,0.618,0.0898,0,0.421,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.468,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.073,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.433,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0685 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.24 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.365 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.157 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.244 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0.5,0,0,0,0.14,0.711,0.278,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.244 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.61 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0.4,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0692 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.33 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.263 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.35 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.244 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.2,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.249,0 -1,0.0495,0.0495,0,0,0.2,0.1,0.421,0.562,0.0159,0,0.369,0 -1,0.147,0.147,0,0,0,1,0.281,0.569,0.0294,0,0,0.069 -1,0.147,0.147,0,0,0,0.4,0.281,0.569,0.0294,0,0.335,0.345 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0.309,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,1,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,1,0,0,0,0,0.631,0.078,0,0,0.353 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0,0,0.0706 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0.0652 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0.228 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0.2,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.221 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0671 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.268 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0704 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.211 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0588 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0294 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.224 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0.142 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.063 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.117,0,0,0.158 -0.667,0.289,0.289,0.6,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.244 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -1,0.946,0.946,0,0.2,0,0,0,0.785,0.409,0.315,0,0.366 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.435,0,0.182 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.63,0,0.121 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.326,0,0.193 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0.5,0,0,0,0.77,0.573,0.315,0,0.122 -1,0.919,0.919,0,0.2,0,0,0,0.77,0.573,0.397,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.592,0,0.054 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.31,0,0.149 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,1,0,0,0,0.739,0.708,0.19,0,0 -1,0.747,0.747,0,0.5,0,0,0,0.739,0.708,0.19,0,0.282 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.489,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.484,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.315,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.461 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0677 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.838 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.122 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.244 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.122 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.189 -0.667,0.175,0.175,0.3,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.092,0,0,0.122 -0.667,0.292,0.292,0.3,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.488 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.168 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.0671 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.366 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.366 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -0.667,0.321,0.321,0,0,0.5,0,0.14,0.618,0.128,0,0.249,0 -0.667,0.321,0.321,0,0,1,0,0.14,0.618,0.128,0,0.348,0 -0.667,0.321,0.321,0,0,1,0,0.14,0.618,0.128,0,0.361,0 -0.667,0.321,0.321,0.3,0,0.3,0,0.14,0.618,0.128,0,0.0858,0 -0.667,0.321,0.321,1,0,0,1,0.14,0.618,0.128,0,0,0 -0.667,0.312,0.312,1,0,0,0.5,0.14,0.618,0.152,0,0.283,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.152,0,0.361,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0.6,0,0,0,0.14,0.618,0.152,0,0.0386,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,1,0,0.14,0.618,0.166,0,0.27,0 -0.667,0.3,0.3,0,0,0.4,0,0.14,0.618,0.166,0,0.0258,0 -0.667,0.3,0.3,0,0,0,0.9,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0.27,0 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0.433,0 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,0.7,0.14,0.618,0.178,0,0.21,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.236,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.446,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.506,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.249,0 -0.667,0.289,0.289,0.3,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.209,0,0,0.122 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0.9,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.0858 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.244 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.315 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.386,0,0.159 -0.667,0.647,0.647,0,1,0,0,0.14,0.711,0.332,0.533,0,0.186 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.435,0.5,0,0.122 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.435,0.321,0,0.144 -0.667,0.629,0.629,0,0.7,0,0,0.14,0.7,0.435,0.413,0,0 -0.667,0.629,0.629,0.3,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.435,0,0,0.244 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0.122 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0.122 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0.9,0,0,0,0,0.677,0.698,0,0,0.25 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.224 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.556 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.126 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.126 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.189 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0.7,0,0.281,0.559,0.0223,0,0.21,0 -1,0.0816,0.0816,0,0,0.7,0,0.281,0.559,0.0223,0,0,0.122 -1,0.0816,0.0816,0,0,0,0.6,0.281,0.559,0.0223,0,0.618,0.244 -1,0.0816,0.0816,0,0,0,1,0.281,0.559,0.0223,0,0.185,0.122 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0.704,0 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0.395,0 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0.249,0 -1,0.245,0.245,0,0,0,1,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0,0.6,0.14,0.577,0.043,0,0.605,0 -1,0.245,0.245,0.6,0,0,0,0.14,0.577,0.043,0,0.0987,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.132 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0698 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.349 -0.667,0.184,0.184,0.6,0,0,0,0.281,0.59,0.0424,0,0,0.14 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.122 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.122 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.122 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0662 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.321 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0643 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.193 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.645 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.465 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0988 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.103 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.333,0.194,0.194,0,0,0.7,0,0.281,0.6,0.0769,0,0.0601,0 -0.333,0.237,0.237,0,0,1,0,0.281,0.616,0.0931,0,0,0.489 -0.333,0.237,0.237,1,0,1,0,0.281,0.616,0.0931,0,0,0.214 -0.667,0.425,0.425,1,0,1,0,0.14,0.67,0.17,0,0,0 -1,0.612,0.612,1,0,0.5,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0.8,0,0.724,0.248,0,0,0.244 -1,0.612,0.612,0.9,0,0,1,0,0.724,0.248,0,0,0.214 -1,0.804,0.804,0,0,0,1,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0.3,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0.2,0,0,0,0.77,0.304,0.342,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.56,0,0.3 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.364,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.565,0,0 -1,0.946,0.946,0,0.5,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.244 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.066 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.066 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.244 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.245 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.349 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.31 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.259 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0646 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.194 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.24 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.119 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0.9,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.488 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.122 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.235 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.445 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.211 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0327 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.327 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0.2,0,0,0.281,0.59,0.0424,0.37,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.457,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.429,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.397,0,0 -0.333,0.185,0.185,0,0.5,0,0,0.281,0.59,0.0483,0.549,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.467,0,0.176 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0696 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.104 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.366 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.366 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0.2,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0.2,0,0,0.14,0.67,0.17,0.353,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.484,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.386,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.293,0,0.244 -0.667,0.553,0.553,0,0.5,0,0,0.14,0.7,0.208,0.446,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0.451,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.366 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.488 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0.226,0,0 -1,0.946,0.946,0,0.7,0,0,0,0.785,0.409,0.226,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.549,0,0.117 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.462,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.538,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.533,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0.207,0,0.502 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0.207,0,0.672 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.61 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.699 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.366 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.366 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.242 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.276 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0678 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0339 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.231 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.132 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.213 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0.6,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0.2,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,1,0,0.281,0.59,0.06,0,0.21,0 -0.333,0.171,0.171,0,0,0.2,0.1,0.281,0.59,0.06,0,0.421,0 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0.532,0 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0,0.122 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0.283,0.122 -0.333,0.169,0.169,0,0,0,1,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0.5,0.281,0.59,0.0665,0,0.678,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.283,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.0386,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.459,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.309,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.433,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.0515,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.258,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.185,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.408,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.0987,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0.433,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0.223,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0.545,0.122 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0.618,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.244 -0.667,0.553,0.553,0.5,0,0,0,0.14,0.7,0.208,0,0.506,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.369,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.249,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.223,0.244 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.0601,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.0386,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.0601,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.395,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0.166,0,0.244 -1,0.946,0.946,0,0.7,0,0,0,0.785,0.409,0.166,0.0386,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.348,0.27,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.348,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.511,0.159,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.446,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.426 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.333 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0671 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0335 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.207,0,0 -0.667,0.0495,0.0495,1,0.7,0,0,0.421,0.562,0.0159,0.207,0,0 -0.667,0.0495,0.0495,1,1,0,0,0.421,0.562,0.0159,0.37,0,0 -0.667,0.184,0.184,1,1,0,0,0.281,0.59,0.0424,0.457,0,0 -0.667,0.184,0.184,1,1,0,0,0.281,0.59,0.0424,0.424,0,0 -0.667,0.184,0.184,1,1,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.122 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.61 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.312,0.312,0.8,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,1,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0.2,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.069 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.172 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.152 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0305 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.425,0.425,0.5,0,0,0,0.14,0.67,0.17,0,0,0.223 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0.398 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0.4,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0.2,0,0,0.14,0.7,0.208,0.337,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.375,0,0.244 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0.418,0,0.122 -1,0.804,0.804,0,1,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.375,0,0 -1,0.946,0.946,0,0.5,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.126 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.0874 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0291 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.366 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.244 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.624 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.142 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.343 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.172 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.178 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.161 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.332 -0.333,0.185,0.185,0.3,0,0,0,0.281,0.59,0.0732,0,0,0.133 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0.488 -0.333,0.185,0.185,1,0,0,0,0.281,0.59,0.0732,0,0,0.244 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.366 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.122 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.244 -0.333,0.175,0.175,1,0,1,0,0.281,0.59,0.092,0,0.429,0 -0.333,0.175,0.175,0.2,0,1,0,0.281,0.59,0.092,0,0.0258,0 -0.333,0.175,0.175,0,0,0.8,0,0.281,0.59,0.092,0,0.0987,0 -0.333,0.175,0.175,0,0,0,0.5,0.281,0.59,0.092,0,0.361,0 -0.333,0.175,0.175,0,0,0,1,0.281,0.59,0.092,0,0.468,0.122 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.178,0,0.0987,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.178,0,0.159,0 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.178,0,0.335,0 -0.667,0.292,0.292,0,0,0,0.7,0.14,0.618,0.178,0,0.249,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0.373,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.468,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.322,0.366 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.258,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.395,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0.386,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0.296,0.122 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0.0258,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0.361,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.488 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,0.3,0,0,0,0.281,0.616,0.146,0,0,0.244 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0.122 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -1,0.553,0.553,0.6,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.244 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.488 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.135 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.165 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.165 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.122 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.186 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.45 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.206 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.218 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0.625,0,0.122 -0.667,0.338,0.338,0,1,0,0,0.14,0.639,0.261,0.473,0,0 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.274,0.543,0,0.165 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.274,0.429,0,0.352 -0.667,0.425,0.425,0,0.7,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0.527,0,0.122 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0.527,0,0.0909 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.0303 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0.435,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0.364,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0.326,0,0 -1,0.553,0.553,0.3,0,0,0,0.14,0.7,0.283,0,0,0.732 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0.244 -1,0.946,0.946,1,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0.9,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.244 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.366 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.244 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.556 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.156 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.0624 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0905 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0678 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.229 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.342 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.0691 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.346 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0593 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.119 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.233 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.266 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0.6,0,0,0,0.281,0.585,0.0366,0,0,0.218 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.237 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.47 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.227 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0.242,0,0.0972 -0.667,0.3,0.3,0,0.7,0,0,0.14,0.618,0.0989,0.242,0,0.122 -0.667,0.3,0.3,0,1,0,0,0.14,0.618,0.0989,0.587,0,0 -0.667,0.292,0.292,0,1,0,0,0.14,0.618,0.104,0.598,0,0.0698 -0.667,0.292,0.292,0,1,0,0,0.14,0.618,0.104,0.37,0,0.349 -0.667,0.292,0.292,0,1,0,0,0.14,0.618,0.104,0.364,0,0.0698 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0.315,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.475 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.066 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.122 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0.6,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.61 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0.277,0,0.122 -0.667,0.647,0.647,0,0.7,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,1,0,0,0.14,0.711,0.278,0.457,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.353,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.625,0,0.122 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.598,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0.6,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.244 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.122 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,1,0,0.2,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0.2,0,1,0,0.14,0.577,0.043,0,0.223,0 -1,0.245,0.245,0,0,0.2,0.1,0.14,0.577,0.043,0,0.0386,0 -1,0.433,0.433,0,0,0,1,0,0.631,0.078,0,0.21,0 -1,0.433,0.433,0,0,0,0.4,0,0.631,0.078,0,0.631,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0.296,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0.545,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0.172,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.232 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0695 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.243 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.105 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.315 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.366 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.244 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0.2,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.223 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.0638 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.582 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0687 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.397 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.244 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.245 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.035 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.226 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0647 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.0643 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.193 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0.9,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0625 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0937 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -1,0.482,0.482,1,0,0,0,0,0.677,0.199,0,0,0 -1,0.482,0.482,1,0,0,0,0,0.677,0.199,0,0,0.122 -1,0.482,0.482,0.9,0,0,0,0,0.677,0.199,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.122 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0.8,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.287 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.218 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.307 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.222 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.229 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.277 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.228 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.244 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.198 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0.2,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.244 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.157 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.366 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,1,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0.2,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.23 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.146 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.191 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0631 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.126 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.225 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.28 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.366 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.366 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.366 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0.6,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.174 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.473 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.399 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.366 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0673 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.269 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0.6,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.223 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.153 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.0612 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.264 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.172 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.137 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.199 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0.3,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,1,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,0.9,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.366 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.244 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.647,0.347,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.647,0.347,0.467,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0.413,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0.516,0,0 -1,0.421,0.421,0,1,0,0,0,0.647,0.347,0,0,0 -1,0.482,0.482,0,0.7,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.122 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.244 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0.375,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.457,0,0.244 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.228,0,0.244 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.255,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.527,0,0.122 -1,0.946,0.946,0,0.7,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.505,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.429,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.429,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.342,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.478,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.342,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0.478,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0.549,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.153 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.061 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.189 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0.3,0,0,0,0.281,0.585,0.04,0,0,0.184 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.244 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.244 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0.8,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0.8,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0.122 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0.122 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.244 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.244 -1,0.804,0.804,0,0.5,0,0,0,0.77,0.415,0.609,0,0.244 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.712,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.62,0,0.244 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.337,0,0.488 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0.8,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.488 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.366 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.61 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.366 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.493,0.493,0,0.5,0,0,0,0.616,0.441,0.234,0,0 -1,0.493,0.493,0,1,0,0,0,0.616,0.441,0.332,0,0 -1,0.493,0.493,0,1,0,0,0,0.616,0.441,0.489,0,0 -1,0.345,0.345,0,1,0,0,0.14,0.598,0.3,0.38,0,0 -1,0.345,0.345,0,1,0,0,0.14,0.598,0.3,0.495,0,0 -1,0.345,0.345,0,1,0,0,0.14,0.598,0.3,0,0,0 -1,0.116,0.116,0,0.8,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.675 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.21 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.122 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.216 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.313 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0521 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0681 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.238 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0.2,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.435 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.521 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.224 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.032 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.0623 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.309 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.219 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.153 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.488 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.428 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.102 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.387,0,0,0.244 -0.667,0.629,0.629,0.1,0,0,0,0.14,0.7,0.387,0,0,0.122 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.145 -0.667,0.394,0.394,0,0,0.2,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,1,0,0.14,0.639,0.452,0,0.0515,0 -0.667,0.394,0.394,0,0,1,0,0.14,0.639,0.452,0,0.0858,0 -0.667,0.345,0.345,0,0,0.6,0,0.14,0.598,0.276,0,0,0.061 -0.667,0.345,0.345,0,0,0,0.7,0.14,0.598,0.276,0,0.0386,0.0916 -0.667,0.345,0.345,0,0,0,1,0.14,0.598,0.276,0,0.223,0 -0.667,0.345,0.345,0,0,0,1,0.14,0.598,0.276,0,0,0 -0.667,0.345,0.345,0,0,0,1,0.14,0.598,0.276,0,0,0.156 -0.667,0.197,0.197,0,0,0,1,0.281,0.58,0.146,0,0,0 -0.667,0.116,0.116,0,0,0,1,0.281,0.564,0.0691,0,0,0 -0.667,0.116,0.116,0,0,0,0.5,0.281,0.564,0.0691,0,0,0.122 -0.667,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.204 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0 -1,0.114,0.114,0.5,0,0,0,0.14,0.557,0.0287,0,0,0 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0.0683 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0.205 -1,0.245,0.245,0.7,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.236 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.236 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0665 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0997 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.366 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.231 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.221 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0.7,0,0.281,0.6,0.0769,0,0.408,0 -0.333,0.194,0.194,0,0,1,0,0.281,0.6,0.0769,0,0.717,0 -0.333,0.194,0.194,0,0,1,0,0.281,0.6,0.0769,0,0.27,0 -0.667,0.338,0.338,0,0,0.1,0.2,0.14,0.639,0.138,0,0.519,0 -0.667,0.425,0.425,0,0,0,1,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,1,0.14,0.67,0.17,0,0.249,0 -0.667,0.425,0.425,0,0,0,0.9,0.14,0.67,0.17,0,0.322,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.172,0.279 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.455,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.223,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.0987,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.233 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.133 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.195 -1,0.946,0.946,0.2,0,0,0,0,0.785,0.409,0,0,0.13 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.366 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0.7,0,0,0.77,0.573,0,0.283,0 -1,0.747,0.747,0,0,0.7,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0.6,0,0.739,0.708,0,0.494,0 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0.0258,0 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0.545,0.244 -1,0.747,0.747,0,0,0,1,0,0.739,0.708,0,0.348,0.736 -1,0.566,0.566,0,0,0,1,0,0.677,0.671,0,0.472,0.441 -1,0.566,0.566,0,0,0,0.6,0,0.677,0.671,0,0.498,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0.0129,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0.309,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0.0987,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.558,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.322,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.0858,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.348,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.296,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.21,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.0258,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.408,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.488 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.742,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0.425,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0618 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0618 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.235 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.168 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.071 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.142 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.122 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.283,0,0.244 -0.333,0.185,0.185,0,0.7,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.342,0,0.122 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.739,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.391,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.299,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0653 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.294 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.305 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0674 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.169 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.144 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.366 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.244 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.228 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.155 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.112,0,0,0.122 -0.333,0.301,0.301,0.2,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.122 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.61 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.122 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.451,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.245 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.0699 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.063 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.063 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.122 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0962 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.224 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.129 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.258 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.194 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0324 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.366 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.61 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0662 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.0994 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.232 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.232 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.366 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.366 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.423 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.574 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.16 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0657 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0657 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.244 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.122 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.228 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0675 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.338 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.213 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0665 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.333 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.225 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0322 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0694 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.139 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.222 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.066 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.264 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.163 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0655 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.229 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0958 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.128 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.173 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.356 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.122 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.603 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.136 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.366 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.366 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.244 -0.667,0.647,0.647,0.5,0,0,0,0.14,0.711,0.278,0,0,0.122 -0.333,0.348,0.348,1,0,0,0,0.281,0.636,0.147,0,0,0 -0.333,0.348,0.348,0.1,0,0,0,0.281,0.636,0.147,0,0,0.122 -0.667,0.647,0.647,0,0.2,0,0,0.14,0.711,0.278,0.772,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.625,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.255,0,0.122 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.255,0,0 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.629,0.629,0,0.5,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.366 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.122 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.294 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.44 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.142 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.244 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.488 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.488 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.247 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0353 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0651 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.26 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.206 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.165 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.198 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.213 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.118 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.164 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.0328 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.244 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.488 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,0.3,0,0,0,0.281,0.616,0.146,0,0,0.488 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0.122 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0.366 -0.667,0.237,0.237,1,0,0,0,0.281,0.616,0.146,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0.122 -1,0.804,0.804,0.9,0.5,0,0,0,0.77,0.415,0.44,0,0 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.408,0,0.122 -1,0.804,0.804,0,1,0,0,0,0.77,0.415,0.418,0,0.122 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.511,0,0 -1,0.946,0.946,0,1,0,0,0,0.785,0.489,0.177,0,0 -1,0.946,0.946,0,0.2,0,0,0,0.785,0.489,0.177,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0.429,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.172 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.244 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.188 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.13 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.0325 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.185,0.185,0,0,0.5,0,0.281,0.59,0.0732,0,0.309,0 -0.667,0.185,0.185,0,0,1,0,0.281,0.59,0.0732,0,0,0 -0.667,0.312,0.312,0,0,1,0,0.14,0.618,0.152,0,0.605,0 -0.667,0.312,0.312,0,0,1,0,0.14,0.618,0.152,0,0.309,0 -0.667,0.312,0.312,0,0,0.7,0,0.14,0.618,0.152,0,0.258,0 -0.667,0.312,0.312,0,0,0,0.6,0.14,0.618,0.152,0,0.236,0 -0.667,0.312,0.312,0,0,0,0.9,0.14,0.618,0.152,0,0.309,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0.348,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.275,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.249,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.519,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.408,0.122 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.122 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.122 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.122 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.234 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.284 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.0969 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.244 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.128 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.2 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.255 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.122 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.122 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0.3,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.435,0,0,0 -0.667,0.629,0.629,0.9,0,0,0,0.14,0.7,0.435,0,0,0.488 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.344 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.343 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.366 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.488 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.122 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0686 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.172 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.218 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0312 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.302 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.122 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,0.5,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,1,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,1,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.173,0.173,1,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.0568 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.0568 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.804,0.804,0.9,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.402 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.384 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0.5,0,0,0,0.14,0.711,0.278,0,0,0 -0.333,0.348,0.348,1,0,0,0,0.281,0.636,0.147,0,0,0.122 -0.333,0.348,0.348,1,0,0,0,0.281,0.636,0.147,0,0,0 -0.667,0.647,0.647,0.7,0,0,0,0.14,0.711,0.278,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.244 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.366 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.224 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.446 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.219 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.234 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0669 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.244 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.121 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0941 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.157 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.0495,0.0495,0,0.2,0,0,0.421,0.562,0.0159,0.38,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.402,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.255,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.28,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.59,0.0424,0.28,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,1,0,0,0.281,0.59,0.0424,0.38,0,0 -0.333,0.184,0.184,0,0.1,0,0,0.281,0.59,0.0424,0.397,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0.391,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.424,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0.2,0,0,0.281,0.59,0.0483,0.375,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0.223,0,0.244 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,1,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0.1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.244 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.122 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0.2,0,0,0.281,0.616,0.0931,0.609,0,0 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.527,0,0.122 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.62,0,0.122 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0,1,0,0,0.281,0.631,0.112,0.516,0,0.244 -0.333,0.301,0.301,0,1,0,0,0.281,0.631,0.112,0.505,0,0 -0.667,0.553,0.553,0,1,0,0,0.14,0.7,0.208,0.571,0,0.135 -1,0.804,0.804,0,0.1,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.122 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.103 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.214 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.171 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.366 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.229 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.342 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.313 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.173 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.139 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0946 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.122 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.383 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.064 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0 -1,0.342,0.342,0,0,0.7,0,0,0.585,0.0565,0,0.382,0 -1,0.342,0.342,0,0,1,0,0,0.585,0.0565,0,0,0.202 -1,0.342,0.342,0,0,1,0,0,0.585,0.0565,0,0.249,0 -1,0.342,0.342,0,0,0.1,0.2,0,0.585,0.0565,0,0.361,0 -1,0.433,0.433,0,0,0,1,0,0.631,0.078,0,0.657,0.0603 -1,0.433,0.433,0,0,0,1,0,0.631,0.078,0,0,0.0905 -0.667,0.305,0.305,0,0,0,1,0.14,0.608,0.0573,0,0.27,0 -0.667,0.305,0.305,0,0,0,1,0.14,0.608,0.0573,0,0.361,0.366 -0.667,0.305,0.305,0,0,0,0.4,0.14,0.608,0.0573,0,0.335,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0.0987,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.494,0.366 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.0987,0.854 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.382,0.122 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.395,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.223,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.309,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.618,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.541,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.618,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.361,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.283,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.309,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.876,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.258,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0.249,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0.309,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.122 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.366 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0.2,0,0,0.281,0.6,0.0769,0.375,0,0 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.304,0,0 -0.333,0.237,0.237,0,1,0,0,0.281,0.616,0.0931,0.467,0,0.122 -0.333,0.237,0.237,0.5,1,0,0,0.281,0.616,0.0931,0.277,0,0.366 -0.667,0.425,0.425,1,1,0,0,0.14,0.67,0.17,0.277,0,0 -0.667,0.425,0.425,0.1,1,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.425,0.425,0,1,0,0,0.14,0.67,0.17,0,0,0.122 -0.667,0.553,0.553,0,0.1,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.647,0.647,0,0.2,0,0,0.14,0.711,0.278,0.31,0,0.244 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.337,0,0.105 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.429,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.299,0,0.122 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.549,0,0 -1,0.747,0.747,0,0.1,0,0,0,0.739,0.708,0.598,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.516,0,0.244 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.359,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.435,0,0.122 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.348,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.122 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0.9,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.244 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.366 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.122 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.122 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.244 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.122 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.122 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.366 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.366 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,1,0.2,0,0,0,0.785,0.409,0.359,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0.31,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0.386,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0.299,0,0 -1,0.919,0.919,1,1,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,1,0.5,0,0,0,0.77,0.573,0.375,0,0 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0.359,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.296,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.296,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.391,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.505,0,0.244 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.348,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,1,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0.7,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.186 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.225 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.366 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.241 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.103 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0627 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.125 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.116 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.122 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0.217,0,0 -0.333,0.181,0.181,0,0.7,0,0,0.281,0.59,0.0528,0.217,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0.283,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0.511,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0.489,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,1,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0.6,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.232 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.166 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.122 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0.2,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.122 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.122 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.366 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.13 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.366 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0698 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.227 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.241 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.332 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.24 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.155 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.287 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.176 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.0352 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.168 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0.3,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.118,0,0,0.244 -0.333,0.183,0.183,0.3,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.244 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.366 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.244 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.366 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.366 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0.122 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.732 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.332 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0996 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.169 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0674 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.117 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.138 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.167 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.189 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.122 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.236 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.161 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.244 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.195 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.244 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0.3,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,1,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.116,0.116,1,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,1,0,0,0,0.281,0.614,0.101,0,0,0.244 -1,0.116,0.116,0.4,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.481 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.317 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.0327 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.294 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.16 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.16 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.156 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0312 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0.8,0,0,0,0.281,0.699,0.145,0,0,0.457 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0.0508 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0.169 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0.0678 -1,1,1,0.9,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.189 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.115 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.488 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.366 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.386,0.386,0.3,0,0,0,0.14,0.758,0.596,0,0,0.122 -0.667,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0.25,0,0.61 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.495,0,0.366 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.168,0,0.122 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.168,0,0.122 -1,0.196,0.196,0,1,0,0,0.281,0.634,0.189,0.288,0,0 -1,0.116,0.116,0,0.9,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.38,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.418,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.462,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0.418,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0.462,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0.5,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.8,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.153 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0306 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.122 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0.3,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0.3,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.122 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.244 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.366 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0.8,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0.8,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0.5,0,0,0.14,0.849,0.366,0.533,0,0.289 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.495,0,0.366 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.413,0,0.244 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.467,0,0 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.258,0,0 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.258,0,0.244 -0.667,0.638,0.638,0,1,0,0,0.14,0.836,0.51,0.299,0,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.272,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.293,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.44,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.582,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.364,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.257 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.187 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.244 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.134 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.302 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0.337,0,0 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0.484,0,0.122 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0.348,0,0 -0.667,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0,0.9,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.164 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.0654 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.347 -0.667,0.337,0.337,0.3,0,0,0,0.14,0.732,0.105,0,0,0.0347 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0.552 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.278 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.488 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0.5,0,0,0.281,0.66,0.0982,0.391,0,0 -0.333,0.204,0.204,0,1,0,0,0.281,0.66,0.0982,0.326,0,0 -0.667,0.359,0.359,0,1,0,0,0.14,0.758,0.181,0.337,0,0 -0.667,0.457,0.457,0,1,0,0,0.14,0.797,0.224,0.37,0,0 -0.667,0.457,0.457,0,1,0,0,0.14,0.797,0.224,0.649,0,0 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0.324,0,0 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0.326,0,0 -1,0.661,0.661,0.3,0,0,0,0,0.915,0.327,0,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.327,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0.1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.154 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0615 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.335 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.266 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.277 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.031 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.488 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.244 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.254 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.122 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.345 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.322 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.173 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.18 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.116 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.0291 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.169 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.337 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.409 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.198 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.291 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.164 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.164 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.343 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.137 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.333 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.316 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.366 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0.5,0,0,0.14,0.836,0.273,0.505,0,0 -0.667,0.596,0.596,0,1,0,0,0.14,0.836,0.273,0.337,0,0.61 -0.667,0.596,0.596,0,1,0,0,0.14,0.836,0.273,0.484,0,0.366 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.408,0,0 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.312,0,0.244 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.312,0,0.122 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0.5,0,0.14,0.836,0.51,0,0.249,0 -0.667,0.638,0.638,0,0,1,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,1,0,0.14,0.836,0.51,0,0.309,0 -0.667,0.638,0.638,0,0,1,0,0.14,0.836,0.51,0,0.395,0 -0.667,0.638,0.638,0,0,0.9,0,0.14,0.836,0.51,0,0.124,0 -0.667,0.504,0.504,0,0,0,0.4,0.14,0.81,0.629,0,0.309,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0.244 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0.244 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0,0.366 -1,0.554,0.554,0,0,0,0.2,0,0.857,0.887,0,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.341 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0341 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.169 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.339 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.135 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.174 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0348 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.198 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.242 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.256 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.163 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.163 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.278 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.166 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0331 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.304 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.237 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.167 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.134 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.232 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.208 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.156 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.182 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.124 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.337 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.172 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.24 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.661 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.328 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.474 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.38 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.33 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.296 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.366 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.308 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.278 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.309,0 -1,0.732,0.732,0,0,0.4,0,0,0.934,0.936,0,0.309,0.122 -1,0.504,0.504,0,0,0,0.9,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0.0258,0 -1,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0.137,0 -1,0.504,0.504,0,0,0,1,0.14,0.81,0.629,0,0,0.122 -1,0.386,0.386,0,0,0,1,0.14,0.758,0.596,0,0.605,0 -1,0.386,0.386,0,0,0,1,0.14,0.758,0.596,0,0.361,0 -1,0.386,0.386,0,0,0,0.7,0.14,0.758,0.596,0,0.511,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.309,0.366 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.212 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.165 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.033 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.193,0.193,0,0,1,0,0.281,0.647,0.0928,0,0.519,0 -1,0.193,0.193,0,0,1,0,0.281,0.647,0.0928,0,0.185,0 -1,0.193,0.193,0,0,0.9,0,0.281,0.647,0.0928,0,0.382,0 -1,0.189,0.189,0,0,0,0.4,0.281,0.647,0.108,0,0,0 -1,0.189,0.189,0,0,0,1,0.281,0.647,0.108,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,1,0.14,0.732,0.198,0,0,0.244 -1,0.449,0.449,0.8,0,0,1,0,0.818,0.317,0,0,0.195 -1,0.449,0.449,1,0,0,0.2,0,0.818,0.317,0,0,0.488 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0.244 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0.176 -1,0.449,0.449,1,0,0,0,0,0.818,0.317,0,0,0.385 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.244 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.122 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.205 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0 -1,0.432,0.432,1,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0.7,0,0,0,0,0.818,0.402,0,0,0.177 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.141 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.219 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.488 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.244 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.244 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.122 -0.333,0.323,0.323,0.3,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.366,0.366,1,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.366,0.366,1,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.488 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.366 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.366 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.244 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.167 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.134 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.197 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.23 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.488 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.488 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.168 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.202 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.29 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0272 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0816 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.169 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0676 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.337 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.0337 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.167 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.167 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.303 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.488 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.366 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.0322 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.258 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.244 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.332 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.0332 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.608 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.0309 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.52 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0.122 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0.122 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.183 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.355 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.071 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.299 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.283 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.188 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.329 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.0329 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.543 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.421 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.328 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.22 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.416 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.137 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.227 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.157 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.0945 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.318 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.158 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0316 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.333 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0665 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.177 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.354 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.212 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.343 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.409 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.255 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.209 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.156 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.315 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.0327 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.693 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.122 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.117 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.173 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.104 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.508 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.101 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.202 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.257 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.366 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.366 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.272 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0,0.122 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0,0 -1,0.661,0.661,0.3,0,0,0,0,0.915,0.327,0,0,0.122 -1,0.661,0.661,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0.7,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0.3,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0.122 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0 -1,0.342,0.342,1,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0.4,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0.609 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0.3,0,0,0,0,0.74,0.0747,0,0,0.329 -1,0.351,0.351,1,0,0,0,0,0.74,0.0747,0,0,0.233 -1,0.444,0.444,0.3,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,1,0,0.14,0.732,0.105,0,0.296,0 -0.667,0.337,0.337,0,0,1,0,0.14,0.732,0.105,0,0.249,0 -0.667,0.337,0.337,0,0,0.9,0,0.14,0.732,0.105,0,0.605,0 -0.333,0.193,0.193,0,0,0,0.4,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,1,0.281,0.647,0.0604,0,0.159,0 -0.333,0.193,0.193,0,0,0,1,0.281,0.647,0.0604,0,0.249,0.244 -0.333,0.189,0.189,0,0,0,0.9,0.281,0.647,0.0664,0,0.309,0.244 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0.309,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.33 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.132 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.176 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.247 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.205 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.127 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.307 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.0449 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,1,0,0,0.973,0.758,0,0.442,0 -1,0.933,0.933,0,0,1,0,0,0.973,0.758,0,0.502,0 -1,0.933,0.933,0,0,1,0,0,0.973,0.758,0,0.305,0 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.0386,0 -1,0.732,0.732,0,0,0.4,0,0,0.934,0.936,0,0.249,0 -1,0.732,0.732,0,0,0,0.9,0,0.934,0.936,0,0.21,0 -1,0.732,0.732,0,0,0,0.7,0,0.934,0.936,0,0.0515,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0.0987,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0.433,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0.309,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.137,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.309,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.307 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.156 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.0624 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.522,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.842,0,0 -0.333,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.679,0,0 -0.333,0.181,0.181,0,1,0,0,0.281,0.64,0.0449,0.201,0,0 -0.333,0.181,0.181,0.3,1,0,0,0.281,0.64,0.0449,0.201,0,0 -0.333,0.181,0.181,1,0.4,0,0,0.281,0.64,0.0449,0.435,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0.1,0,0,0,0.281,0.647,0.0527,0,0,0.122 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.177,0.177,0.7,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.366 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0.5,0,0,0.14,0.797,0.224,0.473,0,0 -0.667,0.457,0.457,0,1,0,0,0.14,0.797,0.224,0.321,0,0 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0,0,0 -1,0.869,0.869,0.8,1,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,1,0,0,0,0.973,0.402,0,0,0.366 -1,0.869,0.869,1,0.4,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0.122 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.366 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.366 -0.667,0.386,0.386,0,0,0.5,0,0.14,0.758,0.596,0,0.223,0 -1,0.554,0.554,0,0,1,0,0,0.857,0.887,0,0,0.122 -1,0.554,0.554,0,0,1,0,0,0.857,0.887,0,0.249,0 -1,0.554,0.554,0,0,1,0,0,0.857,0.887,0,0.0129,0 -1,0.554,0.554,0,0,0.9,0,0,0.857,0.887,0,0.395,0 -1,0.342,0.342,0,0,0,0.4,0.14,0.706,0.363,0,0.249,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.27,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.322,0.122 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.21,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0.0386,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.363,0,0,0.122 -1,0.183,0.183,0,0,0,1,0.14,0.667,0.16,0,0.309,0 -1,0.183,0.183,0,0,0,1,0.14,0.667,0.16,0,0.172,0 -1,0.183,0.183,0,0,0,0.9,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.408,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.27,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.545,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.309,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.0601,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.283,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.369,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.0601,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.519,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.296,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.682,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0.0386,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0.335,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0.0601,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.244 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.15 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.166 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0331 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.732 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.251 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.457,0.457,0.8,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0.5,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.488 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.244 -1,0.933,0.933,0.8,0.5,0,0,0,0.973,0.758,0.402,0,0.366 -1,0.933,0.933,0.8,1,0,0,0,0.973,0.758,0.31,0,0 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.533,0,0.366 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.375,0,0.244 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.522,0,0 -1,0.933,0.933,0,0.4,0,0,0,0.973,0.758,0.261,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.554,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.07 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.128 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.172 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.138 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.204 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.034 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.244 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.366 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.218 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.169 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.169 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.327 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0327 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.336 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.0336 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.122 -1,0.446,0.446,0,0.5,0,0,0,0.818,0.459,0.408,0,0 -1,0.446,0.446,0,1,0,0,0,0.818,0.459,0.37,0,0 -1,0.446,0.446,0,1,0,0,0,0.818,0.459,0.408,0,0 -1,0.513,0.513,0,1,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,1,0,0,0,0.857,0.505,0.571,0,0 -1,0.513,0.513,0,0.4,0,0,0,0.857,0.505,0.467,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0.625,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0.342,0,0.122 -1,0.661,0.661,0.8,0,0,0,0,0.915,0.531,0.386,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0.122 -1,0.661,0.661,1,0,0,0,0,0.915,0.531,0,0,0 -1,0.869,0.869,0.9,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.258 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.244 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.288 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.0332 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.244 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.335 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.356 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.104 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.348 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.244 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.267 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.0697 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.279 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.426 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0894 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.225 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.0322 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.488 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.279 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.19,0.19,0.3,0,0,0,0.281,0.647,0.0731,0,0,0.119 -0.667,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.419 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.468,0.468,1,0,0,0,0,0.818,0.289,0,0,0 -1,0.468,0.468,0.1,0,0,0,0,0.818,0.289,0,0,0.177 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.142 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.196 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.0652 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.164 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.164 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.334 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.131 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.032 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.288 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0.244 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.352 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.122 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0.425,0 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0.549,0.272 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0,0.244 -0.667,0.683,0.683,0,0,1,0,0.14,0.849,0.437,0,0.408,0 -0.667,0.683,0.683,0,0,0.4,0,0.14,0.849,0.437,0,0.592,0 -0.667,0.683,0.683,0,0,0,0.9,0.14,0.849,0.437,0,0.0386,0.244 -0.667,0.638,0.638,0,0,0,0.7,0.14,0.836,0.573,0,0,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0.8,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.573,0,0,0.244 -0.667,0.504,0.504,0.5,0.5,0,0,0.14,0.81,0.673,0.576,0,0 -0.667,0.504,0.504,0,1,0,0,0.14,0.81,0.673,0.451,0,0.366 -0.667,0.504,0.504,0,1,0,0,0.14,0.81,0.673,0.255,0,0 -0.667,0.504,0.504,0,1,1,0,0.14,0.81,0.673,0,0.455,0 -0.667,0.504,0.504,0,1,1,0,0.14,0.81,0.673,0,0.112,0.366 -1,0.732,0.732,0,0.4,1,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,1,0,0,0.857,0.923,0,0.73,0 -1,0.554,0.554,0,0,0.4,0,0,0.857,0.923,0,0.296,0.122 -1,0.554,0.554,0,0,0,0.9,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0.459,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0.0129,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0.481,0 -1,0.342,0.342,0,0,0,1,0.14,0.706,0.394,0,0.236,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0.236,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0.0386,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0.369,0.488 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0.15,0.164 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0.137,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.326 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.518 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.25 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.169 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.27 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.312 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.156 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0.3,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0.189 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.237 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.167 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.294 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.24 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.345 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.61 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.596 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0.8,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0.467,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0.353,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0.429,0,0 -0.667,0.683,0.683,1,1,0,0,0.14,0.849,0.366,0.576,0,0.244 -0.667,0.638,0.638,1,1,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,1,1,0,0,0.14,0.836,0.51,0,0,0.198 -0.667,0.638,0.638,1,0.5,0,0,0.14,0.836,0.51,0,0,0.172 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.933,0.933,0.1,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.332 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.133 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.206 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0.3,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0.3,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.164 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.35 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.035 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.172 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0686 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.488 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0.3,0,0,0,0.14,0.797,0.224,0,0,0.61 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.869,0.869,1,0,0.5,0,0,0.973,0.402,0,0.137,0.17 -1,0.869,0.869,1,0,0.9,0,0,0.973,0.402,0,0,0.462 -1,0.869,0.869,0.7,0,0,0.4,0,0.973,0.402,0,0.296,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.402,0,0.249,0 -0.667,0.596,0.596,0,0,0,1,0.14,0.836,0.273,0,0.283,0 -0.667,0.683,0.683,0,0,0,0.9,0.14,0.849,0.366,0,0.618,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0.421,0.244 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0.12,0 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0.249,0 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0.309,0.286 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.488 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.528,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.296,0.244 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.0386,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.33 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.188 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.171 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.137 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0.276 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0.7,0,0,0,0.14,0.68,0.0551,0,0,0.067 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.1 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.159 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.0956 -1,0.444,0.444,0,0.5,0,0,0,0.798,0.103,0.386,0,0 -1,0.444,0.444,0,1,0,0,0,0.798,0.103,0.565,0,0 -1,0.444,0.444,0,1,0,0,0,0.798,0.103,0.364,0,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.413,0,0.274 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.188,0,0 -1,0.47,0.47,0,0.4,0,0,0,0.818,0.126,0.188,0,0 -1,0.47,0.47,0,0,1,0,0,0.818,0.126,0.239,0.296,0.0707 -1,0.47,0.47,0,0,1,0,0,0.818,0.126,0,0.487,0.353 -1,0.47,0.47,0,0,0.9,0,0,0.818,0.126,0,0.453,0.106 -1,0.481,0.481,0,0,0,0.4,0,0.818,0.149,0,0.416,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0.408,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0.27,0.274 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0.0987,0 -1,0.481,0.481,0,0,0,1,0,0.818,0.149,0,0,0 -1,0.468,0.468,0,0,0,1,0,0.818,0.168,0,0.506,0 -1,0.468,0.468,0,0,0,0.2,0,0.818,0.168,0,0.21,0.169 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.682,0.102 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0.421,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0.369,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.159 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.133,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.369,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.273,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.135,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.412,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.266,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.366 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.61 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0.122 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0.244 -1,0.661,0.661,0,0.5,0,0,0,0.915,0.327,0.364,0,0.122 -1,0.661,0.661,0,1,0,0,0,0.915,0.327,0.478,0,0 -0.333,0.253,0.253,0,1,0,0,0.281,0.679,0.12,0.538,0,0.122 -0.333,0.253,0.253,0,1,0,0,0.281,0.679,0.12,0.413,0,0 -0.333,0.253,0.253,0,1,0,0,0.281,0.679,0.12,0.204,0,0 -0.667,0.457,0.457,0,0.4,0,0,0.14,0.797,0.224,0.204,0,0 -0.667,0.596,0.596,0.8,0,0,0,0.14,0.836,0.273,0.701,0,0 -0.667,0.596,0.596,0.8,0,0,0,0.14,0.836,0.273,0,0,0.244 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.488 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.488 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.176 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.196 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.147 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0173,0,0,0.102 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.267 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.122 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.174 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.349 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0349 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.309,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.223,0 -0.333,0.177,0.177,0,0,0.9,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0.4,0.281,0.647,0.0845,0,0.275,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0.618,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0.283,0 -0.333,0.182,0.182,0,0,0,0.9,0.281,0.647,0.0888,0,0.399,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.678,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.0515,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.258,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.502,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.425,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.0987,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.122 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.61 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.366 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.424 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.507 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.228 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.243 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.277 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.0627 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.188 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.122 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.269 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0697 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.349 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0697 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.1 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.125 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0.424,0,0 -0.333,0.178,0.178,0,1,0,0,0.281,0.647,0.0759,0.408,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,1,0,0,0.281,0.647,0.0845,0.326,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.732,0.153,0,0,0.122 -0.667,0.305,0.305,0,1,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,1,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.177,0.177,0,0.5,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.366 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.61 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0.3,0,0,0,0.14,0.836,0.273,0,0,0.488 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.244 -1,1,1,0.3,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.157 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.0314 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.386,0.386,0.3,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.244 -1,0.218,0.218,1,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,1,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,1,0,0,0,0.281,0.66,0.306,0,0,0.244 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0.1,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.343 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.177 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.248 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.322 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.328 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.263 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.186 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.334 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.0667 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.367 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.366 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.122 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0.3,0,0,0,0.14,0.797,0.36,0,0,0.366 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.36,0,0,0.244 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.366 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.122 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.732 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.244 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0.366 -1,1,1,1,0,0,0,0,0.993,0.647,0,0,0.488 -1,1,1,0.5,0,0,0,0,0.993,0.647,0,0,0.166 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.0662 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.348 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.244 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.24 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.314 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0.488 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,0.8,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,0.5,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.263 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.0594 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.0594 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.34 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.19 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,0.8,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,1,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.193,0.193,1,0,0,0,0.281,0.647,0.0928,0,0,0.244 -0.667,0.328,0.328,0.5,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.244 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.488 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.171 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.205 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.488 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.244 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,0.3,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,1,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.314,0.314,1,0,1,0,0.14,0.732,0.312,0,0.369,0 -0.667,0.314,0.314,1,0,1,0,0.14,0.732,0.312,0,0.159,0 -1,0.446,0.446,1,0,0.9,0,0,0.818,0.459,0,0,0 -1,0.513,0.513,1,0,0,0.4,0,0.857,0.505,0,0.258,0 -1,0.513,0.513,1,0,0,1,0,0.857,0.505,0,0.369,0 -1,0.513,0.513,0.4,0,0,1,0,0.857,0.505,0,0,0.244 -1,0.513,0.513,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.513,0.513,0,0,0,1,0,0.857,0.505,0,0,0 -1,0.661,0.661,0,0,0,1,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0.2,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.122 -1,0.596,0.596,0.8,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0.366 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.596,0.596,1,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.122 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.366 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.342 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.137 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.189 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.152 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.274 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.244 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.17 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.244 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.354 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.299 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.258 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.122 -0.667,0.596,0.596,0,0,1,0,0.14,0.836,0.273,0,0.21,0 -0.667,0.596,0.596,0,0,1,0,0.14,0.836,0.273,0,0,0.257 -1,0.869,0.869,0,0,1,0,0,0.973,0.402,0,0,0 -1,1,1,0,0,1,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0.4,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0.9,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,1,0,0.993,0.541,0,0,0.531 -1,1,1,0,0,0,1,0,0.993,0.541,0,0,0.122 -1,1,1,0,0,0,1,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,1,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.316 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.383 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.675 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.222 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.177 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.0354 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.185 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.122 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.366 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0.356,0 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0.348,0 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0.262,0.244 -0.667,0.178,0.178,0,0,1,0,0.281,0.647,0.0759,0,0,0 -0.667,0.178,0.178,0,0,0.4,0,0.281,0.647,0.0759,0,0.124,0 -0.667,0.178,0.178,0,0,0,0.9,0.281,0.647,0.0759,0,0.618,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,1,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.122 -0.333,0.182,0.182,0.8,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0.5,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.244 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.488 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0.3,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.366 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.244 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0.366 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0.2,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.549,0,0 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.489,0,0 -1,0.732,0.732,0,1,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0.3,1,0,0,0,0.934,0.936,0.598,0,0 -1,0.732,0.732,1,1,0,0,0,0.934,0.936,0.429,0,0 -1,0.732,0.732,1,0.9,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0.505,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.402,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.435,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.413,0,0.366 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.489,0,0.251 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.674,0,0.179 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.455 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.335 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.067 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.354 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0354 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.314 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.157 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.0627 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0.3,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0.135 -1,0.251,0.251,1,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.403 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.584 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.177 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.35 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.189 -0.333,0.189,0.189,0.3,0,0,0,0.281,0.647,0.0664,0,0,0.122 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0.1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.488 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.732 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0.3,0,0,0,0.281,0.699,0.145,0,0,0.488 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0.244 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.351 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.0351 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.61 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.732,0.732,0,0,0.5,0,0,0.934,0.936,0,0.137,0.244 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.425,0.122 -1,0.732,0.732,0,0,1,0,0,0.934,0.936,0,0.142,0 -1,0.732,0.732,0,0,0.4,0,0,0.934,0.936,0,0.296,0 -1,0.732,0.732,0,0,0,0.9,0,0.934,0.936,0,0.403,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0.438,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0.296,0.488 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0.0386,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0.7,0,0.857,0.887,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.219 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.312 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.0624 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.351,0.351,0.8,0,0,0,0,0.74,0.0747,0,0,0.255 -1,0.351,0.351,0.8,0,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.175 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.245 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.19 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.488 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.244 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.177,0.177,0,0,1,0,0.281,0.647,0.0845,0,0.296,0 -0.333,0.177,0.177,0,0,1,0,0.281,0.647,0.0845,0,0.236,0 -0.333,0.177,0.177,0,0,0.9,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0.4,0.281,0.647,0.0888,0,0.27,0 -0.333,0.182,0.182,0,0,0,1,0.281,0.647,0.0888,0,0.361,0 -0.333,0.182,0.182,0,0,0,1,0.281,0.647,0.0888,0,0.167,0 -0.667,0.314,0.314,0,0,0,1,0.14,0.732,0.162,0,0.155,0.143 -0.667,0.314,0.314,0,0,0,1,0.14,0.732,0.162,0,0.283,0 -0.667,0.314,0.314,0,0,0,0.5,0.14,0.732,0.162,0,0,0.244 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.502,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.451,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.369,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.532,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.296,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0.579,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0.245,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.309,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.309,0.244 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.0386,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.249,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.296,0.122 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.258,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.341 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.273 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0632 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.158 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.344 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.147 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.333 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.222 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.535 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.237 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.347 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.518 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.172 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.138 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.444 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0334 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.313 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0696 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0.3,0,0.5,0,0.281,0.608,0.026,0,0.0987,0 -1,0.0829,0.0829,1,0,1,0,0.281,0.608,0.026,0,0.223,0 -1,0.251,0.251,1,0,1,0,0.14,0.68,0.0551,0,0.605,0 -1,0.251,0.251,1,0,0.4,0,0.14,0.68,0.0551,0,0.0386,0.163 -1,0.351,0.351,0,0,0,0.9,0,0.74,0.0747,0,0,0.163 -1,0.351,0.351,0,0,0,1,0,0.74,0.0747,0,0.309,0 -1,0.351,0.351,0,0,0,1,0,0.74,0.0747,0,0.466,0 -1,0.351,0.351,0,0,0,1,0,0.74,0.0747,0,0.367,0 -1,0.444,0.444,0,0,0,1,0,0.798,0.103,0,0.841,0.12 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0.236,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0.421,0.196 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0.359,0.283,0.0654 -1,0.444,0.444,0,1,0,0,0,0.798,0.103,0.551,0.236,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.275,0.0386,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.375,0.159,0 -1,0.47,0.47,0,1,0,0,0,0.818,0.126,0.299,0,0 -1,0.47,0.47,0,0.9,0,0,0,0.818,0.126,0.63,0.631,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0.435,0.0601,0 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.382,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.172,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.584,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.309,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.236,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.0987,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.283,0.283 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.405 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.519,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.21,0.366 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.567,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.446,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.532,0.244 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.275,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.459,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.27,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.236,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.122 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.0858,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.21,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.0386,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.223,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.575,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.502,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.197,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.395,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.0386,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.442,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.159,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.296,0.122 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.73,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.309,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.258,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.457,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.148,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.0858,0.122 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.421,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.159,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.21,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.296,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.136 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.61 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.488 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.122 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.366 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0.122 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.348 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.169 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0338 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.289 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0321 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0.172 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0.276 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.33 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.033 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.244 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.122 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.171 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.605 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.316,0.316,1,0,0,0,0.14,0.732,0.217,0,0,0.195 -1,0.316,0.316,1,0,0,0,0.14,0.732,0.217,0,0,0.366 -1,0.316,0.316,0.5,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0.392 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0.0297 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.244 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.366 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,0.3,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.359,0.359,1,0,0,0,0.14,0.758,0.343,0,0,0.244 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.36,0,0,0.366 -0.667,0.457,0.457,1,0,0.5,0,0.14,0.797,0.36,0,0.309,0 -1,0.661,0.661,1,0,1,0,0,0.915,0.531,0,0.309,0 -1,0.661,0.661,1,0,1,0,0,0.915,0.531,0,0.0987,0 -1,0.661,0.661,1,0,1,0,0,0.915,0.531,0,0.309,0 -1,0.661,0.661,0.4,0,0.9,0,0,0.915,0.531,0,0,0 -1,0.869,0.869,0,0,0,0.4,0,0.973,0.549,0,0.605,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0.395,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0.468,0 -1,0.869,0.869,0,0,0,1,0,0.973,0.549,0,0,0.122 -1,0.869,0.869,0,0,0,0.5,0,0.973,0.549,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.122 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.244 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.488 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.337,0.337,0.3,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.244 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.366 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.201 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.146 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.24 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.122 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0982 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.196 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.122 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.488 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.244 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.122 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.122 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.17 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.237 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.122 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.122 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.488 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.366 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.488 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.163 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0362,0,0,0.0651 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0.0848 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0.478,0,0 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0.359,0,0 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0,0,0 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0.402,0,0.166 -1,0.351,0.351,0,1,0,0,0,0.74,0.0747,0.538,0,0.0331 -1,0.444,0.444,0,0.9,0,0,0,0.798,0.103,0.283,0,0 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,0.3,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.33,0.33,0.4,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.244 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.488 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.122 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.328,0.328,0.3,0,0,0,0.14,0.732,0.117,0.603,0,0.122 -0.667,0.328,0.328,1,1,0,0,0.14,0.732,0.117,0.489,0,0 -0.667,0.316,0.316,0.3,1,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,0.3,1,0,0,0.14,0.732,0.129,0.592,0,0 -0.667,0.316,0.316,1,1,0,0,0.14,0.732,0.129,0.543,0,0 -0.667,0.316,0.316,1,1,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,1,1,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.316,0.316,1,0.5,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0.366 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0.1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.122 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.244 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.244 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.122 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.122 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.122 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.33 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.31 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.177 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.35 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.366 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.122 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.244 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.122 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.122 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,clothes_dryer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.165 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.254 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.254 +1,0.608,0.026,0.0833,0,0,0,0,0,0.3,0.148 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.331 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.449,0.9,0,0,0,0,0.165 +0.333,0.647,0.0759,0.181,0.54,0.7,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.398,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.528,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.9,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,1,0.165 +1,0.915,0.327,0.602,0,0,0,0,0,1,0 +1,0.915,0.327,0.602,0,0,0,0,0,1,0 +1,0.915,0.327,0.602,0,0,0,0,0,1,0 +1,0.915,0.327,0.602,0,0,0,0,0,0.8,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.331 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0.335,0.4,0,0,0,0,0.165 +1,0.993,0.541,0.979,0.278,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.318,1,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0.241,0.8,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0.241,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.352,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0.761,0.4,0,0,0,0,0 +1,0.973,0.758,0.991,0.256,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.256,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.312,0.8,0,0,0,0,0 +1,0.934,0.936,0.823,0.42,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.483,0,0,0,0,0,0.165 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.341,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.301,0,0,0,0,0,0 +1,0.857,0.887,0.621,0.545,0,0,0,0,0,0 +1,0.857,0.887,0.621,0.438,0,0,0,0,0,0 +1,0.857,0.887,0.621,0.307,0,0,0,0,0,0.101 +1,0.758,0.596,0.43,0.278,0,0,0,0,0,0.151 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.168 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.0486 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.17 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0827 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.174 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.264 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.132 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.606 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.193 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.216 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0978 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0733 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0.5,0.4,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0.511,1,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,1,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0.489,0.8,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0.455,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.184 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.109 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.259 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0259 +1,0.973,0.402,0.798,0,0,0,0,0,0.9,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.6,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0979 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0979 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.162 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0515 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.34 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.257 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.588 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.103 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.064 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.4,0 +1,0.68,0.0551,0.253,0,0,0,0,0,1,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.1,0.417 +1,0.68,0.0551,0.253,0,0,0,0,0,0.4,0 +1,0.798,0.103,0.449,0,0,0,0,0,1,0 +1,0.798,0.103,0.449,0,0,0,0,0,0.1,0.051 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.0765 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.0987 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0493 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.205 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.0261 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.131 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0958 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0479 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.224 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0747 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.287 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.481 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.217 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.27 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0261 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.131 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.9,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,1,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,1,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,1,0.248 +1,0.857,0.263,0.49,0,0,0,0,0,1,0.496 +1,0.915,0.327,0.602,0,0,0,0,0,1,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0.3,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.4,0.0973 +0.667,0.849,0.366,0.669,0,0,0,0,0,1,0.0973 +0.667,0.849,0.366,0.669,0,0,0,0,0,1,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,1,0 +1,0.973,0.758,0.991,0,0,0,0,0,1,0 +1,0.973,0.758,0.991,0,0,0,0,0,0.2,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0.165 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.248 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.102 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.102 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.103 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.103 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.1 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.15 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.331 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0968 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0726 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.348 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0.0827 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.0979 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.147 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0982 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.221 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.413 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.9,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.6,0.0827 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.331 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.235 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0923 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0461 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.152 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.248 +0.667,0.608,0.02,0.0513,0,0,0,0,0,1,0.203 +0.667,0.608,0.026,0.0833,0,0,0,0,0,1,0.128 +0.667,0.608,0.026,0.0833,0,0,0,0,0,1,0.248 +1,0.654,0.0362,0.117,0,0,0,0,0,0.7,0.0827 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.118 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.102 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.134 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.9,0 +1,0.68,0.0551,0.253,0,0,0,0,0,1,0.0979 +1,0.719,0.074,0.316,0,0,0,0,0,1,0.0245 +1,0.719,0.074,0.316,0,0,0,0,0,1,0 +1,0.719,0.074,0.316,0,0,0,0,0,0.7,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.212 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.0827 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0.364,0.9,0,0,0,0,0 +1,0.732,0.0895,0.334,0.381,0.7,0,0,0,0,0.0965 +1,0.732,0.0895,0.334,0.642,0,0,0,0,0,0.0241 +1,0.732,0.0895,0.334,0.869,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0.386,0,0,0,0,0,0 +1,0.818,0.149,0.49,0.494,0,0,0,0,0,0.59 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.133 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.452 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.253 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0722 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0963 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.186,0.458,0,0,0,0,0,0,0 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.206 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.412 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.0971 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.0971 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.597,0.4,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.625,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.455,0.8,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.46,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0.403,0,0,0,0,0.4,0 +0.667,0.797,0.224,0.418,0.318,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0.185,0,0,0,0,0.1,0.0827 +0.667,0.797,0.224,0.418,0.185,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.46,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.585,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0.506,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0.517,0.9,0,0,0,0,0.165 +1,0.973,0.402,0.798,0.534,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.409,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.483,0.3,0,0,0,0,0.0945 +1,0.993,0.541,0.979,0.247,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.247,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.625,0,0,0,0,0,0.128 +1,0.993,0.541,0.979,0.364,0,0,0,0,0,0.255 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0.102 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.33,0.4,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.449,1,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.259,1,0,0,0,0,0 +1,0.836,0.51,0.677,0.259,0.8,0,0,0,0,0 +1,0.81,0.629,0.565,0.653,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.165 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.268 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0771 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.229 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.0509 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.086 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.0215 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.137 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.181 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0493 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.131 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.4,0.331 +0.333,0.647,0.165,0.182,0,0,0,0,0,1,0 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.1,0.0827 +0.333,0.66,0.18,0.196,0,0,0,0,0,0,0.0827 +0.667,0.66,0.18,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0.0827 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.331 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.243 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.121 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.101 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0814 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.104 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.104 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.407 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.104 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.182 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0.248 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.9,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.6,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.441,0,0,0,0,0,0,0 +1,0.818,0.402,0.441,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.441,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.441,0,0,0,0,0,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.413 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.331 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.165 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.849,0.437,0.669,0,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.0874 +1,0.934,1,0.823,0,0,0,0,0,0,0.0437 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.195 +1,0.857,0.923,0.621,0,0,0,0,0,0,0.0243 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.126 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.74,0.0747,0.355,0,0,0,0,0,1,0 +1,0.74,0.0747,0.355,0,0,0,0,0,1,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0.8,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0.4,0.0827 +0.667,0.719,0.074,0.316,0,0,0,0,0,1,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.1,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.0827 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0,0.165 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.331 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.101 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.177 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.4,0.165 +0.667,0.758,0.181,0.343,0,0,0,0,0,1,0.248 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.1,0.215 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.0239 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.4,0.0827 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.1,0.223 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.132 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.208 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.234 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0827 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.098 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.147 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.151 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.159 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0993 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0496 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.142 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0.9,0 +1,0.654,0.0362,0.117,0,0,0,0,0,1,0.269 +1,0.68,0.0551,0.253,0,0,0,0,0,1,0.134 +1,0.68,0.0551,0.253,0,0,0,0,0,0.2,0.148 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.413 +0.333,0.647,0.0604,0.196,0,0,0.126,0.4,0,0,0.165 +0.333,0.647,0.0604,0.196,0,0,0,1,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0.295,0,1,0,0 +0.333,0.647,0.0604,0.196,0,0,0.283,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.236,0,0.2,0,0 +0.333,0.647,0.0664,0.192,0,0,0.398,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.488,0,0,0,0.331 +0.333,0.647,0.0664,0.192,0,0,0.319,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.283,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.205,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.26,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.236,0,0,0,0.165 +0.333,0.647,0.0759,0.181,0,0,0.445,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.181,0,0,0.5,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.634,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.0354,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.157,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.236,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.339,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.319,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.236,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.559,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0.283,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.665,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.394,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0.205,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.0354,0,0,0,0.248 +0.667,0.758,0.181,0.343,0,0,0.0906,0,0,0,0.0827 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0.374,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0.205,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.205,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0.236,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.0472,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.126,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.906,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.402,0,0,0,0.165 +0.667,0.836,0.273,0.548,0,0,0.244,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.374,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.272,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.205,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.398,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.433,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.441,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.0551,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.681,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0.0669,0,0,0,0.101 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.126 +1,0.973,0.758,0.991,0,0,0.339,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.0906,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.283,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.26,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.319,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.307,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.433,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.283,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.184 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0254 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.333,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.333,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.331 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.248 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0.236,0.9,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0.272,0.5,0.5,0,0 +0.333,0.647,0.0664,0.192,0,0,0.205,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.543,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.0354,0,1,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.102,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.283,0,1,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0.205,0,1,0,0.248 +0.333,0.647,0.0724,0.186,0,0,0.272,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.193,0,1,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0.0906,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.283,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.228,0,1,0,0 +0.333,0.647,0.0759,0.181,0,0,0.26,0,1,0,0 +0.333,0.647,0.0759,0.181,0,0,0.476,0,1,0,0.0827 +0.333,0.647,0.0759,0.181,0,0,0.307,0,0.2,0.4,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.181,0,0,0.0551,0,0,1,0.0827 +0.667,0.732,0.136,0.313,0,0,0.283,0,0,1,0 +0.667,0.732,0.153,0.311,0,0,0.169,0,0,1,0 +0.667,0.732,0.153,0.311,0,0,0.264,0,0,0.2,0 +0.667,0.732,0.153,0.311,0,0,0.476,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0.0472,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0.327,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0.0236,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0.339,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0.0354,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0.0827 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.248 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.465,0.9,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.386,0.5,0.5,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,1,0,0 +0.667,0.836,0.273,0.548,0,0,0.236,0,0.1,0,0 +1,0.973,0.402,0.798,0,0,0.441,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0.161,0,0,0,0 +1,0.973,0.402,0.798,0,0,0.409,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0.386,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0.0236,0,0,0,0.165 +1,0.993,0.541,0.979,0,0,0.181,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.26,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.283,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.228,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.531,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.354,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.236,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.228,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.331,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.315,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0.0906,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.236,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.465,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.0906,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.421,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.205,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.638,0,0,0,0.0827 +1,0.706,0.363,0.374,0,0,0.248,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.0354,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.126,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0954 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.143 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.227 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0252 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.219 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0488 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.4,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.0827 +0.667,0.732,0.162,0.315,0,0,0,0,0,1,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.2,0.0827 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.248 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.165 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +1,0.857,0.263,0.49,0,0,0,0,0,0,0.248 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.331 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.4,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,1,0 +1,0.993,0.541,0.979,0,0,0,0,0,0.1,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.44 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.303 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.218 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.7,0.165 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.277 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.207 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.26,0.4,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.398,1,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,1,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0.283,0,1,0,0.165 +0.333,0.679,0.12,0.234,0,0,0.102,0,1,0,0 +0.333,0.679,0.12,0.234,0,0,0.472,0,1,0,0.165 +0.333,0.679,0.12,0.234,0,0,0.445,0,0.9,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.0551,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.4,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,1,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.1,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.165 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.0827 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.0827 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0827 +1,0.934,0.936,0.823,0,0,0,0,0,0.4,0 +1,0.934,0.936,0.823,0,0,0,0,0,1,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.1,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.103 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0774 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0,0.222 +0.667,0.758,0.596,0.43,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0.248 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0.267 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.254 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.127 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0.0968 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0.0242 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.654,0.0301,0.117,0,0,0,0,0,0,0 +1,0.654,0.0301,0.117,0,0,0,0,0,0,0.0827 +1,0.654,0.0301,0.117,0,0,0,0,0,0,0 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.165 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.165 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.0827 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0.225 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0.208 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0.364,0.4,0,0,0,0,0 +1,0.64,0.049,0.183,0.483,1,0,0,0,0,0 +1,0.818,0.183,0.477,0,1,0,0,0,0,0 +1,0.818,0.183,0.477,0.352,0.8,0,0,0,0.4,0 +1,0.818,0.183,0.477,0.807,0,0,0,0,1,0 +0.667,0.732,0.128,0.334,0.699,0,0,0,0,1,0 +0.667,0.732,0.128,0.334,0.54,0,0,0,0,1,0 +0.667,0.732,0.128,0.334,0,0,0,0,0,1,0 +0.667,0.732,0.168,0.343,0.739,0,0,0,0,1,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.8,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.4,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,1,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.1,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.165 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0.272,0.9,0,0,0 +0.667,0.758,0.343,0.343,0,0,0.0354,0.5,0.5,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,1,0,0 +0.667,0.758,0.343,0.343,0,0,0.307,0,0.1,0,0.0827 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.165 +1,0.857,0.505,0.49,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0.248 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0.0938 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0.0938 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.0934 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.0934 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.101 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.151 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.305 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.149 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.297 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.103 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.207 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.331 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.198,0.334,0,0,0,0,0,0,0.167 +1,0.732,0.198,0.334,0,0,0,0,0,0,0 +1,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.174 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.0456 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.248 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.175 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.0827 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.264 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.38 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.168 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.248 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.4,0.165 +0.667,0.732,0.312,0.315,0,0,0,0,0,1,0 +1,0.758,0.343,0.343,0,0,0,0,0,1,0 +1,0.758,0.343,0.343,0,0,0,0,0,0.7,0.0827 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.758,0.343,0.343,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.165 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.331 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.165 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.248 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0947 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0947 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0756 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.18 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.16 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.9,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.6,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0.248,0.4,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,1,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.76,0,1,0,0 +0.333,0.647,0.0664,0.192,0,0,0.5,0,0.6,0,0 +0.333,0.647,0.0724,0.186,0,0,0.0906,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.421,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.0118,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.217,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0.228,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.283,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.217,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.374,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.0669,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.26,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.331,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.4,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,1,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0.1,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0.489,0.9,0,0,0,0,0.248 +0.667,0.849,0.366,0.669,0.528,1,0,0,0,0,0.165 +0.667,0.849,0.366,0.669,0.324,1,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0.398,0.3,0,0,0,0,0 +0.667,0.849,0.366,0.669,0.46,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.642,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.557,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.307,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.193,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0.193,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.574,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.574,0.9,0,0,0,0,0.248 +0.667,0.81,0.629,0.565,0.352,1,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.443,1,0,0,0,0,0 +0.667,0.81,0.629,0.565,0,1,0,0,0,0,0 +0.667,0.686,0.322,0.307,0.33,0.9,0,0,0,0,0 +0.667,0.66,0.306,0.24,0.523,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0.494,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0.347,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.426,0.4,0,0,0,0,0.0976 +1,0.973,0.402,0.798,0.381,1,0,0,0,0,0.22 +1,0.973,0.402,0.798,0,1,0,0,0,0,0 +1,0.973,0.402,0.798,0.506,0.8,0,0,0,0,0 +1,0.993,0.541,0.979,0.625,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0.165 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.165 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.096 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.072 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.607 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.231 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.667,0.68,0.0551,0.253,0,0,0,0,0,0,0.169 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.144 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.4,0.0234 +0.667,0.719,0.074,0.316,0,0,0,0,0,1,0.187 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.1,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.165 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.337 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.0827 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.264 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.273 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.302 +0.667,0.758,0.181,0.343,0.5,0.4,0,0,0,0,0.0827 +0.667,0.758,0.181,0.343,0.324,1,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.233,1,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.233,0.8,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.466,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.585,0,0,0,0,0,0.413 +0.667,0.797,0.224,0.418,0.5,0,0,0,0,0,0.331 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.4,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0.386,0.4,0,0,0,0,0 +1,0.993,0.541,0.979,0.409,1,0,0,0,0,0 +1,0.993,0.541,0.979,0,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.483,1,0,0,0,0,0.165 +1,0.836,0.51,0.677,0.222,1,0,0,0,0,0.165 +1,0.836,0.51,0.677,0.489,0.4,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.71,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.104 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0.234 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.168 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.101 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0253 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.378 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.282 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.374 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.181 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.18 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.0971 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.4,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,1,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.1,0.0827 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.2,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.212 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.348 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.251 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0502 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.193 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.0724 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.26,0.4,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,1,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.339,0,1,0,0 +0.333,0.647,0.0724,0.186,0,0,0.169,0,0.6,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0.681,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.132 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.4,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,1,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.7,0.0827 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0993 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0496 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.248 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.165 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.248 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0993 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.248 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0248 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.231 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.0988 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.151 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.331 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.177 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.142 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.197 +1,0.64,0.049,0.183,0,0,0,0,0,0.4,0 +1,0.719,0.0799,0.316,0,0,0,0,0,1,0 +1,0.732,0.128,0.334,0,0,0,0,0,1,0 +1,0.732,0.128,0.334,0,0,0,0,0,0.7,0.0827 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.165 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.331 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.165 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.165 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.9,0.331 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.6,0.165 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.248 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.102 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.254 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.267 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.248 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0.165 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0.0827 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.198 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.686,0.345,0.307,0,0,0,0,0,0,0 +0.667,0.686,0.345,0.307,0,0,0,0,0,0,0.097 +0.667,0.686,0.345,0.307,0,0,0,0,0,0,0.17 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.255 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.215 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.282 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.324 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0.0827 +1,0.719,0.0799,0.316,0,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.452 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.19 +1,0.732,0.128,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.128,0.334,0,0,0,0,0,0,0.248 +0.667,0.732,0.128,0.334,0,0,0,0,0,0,0.187 +0.667,0.732,0.128,0.334,0,0,0,0,0,0,0.261 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.135 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.101 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.152 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.098 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.171 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.1 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0754 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0827 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.181 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.258 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.108 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.331 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.331 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.331 +1,0.818,0.402,0.441,0,0,0,0,0,0,0.331 +1,0.818,0.459,0.448,0,0,0.0906,0.9,0,0,0 +1,0.818,0.459,0.448,0,0,0.26,0.5,0.5,0,0 +1,0.818,0.459,0.448,0,0,0,0,1,0,0 +1,0.818,0.459,0.448,0,0,0.205,0,1,0,0.165 +1,0.818,0.459,0.448,0,0,0.331,0,0.7,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.9,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.7,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0.217,0.4,0,0,0 +1,0.973,0.549,0.798,0,0,0,1,0,0,0 +1,0.973,0.549,0.798,0,0,0.476,0,1,0,0 +1,0.973,0.549,0.798,0,0,0.488,0,0.6,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.193,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.307,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.236,0,0,0,0 +1,0.993,0.647,0.979,0,0,0.228,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.228,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.331,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.531,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.26,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0.543,0,0,0,0 +1,0.934,1,0.823,0,0,0.307,0,0,0,0 +1,0.934,1,0.823,0,0,0.681,0,0,0,0 +1,0.934,1,0.823,0,0,0.295,0,0,0,0 +1,0.934,1,0.823,0,0,0.319,0,0,0,0 +1,0.934,1,0.823,0,0,0.272,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.0906,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.228,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.681,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.419,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.419,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.717,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0.319,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0.362,0,0,0,0 +1,0.706,0.394,0.374,0,0,0.295,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.283,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.0669,0,0,0,0 +1,0.72,0.265,0.249,0,0,0,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.283,0,0,0,0 +1,0.72,0.265,0.249,0,0,0,0,0,0,0 +1,0.72,0.265,0.249,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0.736,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.175 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0923 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.147 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0.248,0.4,0,0,0 +1,0.608,0.026,0.0833,0,0,0,1,0,0,0 +1,0.608,0.026,0.0833,0,0,0.398,0,1,0,0 +1,0.608,0.026,0.0833,0,0,0.386,0,0.6,0,0.165 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.151,0,0,0.555,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.413,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.142,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.0669,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0.319,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.386,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.236,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.398,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.213,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0.26,0,0,0,0.165 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0.205,0,0,0,0.331 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.413 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +1,0.915,0.327,0.602,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.4,0 +1,0.973,0.402,0.798,0,0,0,0,0,1,0 +1,0.973,0.402,0.798,0,0,0,0,0,1,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.7,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0.574,0.4,0,0,0,0,0.165 +1,0.993,0.541,0.979,0.307,1,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0.25,1,0,0,0,0,0 +1,0.993,0.541,0.979,0.25,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.466,1,0,0,0,0,0 +1,0.973,0.758,0.991,0,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.392,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.261,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.273,1,0,0,0,0,0 +1,0.973,0.758,0.991,0.273,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.426,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.392,0.9,0,0,0,0,0.145 +1,0.934,0.936,0.823,0.375,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.165 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0906,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.101 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.177 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.218 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0726 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0977 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0977 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.241 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.179 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.144 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.245 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.0827 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.283,0.4,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,1,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.476,0,1,0,0 +0.667,0.836,0.273,0.548,0,0,0.307,0,0.6,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.0551,0,0,0,0.331 +0.667,0.849,0.366,0.669,0,0,0.35,0,0,0,0.18 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.121 +0.667,0.849,0.366,0.669,0,0,0.0472,0,0,0.9,0 +0.667,0.849,0.366,0.669,0,0,0.319,0,0,0.6,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.331,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.0787,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.272,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.319,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.0871 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.0218 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.221 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.7,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0958 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0958 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.163 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.248 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.102 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.0511 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.351 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.0773 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.187 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.13 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.263 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0658 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.162 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0954 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0239 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.134 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.0999 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.15 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.165 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.092 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.046 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.248 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0.0827 +1,0.818,0.235,0.448,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.4,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,1,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.1,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.267 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.209 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.248 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.394 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0.1 +0.667,0.699,0.263,0.363,0,0,0,0,0,0,0.126 +0.667,0.699,0.263,0.363,0.369,0.9,0,0,0,0,0 +0.667,0.699,0.263,0.363,0.79,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.398,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.483,0.3,0,0,0,0,0.0993 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.438,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.381,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.0827 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.0827 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0953 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0715 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.131 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0982 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0246 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.361 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.22 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.165 +1,0.74,0.0747,0.355,0,0,0,0,0,0,0.287 +1,0.74,0.0747,0.355,0,0,0,0,0,0,0.18 +1,0.74,0.0747,0.355,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.0827 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.197 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.221 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.798,0.103,0.449,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.158 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0463 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.126,0.477,0,0,0,0,0,0,0 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.0827 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.261 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.119 +1,0.818,0.149,0.49,0,0,0.283,0.9,0,0,0.165 +1,0.818,0.149,0.49,0,0,0.236,0.5,0.5,0,0.165 +1,0.818,0.149,0.49,0,0,0,0,1,0,0 +1,0.818,0.149,0.49,0,0,0.26,0,0.1,0,0.121 +1,0.818,0.149,0.49,0,0,0.217,0,0,0,0 +1,0.818,0.168,0.477,0,0,0,0,0,0,0 +1,0.818,0.168,0.477,0,0,0.319,0,0,0,0 +1,0.818,0.168,0.477,0,0,0.441,0,0,0,0.0911 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.0456 +1,0.818,0.168,0.477,0,0,0.283,0,0,0,0 +1,0.818,0.168,0.477,0,0,0.0906,0,0,0,0 +1,0.818,0.186,0.458,0,0,0,0,0,0,0 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.65 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.167 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.156 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.248 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.0827 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.162 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.165 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.4,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.1,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.248 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.265 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.181 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.069 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.092 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.248 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.451 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.256 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.496 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.331 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.9,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.6,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0.0827 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0.165 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0.4,0.165 +0.667,0.699,0.145,0.299,0,0,0,0,0,1,0 +0.667,0.699,0.145,0.299,0,0,0,0,0,1,0 +0.667,0.699,0.145,0.299,0,0,0,0,0,1,0 +1,0.836,0.273,0.548,0,0,0,0,0,1,0 +1,0.836,0.273,0.548,0,0,0,0,0,1,0 +1,0.836,0.273,0.548,0,0,0,0,0,0.8,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.248 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.0827 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.0943 +1,0.836,0.51,0.677,0,0,0,0,0,0,0.0472 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.219 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0731 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0827 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.248 +1,0.621,0.0327,0.151,0,0,0.35,0.4,0,0,0.0827 +1,0.621,0.0327,0.151,0,0,0,1,0,0,0 +1,0.64,0.049,0.183,0,0,0.228,0,1,0,0 +1,0.64,0.049,0.183,0,0,0.0906,0,1,0,0 +1,0.64,0.049,0.183,0,0,0,0,1,0,0 +1,0.64,0.049,0.183,0,0,0.417,0,1,0,0 +1,0.64,0.049,0.183,0,0,0.26,0,0.9,0,0.165 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.165 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.192,0,0,0,0,0,0.4,0.182 +1,0.647,0.0731,0.192,0,0,0,0,0,1,0.198 +1,0.647,0.0731,0.192,0,0,0,0,0,0.1,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.165 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.168,0.343,0,0,0,0,0,0,0 +1,0.732,0.198,0.334,0.409,0.9,0,0,0,0,0 +1,0.732,0.198,0.334,0.483,1,0,0,0,0,0 +1,0.732,0.198,0.334,0.528,1,0,0,0,0,0 +1,0.732,0.198,0.334,0.398,1,0,0,0,0,0 +1,0.732,0.198,0.334,0,1,0,0,0,0,0 +1,0.732,0.198,0.334,0,1,0,0,0,0,0 +1,0.732,0.217,0.322,0,1,0,0,0,0,0 +1,0.732,0.217,0.322,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,1,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0.4,0,0,0,0,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.146,0.18,0,0,0,0,0,0,0 +0.667,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.667,0.647,0.165,0.182,0,0,0,0,0,0,0.1 +1,0.732,0.312,0.315,0,0,0,0,0,0,0.2 +1,0.732,0.312,0.315,0,0,0,0,0,0,0 +1,0.732,0.312,0.315,0,0,0,0,0,0,0 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0.232 +1,0.857,0.505,0.49,0,0,0,0,0,0.4,0 +1,0.857,0.505,0.49,0,0,0,0,0,1,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.1,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.248 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0929 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0929 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.156 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.182 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.102 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.203 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.354 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.0968 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.145 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.0968 +1,0.934,1,0.823,0,0,0,0,0,0,0.0242 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0.165 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.165 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.165 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.0827 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.104 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.104 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.172 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.128 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.0908 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.0895 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.0224 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.165 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.215 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0.296 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0,0,0,0,0,0.203 +0.667,0.647,0.118,0.186,0,0,0.374,0.4,0,0,0.235 +0.667,0.647,0.118,0.186,0,0,0.272,1,0,0,0 +0.667,0.732,0.233,0.313,0,0,0.181,1,0,0,0 +0.667,0.732,0.233,0.313,0,0,0.417,0.5,0.5,0,0 +0.667,0.732,0.233,0.313,0,0,0,0,1,0,0 +1,0.818,0.34,0.445,0,0,0.398,0,1,0,0.376 +1,0.818,0.34,0.445,0,0,0.339,0,0.7,0,0.0827 +1,0.818,0.34,0.445,0,0,0,0,0,0,0 +1,0.818,0.402,0.441,0,0,0.217,0,0,0,0 +1,0.818,0.402,0.441,0,0,0.362,0,0,0,0.261 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.196 +0.667,0.732,0.274,0.311,0,0,0.0551,0,0,0,0.195 +0.667,0.732,0.274,0.311,0,0,0.362,0,0,0,0.0827 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0.236,0,0,0,0.165 +0.667,0.732,0.312,0.315,0,0,0.0669,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0.26,0,0,0,0 +0.667,0.732,0.312,0.315,0,0,0.409,0,0,0,0.248 +0.667,0.732,0.312,0.315,0,0,0.409,0,0,0,0.15 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0.0472,0,0,0,0.0827 +0.667,0.758,0.343,0.343,0,0,0.512,0,0,0,0.0827 +0.667,0.758,0.343,0.343,0,0,0.421,0,0,0,0 +1,0.857,0.505,0.49,0,0,0.146,0,0,0.9,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.6,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.413 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.248 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.165 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.248 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0,0.0946 +1,0.634,0.206,0.212,0,0,0,0,0,0,0.118 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.124 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0984 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.248 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.162 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.165 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.102 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0763 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.248 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.0827 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.165 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.331 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.248 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0864 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0216 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.229 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.102 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.118 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.102 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.153 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.331 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0997 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.175 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.125 +1,0.608,0.02,0.0513,0,0,0,0,0,0.4,0.416 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.125 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.103 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.256 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.356 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.2 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.35 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.248 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.165 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.315 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0742 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.0897 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.182 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0827 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.0501 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.251 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.1 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.4,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,1,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0.506,0.4,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.477,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.239,1,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.568,0.8,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.364,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0.449,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.248 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.187 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0827 +1,0.993,0.541,0.979,0,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0235 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.188 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0827 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.0827 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0.226 +1,0.654,0.0362,0.117,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0.283,0.9,0,0,0.0774 +1,0.68,0.0551,0.253,0.449,0.4,0,0.5,0.5,0,0.108 +0.667,0.68,0.0551,0.253,0.511,1,0,0,1,0,0 +0.667,0.68,0.0551,0.253,0,1,0,0,0.1,0,0 +0.667,0.68,0.0551,0.253,0.375,0.8,0,0,0,0.4,0 +0.667,0.719,0.074,0.316,0.386,0,0,0,0,1,0 +0.667,0.719,0.074,0.316,0.466,0,0,0,0,0.1,0 +0.667,0.719,0.074,0.316,0.375,0.4,0,0,0,0,0.165 +0.667,0.719,0.074,0.316,0,1,0,0,0,0,0 +0.667,0.719,0.074,0.316,0.568,1,0,0,0,0,0 +0.667,0.719,0.074,0.316,0.403,0.8,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.517,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.392,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.193,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0.193,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0.653,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.192,0.426,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.585,0.9,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.841,1,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.181,0.511,1,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.398,0.3,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0.261,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.331 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.0827 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.0827 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0 +0.333,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.333,0.699,0.263,0.363,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.836,0.51,0.677,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.09 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.045 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0246 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.246 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0492 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.13 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0238 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.0951 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0245 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.196 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.157 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.0261 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.0248 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.248 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.297 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.0239 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.239 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.113 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.1,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,1,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.4,0.0247 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.247 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0989 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.248 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.1,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,1,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.4,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.165 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0766 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.0697 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.116 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0.23,0.1,0,0,0,0,0.0251 +1,0.941,0.929,0.913,0.23,1,0,0,0,0,0.226 +1,0.941,0.929,0.913,0.449,1,0,0,0,0,0 +1,0.941,0.929,0.913,0.33,1,0,0,0,0,0 +1,0.941,0.929,0.913,0.273,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.145 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.121 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.114 +1,0.662,0.304,0.275,0,0,0,0,0,0,0.0229 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.216 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.048 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0585 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.234 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.155 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.129 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.6,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.9,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0.318,0.1,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,1,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0.432,1,0,0,0,0,0 +0.667,0.854,0.364,0.595,0.312,1,0,0,0,0,0 +0.667,0.854,0.364,0.595,0.523,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.165 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0.0237 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0.19 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.215,0.6,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.372,1,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,1,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.272,0.4,0.6,0,0 +1,0.636,0.188,0.246,0,0,0.384,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.191,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.26,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.433,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0,0,1,0,0 +1,0.616,0.0874,0.116,0,0,0.126,0,0.7,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0.26,0.2,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,1,0,0,0 +1,0.61,0.0215,0.0513,0,0,0.0354,0.3,0.7,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0.272,0,1,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0.0354,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0.26,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0,0,1,0,0 +1,0.658,0.0299,0.116,0,0,0.205,0,0.6,0,0.248 +1,0.658,0.0299,0.116,0,0,0,0,0,0,0 +1,0.658,0.0299,0.116,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0.0483 +1,0.684,0.047,0.251,0,0,0,0,0,0,0.242 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.117 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.0515 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.154 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.165 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.0827 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.134 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.16 +0.667,0.649,0.145,0.177,0,0,0,0,0,0,0.165 +0.667,0.649,0.145,0.177,0.432,0.2,0,0,0,0,0 +0.667,0.649,0.145,0.177,0,1,0,0,0,0,0 +0.667,0.736,0.272,0.305,0.506,1,0,0,0,0,0.0827 +0.667,0.736,0.272,0.305,0.341,0.9,0,0,0,0,0 +0.667,0.736,0.272,0.305,0.773,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.248 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.7,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.8,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.13 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.191 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.1 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.0827 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.0827 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.168 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.072 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.145 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.0248 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.174 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.0509 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.229 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0.248 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.0827 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.165 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.0472 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.165 +1,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +1,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0764 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.255 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0522 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.248 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.331 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.248 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.2,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,1,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,1,0.248 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.8,0.165 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.248 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.0468 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.117 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.066,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.066,0,0,0,0,0,0,0.165 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0.248 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.0251 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.251 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.128 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0505 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.455 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.311 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0.36 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.0827 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.165 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.0219 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.11 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.238 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.156 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0982 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0246 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0827 +0.667,0.736,0.0889,0.33,0,0,0.142,0.1,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.358,1,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.339,0.4,0.6,0,0.148 +0.667,0.736,0.0889,0.33,0,0,0.24,0,1,0,0.157 +0.667,0.736,0.104,0.337,0,0,0,0,1,0,0 +0.667,0.736,0.104,0.337,0,0,0.191,0,0.5,0,0 +0.667,0.736,0.104,0.337,0,0,0.364,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.5,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.0354,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.136,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.136,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.331,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.165,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.165,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.343,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.0906,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.248,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.102,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.35,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.0236,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.331,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.339,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.362,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.228,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.142,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.449,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.307,0,0,0,0.248 +0.333,0.649,0.0839,0.177,0,0,0.0906,0,0,0,0.248 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.205,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.0551,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.429,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.26,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0.154,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.154,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.228,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.0118,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.441,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0.386,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0.429,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0.169,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0.146,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0.331,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0.193,0,0,0,0 +1,0.98,0.399,0.674,0,0,0.193,0,0,0,0 +1,0.98,0.399,0.674,0,0,0.339,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0.126,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0.0906,0,0,0,0 +1,0.98,0.399,0.674,0,0,0.142,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0.142,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.15 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0.1,0 +1,0.98,0.752,0.98,0,0,0,0,0,1,0 +1,0.98,0.752,0.98,0,0,0,0,0,0.4,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0827 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.025 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.25 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.025 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.175 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.125 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.413 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.0437 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.176 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.12 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.144 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0506 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.428 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.19 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.555 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.461 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0255 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.233 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.254 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.0225 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.135 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.145 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.0727 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0253 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.127 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.6,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.9,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.248 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.165 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0.0927 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0229 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0916 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.105 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.171 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.331 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.436 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.369 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0.0224 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.0673 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.156 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0259 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.339,0.6,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.295,0.9,0.1,0,0.198 +0.667,0.723,0.0735,0.313,0,0,0.555,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.205,0,0.4,0,0.0827 +0.667,0.723,0.0735,0.313,0,0,0.13,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.346,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.409,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.319,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.252,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.252,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.26,0,0,0,0.165 +0.667,0.736,0.104,0.337,0,0,0.443,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.136,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.283,0,0,0,0.165 +0.667,0.736,0.104,0.337,0,0,0.404,0,0,0,0.248 +0.667,0.736,0.116,0.328,0,0,0.199,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.272,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.496,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.248,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.248 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.107 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.218 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0.188,0.1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0.188,1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0.278,1,0,0,0,0,0.149 +0.333,0.701,0.144,0.258,0.653,1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0.466,1,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,1,0,0,0,0,0.165 +0.667,0.841,0.271,0.466,0.176,1,0,0,0,0,0.455 +0.667,0.854,0.364,0.595,0.176,1,0,0,0,0,0.413 +0.667,0.854,0.364,0.595,0.489,1,0,0,0,0,0.248 +0.667,0.854,0.364,0.595,0.722,1,0,0,0,0,0.107 +0.667,0.854,0.364,0.595,0.494,0.4,0,0,0,0,0.148 +0.667,0.854,0.364,0.595,0.472,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0.426,0,0,0,0,0,0.0888 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.0222 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.165 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.413 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.025 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.125 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.116 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0231 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.165 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.132 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.494 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.123 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.386 +1,0.745,0.0742,0.351,0,0,0,0,0,0.1,0.249 +1,0.745,0.0742,0.351,0,0,0,0,0,1,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0.4,0.0827 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.0827 +1,0.804,0.102,0.444,0,0,0,0,0,0,0 +1,0.804,0.102,0.444,0,0,0,0,0,0,0.0827 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.335,0.1,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,1,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.557,0.4,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.205,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.42,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.324,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.812,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.182,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.182,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.25,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.347,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0.364,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.472,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.108 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.339 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0256 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.248 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.23 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.171 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0261 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.156 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.136,0.1,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0.136,1,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.228,0.4,0.6,0,0 +0,0.562,0.0159,0.0495,0,0,0.126,0,1,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,1,0,0 +0.333,0.649,0.0882,0.178,0,0,0.319,0,1,0,0 +0.333,0.649,0.0882,0.178,0,0,0.35,0,1,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,1,0,0 +0.333,0.662,0.0976,0.186,0,0,0.283,0,0.7,0,0 +0.333,0.662,0.0976,0.186,0,0,0.228,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0.443,0,0,0,0.248 +0.667,0.762,0.179,0.322,0,0,0.463,0,0,0.1,0.413 +0.667,0.802,0.222,0.367,0,0,0.0709,0,0,1,0.0827 +0.667,0.802,0.222,0.367,0,0,0.256,0,0,0.4,0.165 +0.667,0.802,0.222,0.367,0,0,0.272,0,0,0,0 +1,0.922,0.325,0.526,0,0,0.142,0,0,0,0 +1,0.922,0.325,0.526,0,0,0.339,0,0,0,0 +1,0.922,0.325,0.526,0,0,0.441,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.248 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0261 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.235 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.137 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0551 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.165 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.194 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0489 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.343 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0737 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.137 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.195 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.0246 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.398 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.0827 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.0235 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.165 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0.0751 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0.158 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0 +1,0.649,0.066,0.189,0,0,0,0,0,0,0 +1,0.649,0.066,0.189,0,0,0,0,0,0,0 +1,0.649,0.066,0.189,0,0,0,0,0,0,0.165 +1,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +1,0.649,0.072,0.183,0,0,0,0,0,0,0 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.165 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +1,0.649,0.072,0.183,0,0,0,0,0,0,0 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.736,0.161,0.307,0,0,0,0,0,0,0.0827 +1,0.824,0.233,0.435,0,0,0,0,0,0,0 +1,0.824,0.233,0.435,0,0,0,0,0,0,0 +1,0.824,0.233,0.435,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +1,0.863,0.261,0.458,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.248 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.154 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.211 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.6,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.9,0.123 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.197 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0.134 +1,1,0.537,0.868,0,0,0,0,0,0,0.257 +1,1,0.537,0.868,0,0,0,0,0,0,0.134 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.207 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.155 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.21 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0229 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0221 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.0663 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0208 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.0624 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.143 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.449,0.2,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,1,0,0,0,0,0.248 +1,0.562,0.0181,0.0495,0.295,1,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0.472,0.9,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.58,0,0,0,0,0,0 +1,0.649,0.0923,0.193,0.324,0,0,0,0,0,0 +1,0.649,0.0923,0.193,0.443,0,0,0,0,0.2,0.0472 +1,0.649,0.0923,0.193,0,0,0,0,0,1,0.189 +1,0.649,0.0923,0.193,0,0,0,0,0,0.3,0.165 +1,0.649,0.0923,0.193,0,0,0,0,0,0.2,0 +1,0.649,0.0923,0.193,0,0,0,0,0,1,0 +1,0.824,0.287,0.468,0,0,0,0,0,1,0.246 +1,0.824,0.287,0.468,0,0,0,0,0,1,0.0233 +1,0.824,0.287,0.468,0,0,0,0,0,1,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.4,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.0514 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.257 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0771 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +1,0.824,0.338,0.436,0,0,0,0,0,0,0 +1,0.824,0.338,0.436,0,0,0,0,0,0,0 +1,0.824,0.338,0.436,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.248 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.413 +0.667,0.736,0.272,0.305,0.494,0.2,0,0,0,0,0.0827 +0.667,0.736,0.272,0.305,0,1,0,0,0,0,0 +0.333,0.649,0.145,0.177,1,0.3,0,0,0,0,0 +0.333,0.649,0.145,0.177,0.392,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0.398,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0.477,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.164,0.178,0.392,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0.347,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0.477,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0.241,0,0,0,0,0,0.165 +0.333,0.662,0.179,0.186,0.241,0,0.441,0.2,0,0.2,0.0827 +0.333,0.662,0.179,0.186,0,0,0.26,1,0,1,0 +0.333,0.662,0.179,0.186,0,0,0.26,0.3,0.7,0.3,0 +0.333,0.662,0.179,0.186,0,0,0.295,0,0.8,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.236,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.126,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.331,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.228,0,0,0,0 +1,0.922,0.527,0.526,0,0,0.307,0,0,0,0.165 +1,0.922,0.527,0.526,0,0,0,0,0,0,0.0827 +1,0.98,0.545,0.674,0,0,0.0472,0,0,0,0 +1,0.98,0.545,0.674,0,0,0.339,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.175 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.257 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.124 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0.45,0.7,0,0,0 +1,0.784,0.578,0.638,0,0,0.55,0.8,0.2,0,0.0485 +1,0.784,0.578,0.638,0,0,0.319,0,1,0,0.0485 +1,0.784,0.578,0.638,0,0,0.248,0,0.3,0,0 +1,0.784,0.578,0.638,0,0,0.228,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.2 +1,0.671,0.182,0.183,0,0,0,0,0,0,0.025 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.098 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.623,0.0326,0.15,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.165 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.331 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.0472 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.142 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0827 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.259 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.151 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0.169,0.2,0,0,0.0827 +0.667,0.649,0.108,0.189,0,0,0.331,1,0,0,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0.157,0.3,0.7,0,0 +0.333,0.562,0.0181,0.0495,0,0,0.0787,0,1,0,0 +0.333,0.562,0.0181,0.0495,0,0,0.484,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0.339,0,1,0,0.248 +0.667,0.649,0.117,0.183,0,0,0.398,0,1,0,0.165 +0.667,0.649,0.117,0.183,0,0,0,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0.441,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0.295,0,1,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,1,0,0 +0.667,0.736,0.231,0.307,0,0,0.447,0,0.7,0,0 +0.667,0.736,0.231,0.307,0,0,0.447,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0.622,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.165 +0.667,0.736,0.231,0.307,0,0,0.236,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0.283,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.283,0,0,0,0.165 +0.667,0.736,0.272,0.305,0,0,0.283,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.248,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.283,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.52,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.26,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.205,0,0,0,0.0827 +0.667,0.736,0.31,0.307,0,0,0.0551,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0.228,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0.339,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.179,0.186,0,0,0.374,0,0,0,0.0827 +0.333,0.662,0.179,0.186,0,0,0.283,0,0,0,0.165 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0.661 +0.333,0.682,0.188,0.208,0,0,0.319,0,0,0,0.0827 +0.333,0.682,0.188,0.208,0,0,0.535,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.0354,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.169,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.283,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.48,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.378,0,0,0,0 +1,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.307,0,0,0,0 +1,0.841,0.369,0.466,0,0,0.283,0,0,0,0 +1,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.252,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.272,0,0,0,0 +1,0.854,0.434,0.595,0,0,0,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.461,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.346,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.272,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.0787,0,0,0,0.0827 +1,0.98,0.845,0.98,0,0,0.193,0,0,0,0.0827 +1,0.841,0.569,0.67,0,0,0.272,0,0,0,0.0827 +1,0.841,0.569,0.67,0,0,0.146,0,0,0,0 +1,0.841,0.569,0.67,0,0,0.362,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0,0.0827 +1,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0.0827 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0.0827 +1,0.71,0.392,0.442,0,0,0,0,0,0,0.0827 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.0735 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.0735 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0.026 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0.26 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.1,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,1,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.4,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0223 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.111 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.121 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.108 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.204 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.331 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.1,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,1,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,1,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,1,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,1,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.5,0.165 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.6,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.9,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0239 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.167 +0.667,0.854,0.364,0.595,0,0,0.307,0.6,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0.9,0.1,0.1,0.0827 +0.667,0.841,0.507,0.67,0,0,0,0,1,1,0.165 +0.667,0.841,0.507,0.67,0,0,0,0,1,0.4,0 +0.667,0.841,0.507,0.67,0,0,0,0,1,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.248 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.137 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0228 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.107 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.251 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.121 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.025 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.175 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.0738 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.123 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0827 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.248 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.0247 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.247 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.215 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.165 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0662 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.107 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.146 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.0827 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.331 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.248 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +1,0.623,0.0353,0.15,0,0,0,0,0,1,0 +1,0.623,0.0353,0.15,0,0,0,0,0,1,0 +1,0.623,0.0353,0.15,0,0,0.228,0.1,0,1,0 +0.667,0.623,0.0353,0.15,0,0,0,1,0,1,0 +0.667,0.623,0.0353,0.15,0,0,0.272,0.4,0.6,1,0 +0.667,0.623,0.0353,0.15,0,0,0.512,0,0.9,1,0 +0.667,0.642,0.0447,0.181,0,0,0.26,0,0,1,0 +0.667,0.642,0.0447,0.181,0,0,0.26,0,0,1,0 +0.667,0.642,0.0447,0.181,0,0,0.614,0,0,1,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,1,0.413 +0.667,0.642,0.0447,0.181,0,0,0.0906,0,0,1,0.448 +0.667,0.642,0.0447,0.181,0,0,0.181,0,0,1,0.165 +0.667,0.736,0.0889,0.33,0,0,0.417,0,0,1,0 +0.667,0.736,0.0889,0.33,0,0,0.0354,0,0,0.7,0.0199 +0.667,0.736,0.0889,0.33,0,0,0.114,0,0,0,0.142 +0.667,0.736,0.0889,0.33,0,0,0.126,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.248,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.224,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.319,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.256,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0.177,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.228,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0.142,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.142,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.136,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.254,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.13,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.0118,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.248 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.4,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.136 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0227 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.116 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.165 +1,1,0.537,0.868,0,0,0,0,0,0,0.0256 +1,1,0.537,0.868,0,0,0,0,0,0,0.128 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0.315,0.1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.315,1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.602,1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.602,1,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.665,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.415,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.247,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.247,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.1,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,1,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.4,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.146 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.548 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0.1,0 +1,1,0.537,0.868,0,0,0,0,0,1,0 +1,1,0.537,0.868,0,0,0,0,0,1,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.9,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.14 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0234 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0.148,0.1,0,0.9,0.0827 +1,0.61,0.0183,0.0495,0,0,0.407,1,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0.272,0.4,0.6,0,0 +1,0.61,0.0183,0.0495,0,0,0.591,0,1,0,0 +1,0.61,0.0183,0.0495,0,0,0.26,0,1,0,0 +1,0.61,0.0183,0.0495,0,0,0.126,0,1,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0.228,0,1,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,1,0,0 +1,0.61,0.0165,0.0495,0,0,0.217,0,0.7,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.0238 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.143 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +1,0.684,0.0548,0.251,0,0,0,0,0,1,0.0953 +1,0.684,0.0548,0.251,0,0,0,0,0,0.5,0.154 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +1,0.804,0.102,0.444,0,0,0,0,0,0,0 +1,0.804,0.102,0.444,0,0,0.26,0.6,0,0,0.144 +1,0.804,0.102,0.444,0,0,0.217,0.9,0.1,0,0.0239 +1,0.804,0.102,0.444,0,0,0,0,1,0,0 +1,0.804,0.102,0.444,0,0,0.0906,0,0.4,0,0 +1,0.804,0.102,0.444,0,0,0.228,0,0,0,0.024 +1,0.824,0.125,0.47,0,0,0.0906,0,0,0,0.192 +1,0.824,0.125,0.47,0,0,0.362,0,0,0,0 +1,0.824,0.125,0.47,0,0,0.362,0,0,0,0.0827 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0.295,0,0,0,0.141 +0.667,0.736,0.0889,0.33,0,0,0.217,0,0,0,0.0827 +0.667,0.736,0.104,0.337,0,0,0.37,0,0,0,0.331 +0.667,0.736,0.104,0.337,0,0,0.142,0,0,0,0.165 +0.667,0.736,0.104,0.337,0,0,0.142,0,0,0,0.0259 +0.667,0.736,0.104,0.337,0,0,0.142,0,0,0,0.234 +0.667,0.736,0.104,0.337,0,0,0.35,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.591,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.283,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.362,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0.386,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.283,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.362,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0.193,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.331,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.287,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.673,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.283,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.126,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.248,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.283,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.256,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0.142,0,0,0,0.248 +0.333,0.649,0.0754,0.178,0,0,0.362,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.124,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.124,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.6,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0.261,0.1,0,0,0,0,0.0827 +0.667,0.662,0.0976,0.186,0.261,1,0,0,0,0,0.248 +0.667,0.662,0.0976,0.186,0.506,1,0,0,0,0,0.0827 +0.667,0.662,0.0976,0.186,0,1,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,1,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0.6,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.165 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0.1,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,1,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0.4,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.6,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.9,0.0572 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.229 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.15 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0749 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.137 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.343 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0679 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0827 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0,0,0,0,0,0,0 +1,0.736,0.197,0.328,0.426,0.7,0,0,0,0,0 +1,0.736,0.197,0.328,0.455,1,0.26,0.2,0,0,0 +1,0.736,0.197,0.328,0.619,1,0.26,1,0,0,0 +1,0.736,0.216,0.316,0,0.4,0.52,1,0,0,0.0827 +1,0.736,0.216,0.316,0,0,0.0236,1,0,0,0 +0.667,0.649,0.117,0.183,0,0,0.0669,1,0,0,0 +0.667,0.649,0.117,0.183,0,0,0.398,1,0,0,0 +0.667,0.649,0.117,0.183,0,0,0.272,0.8,0.2,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,1,0,0 +0.667,0.649,0.125,0.178,0,0,0.47,0,0.3,0,0 +0.667,0.649,0.125,0.178,0,0,0.608,0,0,0,0.0827 +0.667,0.649,0.125,0.178,0,0,0.236,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0.0354,0,0,0,0.0827 +0.667,0.649,0.125,0.178,0,0,0.0551,0,0,0.2,0.0827 +0.667,0.649,0.125,0.178,0,0,0,0,0,1,0 +0.667,0.649,0.145,0.177,0,0,0.283,0,0,0.3,0 +0.667,0.649,0.145,0.177,0,0,0.283,0,0,0,0 +0.667,0.649,0.145,0.177,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.0551,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0.0787,0,0,0,0.0827 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.646,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.283,0,0,0,0.0827 +0.667,0.736,0.31,0.307,0,0,0.335,0,0,0,0.248 +0.667,0.736,0.31,0.307,0,0,0.469,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0.421,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.512,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.193,0,0,0,0.0827 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.35,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0.0236,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.315,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.465,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.465,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.5,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.602,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0.134,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.248 +0.667,0.841,0.369,0.466,0,0,0.283,0,0,0,0.248 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0.217,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0.331,0,0,0,0 +1,0.98,0.545,0.674,0,0,0.0591,0,0,0,0 +1,1,0.642,0.868,0,0,0.181,0,0,0,0.0827 +1,1,0.642,0.868,0,0,0.295,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0.699,0.7,0.431,0,0,0,0.0827 +1,1,0.642,0.868,0.449,1,0.215,0,0,0,0 +1,1,0.642,0.868,0,1,0.421,0,0,0,0 +1,0.98,0.845,0.98,0.398,1,0.533,0,0,0,0 +1,0.98,0.845,0.98,0.375,1,0.474,0,0,0,0 +1,0.98,0.845,0.98,0.562,1,0.236,0,0,0,0 +1,0.98,0.845,0.98,0.253,0.6,0.0551,0,0,0,0 +1,0.98,0.845,0.98,0.253,0,0.114,0,0,0,0 +1,0.98,0.845,0.98,0.494,0,0,0,0,0,0 +1,0.941,0.993,0.913,0.574,0,0.0906,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.283,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.26,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.272,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.157,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.228,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.547,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.181,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0474 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.071 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.167 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.0953 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.127,0.33,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.824,0.287,0.468,0,0,0.126,0.7,0,0,0 +1,0.824,0.287,0.468,0,0,0.236,0.8,0.2,0,0 +1,0.824,0.287,0.468,0,0,0.53,0,1,0,0 +1,0.824,0.287,0.468,0,0,0.199,0,0.3,0,0 +1,0.824,0.287,0.468,0,0,0.228,0,0,0,0 +1,0.824,0.287,0.468,0,0,0,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.161,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.248,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.0906,0,0,0,0 +1,0.824,0.315,0.449,0,0,0.0472,0,0,0,0.248 +1,0.824,0.315,0.449,0,0,0.421,0,0,0,0.0827 +1,0.824,0.315,0.449,0,0,0,0,0,0,0.248 +1,0.736,0.231,0.307,0,0,0.283,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0.236,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.248 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.231,0.307,0,0,0,0,0,0,0.165 +1,0.736,0.272,0.305,0,0,0,0,0,0,0 +1,0.736,0.272,0.305,0,0,0,0,0,0.2,0 +1,0.736,0.272,0.305,0,0,0,0,0,1,0 +1,0.736,0.272,0.305,0,0,0,0,0,0.3,0.0827 +1,0.736,0.272,0.305,0,0,0,0,0,0,0.0827 +1,0.736,0.272,0.305,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0.0827 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0,0,0 +1,0.762,0.34,0.322,0,0,0,0,0,0,0 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +1,0.762,0.34,0.322,0,0,0,0,0,0,0 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +1,0.762,0.34,0.322,0,0,0,0,0,0,0 +1,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +1,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +1,0.802,0.358,0.367,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.213 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.456 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.169 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,1,0.642,0.868,0.46,0.7,0,0,0,0,0 +1,1,0.642,0.868,0.375,1,0,0,0,0,0.128 +1,1,0.642,0.868,0.443,1,0,0,0,0,0.114 +1,1,0.642,0.868,0.267,1,0,0,0,0,0 +1,1,0.642,0.868,0.267,1,0,0,0,0,0 +1,1,0.642,0.868,0.881,0,0,0,0,0,0 +1,0.98,0.845,0.98,0.443,0,0,0,0,0,0.182 +1,0.98,0.845,0.98,0.233,0,0,0,0,0,0.156 +1,0.98,0.845,0.98,0.92,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0.0508 +1,0.98,0.845,0.98,0,0,0,0,0,0,0.254 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.0254 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.135 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0.0827 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0246 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0986 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.248 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.168 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0923 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.658 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.109 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.137 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0827 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.243 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0729 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.248 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.107 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.245 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.157 +1,1,0.537,0.868,0,0,0,0,0,0,0.161 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0827 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0997 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0495 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.248 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0495 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0665 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.399 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.216 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0864 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.238 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0,0 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.149 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.248 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.143 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.119 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.6,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,1,0.192 +0.667,0.723,0.0735,0.313,0,0,0,0,0,1,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.4,0.0827 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.154 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0769 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0259 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.259 +0.333,0.649,0.0601,0.193,0,0,0.307,0.6,0,0,0.0259 +0.333,0.649,0.0601,0.193,0,0,0.0551,0.9,0.1,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,1,0,0 +0.333,0.649,0.0601,0.193,0,0,0.26,0,0.4,0,0 +0.333,0.649,0.0601,0.193,0,0,0.417,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.0906,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.236,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.181,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.283,0,0,0,0.165 +0.333,0.649,0.066,0.189,0,0,0.199,0,0,0,0.248 +0.333,0.649,0.072,0.183,0,0,0.199,0,0,0,0.331 +0.333,0.649,0.072,0.183,0,0,0.362,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.167,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.333,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.228,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.0118,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.222,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.187,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.0906,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.146,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.169,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.272,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.366,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.283,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.331 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.6,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.9,0.0804 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.313 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.0827 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.146 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0488 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.106 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.14 +1,0.562,0.0159,0.0495,0,0,0.236,0.6,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0.9,0.1,0,0 +1,0.745,0.0742,0.351,0,0,0,0,1,0,0.103 +1,0.745,0.0742,0.351,0,0,0,0,0.4,0,0.0776 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0.142,0.1,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.142,1,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0.429,0.4,0.6,0,0 +0.667,0.723,0.0735,0.313,0,0,0.524,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.236,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.26,0,1,0,0 +0.667,0.723,0.0735,0.313,0,0,0.457,0,1,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,1,0,0 +0.333,0.649,0.0524,0.19,0,0,0.126,0,0.7,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0.142,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0.346,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.0551,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0.13,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0.13,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.339,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.165,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.165,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.0906,0,0,0,0.165 +0.333,0.649,0.0601,0.193,0,0,0.362,0,0,0,0.331 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.205,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0.13,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.13,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.179,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.407,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.248,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0.281,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.283,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.148,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.362,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0.0118,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.272,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.372,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.136,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.299,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.346,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0.26,0,0,0,0.248 +0.333,0.649,0.0839,0.177,0,0,0.352,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0.317,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.331,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.512,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0.362,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.205,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.26,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.22,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0.22,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0.362,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.159,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.159,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.26,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0.272,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0.386,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0.307,0,0,0,0.165 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.1,0.0827 +0.667,0.802,0.222,0.367,0,0,0,0,0,1,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.4,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0827 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0827 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.331 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.165 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.0229 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.137 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.41 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.161 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.244 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.0976 +1,0.658,0.036,0.116,0,0,0,0,0,0.1,0 +1,0.658,0.036,0.116,0,0,0,0,0,1,0 +1,0.658,0.036,0.116,0,0,0,0,0,1,0.0827 +1,0.658,0.036,0.116,0,0,0,0,0,0.9,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0827 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.682,0.119,0.208,0,0,0,0,0,0.6,0.0945 +0.667,0.682,0.119,0.208,0,0,0,0,0,0.9,0.0827 +0.667,0.682,0.119,0.208,0,0,0,0,0,0,0.165 +0.667,0.682,0.119,0.208,0,0,0,0,0,0,0.0496 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.281 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0827 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.165 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.165 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.156 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.104 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.6,0 +1,0.863,0.88,0.727,0,0,0,0,0,1,0.0236 +1,0.784,0.532,0.638,0,0,0,0,0,1,0.118 +1,0.784,0.532,0.638,0,0,0,0,0,1,0 +1,0.784,0.532,0.638,0,0,0,0,0,1,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.165 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.155 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0259 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0246 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.123 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.13 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.248 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.248 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0827 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.165 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.701,0.144,0.258,0,0,0,0,0,0,0.0827 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0.331 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0.0827 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0,0.165 +0.667,0.701,0.261,0.36,0,0,0,0,0,0.1,0.0827 +0.667,0.701,0.261,0.36,0,0,0,0,0,1,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0.4,0 +0.667,0.701,0.261,0.36,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.0827 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0189,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0189,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0.2,0 +1,0.61,0.024,0.0829,0,0,0,0,0,1,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0.3,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +0.667,0.623,0.0326,0.15,0,0,0,0,0,0,0 +0.667,0.623,0.0326,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.165 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.0495 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.124 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.0827 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.654 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.358 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.0827 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.34 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.213 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.118 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0942 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.468 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.0472 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.165 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.164 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.259 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.271 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.132 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.0742 +1,0.863,0.502,0.458,0,0,0,0,0,0,0.248 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +0.667,0.762,0.34,0.322,0,0,0,0,0,0,0.0827 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0.0827 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.362,0.7,0,0.7,0 +0.667,0.802,0.358,0.367,0,0,0.102,1,0,0.8,0.0827 +0.667,0.802,0.358,0.367,0,0,0.283,1,0,0,0.0827 +0.667,0.841,0.369,0.466,0,0,0.409,1,0,0,0 +0.667,0.841,0.369,0.466,0,0,0.339,0.8,0.2,0,0.165 +1,0.98,0.545,0.674,0,0,0,0,1,0,0 +1,0.98,0.545,0.674,0,0,0,0,1,0,0 +1,0.98,0.545,0.674,0,0,0,0,0.9,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0.0354,0.2,0,0,0 +1,1,0.642,0.868,0,0,0.407,1,0,0,0 +1,1,0.642,0.868,0,0,0.136,0.3,0.7,0,0 +1,1,0.642,0.868,0,0,0.283,0,1,0,0 +1,1,0.642,0.868,0,0,0,0,1,0,0 +1,0.98,0.845,0.98,0,0,0.126,0,0.4,0,0 +1,0.98,0.845,0.98,0,0,0.272,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.283,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.283,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.272,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.205,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.228,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.283,0,0,0,0 +1,0.941,0.993,0.913,0,0,0.339,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0.138,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0.046 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.069 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.0453 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.113 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0827 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0437 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0874 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.248 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.248 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.248 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0483 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.121 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0827 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.0827 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0.165 +1,0.824,0.399,0.432,0,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.248 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.165 +1,0.824,0.456,0.435,0,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.0827 +1,0.824,0.456,0.435,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0.0827 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0.339,0.2,0,0,0 +0.667,0.854,0.434,0.595,0,0,0.433,1,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0.3,0.7,0,0.0827 +0.667,0.841,0.569,0.67,0,0,0,0,0.8,0,0.165 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.165 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.248 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.0827 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.178 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.0255 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.0244 +1,0.658,0.0241,0.053,0,0,0,0,0,0,0.244 +1,0.658,0.0241,0.053,0,0,0,0,0,0,0.0488 +1,0.658,0.0241,0.053,0,0,0,0,0,0.1,0.0827 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0.0827 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0.292 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0 +1,0.706,0.0461,0.15,0,0,0,0,0,1,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0.5,0 +1,0.706,0.0461,0.15,0,0,0,0,0,0,0.109 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.209 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.375 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.146 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.137 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0827 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.6,0.15 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.9,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.0255 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.153 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.413 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.165 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.331 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.165 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.248 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0766 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.1,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,1,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,1,0 +1,0.922,0.325,0.526,0,0,0,0,0,0.9,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0.228,0.6,0,0,0 +1,0.941,0.929,0.913,0,0,0.236,0.9,0.1,0,0 +1,0.941,0.929,0.913,0,0,0,0,1,0,0 +1,0.941,0.929,0.913,0,0,0.256,0,0.4,0,0 +1,0.941,0.929,0.913,0,0,0.13,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.454 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0871 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.252 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.0258 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.258 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.289 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.165 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0827 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0.165 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0,0.165 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0259 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.155 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0987 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.148 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0827 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.106 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.14 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0.165 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.248 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.165 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.1,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,1,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,1,0.165 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.9,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.4,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,1,0.537,0.868,0.224,0.1,0,0,0,0,0 +1,1,0.537,0.868,0.224,1,0,0,0,0,0 +1,1,0.537,0.868,0.534,1,0,0,0,0,0 +1,1,0.537,0.868,0.398,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.494,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.46,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.27,1,0,0,0,0,0 +1,0.98,0.752,0.98,0.27,0.2,0,0,0,0,0 +1,0.98,0.752,0.98,0.648,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.1,0 +1,0.941,0.929,0.913,0,0,0,0,0,1,0 +1,0.941,0.929,0.913,0,0,0,0,0,1,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.9,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0.205,0.1,0,0,0,0,0 +1,0.863,0.88,0.727,0.205,1,0,0,0,0,0 +1,0.863,0.88,0.727,0.534,1,0,0,0,0,0 +1,0.662,0.304,0.275,0.364,1,0,0,0,0,0 +1,0.636,0.188,0.246,0.438,1,0,0,0,0,0 +1,0.636,0.188,0.246,0,0.6,0,0,0,0,0 +1,0.636,0.188,0.246,0.307,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0.369,0,0,0,0,0,0 +1,0.636,0.188,0.246,0.574,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.415,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.199,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.199,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.347,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0.369,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0.307,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.0827 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.6,0.147 +0.667,0.684,0.0548,0.251,0,0,0,0,0,1,0.0491 +0.667,0.723,0.0735,0.313,0,0,0,0,0,1,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.4,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0827 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0827 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.0827 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.165 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.0827 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0827 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0827 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.0827 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0.0827 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0.403,0.6,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0.335,1,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0.284,1,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0.557,0.5,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.0827 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.165 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.165 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.1,0.165 +0.333,0.682,0.119,0.208,0,0,0,0,0,1,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.4,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.165 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0827 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0827 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.0827 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.432,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.443 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.0913 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.0685 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.165 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0.9,0.0909 +1,0.559,0.0314,0.114,0,0,0,0,0,0.5,0.0958 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.12 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.206 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.101 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.177 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.169,0.9,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.157,0.5,0.5,0,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,1,0,0 +0.667,0.621,0.0764,0.318,0,0,0.283,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0.26,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0.453,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0.26,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0.5,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0.248,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.9,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,1,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0.472,0.4,0,0,0,0,0.0827 +0.667,0.704,0.232,0.395,0.665,1,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,1,0,0,0,0,0 +0.667,0.704,0.232,0.395,0.426,1,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.483,1,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.33,1,0,0,0,0,0.248 +0.667,0.714,0.31,0.507,0.42,1,0,0,0,0,0.331 +0.667,0.714,0.31,0.507,0.42,1,0,0,0,0,0.165 +0.667,0.714,0.31,0.507,0,0.2,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.511,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0977 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.122 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.147 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.269 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.0966 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.193 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0435 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0435 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.165 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.248 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.4,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.248 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.438,0.9,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.523,1,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.557,1,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.489,1,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0.7,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.654 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0945 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.151 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.9,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.5,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.197 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0236 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.142 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.094 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.094 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.192 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.274 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.126 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0.227 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0.177 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.603 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0998 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0499 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.096 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.072 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.225 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.0749 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.207 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.148 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.103 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.259 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.274 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.235 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.104 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.0827 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.221 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.165 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.331 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0.449,0.9,0,0,0,0,0.234 +0.333,0.591,0.108,0.171,0.574,1,0,0,0,0,0.26 +0.333,0.591,0.108,0.171,0.369,1,0,0,0,0,0.026 +0.667,0.621,0.198,0.292,0.585,0.1,0.283,0.9,0,0,0 +1,0.651,0.34,0.409,0.176,0,0.169,1,0,0,0.0827 +1,0.651,0.34,0.409,0.176,0,0,1,0,0,0.213 +1,0.651,0.34,0.409,0,0,0.193,0,1,0.9,0.248 +0.667,0.621,0.233,0.289,0,0,0,0,1,1,0.248 +0.667,0.621,0.233,0.289,0,0,0,0,1,1,0.331 +0.667,0.621,0.233,0.289,0,0,0,0,0.1,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.248 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.9,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.5,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.326,0.324,0.4,0,0,0,0,0 +0.667,0.673,0.305,0.326,0.483,1,0,0,0,0,0 +0.667,0.673,0.305,0.326,0.233,1,0,0,0,0,0 +0.667,0.704,0.315,0.395,0.233,0.6,0,0,0,0,0 +0.667,0.704,0.315,0.395,0.71,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.165 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0.331,0.9,0,0,0 +0.667,0.714,0.371,0.507,0.438,0.4,0,0.5,0.5,0,0 +0.667,0.714,0.371,0.507,0.443,1,0,0,1,0,0 +0.667,0.714,0.371,0.507,0,1,0,0,1,0,0 +0.667,0.714,0.371,0.507,0.636,0.6,0,0,0.6,0,0 +0.667,0.714,0.371,0.507,0.335,0,0,0,0,0,0 +1,0.79,0.547,0.736,0.432,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.466,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.54,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.534,0,0,0,0,0,0 +1,0.774,0.719,0.895,0.409,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0.403,0.9,0,0,0,0,0 +1,0.682,0.78,0.807,0.466,1,0,0,0,0,0 +1,0.682,0.78,0.807,0,1,0,0,0,0,0 +1,0.682,0.78,0.807,0.472,1,0,0,0,0,0 +1,0.62,0.492,0.5,0.472,1,0,0,0,0,0 +1,0.62,0.492,0.5,0.494,1,0,0,0,0,0 +1,0.6,0.334,0.35,0.511,1,0,0,0,0,0 +1,0.6,0.334,0.35,0.227,0.7,0,0,0,0,0.165 +1,0.6,0.334,0.35,0.227,0,0,0,0,0,0.165 +1,0.6,0.334,0.35,0.375,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.295,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.426,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.233,0,0,0,0,0,0.248 +1,0.569,0.156,0.183,0.233,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0.466,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0.489,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.225 +1,0.56,0.044,0.0743,0.358,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0.608,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.29 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.102 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.179 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.167 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0945 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0945 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.165 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.147 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.224 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0.165 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0934,0.181,0,0,0,0,0,0,0 +1,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.331 +0.667,0.562,0.0181,0.0495,0,0,0.374,0.4,0,1,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,1,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0.331,0,1,1,0.0827 +0.667,0.591,0.108,0.171,0,0,0.0551,0,1,1,0 +0.667,0.591,0.108,0.171,0,0,0,0,1,0.9,0 +0.667,0.591,0.108,0.171,0,0,0.0236,0,1,0,0 +0.667,0.591,0.108,0.171,0,0,0.217,0,1,0,0.165 +0.667,0.591,0.108,0.171,0,0,0,0,1,0,0.165 +0.667,0.591,0.108,0.171,0,0,0.126,0,0.2,0,0.0827 +0.667,0.591,0.125,0.169,0,0,0.272,0,0,0,0 +0.667,0.591,0.125,0.169,0,0,0.0906,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0.409,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0.283,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0.0669,0,0,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0.441,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0.339,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.165 +1,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.165 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.0827 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.0827 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0,0,0,0,0.0827 +0.667,0.642,0.526,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.26,0.4,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.417,1,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.0236,0,1,0,0 +0.667,0.6,0.334,0.35,0,0,0.217,0,1,0,0 +0.667,0.6,0.334,0.35,0,0,0.0906,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.0551,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.217,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.193,0,1,0,0 +1,0.62,0.492,0.5,0,0,0.114,0,0.2,0,0 +1,0.573,0.224,0.249,0,0,0.0236,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0.291,0,0,0,0 +1,0.573,0.224,0.249,0,0,0.0354,0,0,0,0 +1,0.573,0.224,0.249,0.403,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.476,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.217,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.35,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.228,0,0,0,0.0827 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.102,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.331,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.228,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0.0551,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0.331,0,0,0,0.0827 +1,0.56,0.0171,0.0495,0,0,0.339,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.272,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.307,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.0551,0,0,0,0.248 +1,0.56,0.0171,0.0495,0,0,0.0669,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.543,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0157,0.0495,0,0,0.272,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.283,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.9,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.5,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.102 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.178 +0.667,0.621,0.0895,0.321,0.42,0.9,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0.477,1,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0.682,1,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0.483,0.1,0,0,0,0,0.312 +0.667,0.621,0.0895,0.321,0.21,0,0,0,0,0,0.0894 +0.667,0.621,0.0997,0.312,0.21,0,0,0,0,0,0.0447 +0.667,0.621,0.0997,0.312,0.733,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.115 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.261 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.13 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.413 +1,0.651,0.157,0.426,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.319,0.4,0,0,0 +0.667,0.621,0.137,0.29,0,0,0.657,1,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,1,0,0.0827 +0.667,0.621,0.137,0.29,0,0,0.319,0,0.5,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.0906,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.283,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.567,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.0118,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.421,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.4,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0.248 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0.392,0.4,0,0,0,0,0 +0.667,0.683,0.532,0.635,0.483,1,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0.1,0,0,0,0,0 +0.667,0.683,0.532,0.635,0.42,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0.386,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.528,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.472,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.727,0,0,0,0,0,0 +1,0.6,0.307,0.35,0.534,0,0,0,0,0,0 +1,0.6,0.307,0.35,0.591,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.324,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.648,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.264 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.247 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.124 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.307 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.2 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0.272,0.4,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0.0472,1,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.547,0,1,0,0 +0.333,0.591,0.0578,0.181,0,0,0.35,0,0.5,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0.193,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0.236,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.681,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.319,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.429,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.465,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.228,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.295,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.248,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.228,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.587,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.26,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.339,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.429,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.272,0,0,0,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.366,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.579,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.657,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.476,0,0,0,0 +0.667,0.602,0.0846,0.174,0,0,0.591,0,0,0,0 +0.667,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.602,0.0846,0.174,0,0,0.26,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.5,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.0551,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.205,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.465,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.669,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.248,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.217,0,0,0,0.165 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0.295,0.9,0.0354,0,0,0,0 +1,0.774,0.34,0.567,0.375,1,0.146,0,0,0,0 +1,0.79,0.457,0.736,0.699,1,0.0906,0,0,0,0 +1,0.79,0.457,0.736,0.341,0.1,0.362,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.236,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.0906,0,0,0,0 +1,0.79,0.457,0.736,0.409,0,0.362,0,0,0,0 +1,0.79,0.457,0.736,0.443,0,0.205,0,0,0,0.0827 +1,0.774,0.64,0.895,0.443,0,0.272,0,0,0,0 +1,0.774,0.64,0.895,0.426,0,0.331,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.272,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.319,0,0,0,0 +1,0.774,0.64,0.895,0.517,0,0.169,0,0,0,0 +1,0.774,0.64,0.895,0.733,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.5,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.426,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.449,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.494,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.318,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.29,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.244,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.173,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.173,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.307,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.477,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.506,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.398,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.398,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.352,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.602,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0.432,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.375,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.051,0,0,0,0,0,0.4,0.0827 +1,0.56,0.0186,0.051,0,0,0,0,0,1,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.121 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.264 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.264 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.9,0.317 +0.333,0.586,0.0396,0.177,0,0,0,0,0,1,0.0522 +0.667,0.621,0.0764,0.318,0,0,0,0,0,1,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.289 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.18 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.472,0.9,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.477,1,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.312,1,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.608,1,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.398,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.545,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,1,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0.3,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.9,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.5,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0.415,0.4,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.33,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.227,1,0,0,0,0,0.331 +0.333,0.591,0.073,0.169,0.227,0.6,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.494,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.58,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0.364,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.358,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.284,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0.506,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.369,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.472,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0.722,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0.528,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0.517,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0.438,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.4,0 +0.333,0.617,0.103,0.188,0.324,0,0,0,0,1,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0.236,0.4,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,1,0,0,0 +0.667,0.704,0.232,0.395,0,0,0.669,0,1,0,0 +0.667,0.704,0.232,0.395,0,0,0.205,0,1,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,1,0,0 +0.667,0.704,0.232,0.395,0,0,0.169,0,0.1,0,0 +0.667,0.704,0.232,0.395,0,0,0.236,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0.272,0,0,0,0.165 +1,0.79,0.457,0.736,0,0,0.0906,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.315,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.228,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.465,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.398,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.193,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.291,0,0,0,0 +1,0.774,0.64,0.895,0,0,0.35,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.366,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.217,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.343,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.0354,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0.567,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0989 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.124 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.225 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.025 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.37 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0993 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.223 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0827 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,0,0.31 +0.667,0.633,0.124,0.222,0,0,0,0,0,0.4,0.126 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,0.5,0.248 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0.9,0.199 +1,0.774,0.64,0.895,0,0,0,0,0,0.5,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.266 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.199 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.197 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0937 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0234 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.228 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.178 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0,0.104 +1,0.62,0.453,0.5,0,0,0,0,0,0,0.13 +1,0.62,0.453,0.5,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.248 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.165 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0827 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.165 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0.165 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0,0,0,0,0,0,0 +1,0.621,0.0764,0.318,0.477,0.4,0,0,0,0,0 +1,0.621,0.0895,0.321,0.278,1,0,0,0,0,0 +1,0.621,0.0895,0.321,0.213,1,0,0,0,0,0.132 +1,0.621,0.0895,0.321,0.213,0.6,0,0,0,0,0 +1,0.651,0.126,0.456,0.443,0,0,0,0,0,0 +1,0.651,0.126,0.456,0.5,0,0,0,0,0,0 +1,0.651,0.126,0.456,0.705,0,0,0,0,0,0.269 +1,0.651,0.142,0.443,0,0,0,0,0,0,0.156 +1,0.651,0.142,0.443,0.415,0,0,0,0,0,0.165 +1,0.651,0.142,0.443,0.375,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0.699,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0.523,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.608,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0.352,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.415,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.466,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.31,0,0,0,0,0,0.0692 +0.333,0.591,0.0658,0.171,0.31,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.506,0,0,0,0,0,0.413 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.415,0.9,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.432,0.6,0,0,0,0,0.0827 +1,0.673,0.19,0.326,0.438,0,0,0,0,0,0 +1,0.673,0.19,0.326,0.625,0,0,0,0,0,0 +1,0.728,0.277,0.464,0.241,0,0,0,0,0.4,0.0827 +1,0.728,0.277,0.464,0.241,0,0,0,0,1,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.9,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.5,0.101 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.201 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0908 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.0681 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.165 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.4,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.224 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.0249 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.0991 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.149 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.9,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.5,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.104 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.078 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.174 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.0827 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.103 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0515 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.606 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.335 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.375 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.28 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.0229 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.331 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.9,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.5,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.413 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.196 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0.0936 +1,0.62,0.492,0.5,0,0,0,0,0,0,0.117 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.166 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.386 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0757 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0.0252 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0.248 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0.9,0 +1,0.586,0.0433,0.177,0,0,0,0,0,1,0 +1,0.586,0.0433,0.177,0,0,0,0,0,1,0 +1,0.586,0.0433,0.177,0,0,0,0,0,1,0 +1,0.621,0.109,0.318,0,0,0,0,0,1,0.165 +1,0.621,0.109,0.318,0,0,0,0,0,1,0 +1,0.621,0.109,0.318,0,0,0,0,0,1,0.413 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,1,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.8,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.158 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.249 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.311 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.9,0.61 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.5,0.177 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.0236 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.35 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.261 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.143 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.0827 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0.453,0.9,0,0,0 +1,0.79,0.547,0.736,0,0,0.339,0.5,0.5,0,0 +1,0.79,0.547,0.736,0,0,0,0,1,0,0 +1,0.79,0.547,0.736,0,0,0.228,0,1,0,0 +1,0.79,0.547,0.736,0,0,0.138,0,1,0,0 +1,0.79,0.547,0.736,0,0,0,0,1,0,0 +1,0.79,0.547,0.736,0,0,0.646,0,1,0,0 +1,0.774,0.719,0.895,0,0,0.228,0,1,0,0 +1,0.774,0.719,0.895,0,0,0,0,1,0,0 +1,0.774,0.719,0.895,0,0,0.228,0,0.3,0,0 +1,0.774,0.719,0.895,0,0,0.205,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0.228,0,0,0,0.248 +1,0.744,0.845,0.928,0,0,0.319,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.283,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.272,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.272,0,0,0,0 +1,0.744,0.845,0.928,0,0,0.217,0,0,0,0 +1,0.682,0.78,0.807,0,0,0.52,0,0,0,0 +1,0.682,0.78,0.807,0,0,0.228,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.101 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.202 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0.197 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.9,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,1,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,1,0 +0.667,0.58,0.0474,0.245,0.591,0.9,0,0,0,1,0 +0.667,0.58,0.0474,0.245,0.375,1,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0.534,1,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0.534,1,0,0,0,1,0.38 +0.667,0.611,0.0634,0.305,0.304,1,0,0,0,1,0.0827 +0.667,0.611,0.0634,0.305,0.304,1,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0,1,0,0,0,1,0 +0.333,0.586,0.0396,0.177,0,0.7,0,0,0,1,0.0925 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0925 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.9,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.9,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.5,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.413 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0827 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.232 +1,0.774,0.64,0.895,0.358,0.4,0,0,0,0,0.206 +1,0.774,0.64,0.895,0.574,1,0,0,0,0,0 +1,0.774,0.64,0.895,0,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.381,0.6,0,0,0,0,0 +1,0.744,0.791,0.928,0.443,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.801,0,0,0,0,0,0.225 +1,0.744,0.791,0.928,0.443,0,0,0,0,0,0.15 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0853 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0213 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0.223 +1,0.602,0.26,0.302,0,0,0,0,0,0,0.0248 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.195 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.0248 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.124 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0858 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.342 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0501 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.0827 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.568,0.9,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.318,1,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.398,1,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.352,0.1,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0.534,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.248 +0.333,0.591,0.0527,0.185,0.784,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.483,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0.608,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0.58,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.483,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.494,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.551,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.386,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.562,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.347,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.9,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.5,0.165 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.151 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0977 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.147 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.102 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.504 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.35 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.248 +1,0.79,0.457,0.736,0.409,0.4,0,0,0,0,0.165 +1,0.774,0.64,0.895,0.352,1,0,0,0,0,0 +1,0.774,0.64,0.895,0,0.1,0,0,0,0,0 +1,0.774,0.64,0.895,0.472,0,0.331,0.4,0,0,0.165 +1,0.774,0.64,0.895,0.438,0,0,1,0,0,0.165 +1,0.774,0.64,0.895,0.409,0,0.193,0,1,0,0 +1,0.774,0.64,0.895,0,0,0.0906,0,1,0,0 +1,0.744,0.791,0.928,0,0,0.567,0,1,0,0 +1,0.744,0.791,0.928,0,0,0.319,0,0.1,0,0 +1,0.744,0.791,0.928,0,0,0.228,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.283,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.0354,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.488,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.508,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.0354,0,0,0,0 +1,0.602,0.26,0.302,0,0,0.157,0,0,0,0 +1,0.581,0.162,0.2,0,0,0.657,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.1 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.2 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.242 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0627 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0209 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0827 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0979 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.196 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.331 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.9,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0.248 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.4,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.443,0.9,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0.33,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.54,1,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0.1,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0.568,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.489,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.244,0,0.283,0.9,0,0,0 +0.333,0.591,0.073,0.169,0.54,0,0.26,0.5,0.5,0,0.0827 +0.333,0.591,0.0767,0.17,0.432,0,0,0,1,0,0 +0.333,0.591,0.0767,0.17,0.5,0,0.862,0,1,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0.236,0,1,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,1,0,0 +0.333,0.591,0.0767,0.17,0,0,0.421,0,0.1,0,0 +0.333,0.591,0.0767,0.17,0,0,0.35,0,0,0,0.165 +0.333,0.602,0.0846,0.174,0,0,0.26,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.283,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.319,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0.398,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.269 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.259 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.186 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0.0827 +0.667,0.638,0.163,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0.506,0.9,0,0,0,0,0.145 +0.667,0.714,0.31,0.507,0.438,0.6,0,0,0,0,0 +1,0.774,0.64,0.895,0.5,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.733,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.1 +1,0.774,0.64,0.895,0.795,0,0,0,0,0,0.0501 +1,0.774,0.64,0.895,0.358,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.682,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.511,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.381,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.438,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.438,0,0.5,0.9,0,0,0.161 +1,0.744,0.791,0.928,0,0,0.331,0.5,0.5,0,0 +1,0.682,0.749,0.807,0,0,0,0,1,0,0 +1,0.682,0.749,0.807,0,0,0.272,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.258 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.258 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0862 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.259 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.13 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.223 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.199 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.114 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0955 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.167 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.165 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0.272,0.4,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,1,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.169,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0.114,0,0.5,0,0 +0.333,0.591,0.0629,0.175,0,0,0.406,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.547,0,0,0,0.248 +0.333,0.591,0.0629,0.175,0,0,0.0906,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.0118,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.236,0,0,0,0.165 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.205,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.452 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.667,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.667,0.602,0.0846,0.174,0,0,0,0,0,1,0.331 +0.667,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0.165 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0.0827 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0.0903 +0.333,0.638,0.163,0.278,0,0,0,0,0,1,0.0451 +0.333,0.638,0.163,0.278,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +1,0.79,0.457,0.736,0,0,0,0,0,1,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,1,0 +1,0.774,0.64,0.895,0,0,0,0,0,1,0 +1,0.774,0.64,0.895,0,0,0,0,0,1,0 +1,0.774,0.64,0.895,0,0,0,0,0,1,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,1,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,1,0.248 +0.667,0.704,0.432,0.613,0,0,0,0,0,1,0 +1,0.744,0.791,0.928,0,0,0,0,0,1,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.8,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0969 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0969 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.165 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0.9,0 +1,0.586,0.0396,0.177,0,0,0,0,0,1,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,1,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,1,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.331 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.248 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.248 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.248 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.534,0.9,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0.545,1,0,0,0,0,0.248 +0.333,0.617,0.103,0.188,0.545,1,0,0,0,0,0 +0.333,0.617,0.103,0.188,0.301,1,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0.489,1,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,1,0,0,0,0,0 +0.333,0.633,0.124,0.222,0.42,0.2,0,0,0,0,0 +0.333,0.633,0.124,0.222,0.426,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0.653,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0.222 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.26 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.342 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.534,0.4,0,0,0,0,0 +1,0.642,0.505,0.555,0.511,1,0,0,0,0,0 +1,0.642,0.505,0.555,0,1,0,0,0,0,0 +1,0.642,0.505,0.555,0.403,0.6,0,0,0,0,0 +1,0.642,0.505,0.555,0.5,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.619,0,0,0,0,0,0 +0.667,0.602,0.26,0.302,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.0827 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.165 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.248 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0.0827 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.0827 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.165 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.248 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.0827 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0.331 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.169,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.169,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.169,0,0,0,0,0,0,0.165 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.248 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.102 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.205 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.171 +1,0.714,0.371,0.507,0,0,0,0,0,0,0.0827 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0.9,0 +1,0.714,0.371,0.507,0,0,0,0,0,0.5,0.0827 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0.4,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,1,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0803,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0803,0.185,0,0,0,0,0,0,0.248 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0.517,0.4,0,0,0,0,0.0827 +0.667,0.621,0.169,0.312,0.466,1,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,1,0,0,0,0,0 +0.667,0.621,0.169,0.312,0.665,0.6,0,0,0,0,0.165 +0.667,0.621,0.169,0.312,0.466,0,0,0,0,0,0.0827 +0.333,0.591,0.0934,0.181,0.466,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0.449,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0.318,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0.358,0,0,0,0,0,0 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.165 +0.333,0.591,0.125,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0,0.165 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0.331 +0.333,0.602,0.154,0.174,0,0,0,0,0,0,0.165 +0.333,0.602,0.154,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.0827 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.094 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.047 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.207 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.259 +1,0.79,0.547,0.736,0,0,0,0,0,0.4,0.424 +1,0.79,0.547,0.736,0,0,0,0,0,1,0.29 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0.0827 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0.0827 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.248 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0945 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0709 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.165 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.248 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.217 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0241 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0.0953 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0715 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.252 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.158 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.2 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.227 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.126 +0.333,0.591,0.0658,0.171,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.248 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.0827 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0.307,0.9,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0.283,0.5,0.5,0,0 +1,0.774,0.34,0.567,0,0,0.531,0,1,0,0 +1,0.774,0.34,0.567,0,0,0.283,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.228,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.75,0.9,0.193,0,0,0,0 +1,0.79,0.457,0.736,0.381,0.6,0.236,0,0,0,0 +1,0.79,0.457,0.736,0.517,0,0.429,0,0,0,0 +1,0.79,0.457,0.736,0.562,0,0.126,0,0,0,0.248 +1,0.79,0.457,0.736,0,0,0.543,0,0,0,0 +1,0.774,0.64,0.895,0.347,0,0.26,0,0,0,0 +1,0.774,0.64,0.895,0.295,0,0,0,0,0,0.227 +1,0.774,0.64,0.895,0.523,0,0,0,0,0,0.216 +1,0.774,0.64,0.895,0.523,0,0,0,0,0,0.165 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.184 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.202 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.183 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.175 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.9,0.207 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.5,0.0827 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.024 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.24 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.22 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.0244 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.132 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.4,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,1,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.248 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.165 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0827 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0.489,0.4,0,0,0,0,0 +1,0.744,0.791,0.928,0.511,1,0,0,0,0,0 +1,0.744,0.791,0.928,0,1,0,0,0,0,0 +1,0.744,0.791,0.928,0.517,0.6,0,0,0,0,0 +1,0.744,0.791,0.928,0.619,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.534,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.449,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.585,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.215 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0239 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0904 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.231 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.9,0.0827 +0.667,0.586,0.0396,0.177,0,0,0,0,0,1,0.0998 +0.667,0.611,0.0634,0.305,0,0,0,0,0,1,0.0499 +0.667,0.611,0.0634,0.305,0,0,0,0,0,1,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,1,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.9,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.442 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.15 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.248 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.248 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0988 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0,0,0,0,0.0657 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.198 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.248 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.248 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.234 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.026 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0,0.192 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0931 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.248 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0993 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0827 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.37 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.213 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.0862 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.165 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.496,0.9,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0.283,0.5,0.5,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0.52,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.126,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0.283,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0.126,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.283,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.102,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.406,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0.248,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.0551,0,0,0,0.165 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.307,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.283,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.429,0,0,0,0.248 +0.333,0.591,0.0767,0.17,0,0,0.0551,0,0,0,0.331 +0.333,0.591,0.0767,0.17,0,0,0.488,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0.587,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.0118,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.9,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.5,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0.248 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.4,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.445 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.0232 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0926 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.9,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.5,0.0944 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.142 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.252 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.248 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0.319,0.9,0,0,0.248 +0.667,0.591,0.0462,0.184,0,0,0.236,0.5,0.5,0,0.42 +0.667,0.621,0.0895,0.321,0,0,0,0,1,0,0.255 +0.667,0.621,0.0895,0.321,0,0,0.26,0,1,0,0.182 +0.667,0.621,0.0895,0.321,0,0,0.193,0,1,0,0 +0.667,0.621,0.0895,0.321,0,0,0,0,1,0,0 +0.667,0.621,0.0895,0.321,0,0,0.157,0,1,0,0 +0.667,0.621,0.0895,0.321,0,0,0.331,0,1,0,0.267 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0.534 +0.667,0.621,0.0997,0.312,0,0,0.465,0,1,0,0.0827 +0.667,0.621,0.0997,0.312,0,0,0.748,0,1,0,0.165 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0.217 +0.667,0.621,0.0997,0.312,0,0,0,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,1,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0.5,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0944 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0236 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.648 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0261 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.1 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.151 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.102 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.236 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.264 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.099 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.9,0 +0.667,0.621,0.137,0.29,0,0,0.0236,0.4,0,0.5,0 +0.667,0.642,0.153,0.298,0,0,0.126,1,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.0787,0,1,0,0 +1,0.682,0.222,0.422,0,0,0.0118,0,0.5,0,0 +1,0.682,0.222,0.422,0,0,0,0,0,0,0 +1,0.682,0.222,0.422,0,0,0.465,0,0,0,0 +1,0.682,0.222,0.422,0,0,0.283,0,0,0,0.0827 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0.228,0,0,0,0.248 +1,0.728,0.277,0.464,0,0,0.0906,0,0,0,0.0827 +1,0.728,0.277,0.464,0,0,0,0,0,0,0 +1,0.728,0.277,0.464,0,0,0.26,0,0,0,0 +1,0.728,0.277,0.464,0,0,0.0236,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.331,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.26,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.295,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0.205,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.693,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.283,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.161,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.398,0,0,0,0.221 +1,0.79,0.457,0.736,0,0,0.102,0,0,0,0.0738 +1,0.774,0.64,0.895,0,0,0.0551,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.235 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.426 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.185,0.3,0,0,0,0,0,0,0.0827 +1,0.621,0.185,0.3,0,0,0,0,0,0,0 +1,0.621,0.185,0.3,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.149 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.165 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.2 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.193 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.0827 +1,0.651,0.34,0.409,0,0,0,0,0,0,0 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.263 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.288 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.0827 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.165 +1,0.651,0.388,0.41,0,0,0,0,0,0,0 +1,0.651,0.388,0.41,0,0,0,0,0,0,0 +1,0.651,0.388,0.41,0,0,0,0,0,0,0.385 +1,0.651,0.388,0.41,0,0,0,0,0,0.4,0.263 +1,0.651,0.388,0.41,0,0,0,0,0,1,0.0827 +1,0.651,0.388,0.41,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.319 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.102 +1,0.682,0.427,0.422,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.141 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.248 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.18 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.0489 +1,0.728,0.449,0.464,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.464,0.567,0,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.0827 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0,0.165 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0.144 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0.224 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.0995 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.144 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0.248 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.0827 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.102 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.128 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0.212 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.244,0.443,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0.4,0 +1,0.651,0.268,0.426,0,0,0,0,0,1,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.231 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.0257 +1,0.651,0.268,0.426,0,0,0,0,0,0,0 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.3 +0.667,0.621,0.265,0.29,0,0,0.272,0.4,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,1,0,0,0 +0.667,0.621,0.265,0.29,0,0,0.236,0,1,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0.205,0,1,0,0.262 +0.667,0.642,0.291,0.298,0,0,0,0,1,0,0.379 +0.667,0.642,0.291,0.298,0,0,0.272,0,0.1,0,0.0827 +0.667,0.642,0.291,0.298,0,0,0.567,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0.283,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0.126,0,0,0,0.287 +0.667,0.673,0.305,0.326,0,0,0.205,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0.0906,0,0,0,0.0827 +0.667,0.673,0.305,0.326,0,0,0.126,0,0,0,0.0953 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.0715 +0.667,0.673,0.305,0.326,0,0,0.398,0,0,0,0.165 +0.667,0.704,0.315,0.395,0,0,0.283,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0.5,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0.248,0,0,0,0.165 +0.667,0.704,0.315,0.395,0,0,0,0,0,0,0.248 +0.333,0.633,0.167,0.222,0,0,0.433,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.374,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.228,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.555,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0.331,0,0,0,0 +0.333,0.638,0.194,0.278,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0.26,0,0,0,0.146 +0.667,0.704,0.485,0.613,0,0,0.193,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.185,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.398,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.146,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0.0354,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.296 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.248 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0997 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.199 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.9,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,1,0 +1,0.589,0.0632,0.342,0,0,0,0,0,1,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.226 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.334 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.213 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.099 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0495 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.195 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0243 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.434 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.134 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.146 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.258 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.387 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.296 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.189 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0749 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.628 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.4,0.13 +0.333,0.591,0.0658,0.171,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.667,0.621,0.116,0.292,0,0,0,0,0,0,0.341 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0464 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.165 +1,0.744,0.791,0.928,0.341,0.4,0,0,0,0,0 +1,0.683,0.532,0.635,0.403,1,0,0,0,0,0 +1,0.683,0.532,0.635,0.213,1,0,0,0,0,0 +1,0.683,0.532,0.635,0.213,1,0,0,0,0,0 +1,0.642,0.505,0.555,0.557,1,0,0,0,0,0 +1,0.642,0.505,0.555,0.364,0.2,0,0,0,0,0 +1,0.642,0.505,0.555,0.415,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0901 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0858 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.418 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0955 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.0477 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.0827 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0 +1,0.635,0.0871,0.433,0,0,0.374,0.9,0,0,0.173 +1,0.635,0.0871,0.433,0,0,0.0118,0.5,0.5,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0.248,0,1,0,0 +0.667,0.611,0.0634,0.305,0,0,0.429,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0.228,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.35,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.228,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.114,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0.228,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.307,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.417,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.114,0,0,0,0.0827 +0.667,0.621,0.0895,0.321,0,0,0.567,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.52,0,0,0,0.0827 +0.667,0.591,0.0527,0.185,0,0,0.26,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.472,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.146,0,0,0,0.329 +0.667,0.621,0.0997,0.312,0,0,0.26,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.736,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0519 +0.667,0.621,0.0997,0.312,0,0,0.126,0,0,0,0.259 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0.0236,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.272,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.634,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0.126,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.272,0,0,0,0.0827 +0.333,0.591,0.0658,0.171,0,0,0.409,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0.472,0,0,0,0.248 +0.333,0.591,0.0658,0.171,0,0,0.283,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.0906,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.457,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.0236,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.339,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0.0906,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.0354,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.134,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.264,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.614,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0.307,0,0,0,0.248 +0.667,0.621,0.137,0.29,0,0,0.236,0,0,0,0.165 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.331 +0.667,0.642,0.153,0.298,0,0,0.26,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.283,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.429,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0.35,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.0787,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.181,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.61,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.441,0,0,0.4,0.0827 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0.488,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.35,0,0,0,0.248 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.283,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0.508,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.291,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.217,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.476,0,0,0,0 +1,0.79,0.457,0.736,0,0,0.236,0,0,0,0.0827 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.103 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.129 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.113 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.1 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.251 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0251 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0951 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0238 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.228 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0506 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0457 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.248 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.266 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.125 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.145 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.248 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.23 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.248 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.248 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.248 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.4,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.248 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.165 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.438,0.9,0,0,0,0,0 +1,0.774,0.64,0.895,0.392,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.369,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.551,1,0,0,0,0,0 +1,0.774,0.64,0.895,0.193,1,0,0,0,0,0 +1,0.744,0.791,0.928,0.193,1,0,0,0,0,0 +1,0.744,0.791,0.928,0.585,1,0,0,0,0,0 +1,0.744,0.791,0.928,0,0.7,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.217 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.22 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.165 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.536 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0.0501 +1,0.559,0.0314,0.114,0,0,0,0,0,0,0 +1,0.559,0.0314,0.114,0,0,0,0,0,0.9,0 +1,0.559,0.0314,0.114,0,0,0,0,0,1,0.186 +1,0.58,0.0474,0.245,0,0,0,0,0,1,0.0778 +1,0.58,0.0474,0.245,0,0,0,0,0,1,0.0827 +1,0.58,0.0474,0.245,0,0,0,0,0,1,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0.9,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.417 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.165 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.0919 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.023 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.0827 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.127 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.4,0.248 +0.667,0.704,0.232,0.395,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.774,0.34,0.567,0.477,0.4,0,0,0,0,0 +1,0.774,0.34,0.567,0.364,1,0,0,0,0,0 +1,0.774,0.34,0.567,0,1,0,0,0,0,0.0827 +0.667,0.704,0.232,0.395,0.42,0.6,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.511,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0.466,0,0,0,0,0,0.21 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.568,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.551,0,0,0,0,0,0.177 +1,0.774,0.64,0.895,0.506,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.824,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.704,0.432,0.613,0.438,0,0,0,0,0,0 +1,0.704,0.432,0.613,0.324,0,0,0,0,0,0 +1,0.704,0.432,0.613,0.642,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.568,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.5,0,0,0,0,0,0.0827 +1,0.683,0.532,0.635,0.506,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.551,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.466,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.767,0,0,0,0,0,0.165 +1,0.642,0.505,0.555,0.614,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.172 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0437 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0656 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.331 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.9,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.5,0.0827 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0827 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.9,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.5,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0827 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.165 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0514 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0451 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.113 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0,0,0.0827 +1,0.611,0.0685,0.305,0,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0,0,0.208 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.103 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.155 +1,0.621,0.109,0.318,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.177 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0,0.0474 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.118 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0984 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.197 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.311 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.241 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.331 +1,0.651,0.268,0.426,0,0,0,0,0,0,0.165 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.0827 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.165 +1,0.651,0.288,0.413,0,0,0,0,0,0,0 +1,0.621,0.198,0.292,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0.0827 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.233,0.289,0,0,0,0,0,0,0 +1,0.621,0.265,0.29,0,0,0,0,0,0.4,0.165 +1,0.621,0.265,0.29,0,0,0,0,0,1,0 +1,0.621,0.265,0.29,0,0,0,0,0,1,0.0827 +1,0.621,0.265,0.29,0,0,0,0,0,1,0 +1,0.621,0.265,0.29,0,0,0,0,0,0.9,0 +1,0.621,0.265,0.29,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0.331 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0 +1,0.602,0.154,0.174,0,0,0,0,0,0,0.0827 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.165 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.0827 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.0827 +1,0.704,0.485,0.613,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.548 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.0905 +1,0.704,0.485,0.613,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0.152 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.557,0.0705,0.099,0,0,0,0,0,0,0 +1,0.557,0.0705,0.099,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0.0853 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.33 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0471 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0514 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.205 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.243 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0514 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0771 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.175 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0751 +1,0.619,0.144,0.299,0,0,0,0,0,0.2,0 +1,0.619,0.144,0.299,0,0,0,0,0,1,0 +1,0.619,0.144,0.299,0,0,0,0,0,0.2,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.165 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.0827 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.165 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.0407 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.0407 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.165 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0.171 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0.0244 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.182 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0521 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.0515 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.258 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.248 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0.165 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0.165 +0.667,0.701,0.489,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0,0 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0,0 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.0493 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.0739 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.0827 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.171 +1,0.568,0.157,0.183,0,0,0,0,0,0,0.122 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0.165 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0.0827 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0.184 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0.253 +1,0.578,0.0478,0.236,0,0,0,0,0,0.9,0.152 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.179 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.144 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.231 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0257 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.574,0.9,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.295,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.347,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.341,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.506,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.244,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.244,1,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.443,0.5,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.341,0.4,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.392,1,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,1,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0.511,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.557,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.381,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.409,1,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.318,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0.693,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0.523,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0.602,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0.358,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0.517,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0.213,0,0,0,0,0,0.0827 +0.667,0.64,0.155,0.269,0.213,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0.381,0,0,0,0,0,0 +1,0.679,0.224,0.379,0.341,0,0,0,0,0,0.165 +1,0.64,0.155,0.269,0.324,0,0,0,0,0,0.165 +1,0.64,0.155,0.269,0.489,0,0,0,0,0,0 +1,0.64,0.155,0.269,0,0,0,0,0,0,0.165 +1,0.671,0.191,0.274,0.67,0,0,0,0,0,0.0827 +1,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.671,0.191,0.274,0.324,0,0,0,0,0,0.0827 +1,0.671,0.191,0.274,0.75,0,0,0,0,0,0 +1,0.671,0.191,0.274,0,0,0,0,0,0,0.0827 +1,0.671,0.191,0.274,0.443,0,0,0,0,0.4,0.0827 +1,0.701,0.234,0.291,0.426,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,1,0 +1,0.701,0.234,0.291,0,0,0,0,0,0.2,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0966 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.145 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.165 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0.259 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0827 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0827 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.469 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.261 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.138 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0827 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.144 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0827 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.098 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0735 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.387 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.147 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.205 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.228 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.184 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0997 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.175 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.0774 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.423 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.258 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.181 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.9,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,1,0.248 +0.333,0.616,0.104,0.162,0,0,0,0,0,1,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,1,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,1,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.7,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.0827 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.372 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.165 +1,0.681,0.537,0.538,0,0,0,0,0,0,0.165 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.476 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.374 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0977 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.122 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.0827 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.248 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.208 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.188 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.113 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.103 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.0258 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.0827 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.219 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.165 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.0827 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.215 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0239 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.096 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.072 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.226 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.201 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.3 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0488 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.244 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0488 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.228 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0964 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0964 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.115 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.0827 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.0996 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.125 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.331 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.0827 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.0827 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.165 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.331 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.182 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.4,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,1,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.117 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0999 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.025 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.28 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0231 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.201 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.248 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.181 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0737 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.224 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.0499 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.0618 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.248 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.9,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.5,0.248 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.165 +1,0.725,0.279,0.386,0,0,0,0,0,0,0.248 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.534,0.4,0,0,0,0,0 +1,0.787,0.461,0.484,0.54,1,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.778,0,0,0,0,0,0.186 +1,0.771,0.646,0.619,0.551,0,0,0,0,0,0.181 +1,0.771,0.646,0.619,0.727,0,0,0,0,0.9,0 +1,0.771,0.646,0.619,0.29,0,0,0,0,0.5,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0702 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.14 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.248 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0874 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0437 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0.331 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0827 +1,0.619,0.11,0.301,0,0,0,0,0,0,0.0827 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0.559,0.7,0,0,0.0827 +1,0.619,0.144,0.299,0,0,0.594,0.8,0.2,0,0 +1,0.619,0.144,0.299,0,0,0,0,1,0,0 +1,0.619,0.144,0.299,0,0,0.283,0,1,0,0.165 +1,0.619,0.144,0.299,0,0,0.272,0,0.7,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0.425,0,0,0,0.248 +1,0.619,0.17,0.291,0,0,0.484,0,0,0,0.0827 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0.52,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.42,0.2,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0,1,0,0,0,0,0.248 +0.333,0.59,0.109,0.16,0.409,1,0,0,0,0,0.248 +0.333,0.59,0.109,0.16,0.642,0.7,0.283,0.2,0,0,0.248 +0.333,0.59,0.109,0.16,0.472,0,0,1,0,0,0 +0.333,0.59,0.109,0.16,0,0,0.283,0.3,0.7,0,0.0827 +1,0.619,0.234,0.269,0,0,0.283,0,1,0,0 +1,0.619,0.234,0.269,0,0,0.26,0,1,0,0 +1,0.619,0.234,0.269,0,0,0.228,0,0.2,0,0.0827 +1,0.619,0.234,0.269,0,0,0.307,0,0,0,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0 +1,0.619,0.234,0.269,0,0,0.283,0,0,0,0 +1,0.619,0.267,0.268,0,0,0.0472,0,0,0,0 +1,0.619,0.267,0.268,0,0,0.512,0,0,0,0 +1,0.619,0.267,0.268,0,0,0.272,0,0,0,0.0827 +1,0.619,0.267,0.268,0,0,0,0,0,0,0 +1,0.619,0.267,0.268,0,0,0,0,0,0,0 +1,0.619,0.267,0.268,0,0,0,0,0,0,0 +1,0.64,0.293,0.269,0,0,0,0,0,0,0.165 +1,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +1,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.248 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.468,0.412,0.602,0.2,0,0,0,0,0 +1,0.771,0.468,0.412,0,1,0,0,0,0,0 +1,0.771,0.468,0.412,0.528,1,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0.443,1,0,0,0,0,0 +1,0.787,0.551,0.484,0,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.472,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.352,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.562,1,0,0,0,0,0 +1,0.787,0.551,0.484,0.312,0.2,0,0,0,0,0.417 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0722 +1,0.771,0.725,0.619,0.557,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.625,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.551,0,0,0,0,0,0.18 +1,0.771,0.725,0.619,0.631,0,0,0,0,0,0.155 +1,0.771,0.725,0.619,0.179,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.179,0,0,0,0,0,0.0827 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0827 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.179 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.0768 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.051 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.255 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.185 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.248 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0827 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0478 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.119 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.165 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0.258 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.333 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0251 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0.0827 +0.667,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0.7,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.7,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.0512 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.256 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.0256 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.0827 +1,0.619,0.234,0.269,0,0,0,0,0,0,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.248 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0.413 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.165 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.178 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0.286 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0511 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.255 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.7,0.0766 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.7,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.248 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.165 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.0827 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.186 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.234 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.117 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.104 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.0782 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0488 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0981 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.123 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.9,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.5,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0.0966 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.9,0.248 +1,0.771,0.343,0.412,0,0,0,0,0,1,0.0827 +1,0.771,0.343,0.412,0,0,0,0,0,0.9,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.12 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.103 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0517 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.202 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.413 +1,0.771,0.646,0.619,0.466,0.4,0,0,0,0,0.284 +1,0.741,0.797,0.783,0.392,1,0,0,0,0,0.402 +1,0.741,0.797,0.783,0,1,0,0,0,0,0 +1,0.741,0.797,0.783,0.648,0.5,0.283,0.4,0,0,0 +1,0.741,0.797,0.783,0.403,0,0,1,0,0,0 +1,0.741,0.797,0.783,0.636,0,0.445,0.1,0.9,0,0.192 +1,0.741,0.797,0.783,0.415,0,0.248,0,0.5,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.511,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.597,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.636,0,0,0,0,0,0 +1,0.679,0.756,0.88,0.46,0,0,0,0,0,0 +1,0.64,0.509,0.603,0.25,0,0,0,0,0,0 +1,0.599,0.31,0.415,0.25,0,0,0,0,0,0 +1,0.599,0.31,0.415,0.438,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.265 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.182 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.563 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.314 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.104 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.181 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.163 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0888 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0444 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.4,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,1,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.199 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.9,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.5,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.165 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.0895 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0224 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.3 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.248 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.429 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.0245 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.262 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.222 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.148 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.0723 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0.117 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.0995 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.0746 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0.301 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0919 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.023 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.165 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.165 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.297 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.0238 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0827 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.165 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.165 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.221 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.248 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.262 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.379 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.248 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.528,0.4,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.481,1,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.241,1,0,0,0,0,0 +0.667,0.64,0.155,0.269,0.466,0.5,0,0,0,0,0.165 +0.667,0.671,0.191,0.274,0.369,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0.534,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0.54,0.4,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.602,1,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,1,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.273,0.5,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.665,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.375,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0984 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0492 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.9,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,1,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.9,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.104 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0879 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.044 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.123 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0827 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.0827 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0.165 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0.294 +0.667,0.56,0.0238,0.0798,0,0,0,0,0,0,0.107 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.149 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.149 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.9,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.5,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.165 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0986 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.148 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0827 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.092 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.069 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.248 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.9,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.5,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.248 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.248 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.0827 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.9,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.5,0.248 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.248 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0843 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0211 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0.0827 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0482 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.241 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0297,0.143,0,0,0,0,0,0,0.425 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.234 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.13 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.0713 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0.7,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.7,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0641,0.175,0.466,0.2,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,1,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0.278,1,0,0,0,0,0 +0.667,0.619,0.144,0.299,0.409,0.7,0,0,0,0,0.0827 +0.667,0.619,0.144,0.299,0.466,0,0,0,0,0,0.165 +0.667,0.619,0.144,0.299,0.562,0,0,0,0,0,0 +0.667,0.619,0.144,0.299,0.722,0,0,0,0,0,0 +0.667,0.619,0.144,0.299,0,0,0,0,0,0,0 +0.667,0.619,0.144,0.299,0.46,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.449,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.312,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.409,0,0,0,0,0,0.331 +0.667,0.619,0.17,0.291,0,0,0,0,0,0,0.331 +0.667,0.619,0.17,0.291,0.347,0,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.341,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.625,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.517,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.551,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.312,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.392,0,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0.415,0,0,0,0,0,0.331 +0.333,0.59,0.109,0.16,0.392,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.248 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.2,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,1,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.2,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.165 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.165 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0482 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.193 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0.7,0.331 +1,0.648,0.206,0.424,0,0,0,0,0,1,0 +1,0.648,0.206,0.424,0,0,0,0,0,1,0 +1,0.648,0.206,0.424,0,0,0,0,0,0.1,0 +1,0.648,0.206,0.424,0,0,0,0,0,0,0 +1,0.648,0.206,0.424,0,0,0,0,0,0,0 +1,0.648,0.206,0.424,0.545,0.7,0,0,0,0,0 +1,0.648,0.246,0.411,0.358,1,0,0,0,0,0 +1,0.648,0.246,0.411,0.58,1,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.205,1,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.205,1,0,0,0,0,0 +0.667,0.619,0.17,0.291,0.5,1,0,0,0,0,0 +0.333,0.59,0.0941,0.17,0.381,0.2,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.5,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.126,0.159,0.443,0.2,0,0,0,0,0.0827 +0.333,0.59,0.126,0.159,0,1,0,0,0,0,0.165 +0.333,0.59,0.126,0.159,0.523,1,0,0,0,0,0.165 +0.333,0.59,0.142,0.159,0.46,0.7,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0.449,0,0,0,0,0,0.0827 +0.333,0.59,0.142,0.159,0.455,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0.705,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0.381,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0.409,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +1,0.64,0.293,0.269,0.324,0,0,0,0,0,0 +1,0.64,0.293,0.269,0.449,0,0,0,0,0,0 +1,0.64,0.293,0.269,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0.2,0 +1,0.771,0.468,0.412,0,0,0,0,0,1,0 +1,0.771,0.468,0.412,0,0,0,0,0,1,0 +1,0.787,0.551,0.484,0,0,0,0,0,0.6,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0.2,0 +1,0.741,0.852,0.783,0,0,0,0,0,1,0 +1,0.741,0.852,0.783,0,0,0,0,0,0.2,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0507 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.203 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.125,0.17,0,0,0.272,0.9,0,0,0.165 +0.667,0.631,0.125,0.17,0,0,0.331,0.6,0.4,0,0 +1,0.701,0.234,0.291,0,0,0,0,1,0,0 +1,0.701,0.234,0.291,0,0,0.173,0,1,0,0 +1,0.701,0.234,0.291,0,0,0.272,0,1,0,0 +1,0.712,0.313,0.339,0,0,0.319,0,1,0,0 +1,0.712,0.313,0.339,0,0,0.457,0,1,0,0 +1,0.712,0.313,0.339,0,0,0.146,0,0.5,0,0.0827 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0.236,0,0,0,0 +1,0.712,0.313,0.339,0,0,0.0236,0,0,0,0.0827 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.386,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.398,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.76,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.205,0,0,0,0 +1,0.701,0.436,0.429,0,0,0.126,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0.283,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0.9,0 +1,0.681,0.537,0.538,0,0,0,0,0,0.5,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0827 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.103 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.248 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.331 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.228,0.4,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.433,1,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.543,0.1,0.9,0,0 +0.333,0.59,0.0633,0.164,0,0,0.362,0,0.5,0,0 +0.333,0.59,0.0633,0.164,0,0,0.283,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.0354,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.0551,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0.35,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.9,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.5,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.145 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.0966 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.0483 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.203 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.401 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.165 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.331 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0.523,0.9,0,0,0,0,0 +1,0.681,0.537,0.538,0.443,1,0,0,0,0,0.165 +1,0.681,0.537,0.538,0.739,1,0,0,0,0,0.0827 +1,0.681,0.537,0.538,0.381,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0.42,0,0,0,0,0,0 +1,0.64,0.509,0.603,0.409,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0827 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.9,0.0515 +1,0.56,0.0238,0.0798,0,0,0,0,0,1,0.0773 +1,0.557,0.0316,0.11,0,0,0,0,0,1,0 +1,0.557,0.0316,0.11,0,0,0,0,0,1,0 +1,0.557,0.0316,0.11,0,0,0,0,0,1,0.094 +1,0.578,0.0478,0.236,0,0,0,0,0,0.7,0.0235 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.165 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.137 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0.101 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.33,0.9,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.318,0.5,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.477,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.5,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.46,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.25,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.25,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.9,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,1,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.9,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.331 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.248 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.114,0.4,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.248,1,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.398,0.1,0.9,0,0 +0.667,0.712,0.313,0.339,0,0,0.193,0,0.5,0,0.165 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0.26,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0.26,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.362,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.264,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.228,0,0,0,0.165 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.295,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.795,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.421,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.272,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.0551,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.272,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.276,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.248 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0.331 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.4,0.248 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.073 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +1,0.578,0.0478,0.236,0,0,0,0,0,1,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.7,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.189 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0255 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.134 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.318 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.427 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.42,0.9,0,0,0,0,0 +1,0.787,0.461,0.484,0.409,1,0,0,0,0,0 +1,0.787,0.461,0.484,0.301,1,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0.9,0.413 +1,0.787,0.461,0.484,0,0,0,0,0,0.5,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.248 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.1 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.1 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.225 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.0899 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.0225 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.655 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.186 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.181 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.397 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.103 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.165 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.5,0.9,0,0,0,0,0 +1,0.771,0.343,0.412,0.534,1,0,0,0,0,0 +1,0.771,0.343,0.412,0.415,1,0,0,0,0,0 +1,0.771,0.343,0.412,0.528,0,0,0,0,0,0.0827 +1,0.771,0.343,0.412,0.332,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.332,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.551,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.489,0,0,0,0,0,0.0827 +1,0.787,0.461,0.484,0.608,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.5,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.42,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.568,0,0,0,0,0,0.0827 +1,0.771,0.646,0.619,0.324,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.307,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.29,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.293,0,0,0,0,0,0.248 +1,0.741,0.797,0.783,0.293,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0.568,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.472,0,0,0,0,0,0.216 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.165 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.165 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.052 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.13 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.2,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,1,0 +0.667,0.619,0.186,0.279,0,0,0,0,0,1,0 +1,0.619,0.199,0.271,0,0,0,0,0,0.6,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +1,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.331 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.165 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.248 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.331 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.248 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.2,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,1,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,1,0.154 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.6,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.132 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.529 +1,0.771,0.468,0.412,0,0,0,0,0,0,0.419 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.214 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.131 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0237 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0947 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0505 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.101 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0827 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0827 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0481 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.217 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0223,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0.165 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.165 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.248 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.0827 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0.0827 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.0827 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.2,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,1,0 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.2,0.0827 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0.602,0.7,0,0,0,0,0 +1,0.787,0.551,0.484,0.261,0.7,0,0,0,0,0 +1,0.787,0.551,0.484,0.318,0,0,0,0,0,0 +1,0.787,0.551,0.484,0.403,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.415,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.449,0,0,0,0,0,0 +1,0.771,0.725,0.619,0.756,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.403,0,0,0,0,0,0.0827 +1,0.741,0.852,0.783,0.545,0,0,0,0,0,0.165 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.381,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.636,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.369,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.494,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.597,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0.5,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.341,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.551,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.591,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.506,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.33,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.614,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.477,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0512 +1,0.565,0.0875,0.116,0.29,0,0,0,0,0,0.179 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.567,0.9,0,0,0.116 +1,0.562,0.0159,0.0495,0,0,0.0118,1,0,0,0 +1,0.578,0.0478,0.236,0,0,0.228,1,0,0,0 +1,0.578,0.0478,0.236,0,0,0.0906,0.2,0.8,0.9,0 +1,0.578,0.0478,0.236,0,0,0.228,0,0.6,0.5,0.0985 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.0739 +1,0.633,0.0879,0.417,0,0,0.339,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0.331,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0.453,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0.0354,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.0236,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.134,0,0,0,0.248 +1,0.648,0.108,0.427,0,0,0.283,0,0,0,0.0827 +1,0.648,0.108,0.427,0,0,0,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.161,0,0,0,0 +1,0.648,0.108,0.427,0,0,0.26,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.283,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.236,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.217,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.126,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.248,0,0,0,0 +1,0.648,0.127,0.424,0,0,0.339,0,0,0,0 +1,0.648,0.143,0.411,0,0,0,0,0,0,0 +1,0.648,0.143,0.411,0,0,0.646,0,0,0.9,0 +1,0.648,0.143,0.411,0,0,0.433,0,0,0.5,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0.26,0,0,0,0.165 +0.667,0.619,0.1,0.291,0,0,0.217,0,0,0,0.0827 +0.667,0.619,0.111,0.279,0,0,0.567,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0.429,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0.52,0,0,0,0.165 +0.667,0.619,0.111,0.279,0,0,0.217,0,0,0,0.0827 +0.667,0.619,0.111,0.279,0.392,0.9,0,0,0,0,0 +0.667,0.619,0.111,0.279,0.614,1,0,0,0,0,0 +0.667,0.619,0.117,0.271,0.239,1,0,0,0,0,0 +0.667,0.619,0.117,0.271,0.545,0,0,0,0,0,0.331 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.248 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.165 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.0827 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.9,0 +0.333,0.616,0.104,0.162,0,0,0.0551,0.4,0,1,0.165 +0.333,0.631,0.125,0.17,0,0,0.35,1,0,1,0.331 +0.333,0.631,0.125,0.17,0,0,0.634,1,0,1,0 +0.667,0.701,0.234,0.291,0,0,0,0.7,0.3,1,0 +0.667,0.701,0.234,0.291,0,0,0,0,1,1,0 +0.667,0.701,0.234,0.291,0,0,0,0,1,1,0 +0.667,0.701,0.234,0.291,0,0,0,0,1,1,0 +1,0.787,0.461,0.484,0,0,0,0,1,1,0 +1,0.787,0.461,0.484,0,0,0,0,1,1,0 +1,0.787,0.461,0.484,0.392,0.4,0.205,0,1,0,0 +1,0.787,0.461,0.484,0.466,1,0,0,1,0,0 +1,0.787,0.461,0.484,0,1,0.35,0,0.1,0,0 +1,0.787,0.461,0.484,0.369,0.5,0.339,0,0,0,0 +1,0.771,0.646,0.619,0.733,0,0.283,0,0,0,0 +1,0.771,0.646,0.619,0,0,0.307,0,0,0,0 +1,0.771,0.646,0.619,0.455,0,0.0236,0,0,0,0 +1,0.771,0.646,0.619,0.335,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.188,0,0.26,0,0,0,0 +1,0.771,0.646,0.619,0.188,0,0.283,0,0,0,0 +1,0.741,0.797,0.783,0.659,0,0.677,0,0,0,0 +1,0.741,0.797,0.783,0.312,0,0.331,0,0,0,0 +1,0.741,0.797,0.783,0.5,0,0.272,0,0,0,0 +1,0.741,0.797,0.783,0.977,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.233,0,0.35,0,0,0,0 +1,0.741,0.797,0.783,0.233,0,0,0,0,0,0.27 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.202 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.165 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.101 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.0504 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0 +1,0.586,0.0637,0.33,0,0,0,0,0,0,0.451 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.418 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.273 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.347 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.331 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.0248 +0.667,0.619,0.077,0.301,0,0,0.0551,0.9,0,0,0.248 +0.333,0.59,0.0465,0.175,0,0,0.114,0.6,0.4,0,0.165 +0.333,0.59,0.053,0.174,0,0,0.0118,0,1,0,0 +0.333,0.59,0.053,0.174,0,0,0.374,0,1,0,0.165 +0.333,0.59,0.053,0.174,0,0,0.228,0,0.5,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0.409,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0.362,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.205,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.319,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.9,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,1,0.165 +0.667,0.619,0.117,0.271,0,0,0,0,0,1,0.331 +0.667,0.619,0.117,0.271,0,0,0,0,0,1,0.0827 +0.667,0.619,0.117,0.271,0,0,0,0,0,1,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.7,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.0827 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.0827 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.0827 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.0827 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0.441,0.4,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,1,0,0,0 +0.667,0.64,0.155,0.269,0,0,0.488,0.1,0.9,0,0 +0.667,0.64,0.155,0.269,0,0,0.52,0,1,0,0 +0.667,0.671,0.191,0.274,0,0,0.465,0,1,0,0 +0.667,0.671,0.191,0.274,0,0,0.429,0,1,0,0 +1,0.725,0.279,0.386,0,0,0,0,0.5,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.725,0.279,0.386,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.391 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.165 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.102 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0512 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.9,0.103 +1,0.771,0.646,0.619,0,0,0,0,0,0.5,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.12 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.169 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.403,0.9,0,0,0,0,0 +1,0.741,0.797,0.783,0.625,1,0,0,0,0,0 +1,0.741,0.797,0.783,0.767,1,0,0,0,0,0 +1,0.741,0.797,0.783,0.506,0,0,0,0,0,0.235 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0932 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0932 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.156 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.234 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0255 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.255 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.4,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,1,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0988 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0741 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.145 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.248 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.435 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.26 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.503 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.108 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.165 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.331 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.165 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.339,0.9,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0.6,0.4,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,1,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.9,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.5,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.165 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0.1 +1,0.621,0.276,0.294,0,0,0,0,0,0,0.0502 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.234 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.0521 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.228 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0253 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.256 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.151 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.223 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.314 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.248 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0649 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.413 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.264 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.0492 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.165 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.9,0.0827 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.5,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.744,0.9,0,0,0,0,0 +0.667,0.701,0.234,0.291,0.489,0.5,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.585,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.364,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.4,0 +1,0.787,0.461,0.484,0.256,0,0,0,0,1,0 +1,0.787,0.461,0.484,0,0,0,0,0,1,0 +1,0.787,0.461,0.484,0.318,0,0,0,0,0.4,0 +1,0.771,0.646,0.619,0.403,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.199,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.199,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.369,0,0,0,0,0,0 +1,0.771,0.646,0.619,0.568,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0.0827 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0.248,0.4,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,1,0,0,0 +0.667,0.64,0.509,0.603,0,0,0.24,0.1,0.9,0,0 +0.667,0.64,0.509,0.603,0,0,0.496,0,1,0,0 +0.667,0.599,0.31,0.415,0,0,0.193,0,1,0,0 +0.667,0.599,0.31,0.415,0,0,0.0906,0,1,0,0 +1,0.617,0.457,0.597,0,0,0.26,0,0.5,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0.646,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0938 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0703 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.165 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.101 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.252 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.497 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.165 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.165 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.35 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0.198 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0.0827 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.176 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.0827 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.0885 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0443 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.9,0.0827 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.5,0.0827 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0.608,0.9,0,0,0,0,0 +1,0.771,0.343,0.412,0.415,1,0,0,0,0,0 +1,0.787,0.461,0.484,0.551,1,0,0,0,0,0 +1,0.787,0.461,0.484,0.256,1,0.248,0.9,0,0,0 +1,0.787,0.461,0.484,0,1,0.248,0.6,0.4,0,0 +1,0.787,0.461,0.484,0,1,0,0,1,0,0 +1,0.787,0.461,0.484,0,1,0.0669,0,1,0,0 +1,0.787,0.461,0.484,0,0.5,0.157,0,0.5,0,0 +1,0.771,0.646,0.619,0,0,0.295,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0.228,0,0,0,0.0827 +1,0.771,0.646,0.619,0,0,0.272,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.165 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.128 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0.413 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0.165 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0,0.248 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.248 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0.608,0.2,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,1,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0.369,0.2,0,0,0,0,0.248 +0.667,0.59,0.0809,0.174,0.364,0,0,0,0,0,0.248 +0.667,0.59,0.0809,0.174,0.511,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0.438,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0827 +0.667,0.59,0.102,0.164,0.386,0.2,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,1,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.619,1,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.381,0.7,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.653,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0.489,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.472,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.562,0,0,0,0,0,0.248 +0.667,0.59,0.109,0.16,0.409,0,0,0,0,0,0.0827 +0.667,0.59,0.109,0.16,0.676,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.207,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0.207,0,0,0,0,0,0.0827 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.2,0.0827 +0.667,0.619,0.234,0.269,0,0,0,0,0,1,0.248 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.2,0.0827 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.165 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.338 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.231 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.0827 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.2,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.165 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0.0507 +1,0.741,0.852,0.783,0,0,0,0,0,0,0.127 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.456 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.0504 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.151 +1,0.64,0.53,0.603,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0472 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.0943 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0827 +1,0.619,0.144,0.299,0,0,0,0,0,0,0 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.165 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.127 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0666 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.0827 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.2 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.073 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.243 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.0827 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.333,0.59,0.102,0.164,0,0,0,0,0,0,0.248 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.2,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,1,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,1,0.0827 +1,0.648,0.343,0.378,0,0,0,0,0,0.6,0 +1,0.648,0.343,0.378,0,0,0,0,0,0,0 +1,0.648,0.343,0.378,0,0,0,0,0,0,0.331 +1,0.648,0.391,0.378,0,0,0,0,0,0,0.0827 +1,0.648,0.391,0.378,0,0,0,0,0,0,0.165 +1,0.648,0.391,0.378,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0827 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0.0827 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0.248 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0.331 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0.0827 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0.0827 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0 +1,0.701,0.489,0.429,0,0,0,0,0,0,0 +1,0.681,0.574,0.538,0,0,0,0,0,0,0.0827 +1,0.681,0.574,0.538,0,0,0,0,0,0,0 +1,0.681,0.574,0.538,0,0,0.421,0.7,0,0,0 +1,0.681,0.574,0.538,0,0,0.374,0.8,0.2,0,0 +1,0.681,0.574,0.538,0,0,0,0,1,0,0 +1,0.681,0.574,0.538,0,0,0.429,0,1,0,0 +1,0.64,0.53,0.603,0,0,0.386,0,1,0,0 +1,0.64,0.53,0.603,0,0,0.26,0,1,0,0 +1,0.64,0.53,0.603,0,0,0,0,1,0,0 +1,0.64,0.53,0.603,0,0,0,0,0.7,0,0.0521 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.261 +1,0.64,0.53,0.603,0,0,0,0,0,0,0.183 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0.2,0 +1,0.617,0.496,0.597,0,0,0,0,0,1,0 +1,0.599,0.337,0.415,0,0,0,0,0,1,0.21 +1,0.568,0.157,0.183,0,0,0,0,0,1,0 +1,0.568,0.157,0.183,0,0,0,0,0,1,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.259 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.181 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.248 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.248 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.9,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.5,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.165 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0827 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.331 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.248 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.9,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,1,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.9,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0827 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0.0827 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.801,0.9,0,0,0,0,0 +1,0.741,0.797,0.783,0.591,1,0,0,0,0,0 +1,0.64,0.509,0.603,0.722,1,0,0,0,0,0 +1,0.64,0.509,0.603,0.301,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.248 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.0508 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.248 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.165 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.248 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.248 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.412 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.103 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.0772 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.0827 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.147 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.102 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.203 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0494 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.33 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0942 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.141 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +1,0.651,0.142,0.381,0,0,0,0,0,0,0 +1,0.651,0.142,0.381,0,0,0,0,0,0,0 +1,0.651,0.142,0.381,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.331 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.9,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,1,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.9,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.413 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.5,0.9,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0.193,1,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,1,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.24,0.1,0.9,0,0 +0.333,0.591,0.0767,0.149,0,0,0.488,0,0.5,0,0 +0.333,0.591,0.0767,0.149,0,0,0.264,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.9,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.5,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.221 +1,0.682,0.222,0.349,0,0,0,0,0,0,0.205 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.9,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.5,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.104 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0259 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.228 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.184 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0.228,0.9,0,0,0 +1,0.774,0.64,0.523,0,0,0.236,0.6,0.4,0,0 +1,0.683,0.532,0.464,0,0,0.421,0,1,0,0 +1,0.683,0.532,0.464,0,0,0,0,1,0,0.228 +1,0.683,0.532,0.464,0,0,0,0,1,0,0.102 +1,0.683,0.532,0.464,0,0,0,0,1,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.115 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.293 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0724 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.334 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.248 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0,0.215 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.131 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.0999 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.175 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.165 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.212 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.269 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.103 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.147 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.196 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.0485 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.335 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.242 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.205 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.248 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,1,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,1,0.331 +1,0.774,0.34,0.371,0,0,0,0,0,0.8,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.248 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0827 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.127 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0959 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.144 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.481 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.205 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.214 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.277 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.227 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.9,0.0827 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,0.9,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.714,0.31,0.296,0,0,0,0,0,0,0.0827 +1,0.714,0.31,0.296,0,0,0,0,0,0,0.0977 +1,0.704,0.432,0.365,0,0,0,0,0,0,0.195 +1,0.704,0.432,0.365,0,0,0,0,0,0,0 +1,0.704,0.432,0.365,0.438,0.4,0,0,0,0,0 +1,0.704,0.432,0.365,0.466,1,0,0,0,0,0.052 +1,0.704,0.432,0.365,0,1,0,0,0,0,0.26 +1,0.704,0.432,0.365,0.58,1,0,0,0,0,0.243 +1,0.683,0.532,0.464,0.534,1,0,0,0,0,0.0827 +1,0.683,0.532,0.464,0.443,1,0,0,0,0,0 +1,0.683,0.532,0.464,0,1,0,0,0,0,0 +1,0.622,0.274,0.257,0,0.9,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.262 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.204 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0.223 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0.0496 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.422 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0905 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0679 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0.585,0.9,0,0,0,0,0.248 +0.333,0.591,0.073,0.149,0.631,1,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0.494,1,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0.426,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0.659,0.9,0,0,0,0,0 +1,0.774,0.34,0.371,0.364,1,0,0,0,0,0.165 +1,0.79,0.457,0.42,0.33,1,0,0,0,0,0 +1,0.79,0.457,0.42,0.432,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.619,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0.369,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.568,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.528,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.557,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.506,0,0,0,0,0,0.09 +1,0.744,0.791,0.671,0.443,0,0,0,0,0,0.045 +1,0.744,0.791,0.671,0.466,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.19,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.19,0,0,0,0,0,0.191 +1,0.744,0.791,0.671,0.261,0,0,0,0,0,0.0717 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.0934 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.117 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.464 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.071 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.118 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.135 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.42,0.9,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0.523,1,0,0,0,0,0.099 +0.667,0.621,0.143,0.278,0.545,1,0,0,0,0,0.223 +0.667,0.621,0.143,0.278,0.585,1,0,0,0,0,0 +1,0.651,0.205,0.392,0,0.4,0,0,0,0,0 +1,0.651,0.205,0.392,0,0,0,0,0,0,0.0255 +1,0.651,0.205,0.392,0,0,0,0,0,0,0.127 +1,0.651,0.205,0.392,0,0,0,0,0,0,0 +1,0.651,0.244,0.381,0,0,0,0,0,0,0 +1,0.651,0.244,0.381,0,0,0,0,0,0,0 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.426 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.195 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.22 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.205 +1,0.651,0.268,0.364,0,0,0,0,0,0,0 +1,0.651,0.268,0.364,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.102 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0509 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.188 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.4,0.165 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +1,0.728,0.449,0.353,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0.0827 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0.0827 +1,0.79,0.547,0.42,0,0,0,0,0,1,0 +1,0.79,0.547,0.42,0,0,0,0,0,1,0 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0958 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0718 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0827 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.0827 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.704,0.485,0.365,0,0,0,0,0,1,0 +1,0.704,0.485,0.365,0,0,0,0,0,1,0 +1,0.704,0.485,0.365,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,0.9,0.0827 +1,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0.226 +1,0.642,0.526,0.549,0,0,0,0,0,0,0.151 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.165 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.228 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0.401 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0.248 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.331 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.0797 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0.165 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0,0.197 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.0551,0.9,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.228,1,0,0,0.101 +0.667,0.621,0.185,0.259,0,0,0.0236,1,0,0,0.252 +0.667,0.621,0.185,0.259,0,0,0.476,0.1,0.9,0,0.151 +0.667,0.621,0.185,0.259,0,0,0.0906,0,1,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,1,0,0 +0.667,0.621,0.185,0.259,0,0,0.295,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.217,0,0,0,0 +0.333,0.591,0.108,0.15,0,0,0.272,0,0,0,0 +0.333,0.591,0.108,0.15,0,0,0.217,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0.236,0,0,0,0.165 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.248 +0.667,0.591,0.108,0.15,0,0,0.295,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0.272,0,0,0,0.0827 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0.374,0,0,0,0.0827 +0.667,0.591,0.125,0.149,0,0,0.0118,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.165 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.113 +0.667,0.591,0.141,0.149,0.392,0.4,0,0,0,0,0 +0.667,0.602,0.154,0.149,0.534,1,0,0,0,0,0 +0.667,0.602,0.154,0.149,0,1,0,0,0,0,0 +0.667,0.602,0.154,0.149,0.455,1,0,0,0,0,0.181 +0.667,0.602,0.154,0.149,0.443,0.9,0,0,0,0,0.049 +0.667,0.602,0.154,0.149,0.443,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0.46,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.301 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0484 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.305,0.252,0,0,0.0787,0.4,0,1,0.349 +0.667,0.704,0.315,0.264,0,0,0.0472,1,0,1,0.334 +0.667,0.704,0.315,0.264,0,0,0,1,0,1,0.101 +0.667,0.704,0.315,0.264,0,0,0,1,0,1,0 +0.667,0.704,0.315,0.264,0,0,0,1,0,0.8,0 +0.667,0.704,0.315,0.264,0,0,0,1,0,0,0.315 +1,0.774,0.464,0.371,0,0,0,0.7,0.3,0,0.15 +0.667,0.714,0.371,0.296,0,0,0,0,1,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,1,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0.6,0,0.165 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.0827 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.333,0.622,0.294,0.257,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0.0979 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0.0958 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.126 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.121 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0483 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.153 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.305 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.331 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0.4,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,1,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,1,0.102 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0.4,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.265 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.133 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.168 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.262 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.359 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.441,0.9,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.26,0.6,0.4,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0.26,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0.0236,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0.476,0,1,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.4,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,1,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.9,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.5,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.248 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.165 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0991 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.223 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0254 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.204 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0926 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0463 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.195 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.026 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.421 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0974 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.4,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.4,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,1,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.295 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.523,0.9,0,0,0,0,0 +1,0.744,0.791,0.671,0.625,0.5,0,0,0,0,0 +1,0.744,0.791,0.671,0.312,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.369,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.574,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.58,0,0,0,0,0,0.229 +1,0.682,0.749,0.799,0.261,0,0,0,0,0,0.153 +1,0.682,0.749,0.799,0.307,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.472,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0.4,0,0,0,0,0 +1,0.6,0.307,0.405,0.392,1,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.226 +1,0.6,0.307,0.405,0.568,0,0,0,0,0.4,0.0251 +1,0.6,0.307,0.405,0.449,0,0,0,0,1,0 +1,0.6,0.307,0.405,0,0,0,0,0,1,0 +1,0.6,0.307,0.405,0.597,0,0,0,0,1,0 +1,0.569,0.136,0.183,0.409,0,0,0,0,1,0 +1,0.569,0.136,0.183,0.364,0,0,0,0,1,0 +1,0.569,0.136,0.183,0,0,0,0,0,1,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.8,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0897 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0996 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.125 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.125 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.1 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.15 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0918 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0688 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.388 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.101 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.101 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.248 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.571,0.0316,0.139,0.335,0.4,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.392,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.295,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.46,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,1,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.886,1,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.281,0.9,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.281,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.409,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.438,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.432,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.265 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.207 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.15 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.235 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0923 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.18 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.146 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0644 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.206 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.4,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,1,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.331 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0.272,0.9,0,0,0 +1,0.774,0.64,0.523,0,0,0.0118,0.6,0.4,0,0 +1,0.744,0.791,0.671,0,0,0,0,1,0,0 +1,0.744,0.791,0.671,0,0,0.283,0,0,0,0 +1,0.744,0.791,0.671,0,0,0.217,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0.579,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0.236,0,0,0,0 +1,0.682,0.749,0.799,0,0,0.228,0,0,0,0 +1,0.682,0.749,0.799,0,0,0.362,0,0,0,0 +1,0.682,0.749,0.799,0,0,0.386,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.358 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.0989 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0247 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.248 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.248 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.257 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.331 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.248 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.9,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.5,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.4,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,1,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.248 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.228 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.159 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0.9,0 +1,0.79,0.457,0.42,0,0,0,0,0,0.5,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.199 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.354 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0695 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.165 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.0909 +1,0.622,0.274,0.257,0,0,0,0,0,0,0.0227 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.224 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.0747 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.9,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.5,0.0827 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.197 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.248 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.362 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.152 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.165 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.349 +1,0.589,0.0632,0.317,0,0,0,0,0,0.9,0.346 +1,0.589,0.0632,0.317,0,0,0,0,0,0.5,0.0827 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.165 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.251 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.181 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0739 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.331 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.165 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.333,0.638,0.163,0.173,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0827 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.248 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0.234 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0.026 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.229 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.0255 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.165 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.331 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.0827 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.0827 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.9,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,1,0.0827 +0.333,0.591,0.108,0.15,0,0,0,0,0,1,0 +0.333,0.591,0.108,0.15,0,0,0,0,0,1,0 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.4,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.165 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.165 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0827 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.331 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0827 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.0827 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0933 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.07 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0997 +1,0.56,0.0201,0.0503,0,0,0,0,0,0.5,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0.413 +1,0.559,0.0264,0.107,0,0,0,0,0,0,0 +1,0.559,0.0264,0.107,0,0,0,0,0,0,0.246 +1,0.559,0.0264,0.107,0,0,0,0,0,0,0 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.128 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.0512 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.0827 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.0955 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.0477 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.0827 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.165 +1,0.611,0.0685,0.284,0,0,0,0,0,0,0.457 +1,0.611,0.0685,0.284,0,0,0,0,0,0.9,0 +1,0.611,0.0685,0.284,0,0,0,0,0,0.5,0.0827 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0.165 +0.333,0.591,0.0803,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0803,0.164,0.369,0.9,0,0,0,0,0 +0.333,0.591,0.0803,0.164,0.42,1,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.381,1,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.364,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.247,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.247,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0.472,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.228,0.4,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,1,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.453,0.1,0.9,0,0 +0.667,0.621,0.185,0.259,0,0,0.236,0,1,0,0.0827 +0.667,0.621,0.198,0.251,0,0,0,0,1,0,0 +0.667,0.621,0.198,0.251,0,0,0.169,0,1,0,0 +0.333,0.591,0.108,0.15,0,0,0.512,0,1,0,0.0827 +0.333,0.591,0.108,0.15,0,0,0.488,0,1,0,0 +0.333,0.591,0.108,0.15,0,0,0.272,0,0,0,0.352 +0.333,0.591,0.108,0.15,0,0,0.283,0,0,0,0.248 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.149,0,0,0.429,0,0,0,0 +0.333,0.591,0.125,0.149,0,0,0.228,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0.122,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0.26,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.138,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.157,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.339,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.217,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.693,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.272,0,0,0,0.165 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.291,0.249,0,0,0.567,0,0,0.9,0 +0.667,0.642,0.291,0.249,0,0,0.646,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.9,0 +0.667,0.642,0.291,0.249,0,0,0.205,0,0,0,0.248 +0.667,0.642,0.291,0.249,0,0,0.205,0,0,0,0.413 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.205,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.283,0,0,0,0.165 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.252,0,0,0.421,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.272,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.228,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.114,0,0,0,0.0827 +0.667,0.704,0.315,0.264,0,0,0.409,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.736,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0.157,0,0,0,0.0827 +0.333,0.638,0.194,0.173,0,0,0,0,0,0,0 +0.333,0.638,0.194,0.173,0,0,0.0354,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0.193,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0.205,0,0,0,0 +0.667,0.714,0.371,0.296,0.432,0.9,0.193,0,0,0,0 +0.667,0.714,0.371,0.296,0.369,1,0,0,0,0,0 +0.667,0.704,0.485,0.365,0.46,1,0,0,0,0,0 +0.667,0.704,0.485,0.365,0.398,0,0,0,0,0,0 +1,0.774,0.719,0.523,0.236,0,0,0,0,0,0 +1,0.774,0.719,0.523,0.236,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0.0827 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.165 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.248 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.9,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.8,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0.0827 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.26,0.4,0,0,0.165 +0.667,0.621,0.13,0.249,0,0,0.657,1,0,0,0.331 +0.667,0.621,0.13,0.249,0,0,0,0.1,0.9,0,0.165 +0.667,0.621,0.13,0.249,0,0,0.126,0,1,0,0 +0.667,0.621,0.13,0.249,0,0,0,0,1,0,0 +0.667,0.621,0.13,0.249,0,0,0.283,0,0,0,0.248 +0.667,0.621,0.13,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.9,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0.9,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.182 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.248 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.257 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0687 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.39 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0989 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.124 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.362,0.9,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.272,0.6,0.4,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,1,0,0 +1,0.56,0.0171,0.0495,0,0,0.398,0,1,0,0.248 +1,0.56,0.0171,0.0495,0,0,0.272,0,0.5,0,0.165 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.26,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.0906,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.488,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.386,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.257 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0257 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.122 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.218 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0.181 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0.0986 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.15 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.125 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.263 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.419 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.223 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.107 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.104 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.208 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0494 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.495 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.355 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.4,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.165 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.267,0.9,0,0,0,0,0 +1,0.79,0.457,0.42,0.318,1,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0.409,1,0,0,0,0,0 +1,0.79,0.457,0.42,0.466,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.386,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.483,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.318,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.173 +1,0.774,0.64,0.523,0.369,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.392,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.38 +1,0.744,0.791,0.671,0.625,0,0,0,0,0.4,0.41 +1,0.744,0.791,0.671,0.438,0,0,0,0,1,0 +1,0.744,0.791,0.671,0.58,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.341,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.341,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.324,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.443,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.409,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0.0918 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0688 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.179 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.168 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +1,0.56,0.0236,0.0781,0,0,0,0,0,1,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.9,0.0703 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0468 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.0827 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.55 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.073 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.114 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,1,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.9,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.4,0.165 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,0.4,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0.483,0.9,0,0,0,0,0.0827 +1,0.683,0.532,0.464,0.449,1,0,0,0,0,0 +1,0.683,0.532,0.464,0.295,1,0,0,0,0,0 +1,0.683,0.532,0.464,0.472,1,0,0,0,0,0 +1,0.683,0.532,0.464,0,1,0,0,0,0,0 +1,0.642,0.505,0.549,0,1,0,0,0,0,0 +1,0.642,0.505,0.549,0.517,1,0,0,0,0,0 +1,0.642,0.505,0.549,0.557,0.4,0,0,0,0,0 +1,0.642,0.505,0.549,0.335,0,0,0,0,0,0 +1,0.642,0.505,0.549,0.381,0,0,0,0,0,0.133 +1,0.642,0.505,0.549,0.398,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.104 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.182 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0762 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.254 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.0827 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.248 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.9,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0.165 +0.333,0.586,0.0396,0.167,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0.331 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.248 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.2,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.165 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.331 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.9,0.0827 +0.667,0.704,0.432,0.365,0,0,0,0,0,1,0 +1,0.774,0.64,0.523,0,0,0,0,0,1,0 +1,0.774,0.64,0.523,0,0,0,0,0,1,0 +1,0.774,0.64,0.523,0.301,0.4,0,0,0,0.4,0 +1,0.744,0.791,0.671,0.608,1,0,0,0,0,0 +1,0.744,0.791,0.671,0.216,1,0,0,0,0,0 +1,0.744,0.791,0.671,0.216,0.5,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.642,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.341,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.534,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.386,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.375,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.562,0,0,0,0,0,0.169 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0988 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.173 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.165 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.248 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.161 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0827 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0972 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0486 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.146 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.156 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.196 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.124 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0857 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0214 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.9,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.5,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.455,0.4,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0.523,1,0,0,0,0,0 +1,0.79,0.457,0.42,0,1,0,0,0,0,0 +1,0.79,0.457,0.42,0.523,1,0,0,0,0,0 +1,0.774,0.64,0.523,0.67,0.9,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.301,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.494,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.477,0,0,0,0,0,0 +1,0.774,0.64,0.523,0.335,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.159 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.184 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.155 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0.0712 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0.142 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.109,0.286,0,0,0,0,0,0,0.299 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +1,0.621,0.143,0.278,0,0,0,0,0,0,0 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.165 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.265 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.215 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.0827 +1,0.621,0.143,0.278,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0.2 +1,0.621,0.169,0.27,0,0,0,0,0,0,0.0251 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.651,0.268,0.364,0,0,0,0,0,0,0 +1,0.651,0.268,0.364,0,0,0,0,0,0,0.331 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.102 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.102 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.248 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.286 +1,0.651,0.34,0.349,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.152 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.133 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0.331 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0 +1,0.651,0.388,0.348,0,0,0,0,0,0,0.165 +1,0.682,0.427,0.349,0,0,0,0,0,0,0.0827 +1,0.682,0.427,0.349,0,0,0,0,0,0.9,0.248 +1,0.682,0.427,0.349,0,0,0.272,0.4,0,0.5,0 +1,0.682,0.427,0.349,0,0,0.339,1,0,0,0 +1,0.682,0.427,0.349,0,0,0.138,0.1,0.9,0,0 +1,0.682,0.427,0.349,0,0,0.35,0,0.5,0,0 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.728,0.449,0.353,0,0,0.331,0,0,0,0.165 +1,0.728,0.449,0.353,0,0,0.319,0,0,0,0 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.728,0.449,0.353,0,0,0.307,0,0,0,0 +1,0.728,0.449,0.353,0,0,0.193,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.394,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.193,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.398,0,0,0,0.0827 +1,0.774,0.464,0.371,0,0,0.701,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.205,0,0,0,0 +1,0.774,0.464,0.371,0,0,0.445,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.26,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.0354,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.272,0,0,0,0 +1,0.79,0.547,0.42,0,0,0.508,0,0,0,0.0827 +1,0.79,0.547,0.42,0,0,0.205,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.217,0,0,0,0.165 +1,0.774,0.719,0.523,0,0,0.0906,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.354,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.421,0,0,0,0 +1,0.774,0.719,0.523,0,0,0.169,0,0,0,0 +1,0.744,0.845,0.671,0,0,0.0906,0,0,0,0 +1,0.744,0.845,0.671,0,0,0.614,0,0,0,0 +1,0.744,0.845,0.671,0,0,0.343,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.4,0 +1,0.682,0.78,0.799,0,0,0,0,0,1,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.138 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.234 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.26 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0779 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +1,0.591,0.0636,0.168,0,0,0,0,0,1,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0827 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0.0827 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0.165 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0.0827 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +1,0.651,0.288,0.352,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.4,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,1,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0.0827 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.0118,0.9,0,0,0 +1,0.728,0.449,0.353,0,0,0,0.6,0.4,0,0 +1,0.728,0.449,0.353,0,0,0,0,1,0,0 +1,0.728,0.449,0.353,0,0,0,0,1,0,0.248 +1,0.728,0.449,0.353,0.358,0.4,0,0,1,0,0.248 +1,0.774,0.464,0.371,0.466,1,0,0,1,0,0 +1,0.774,0.464,0.371,0.233,0,0,0,1,0,0 +1,0.774,0.464,0.371,0.312,0,0,0,0.5,0,0.165 +1,0.774,0.464,0.371,0.455,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0.165 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.0919 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.9,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.5,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0.0827 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.165 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.103 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.165 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0.0975 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0975 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.144 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.203 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.101 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.252 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.242 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.121 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.229 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.4,0.0827 +0.667,0.621,0.13,0.249,0,0,0,0,0,1,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,1,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.4,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.331 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.165 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.413 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.15 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.231 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0514 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.203 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.253 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.248 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.425 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.248 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.331 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.248 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.165 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.233 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.259 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0259 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.9,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,1,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.9,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.0827 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.183 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.101 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.165 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.118 +1,0.589,0.0632,0.317,0,0,0,0,0,0.9,0.496 +1,0.589,0.0632,0.317,0,0,0,0,0,0.5,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.331 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.248 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0933 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0233 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.148 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.264 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.288 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0927 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.104 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.157 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.4,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,1,0.11 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.4,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.102 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.159 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.165 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0562 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0245 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.147 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.234 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0878 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.227 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0504 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.9,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,1,0.276 +0.667,0.571,0.0316,0.139,0,0,0,0,0,1,0 +0.667,0.571,0.0316,0.139,0,0,0.272,0.9,0,1,0 +0.667,0.571,0.0316,0.139,0,0,0.217,0.6,0.4,0.4,0 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.413 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.165 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.295 +0.333,0.562,0.0159,0.0495,0,0,0,0,1,0,0.187 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0,0.183 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0.5,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0734 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.156 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.146 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.0827 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0827 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.248 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.096 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.096 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.4,0 +1,0.774,0.34,0.371,0,0,0,0,0,1,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.224 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0498 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.413 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.182 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.183 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0,0.125 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.201 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.248 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.351 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0769 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.223 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.0495 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0827 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.248 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.165 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.165 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.0827 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0.4,0 +1,0.6,0.307,0.405,0,0,0,0,0,1,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.111 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0731 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.178 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0.0718 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.4,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,1,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,1,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,1,0.165 +0.667,0.591,0.101,0.154,0,0,0,0,0,1,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,1,0.165 +0.667,0.591,0.101,0.154,0,0,0,0,0,0.3,0.165 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0.0827 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.0827 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.248 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0827 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0.248 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0.248 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.393 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.292 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.248 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.0867 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.0217 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.437 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.0744 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.9,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.5,0.183 +1,0.79,0.547,0.42,0,0,0,0,0,0,0.0504 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0.0827 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.12 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.164 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0.094 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.118 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0.161 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.472,0.9,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.818,1,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.472,1,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.409,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.139,0.5,0,0,0,0,0,0 +1,0.571,0.0295,0.139,0.335,0,0,0,0,0,0.0827 +1,0.571,0.0295,0.139,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0.9,0 +1,0.586,0.0433,0.167,0,0,0,0,0,1,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0.9,0 +1,0.591,0.0636,0.168,0,0,0.331,0.9,0,0,0 +1,0.591,0.0636,0.168,0,0,0.374,0.6,0.4,0,0 +1,0.651,0.155,0.404,0,0,0,0,1,0,0 +1,0.651,0.155,0.404,0,0,0.5,0,0,0,0.0827 +1,0.651,0.155,0.404,0,0,0.228,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.126,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.228,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.0236,0,0,0,0 +0.667,0.621,0.143,0.278,0,0,0.272,0,0,0,0.165 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0.0827 +0.667,0.621,0.169,0.27,0,0,0.114,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.0354,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.283,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0.248,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0.0551,0,0,0,0.248 +0.667,0.621,0.185,0.259,0,0,0.283,0,0,0,0.0827 +0.667,0.621,0.185,0.259,0,0,0.0906,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.248 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.248 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.165 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0.0827 +0.667,0.591,0.141,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0.248 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0.165 +0.667,0.602,0.154,0.149,0,0,0,0,0,0,0.0827 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.9,0 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.5,0.0827 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.248 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.248 +1,0.673,0.305,0.252,0,0,0,0,0,0,0 +1,0.673,0.305,0.252,0,0,0,0,0,0,0.165 +1,0.728,0.449,0.353,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0 +1,0.774,0.464,0.371,0,0,0,0,0,0,0.165 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0,0 +1,0.79,0.547,0.42,0.42,0.4,0,0,0,0,0 +1,0.79,0.547,0.42,0.307,1,0,0,0,0,0 +1,0.79,0.547,0.42,0.205,1,0,0,0,0,0 +1,0.79,0.547,0.42,0.205,0.5,0,0,0,0,0 +1,0.774,0.719,0.523,0.966,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0.147 +1,0.642,0.526,0.549,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.0949 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.0475 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.101 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.176 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.2 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0.659,0.9,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0.676,1,0,0,0,0,0.0917 +0.667,0.611,0.0634,0.284,0.597,1,0,0,0,0,0.0459 +0.667,0.611,0.0634,0.284,0.364,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0.278,0,0.26,0.4,0,0,0.0827 +0.667,0.621,0.0764,0.286,0.278,0,0,1,0,0,0.158 +0.667,0.621,0.0764,0.286,0,0,0.0906,0.1,0.9,0,0 +0.667,0.621,0.0764,0.286,0,0,0.146,0,1,0,0.165 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0.331,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0.236,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.126,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.236,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.283,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.339,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.181,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.319,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.398,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.217,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.272,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.307,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.0118,0,0,0,0.165 +0.333,0.591,0.0629,0.154,0,0,0.217,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.138,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.0551,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.319,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0.0669,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.0906,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.362,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.248,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.0118,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0.126,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.248 +0.333,0.591,0.073,0.149,0,0,0.0354,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0.114,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.728,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.205,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.531,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.386,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.307,0,0,0,0.579 +0.333,0.591,0.0767,0.149,0,0,0.283,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0.0551,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.4,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,1,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.165 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.165 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.303 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.074 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.379 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.025 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.165 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.103 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.103 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.331 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.155 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.0517 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.114,0.9,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0.26,1,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,1,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.0551,1,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0.0354,1,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,1,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.331,0.2,0.8,0,0.165 +0.667,0.621,0.0997,0.27,0,0,0.236,0,1,0,0.0827 +0.667,0.621,0.11,0.259,0,0,0,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0.26,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0.126,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,1,0,0 +0.667,0.621,0.11,0.259,0,0,0.331,0,0.1,0,0 +0.667,0.621,0.11,0.259,0,0,0.26,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.236,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.283,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.524,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0658,0.15,0,0,0.0472,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.0354,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.319,0,0,0,0.248 +0.333,0.591,0.073,0.149,0,0,0.283,0,0,0,0.165 +0.333,0.591,0.073,0.149,0,0,0.0354,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.24,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0.453,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.441,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.272,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0.126,0.9,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,1,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,1,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,1,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0.6,0.4,0.4,0 +0.333,0.617,0.103,0.151,0,0,0,0,1,1,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.187 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0519 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.248 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.228 +1,0.79,0.457,0.42,0,0,0.283,0.4,0,0,0.0253 +1,0.79,0.457,0.42,0,0,0,1,0,0,0 +1,0.79,0.457,0.42,0,0,0.512,0.1,0.9,0,0.248 +1,0.79,0.457,0.42,0,0,0.26,0,1,0,0.355 +1,0.774,0.64,0.523,0,0,0,0,1,0,0 +1,0.774,0.64,0.523,0,0,0.26,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0827 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0948 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0711 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.141 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.0827 +1,0.589,0.0632,0.317,0,0,0,0,0,0,0.0987 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.123 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.121 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0723 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.102 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.229 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.248 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.165 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.331 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0827 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.248 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.4,0.0827 +0.333,0.633,0.124,0.157,0,0,0,0,0,1,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0827 +1,0.774,0.34,0.371,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.174 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0.4,0 +1,0.744,0.791,0.671,0,0,0,0,0,1,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.101 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.0761 +1,0.682,0.749,0.799,0.523,0.9,0,0,0,0,0 +1,0.682,0.749,0.799,0.545,1,0,0,0,0,0 +1,0.62,0.453,0.582,0.347,1,0,0,0,0,0 +1,0.62,0.453,0.582,0.42,1,0,0,0,0,0 +0.667,0.6,0.307,0.405,0.188,0.4,0,0,0,0,0 +0.667,0.581,0.162,0.227,0.188,0,0,0,0,0,0 +0.667,0.581,0.162,0.227,0.29,0,0,0,0,0,0 +0.667,0.581,0.162,0.227,0,0,0,0,0,0,0.0948 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0.0711 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.224 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.0249 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.228 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0506 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.0905 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.0679 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.165 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0472 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0827 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.131 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.14 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.41 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.258 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.0698 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.9,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.5,0.165 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.248 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.17 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0972 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0486 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.138 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0827 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.428 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0245 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.248 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.184 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.151 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.0985 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.197 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0827 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0827 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.109 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.192 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.124 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.141 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.0705 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.285 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0782 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.299 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.024 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.331 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.248 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.248 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.333,0.589,0.128,0.148,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.148,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.248 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.331 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0.4,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,1,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +0.667,0.548,0.147,0.263,0,0,0,0,0,0,0 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.0827 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.0827 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.9,0.165 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.5,0.165 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.248 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.248 +0.667,0.591,0.315,0.238,0,0,0.429,0.9,0,0,0.0827 +1,0.591,0.315,0.238,0,0,0.0787,0.6,0.4,0,0 +1,0.617,0.326,0.247,0,0,0,0,1,0,0 +1,0.617,0.326,0.247,0,0,0.193,0,1,0,0 +1,0.617,0.326,0.247,0,0,0.567,0,0.5,0,0 +1,0.645,0.479,0.345,0,0,0.307,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.2 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.165 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0.102 +1,0.568,0.806,0.726,0,0,0,0,0,0,0.205 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0.0827 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0.165 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0.165 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.248 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.165 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.0827 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.0827 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.0827 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.165 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.165 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0.0827 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0.9,0.284 +1,0.548,0.24,0.235,0,0,0,0,0,0.5,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0 +1,0.548,0.24,0.235,0,0,0,0,0,0,0.101 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.101 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.0827 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.448 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.215 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.094 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.094 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.104 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0519 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0.9,0 +1,0.645,0.743,0.467,0,0,0,0,0,0.5,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0.602,0.9,0,0,0,0,0 +1,0.531,0.345,0.388,0.335,1,0,0,0,0,0 +1,0.531,0.345,0.388,0.455,0.9,0,0,0,0,0 +1,0.531,0.345,0.388,0.318,0,0,0,0,0,0 +1,0.531,0.345,0.388,0.369,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.182 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.127 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0663 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0827 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.248 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.331 +0.667,0.617,0.239,0.247,0.29,0.9,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0.426,1,0,0,0,0,0.165 +0.667,0.617,0.239,0.247,0.5,0.9,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0.426,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.449,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0.511,0.9,0,0,0,0,0 +0.667,0.626,0.32,0.273,0.347,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.398,0.9,0,0,0,0,0 +1,0.658,0.473,0.384,0.858,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.386,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.659,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.278,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.239,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.477,0,0,0,0,0,0.165 +1,0.619,0.817,0.595,0.42,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.165 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.217 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0725 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.102 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.0254 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.2 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.9,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,1,0.0867 +1,0.497,0.0323,0.104,0,0,0,0,0,0.9,0.0217 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0.0827 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0.567,0.9,0,0,0.165 +1,0.514,0.0488,0.222,0,0,0.52,0.6,0.4,0,0 +1,0.514,0.0488,0.222,0,0,0.343,0,1,0,0 +1,0.514,0.0488,0.222,0,0,0,0,1,0.9,0.165 +1,0.514,0.0488,0.222,0,0,0.228,0,1,0.5,0 +0.667,0.54,0.0653,0.277,0,0,0,0,1,0,0 +0.667,0.54,0.0653,0.277,0,0,0.228,0,1,0,0 +0.667,0.54,0.0653,0.277,0,0,0.126,0,0.4,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0.193,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0.283,0,0,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.9,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.5,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0827 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0.9,0 +1,0.617,0.446,0.328,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,1,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,1,0 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,1,0.465 +1,0.568,0.774,0.726,0,0,0,0,0,1,0.0776 +1,0.568,0.774,0.726,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.8,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0985 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.172 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.169 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.306 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.24 +0.667,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.9,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.5,0 +1,0.529,0.09,0.39,0,0,0,0,0,0,0 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.295 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.189 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0.307,0.9,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0.688,1,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0.557,1,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0.489,1,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0.3,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.455,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.614,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0.42,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.46,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.304,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0.304,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0.665,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0.217,0.9,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0.0118,0.6,0.4,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,1,0,0 +0.667,0.555,0.0789,0.142,0,0,0.374,0,0,0,0.0827 +0.667,0.555,0.0789,0.142,0,0,0.248,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0.9,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,1,0 +1,0.645,0.351,0.345,0,0,0,0,0,1,0 +1,0.645,0.351,0.345,0,0,0,0,0,1,0 +1,0.645,0.351,0.345,0,0,0,0,0,0.3,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0.0827 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.0827 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.589,0.231,0.189,0,0,0,0,0,0,0.0827 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.213 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0955 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.42 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0912 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0228 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.228 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.292 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.9,0.165 +1,0.568,0.23,0.328,0,0,0,0,0,0.5,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.165 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.151 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0998 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0499 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0827 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.182 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.185 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0514 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.217 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0723 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0.126,0.4,0,0,0.141 +0.667,0.538,0.0323,0.136,0,0,0,1,0,0,0 +0.667,0.538,0.0323,0.136,0.443,0.9,0,0.1,0.9,0,0 +0.667,0.538,0.0323,0.136,0.528,1,0,0,0.5,0,0 +0.667,0.538,0.0323,0.136,0.375,0.9,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0.415,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0.0827 +0.667,0.548,0.0788,0.274,0,0,0,0,0,1,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,1,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0.206 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,1,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.9,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0.364,0.4,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.523,1,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,1,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.506,0.4,0,0,0,0,0 +0.667,0.548,0.134,0.235,0.528,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.331 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.579 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.165 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.9,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,1,0 +1,0.606,0.286,0.332,0,0,0,0,0,0.9,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.0669,0.4,0,0,0 +1,0.645,0.662,0.467,0,0,0.398,1,0,0,0 +1,0.645,0.662,0.467,0,0,0.724,0.1,0.9,0,0.0827 +1,0.645,0.662,0.467,0,0,0.0906,0,0.5,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0.26,0,0,0,0 +1,0.645,0.662,0.467,0,0,0.0551,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.531,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.339,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.283,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.252,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.35,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.307,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.295,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.283,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.0669,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.331,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.0943 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0707 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.189 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.176 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0464 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.49 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.427 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.0239 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.274 +1,0.548,0.113,0.274,0,0,0,0,0,0,0.203 +1,0.548,0.113,0.274,0,0,0,0,0,0.9,0 +1,0.548,0.113,0.274,0,0,0,0,0,0.5,0 +1,0.548,0.113,0.274,0,0,0,0,0,0,0.214 +1,0.548,0.113,0.274,0,0,0,0,0,0,0.153 +1,0.548,0.113,0.274,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.284 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.232 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0475 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0475 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.378 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0945 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.278 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0971 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0971 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0827 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.403 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.248 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.263 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0733 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.248 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0.179 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0.396 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.165 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.9,0 +0.667,0.617,0.501,0.328,0,0,0.362,0.4,0,0.5,0 +0.667,0.617,0.501,0.328,0,0,0.622,1,0,0,0 +0.667,0.617,0.501,0.328,0,0,0.283,0.1,0.9,0,0.248 +1,0.645,0.743,0.467,0,0,0,0,1,0,0.0827 +1,0.619,0.873,0.595,0,0,0,0,1,0,0 +1,0.619,0.873,0.595,0,0,0,0,1,0,0.248 +1,0.619,0.873,0.595,0,0,0,0,1,0,0 +1,0.619,0.873,0.595,0,0,0,0,0.9,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0.9,0 +1,0.555,0.0654,0.162,0,0,0.114,0.4,0,0.5,0.0827 +1,0.548,0.147,0.263,0,0,0.362,1,0,0,0 +1,0.548,0.147,0.263,0,0,0.228,0.1,0.9,0,0 +1,0.548,0.147,0.263,0,0,0.409,0,1,0,0 +1,0.542,0.212,0.37,0,0,0.567,0,1,0,0 +1,0.542,0.212,0.37,0,0,0.217,0,0,0,0.248 +1,0.542,0.212,0.37,0,0,0.228,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0.0669,0,0,0,0 +1,0.542,0.252,0.359,0,0,0.283,0,0,0,0.165 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0827 +1,0.542,0.252,0.359,0,0,0.362,0,0,0,0 +1,0.542,0.252,0.359,0,0,0.228,0,0,0,0.165 +1,0.542,0.277,0.343,0,0,0.622,0,0,0,0 +1,0.542,0.277,0.343,0,0,0.374,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0.339,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0.0906,0,0,0,0 +1,0.542,0.277,0.343,0,0,0.236,0,0,0,0.0827 +1,0.542,0.297,0.331,0,0,0.535,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0.126,0,0,0,0.165 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.0827 +1,0.542,0.297,0.331,0,0,0.217,0,0,0,0 +1,0.542,0.297,0.331,0,0,0.283,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.283,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.0354,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.26,0,0,0,0 +1,0.542,0.351,0.328,0,0,0.0472,0,0,0,0.0827 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0.228,0,0,0,0 +1,0.542,0.401,0.327,0,0,0.228,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.248 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.384,0,0,0,0,0,0.4,0 +1,0.645,0.743,0.467,0,0,0,0,0,1,0 +1,0.645,0.743,0.467,0,0,0,0,0,1,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,1,0.165 +0.667,0.617,0.501,0.328,0,0,0,0,0,1,0.248 +0.667,0.617,0.501,0.328,0,0,0,0,0,1,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.2,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.331 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0.0354,0.4,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0.169,1,0,0,0 +1,0.529,0.0241,0.0768,0,0,0.374,0.1,0.9,0,0.165 +1,0.529,0.0241,0.0768,0,0,0.205,0,0.5,0,0.165 +1,0.538,0.0323,0.136,0,0,0.193,0,0,0,0.248 +1,0.538,0.0323,0.136,0,0,0.193,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0.0669,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0.343,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0.295,0,0,0,0.183 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.227 +1,0.54,0.0653,0.277,0,0,0.26,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0.445,0,0,0,0 +1,0.529,0.09,0.39,0,0,0.319,0,0,0,0.0238 +1,0.529,0.09,0.39,0,0,0.0906,0,0,0,0.19 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0937 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0234 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.135 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.338 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.264 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.264 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.223 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.0495 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0.101 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.176 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.232 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0258 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.104 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0521 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0827 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.165 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0827 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.581,0.283,0.231,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0998 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.249 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0499 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.175 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.046 +0.667,0.562,0.0159,0.0495,0,0,0.0354,0.9,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0.0906,0.6,0.4,0,0 +0.667,0.54,0.0653,0.277,0,0,0.217,0,1,0,0.162 +0.667,0.54,0.0653,0.277,0,0,0.465,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0.0551,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.465,0,0,0,0.0827 +0.333,0.555,0.0473,0.162,0,0,0.374,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0.114,0,0,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0.543,0,0,0,0.248 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.413 +0.667,0.548,0.0923,0.263,0,0,0.555,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0.339,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.0118,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.228,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.331 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0.9,0.158 +1,0.606,0.286,0.332,0,0,0,0,0,0.5,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0961 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.024 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0.534,0.4,0,0,0,0,0.165 +1,0.658,0.473,0.384,0.534,1,0,0,0,0,0 +1,0.658,0.473,0.384,0,1,0,0,0,0,0.191 +1,0.658,0.473,0.384,0,0.4,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0.9,0.108 +1,0.658,0.473,0.384,0,0,0,0,0,1,0.126 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.7,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.267 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.267 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.146 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.0827 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.265 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.158 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.165 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.265 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0499 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.9,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.5,0.165 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.331 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.432,0.4,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.335,1,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.261,1,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.261,0.4,0,0,0,0,0.165 +0.667,0.626,0.32,0.273,0.472,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0.455,0,0,0,0,0.9,0.165 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.5,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.248 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0963 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.0722 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.46 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.126 +1,0.516,0.468,0.557,0,0,0,0,0,0,0 +1,0.516,0.468,0.557,0,0,0,0,0,0,0.165 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.149 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.124 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.164 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0485 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0969 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,1,0.241 +1,0.514,0.0488,0.222,0,0,0,0,0,1,0.121 +1,0.514,0.0488,0.222,0,0,0,0,0,1,0.0623 +1,0.514,0.0488,0.222,0,0,0,0,0,1,0.0827 +1,0.49,0.0653,0.308,0,0,0,0,0,0.7,0 +1,0.49,0.0653,0.308,0,0,0,0,0,0,0.0827 +1,0.49,0.0653,0.308,0,0,0,0,0,0,0.0884 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0.155 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0993 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.223 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.228 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0253 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.105 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0827 +0.667,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0.248 +0.667,0.548,0.119,0.237,0,0,0.0472,0.4,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.0354,1,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.366,1,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.421,0.6,0.4,0,0.165 +0.667,0.548,0.134,0.235,0,0,0.35,0,1,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0.169,0,1,0,0 +0.667,0.548,0.134,0.235,0,0,0.331,0,1,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0.9,0,0 +0.667,0.548,0.142,0.235,0,0,0.283,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0.272,0,0,0,0.185 +0.667,0.548,0.142,0.235,0,0,0.319,0,0,0,0.23 +0.667,0.548,0.142,0.235,0,0,0.272,0,0,0.9,0 +1,0.542,0.205,0.327,0,0,0.331,0,0,0.5,0.0827 +1,0.568,0.23,0.328,0,0,0.488,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.445,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.339,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.669,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.248 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.165 +1,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.591,0.196,0.238,0,0,0,0,0,0,0.413 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.589,0.128,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.128,0.148,0,0,0,0,0,0.9,0.331 +1,0.617,0.239,0.247,0,0,0,0,0,0.5,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0.0827 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.165 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0.392,0.4,0,0,0,0,0 +1,0.617,0.446,0.328,0.369,1,0,0,0,0,0 +1,0.617,0.446,0.328,0,1,0,0,0,0,0 +1,0.617,0.446,0.328,0.455,0.4,0,0,0,0,0 +1,0.617,0.446,0.328,0.483,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0.4,0 +1,0.6,0.55,0.413,0,0,0,0,0,1,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0994 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.248 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0994 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.488,0.9,0,0,0.0514 +0.667,0.548,0.0788,0.274,0,0,0.169,0.6,0.4,0,0.103 +0.667,0.548,0.0788,0.274,0,0,0,0,1,0,0 +0.667,0.548,0.0788,0.274,0,0,0.307,0,0,0,0.0827 +0.667,0.548,0.0788,0.274,0,0,0.398,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.331,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0.26,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0.248,0,0,0,0.248 +0.333,0.555,0.0541,0.156,0,0,0.272,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.126,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0.26,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.602,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.0669,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0.26,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.457,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.217,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.465,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.126,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.205,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.0354,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.394,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0.555,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.531,0,0,0,0.331 +0.333,0.555,0.0751,0.142,0,0,0.205,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.26,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.0906,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.181,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.213,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.429,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0949 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.125 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.174 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.228 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0253 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.347 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.224 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.9,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.5,0.0827 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0226,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.248 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.413 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.165 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0.0787,0.9,0,0.9,0.226 +1,0.555,0.0654,0.162,0,0,0.26,0.6,0.4,0.5,0.0251 +1,0.555,0.0826,0.156,0,0,0,0,1,0,0 +1,0.555,0.0826,0.156,0,0,0.236,0,1,0,0 +1,0.555,0.0826,0.156,0,0,0,0,1,0,0.274 +1,0.542,0.212,0.37,0,0,0,0,1,0,0 +1,0.542,0.212,0.37,0,0,0,0,1,0,0.166 +1,0.542,0.212,0.37,0,0,0,0,1,0,0.0827 +1,0.542,0.252,0.359,0,0,0,0,0.8,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0501 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.366 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.222 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.0984 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.148 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.247 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.165 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0.562,0.9,0,0,0,0,0.165 +0.667,0.548,0.24,0.235,0.358,0.5,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.415,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.443,0,0,0,0,0,0.0827 +0.667,0.548,0.273,0.235,0.33,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.403,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0.403,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0.432,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0.358,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.235,0.233,0,0,0,0,0.4,0.165 +0.667,0.566,0.3,0.235,0.233,0,0,0,0,1,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,1,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,1,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.8,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0.0827 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0.403,0.4,0,0,0,0,0 +1,0.568,0.806,0.726,0.557,1,0,0,0,0,0 +1,0.568,0.806,0.726,0,1,0,0,0,0,0 +1,0.568,0.806,0.726,0.244,0.4,0,0,0,0,0 +1,0.516,0.509,0.557,0.489,0,0,0,0,0,0 +1,0.516,0.509,0.557,0.477,0,0,0,0,0,0 +1,0.516,0.509,0.557,0.432,0,0,0,0,0,0 +1,0.516,0.509,0.557,0.42,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.248 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.165 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.248 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0.9,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.5,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0.413 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.248 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0.0827 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0.0827 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0.165 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.0827 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.4,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,1,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.331 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.248 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.0827 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.0827 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.248 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.226 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.0251 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0.164 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0.203 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.703 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0875 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.165 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0827 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.205 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0973 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.122 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.9,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.5,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.9,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,1,0.165 +0.667,0.617,0.239,0.247,0,0,0,0,0,1,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,1,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.3,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0.248 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0.165 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.318,0.9,0,0,0,0,0 +1,0.645,0.662,0.467,0.301,0.5,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.307,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.483,0,0,0,0,0,0.102 +0.667,0.6,0.55,0.413,0.301,0,0,0,0,0,0.179 +0.667,0.6,0.55,0.413,0.449,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.103 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.1 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.2 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.185 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0827 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.165 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.338 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,1,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.529 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.233 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0259 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.9,0.0827 +1,0.497,0.0323,0.104,0,0,0,0,0,0.5,0.157 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0827 +1,0.568,0.23,0.328,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.231 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.134 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.259 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.366 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.9,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.5,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.153 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0948 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0711 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.165 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0827 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.22 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.238 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.179 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.223 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.223 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.393 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.248 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.368 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.0522 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.102 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.179 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.386,0.9,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.126,1,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,1,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.0551,0.1,0.9,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0.228,0,1,0,0.248 +0.333,0.555,0.0789,0.142,0,0,0.543,0,1,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0.522,0,1,0,0 +0.333,0.555,0.0789,0.142,0,0,0.384,0,0.4,0,0 +0.333,0.564,0.0871,0.142,0,0,0.622,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.126,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.295,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.476,0,0,0.9,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.5,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.248 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0.392,0.9,0,0,0,0,0 +1,0.645,0.351,0.345,0.33,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.369,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.261,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.483,1,0,0,0,0,0.165 +1,0.658,0.473,0.384,0,0.7,0,0,0,0,0.165 +1,0.658,0.473,0.384,0.528,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.517,0,0.0236,0.4,0,0,0 +1,0.645,0.662,0.467,0.665,0,0.555,1,0,0,0 +1,0.645,0.662,0.467,0.386,0,0.457,0.1,0.9,0,0 +1,0.645,0.662,0.467,0.233,0,0.5,0,0.5,0,0.165 +0.667,0.617,0.446,0.328,0,0,0.205,0,0,0,0.0827 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0919 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0827 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.248 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.389 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.331 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.102 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0254 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.349 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.165 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0241 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.0965 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.4,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,1,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.165 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.158 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0472 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0472 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.094 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0705 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.248 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.165 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.382 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0493 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.362 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.288 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.126 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.429 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.453 +0.667,0.548,0.0788,0.274,0,0,0.646,0.9,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.228,0.6,0.4,0,0.165 +0.667,0.548,0.0788,0.274,0,0,0.272,0,1,0,0 +0.667,0.548,0.0788,0.274,0,0,0.602,0,0,0,0.618 +0.667,0.548,0.0788,0.274,0,0,0.228,0,0,0,0.0993 +0.667,0.548,0.0923,0.263,0,0,0.236,0,0,0,0.0248 +0.667,0.548,0.0923,0.263,0,0,0.0354,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.283,0,0,0,0.165 +0.667,0.548,0.0923,0.263,0,0,0.331,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.472,0,0,0,0.21 +0.667,0.548,0.0923,0.263,0,0,0.0354,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.622,0,0,0,0.248 +0.333,0.555,0.0593,0.153,0,0,0.283,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.453,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0.283,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.575,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.0118,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.228,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.157,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.362,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.193,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.0787,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.26,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.272,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0.26,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0.217,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.126,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0.713,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.228,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.398,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0.272,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0.0906,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.5,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.165 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.248 +1,0.645,0.351,0.345,0.438,0.4,0,0,0,0,0.165 +1,0.658,0.473,0.384,0.5,1,0,0,0,0,0 +1,0.658,0.473,0.384,0,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.42,0.4,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0.506,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.477,0,0,0,0,0,0.0818 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.165 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.4,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,1,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.4,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0.455,0.4,0,0,0,0,0 +1,0.6,0.55,0.413,0.568,1,0,0,0,0,0 +1,0.6,0.55,0.413,0,1,0,0,0,0,0.248 +1,0.6,0.55,0.413,0.392,0.4,0,0,0,0,0.0827 +1,0.564,0.269,0.275,0.682,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0908 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0681 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.306 +1,0.548,0.147,0.263,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.147,0.263,0,0,0,0,0,0,0.258 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.0258 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.248 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.0827 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.248 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.248 +0.333,0.555,0.129,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.129,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.9,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.5,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0.496 +0.667,0.564,0.159,0.142,0,0,0,0,0,0,0.248 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0.165 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0.165 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0.0827 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.331 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0827 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0839 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.021 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.248 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.142 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.272 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.196 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.212,0.37,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0897 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.463 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0983 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0737 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.231 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.154 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.297,0.331,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.541 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.339 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.351,0.328,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.165 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.248 +1,0.542,0.401,0.327,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.248 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.364 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0.331 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.0827 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.333,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0.165 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.369,0.9,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.477,1,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.494,1,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.398,1,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.25,1,0,0,0,0,0 +1,0.516,0.509,0.557,0.25,0.7,0,0,0,0,0 +1,0.516,0.509,0.557,0.551,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0354,0.9,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0.193,0.6,0.4,0,0.331 +1,0.529,0.0241,0.0768,0,0,0,0,1,0,0 +1,0.529,0.0241,0.0768,0,0,0.295,0,1,0,0.229 +1,0.529,0.0241,0.0768,0,0,0.283,0,1,0,0 +1,0.514,0.0488,0.222,0,0,0.146,0,1,0,0 +1,0.514,0.0488,0.222,0,0,0.567,0,1,0.9,0 +1,0.514,0.0488,0.222,0,0,0.339,0,0.4,0.5,0.275 +1,0.49,0.0653,0.308,0,0,0,0,0,0,0.331 +1,0.49,0.0653,0.308,0,0,0.283,0,0,0,0 +1,0.49,0.0653,0.308,0,0,0.398,0,0,0,0.181 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.147 +1,0.529,0.09,0.39,0,0,0.591,0,0,0,0 +1,0.529,0.09,0.39,0,0,0.374,0,0,0,0.165 +1,0.529,0.09,0.39,0,0,0,0,0,0,0 +1,0.529,0.09,0.39,0,0,0.205,0,0,0,0.128 +1,0.529,0.09,0.39,0,0,0.0787,0,0,0,0.0827 +1,0.542,0.11,0.387,0,0,0,0,0,0,0 +1,0.542,0.11,0.387,0,0,0.283,0,0,0,0 +1,0.542,0.11,0.387,0,0,0.114,0,0,0,0 +1,0.542,0.11,0.387,0,0,0,0,0,0,0 +1,0.542,0.11,0.387,0,0,0.441,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0.567,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.331,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.26,0,0,0,0.0827 +0.667,0.548,0.0923,0.263,0,0,0.465,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.543,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.26,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.283,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.217,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.24,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.26,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.0906,0,0,0,0.165 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.245,0,0,0.319,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.693,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.193,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.272,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.169,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.0906,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.138,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.236,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.488,0,0,0.9,0.0827 +0.667,0.548,0.119,0.237,0,0,0.193,0,0,0.5,0.0827 +0.667,0.548,0.134,0.235,0,0,0.138,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.126,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.0906,0,0,0,0.0827 +0.667,0.548,0.134,0.235,0,0,0.657,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.35,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.339,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.295,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.264,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.327,0,0,0,0.161 +1,0.542,0.205,0.327,0,0,0.0906,0,0,0,0.0827 +1,0.568,0.23,0.328,0,0,0.228,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.421,0,0,0,0.0407 +1,0.568,0.23,0.328,0,0,0.421,0,0,0,0.0407 +1,0.568,0.23,0.328,0,0,0.433,0,0,0,0 +1,0.568,0.23,0.328,0,0,0.0118,0,0,0,0.331 +1,0.568,0.23,0.328,0,0,0.283,0,0,0,0.165 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.272,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.248,0,0,0,0.0827 +1,0.591,0.196,0.238,0,0,0.228,0,0,0,0 +1,0.591,0.196,0.238,0,0,0.386,0,0,0,0 +1,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0.165 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.331 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0827 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.207 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.341 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.069 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.18 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.257 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.0257 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.155 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.094 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0235 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.231 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.179 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0966 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.312 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.312 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.339,0.4,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0.421,1,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0.1,0.9,0,0.248 +0.667,0.548,0.134,0.235,0,0,0.169,0,0.5,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.331,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0.205,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.421,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.0236,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.362,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.217,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.169,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0.331,0,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0.26,0,0,0,0.0827 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0.331,0,0,0.4,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,1,0 +0.333,0.576,0.106,0.144,0,0,0.398,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.0472,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.24,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.0354,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0.283,0,0,0,0.0827 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.228,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0.248 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +0.667,0.6,0.55,0.413,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.4,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,1,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,1,0 +1,0.566,0.521,0.501,0,0,0,0,0,0.4,0.0912 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0228 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.162 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.102 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.256 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.128 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0.528,0.9,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0.358,1,0,0,0,0,0.26 +1,0.529,0.0241,0.0768,0.443,1,0,0,0,0,0.119 +1,0.529,0.0241,0.0768,0.295,1,0,0,0,0,0 +1,0.497,0.0323,0.104,0.568,0.3,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0.631,0,0,0,0,0,0.43 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0.189 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.135 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0827 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.248 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.102 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0512 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.425 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0.386,0.9,0,0,0,0,0 +1,0.645,0.351,0.345,0.301,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.631,1,0,0,0,0,0 +1,0.658,0.473,0.384,0.352,1,0,0,0,0.9,0.165 +1,0.658,0.473,0.384,0.466,1,0,0,0,0.5,0 +1,0.658,0.473,0.384,0.233,0.7,0,0,0,0,0 +1,0.658,0.473,0.384,0.511,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.756,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.179,0,0,0,0,0,0 +1,0.645,0.662,0.467,0.179,0,0.657,0.9,0,0,0 +1,0.645,0.662,0.467,0.852,0,0.398,1,0,0,0 +1,0.645,0.662,0.467,0.392,0,0.0354,1,0,0,0 +1,0.645,0.662,0.467,0.528,0,0.362,0.1,0.9,0,0 +1,0.645,0.662,0.467,0.364,0,0.319,0,0.5,0,0 +1,0.619,0.817,0.595,0,0,0.146,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.228,0,0,0,0.165 +1,0.619,0.817,0.595,0,0,0.26,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.319,0,0,0,0 +1,0.619,0.817,0.595,0,0,0.339,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.508,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.236,0,0,0,0 +1,0.566,0.521,0.501,0,0,0.217,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.248 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.248 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0949 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0989 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0247 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0.231 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0.0257 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.102 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0509 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.9,0.0827 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.5,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.226 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.0503 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.2 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.302 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.165 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.0253 +1,0.529,0.09,0.39,0,0,0,0,0,0,0.335 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.418 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.558 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.324 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.9,0.0827 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.5,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.165 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.4,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,1,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.606,0.286,0.332,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0827 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.413 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.165 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.263 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0488 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.208 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.104 +1,0.497,0.0323,0.104,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.192 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.0715 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.165 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.455 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.16 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.248 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.185 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.9,0.165 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.9,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0.157,0.4,0,0,0.165 +0.333,0.576,0.106,0.144,0,0,0.543,1,0,0,0.0827 +0.333,0.576,0.106,0.144,0,0,0.465,0.1,0.9,0,0.165 +0.667,0.591,0.196,0.238,0,0,0.22,0,0.5,0,0.165 +0.667,0.617,0.239,0.247,0,0,0.335,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.272,0,0,0,0.248 +0.667,0.617,0.239,0.247,0,0,0.26,0,0,0,0.165 +0.667,0.617,0.239,0.247,0,0,0.331,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0.419,0,0,0,0.165 +0.667,0.617,0.239,0.247,0,0,0.341,0,0,0,0.165 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.705,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.146,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.453,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.362,0,0,0,0 +1,0.658,0.473,0.384,0,0,0.0551,0,0,0,0.0827 +1,0.645,0.662,0.467,0,0,0.217,0,0,0,0 +1,0.645,0.662,0.467,0,0,0.331,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.449 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0998 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0499 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.0994 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.248 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.132 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.0945 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0.193,0.9,0,0,0.0827 +1,0.548,0.174,0.256,0,0,0.374,0.6,0.4,0,0.184 +1,0.542,0.277,0.343,0,0,0,0,1,0,0.0757 +1,0.542,0.277,0.343,0,0,0.398,0,1,0,0 +1,0.542,0.277,0.343,0,0,0.398,0,1,0,0.0827 +1,0.542,0.277,0.343,0,0,0,0,1,0,0.173 +1,0.542,0.277,0.343,0,0,0,0,1,0,0.19 +0.667,0.548,0.191,0.245,0,0,0,0,0.4,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0.165 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.165 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.0827 +1,0.548,0.273,0.235,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.165 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.0827 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0.248 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.606,0.464,0.332,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.0827 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.0827 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0.165 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0.165 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0.0827 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0988 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.173 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.165 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.217 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.165 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0,0.248 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.0827 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0.165 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0.631,0.4,0,0,0,0,0 +0.667,0.562,0.16,0.14,0.369,1,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,1,0,0,0,0,0 +0.667,0.563,0.301,0.23,0.528,0.3,0,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0.455,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.0827 +0.667,0.588,0.316,0.233,0.653,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0.489,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0.244,0,0,0,0,0,0.331 +0.667,0.588,0.316,0.233,0.403,0,0,0,0,0.4,0.248 +0.667,0.588,0.316,0.233,0.312,0,0,0,0,1,0 +0.667,0.588,0.316,0.233,0.636,0,0,0,0,1,0 +1,0.64,0.481,0.338,0,0,0,0,0,0.4,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.631,0,0,0,0,0,0.165 +1,0.64,0.481,0.338,0.415,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.682,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.938,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.0998 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.0499 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.131 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.181 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0469 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.164 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.165 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.331 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0.228,0.4,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.508,1,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,1,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.374,0.7,0.3,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.283,0,1,0,0 +0.333,0.554,0.0595,0.15,0,0,0.26,0,1,0,0 +0.333,0.554,0.0595,0.15,0,0,0.283,0,0.4,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.409,0,0,0,0.331 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0989 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.173 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.234 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.13 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0.4,0 +1,0.64,0.352,0.338,0,0,0,0,0,1,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0.114,0.4,0,0,0 +1,0.653,0.474,0.377,0,0,0,1,0,0,0 +1,0.653,0.474,0.377,0,0,0.465,0.1,0.9,0,0 +1,0.653,0.474,0.377,0,0,0.146,0,1,0,0.0827 +1,0.653,0.474,0.377,0,0,0,0,0.8,0,0 +1,0.653,0.474,0.377,0,0,0.295,0,0,0,0.232 +1,0.653,0.474,0.377,0,0,0.248,0,0,0,0.103 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.264,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.0906,0,0,0,0.175 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0232 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.451 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.393 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.167 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.0953 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.143 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.151 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0677 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0903 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0944 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0.0236 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.231 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0576 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.365 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.248 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0.614,0.4,0,0,0,0,0.173 +0.667,0.588,0.196,0.233,0.386,1,0,0,0,0,0.0453 +0.667,0.588,0.196,0.233,0,1,0,0,0,0,0 +1,0.602,0.287,0.324,0.466,0.3,0,0,0,0,0 +1,0.64,0.352,0.338,0.523,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.415,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0.4,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.165 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.149 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.65,0.9,0,0,0.222 +1,0.64,0.664,0.461,0,0,0.362,0.6,0.4,0,0 +1,0.64,0.664,0.461,0,0,0,0,1,0,0 +1,0.64,0.664,0.461,0,0,0.488,0,1,0,0.0827 +1,0.64,0.664,0.461,0,0,0.205,0,0.3,0,0.1 +1,0.615,0.82,0.59,0,0,0.791,0,0,0,0.0502 +1,0.615,0.82,0.59,0,0,0.254,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.254,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.398,0,0,0,0.426 +1,0.615,0.82,0.59,0,0,0.26,0,0,0,0.248 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.362,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.272,0,0,0,0.0993 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.223 +1,0.563,0.523,0.496,0,0,0.35,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.228,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.362,0,0,0,0 +1,0.545,0.167,0.218,0,0,0.0551,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0.0906,0,0,0,0 +1,0.545,0.167,0.218,0,0,0.0472,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.26,0,0,0,0.331 +1,0.532,0.0783,0.116,0,0,0.0787,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.275 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.266 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.214 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0238 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.74,0.9,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.339,1,0,0,0.248 +0.667,0.546,0.135,0.23,0,0,0,1,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.217,0.2,0.8,0,0 +0.667,0.546,0.135,0.23,0,0,0.283,0,0.5,0,0.165 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.5,0,0,0,0.248 +0.667,0.546,0.135,0.23,0,0,0.319,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.496,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.205,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.488,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.0354,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.465,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.9,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.5,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.303 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0827 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.248 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.165 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.696 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0.591,0.9,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0.26,0.6,0.4,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,1,0,0 +0.333,0.554,0.0753,0.14,0,0,0.272,0,1,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0.272,0,0.3,0,0 +0.333,0.554,0.0791,0.14,0,0,0.236,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.602,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.26,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.441,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0.488,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.272,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.217,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.9,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,1,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.9,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.413 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.331 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.574,0.4,0,0,0,0,0 +1,0.653,0.474,0.377,0.472,0.9,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.248 +1,0.653,0.474,0.377,0.534,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0.369,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.705,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.46,0.4,0,0,0,0,0 +1,0.562,0.269,0.273,0.455,1,0,0,0,0,0 +1,0.562,0.269,0.273,0,1,0,0,0,0,0 +1,0.562,0.269,0.273,0.517,0.3,0,0,0,0,0 +1,0.562,0.269,0.273,0.472,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.092 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.046 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.175 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.382 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.248 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.248 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.4,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,1,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.165 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.248 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.103 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.205 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,0,0.0493 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.9,0.0739 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.9,0 +0.667,0.546,0.12,0.232,0.58,0.9,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.551,0.4,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.585,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.318,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0.46,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.331 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.224 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0997 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.15 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0498 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.165 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.403,0.9,0,0,0,0,0 +1,0.653,0.474,0.377,0.557,1,0,0,0,0,0 +1,0.64,0.664,0.461,0.398,0.8,0,0,0,0,0 +1,0.64,0.664,0.461,0.386,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.205,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.205,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.415,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.398,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.273,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.455,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.472,0,0,0,0,0,0.101 +1,0.563,0.777,0.72,0.284,0,0,0,0,0,0.101 +1,0.563,0.777,0.72,0.241,0,0,0,0,0,0 +1,0.563,0.777,0.72,0.241,0,0,0,0,0,0.165 +1,0.563,0.523,0.496,0.273,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.42,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.33,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.165 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.165 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.426 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.0468 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0.164 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.0827 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.248 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.413 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.331 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.4,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0.331 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0.165 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.248 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.165 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.262 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.369 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0.0888 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0.0827 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.165 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.165 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.251 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0628 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.232 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.0258 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.165 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.0827 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.165 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0.0827 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0.0827 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0.0827 +1,0.588,0.172,0.146,0,0,0,0,0,0,0 +1,0.588,0.172,0.146,0,0,0,0,0,0,0.248 +1,0.592,0.201,0.159,0,0,0,0,0,0,0.165 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.592,0.201,0.159,0,0,0,0,0,0,0.248 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.592,0.201,0.159,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.102 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.0512 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.197 +1,0.545,0.182,0.218,0,0,0,0,0,0,0.222 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.296 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0.9,0.0736 +1,0.512,0.0489,0.22,0,0,0,0,0,0.5,0.147 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0.0827 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.121 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.341 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0464 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.101 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0252 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.165 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.0485 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.121 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.248 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.165 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.165 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.331 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.0827 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.225 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.182 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.543,0.9,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.193,0.6,0.4,0,0.178 +1,0.528,0.0241,0.0763,0,0,0,0,0.9,0,0 +1,0.528,0.0241,0.0763,0,0,0.228,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.339,0,0,0,0.212 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.14 +1,0.512,0.0489,0.22,0,0,0.0551,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0.236,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0.429,0,0,0,0.267 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.248 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.248 +0.333,0.575,0.106,0.141,0.545,0.4,0,0,0,0,0.165 +0.333,0.588,0.128,0.146,0.273,0.9,0,0,0,0,0.331 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0.42,0,0,0,0,0,0.0827 +0.667,0.614,0.24,0.242,0.369,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.483,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.574,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0.67,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.352,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.449,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0.602,0,0,0,0,0,0.248 +1,0.64,0.664,0.461,0.381,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.517,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.608,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.483,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.42,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.312,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.165 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.0827 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0942 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0942 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0827 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.121 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0985 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.123 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.235 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.0261 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.188 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.5,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.248 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.318,0.9,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0.392,1,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0.409,0.8,0,0,0,0,0 +1,0.64,0.352,0.338,0.375,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.386,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.5,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.265 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.15 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.413 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.248 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.531 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.185 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.204 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.209 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0679 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.0827 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.397 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0772 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0708 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.204 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0791,0.14,0,0,0.0236,0.9,0,0,0 +0.667,0.554,0.0791,0.14,0,0,0.283,0.6,0.4,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,1,0,0 +0.333,0.562,0.0873,0.14,0,0,0.327,0,1,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0.0354,0,1,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,1,0,0 +0.333,0.562,0.0873,0.14,0,0,0.354,0,1,0,0 +0.667,0.563,0.159,0.23,0,0,0.272,0,0.1,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.228,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.205,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.339,0,0,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0.0236,0,0,0,0.1 +0.667,0.614,0.24,0.242,0,0,0.272,0,0,0,0.1 +0.667,0.614,0.24,0.242,0,0,0.272,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0.193,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0.0787,0,0,0,0 +1,0.64,0.352,0.338,0,0,0.181,0,0,0,0.224 +1,0.64,0.352,0.338,0,0,0.26,0,0,0,0.215 +1,0.653,0.474,0.377,0,0,0.398,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.283,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.193,0,0,0,0.0697 +1,0.653,0.474,0.377,0,0,0.465,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.386,0,0,0,0 +1,0.653,0.474,0.377,0,0,0.283,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.453,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.272,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.205,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.26,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.0354,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.35,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.205,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.331,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.362,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.0551,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.693,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.272,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.362,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.567,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.331,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.364 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.268 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0805 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0.0354,0.4,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,1,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0.228,0.1,0.9,0,0 +0.333,0.554,0.0595,0.15,0,0,0.169,0,0.4,0,0 +0.333,0.554,0.0595,0.15,0,0,0.331,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0.508,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.476,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.395,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.448,0,0,0.9,0.0827 +0.333,0.554,0.0648,0.145,0,0,0.236,0,0,0.5,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.579 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.331 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.165 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.165 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.331 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.0749 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.0965 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.0724 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.19 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.188 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.112 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.265 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.182 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.28 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.165 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.165 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.258 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.152 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.216 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.024 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.4,0.22 +1,0.549,0.0444,0.162,0,0,0,0,0,1,0.0732 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.223 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.0744 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.0975 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.146 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.108 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.104 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.0521 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.165 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.9,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,1,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.9,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.443,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.248 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.165 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.101 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.0504 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0926 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0232 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.147 +1,0.549,0.0444,0.162,0.415,0.9,0,0,0,0,0.0827 +1,0.549,0.0444,0.162,0.443,1,0,0,0,0,0 +1,0.549,0.0444,0.162,0.375,1,0,0,0,0,0 +1,0.549,0.0444,0.162,0.369,1,0,0,0,0,0.429 +1,0.546,0.113,0.27,0.21,1,0,0,0,0,0.314 +1,0.546,0.113,0.27,0.21,1,0,0,0,0,0.248 +1,0.546,0.113,0.27,0.665,0.9,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.084 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.248 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.0827 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.165 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.0827 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.165 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.562,0.16,0.14,0,0,0,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.4,0.165 +0.667,0.563,0.301,0.23,0,0,0,0,0,1,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,1,0 +1,0.602,0.465,0.324,0,0,0,0,0,0.4,0.0827 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.248 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.22 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0982 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0246 +1,0.614,0.503,0.324,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0.435 +1,0.615,0.876,0.59,0,0,0,0,0,0,0.172 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0.104 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.103 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0,0.151 +1,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0952 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.143 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.579 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.248 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0827 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.0827 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.248 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.248 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.9,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.5,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.225 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.1 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.154 +1,0.623,0.321,0.268,0,0,0,0,0,0,0.154 +1,0.623,0.321,0.268,0,0,0,0,0,0,0 +1,0.623,0.321,0.268,0,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0.179 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.227 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.323 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.207 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.165 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0827 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0958 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.11 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0219 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.081 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.7,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.331 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.4,0.0827 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.42,0.4,0,0,0,0,0.165 +1,0.653,0.474,0.377,0.33,1,0,0,0,0,0.331 +1,0.653,0.474,0.377,0.241,1,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0.241,0.3,0,0,0,0,0 +1,0.64,0.664,0.461,0.477,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.562,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.489,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.114 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.103 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.256 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.0769 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0.101 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.252 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0755 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.111 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.413 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0.248 +0.333,0.554,0.0542,0.154,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.2,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.496 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,1,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,1,0.473 +1,0.653,0.474,0.377,0,0,0,0,0,0.3,0.1 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.15 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0993 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.174 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0897 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0448 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0.193 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.165 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.165 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.179 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.22 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.232 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.346 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0908 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0454 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,1,0.0827 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,1,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.1,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.165 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0.165 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.9,0.0827 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.5,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.228 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.253 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.591 +1,0.64,0.664,0.461,0.653,0.4,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.602,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.335,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.415,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.312,1,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.409,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0.103 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0.206 +0.667,0.563,0.523,0.496,0,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0.9,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.217,0.4,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,1,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.217,0.1,0.9,0,0 +1,0.528,0.0189,0.0499,0,0,0.331,0,1,0,0.165 +1,0.528,0.0189,0.0499,0,0,0.213,0,0.8,0,0.248 +1,0.528,0.0189,0.0499,0,0,0.374,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0.146,0,0,0,0.0827 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.0236,0,0,0,0.0827 +1,0.528,0.0241,0.0763,0,0,0.362,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0.307,0,0,0,0.248 +1,0.528,0.0241,0.0763,0,0,0.0906,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0.555,0,0,0,0.266 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.104 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.0518 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.252 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0997 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0997 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.126 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0984 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0492 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.131 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.343,0.9,0,0,0.248 +0.667,0.546,0.142,0.23,0,0,0,0.6,0.4,0,0.165 +0.667,0.546,0.142,0.23,0,0,0,0,1,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,1,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,1,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,1,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,1,0,0 +1,0.563,0.23,0.321,0,0,0,0,0.1,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.165 +1,0.602,0.287,0.324,0,0,0,0,0,0.9,0.0827 +1,0.602,0.287,0.324,0,0,0,0,0,0.5,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.165 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.092 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.046 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.232 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.197 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.125 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0,0,0,0.2,0.0827 +1,0.546,0.113,0.27,0,0,0,0,0,0,0 +1,0.546,0.113,0.27,0,0,0.61,0.9,0,0,0 +1,0.546,0.148,0.258,0,0,0.386,1,0,0,0.165 +1,0.546,0.148,0.258,0,0,0,1,0,0,0.0827 +1,0.546,0.148,0.258,0,0,0.669,0.2,0.8,0,0 +1,0.538,0.212,0.362,0,0,0.35,0,1,0,0 +1,0.538,0.212,0.362,0,0,0,0,0.9,0,0 +0.667,0.546,0.148,0.258,0,0,0.272,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.0236,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.35,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.236,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0.205,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.319,0,0,0,0.0827 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.26,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.236,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.0827 +0.667,0.546,0.205,0.232,0.494,0.4,0,0,0,0,0.165 +0.667,0.546,0.205,0.232,0.489,1,0,0,0,0,0.0827 +0.667,0.546,0.205,0.232,0,1,0,0,0,0,0.0827 +0.333,0.554,0.111,0.141,0.517,1,0,0,0,0,0.165 +0.333,0.554,0.111,0.141,0.483,1,0,0,0,0,0.331 +0.333,0.554,0.111,0.141,0.369,1,0,0,0,0,0.331 +0.333,0.554,0.129,0.14,0.415,1,0,0,0,0,0.331 +0.333,0.554,0.129,0.14,0,0.4,0,0,0,0,0.0827 +0.333,0.554,0.129,0.14,0.358,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0.506,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0.58,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0.398,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.165 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.274,0.23,0.381,0,0,0,0,0,0.165 +0.667,0.546,0.274,0.23,0.33,0,0.26,0.4,0,0,0 +0.667,0.546,0.274,0.23,0.54,0,0.374,1,0,0,0 +0.667,0.546,0.274,0.23,0.369,0,0.555,0.1,0.9,0,0.248 +0.667,0.563,0.301,0.23,0,0,0.402,0,0.4,0,0 +0.667,0.563,0.301,0.23,0,0,0.268,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0.339,0,0,0,0.0827 +0.667,0.563,0.301,0.23,0,0,0.0906,0,0,0,0.165 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.301,0.23,0,0,0.35,0,0,0,0 +1,0.602,0.465,0.324,0,0,0.283,0,0,0,0 +1,0.602,0.465,0.324,0,0,0.465,0,0,0,0 +1,0.602,0.465,0.324,0,0,0.0551,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.22 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0979 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0905 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.0475 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0.0933 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0.07 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0515 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0.0827 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0.14 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.103 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.128 +1,0.546,0.148,0.258,0,0,0,0,0,0,0 +1,0.546,0.148,0.258,0,0,0,0,0,0.4,0 +1,0.546,0.148,0.258,0,0,0,0,0,1,0 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.0966 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.248 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.248 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.248 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0.165 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.9,0.0827 +0.333,0.554,0.111,0.141,0,0,0,0,0,1,0.165 +0.333,0.554,0.111,0.141,0,0,0,0,0,1,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,1,0.0827 +1,0.538,0.298,0.324,0,0,0,0,0,1,0 +1,0.538,0.298,0.324,0,0,0,0,0,1,0 +1,0.538,0.298,0.324,0,0,0,0,0,1,0.248 +1,0.538,0.352,0.32,0,0,0.26,0.4,0,0.1,0 +1,0.538,0.352,0.32,0,0,0,1,0,0,0 +1,0.538,0.352,0.32,0,0,0.421,0.1,0.9,0,0 +1,0.538,0.352,0.32,0,0,0.295,0,1,0,0 +1,0.538,0.352,0.32,0,0,0.146,0,0.8,0,0 +1,0.538,0.352,0.32,0,0,0.283,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.228,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.331,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.283,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0.283,0,0,0,0.248 +1,0.563,0.443,0.321,0,0,0.205,0,0,0,0.165 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0.205,0,0,0,0.0827 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.563,0.443,0.321,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0.4,0 +1,0.602,0.465,0.324,0,0,0,0,0,1,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.165 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.248 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0827 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0.0827 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0.0827 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0.165 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0.0827 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0827 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.165 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.377 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0236 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.182 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0997 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.265 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.124 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.9,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.9,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.592,0.169,0.159,0,0,0,0,0,0,0.248 +0.333,0.592,0.169,0.159,0,0,0,0,0,0,0 +0.333,0.592,0.169,0.159,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.165 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.513 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.165 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0.248 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0.273 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.286 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.331 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.413 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0.165 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0.165 +0.667,0.623,0.321,0.268,0.324,0.9,0,0,0,0,0.0827 +0.667,0.623,0.321,0.268,0.295,1,0,0,0,0,0 +0.667,0.614,0.448,0.324,0.71,0.8,0,0,0,0,0 +0.667,0.614,0.448,0.324,0.511,0,0,0,0,0,0.398 +0.667,0.614,0.448,0.324,0.216,0,0,0,0,0,0.0775 +1,0.64,0.664,0.461,0.244,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.244,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.196 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.195 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.161 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.122 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.101 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.201 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.441 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.323 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.417 +1,0.538,0.111,0.381,0,0,0,0,0,0,0.201 +1,0.538,0.111,0.381,0,0,0,0,0,0,0 +1,0.538,0.111,0.381,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.18 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0444 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.0888 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.331 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.331 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.9,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.5,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0827 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0827 +1,0.64,0.352,0.338,0.466,0.4,0,0,0,0,0 +1,0.623,0.321,0.268,0.318,1,0,0,0,0,0 +1,0.623,0.321,0.268,0.202,1,0,0,0,0,0.165 +1,0.623,0.321,0.268,0.202,1,0,0,0,0,0 +1,0.653,0.474,0.377,0.409,1,0,0,0,0,0 +1,0.653,0.474,0.377,0.409,1,0,0,0,0,0 +1,0.653,0.474,0.377,0.54,0.1,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.528,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0.511,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.438,0,0,0,0,0,0 +1,0.64,0.664,0.461,0.489,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.523,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0.534,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.443,0,0,0,0,0,0 +1,0.615,0.82,0.59,0.722,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0.42,0,0,0,0,0,0.0949 +1,0.563,0.777,0.72,0.466,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.528,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.506,0,0,0,0,0,0 +1,0.563,0.523,0.496,0.222,0,0,0,0,0,0 +1,0.545,0.167,0.218,0.222,0,0,0,0,0,0 +1,0.545,0.167,0.218,0.432,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.548 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0966 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0827 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.2 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.165 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.214 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.0238 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.227 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.177 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.175 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.0987 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.123 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.165 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.123 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.148 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0.5,0.9,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0.517,1,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0.392,0.8,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0.432,0,0.512,0.9,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0.398,0.6,0.4,0,0.0827 +0.333,0.554,0.0595,0.15,0,0,0.0591,0,1,0,0 +0.333,0.554,0.0595,0.15,0,0,0.319,0,1,0,0.0827 +0.667,0.546,0.103,0.25,0,0,0.0472,0,1,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,1,0,0 +0.667,0.546,0.114,0.24,0,0,0.543,0,1,0,0 +0.667,0.546,0.114,0.24,0,0,0.496,0,0.1,0,0 +0.667,0.546,0.114,0.24,0,0,0.0551,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0.319,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0.26,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.0354,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.543,0,0,0.9,0.165 +0.667,0.546,0.12,0.232,0,0,0.272,0,0,0.5,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.272,0,0,0,0.248 +0.667,0.546,0.12,0.232,0,0,0.476,0,0,0,0.0827 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.634,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.236,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.724,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.248,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0.295,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.228,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.283,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0993 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0744 +1,0.64,0.352,0.338,0.352,0.9,0,0,0,0,0 +1,0.64,0.352,0.338,0.42,0.4,0,0,0,0,0.0827 +1,0.653,0.474,0.377,0.585,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.636,0,0,0,0,0,0.215 +1,0.653,0.474,0.377,0.242,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.485,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.517,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.79,0,0,0,0,0,0.342 +1,0.64,0.664,0.461,0.236,0,0,0,0,0,0.129 +1,0.64,0.664,0.461,0.236,0,0,0,0,0.9,0 +1,0.64,0.664,0.461,0.568,0,0,0,0,0.5,0 +1,0.64,0.664,0.461,0.375,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.0944 +1,0.597,0.552,0.41,0,0,0,0,0,0,0.142 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.15 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.165 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.165 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.148 +0.667,0.528,0.0189,0.0499,0,0,0,0,0,0,0.182 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.249 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.273 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.125 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.165 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.228 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.196 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.248 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.165 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.0827 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.165 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +1,0.563,0.23,0.321,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.331 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +1,0.602,0.287,0.324,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.9,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,1,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.3,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.4,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,1,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,1,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.2,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0.4,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,1,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0,0.0827 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0.0827 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0.0827 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.0827 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.248 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0.4,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,1,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.178 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.167 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.121 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.171 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.022 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.0827 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.447 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0943 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0707 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0827 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.171 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.0245 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0.364,0.4,0,0,0,0,0 +0.333,0.554,0.146,0.14,0.557,1,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,1,0,0,0,0,0 +0.333,0.562,0.16,0.14,0.42,0.3,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0.477,0,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0.409,0,0,0,0,0,0.248 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0.165 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0.551,0,0,0,0,0,0.0827 +0.333,0.575,0.167,0.141,0.528,0,0,0,0,0,0 +0.333,0.575,0.167,0.141,0.392,0,0,0,0,0,0 +0.333,0.575,0.167,0.141,0.562,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0.202,0,0,0,0,0.4,0.165 +0.667,0.588,0.316,0.233,0.202,0,0,0,0,1,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0.472,0.9,0,0,0,0,0.331 +1,0.64,0.481,0.338,0.443,1,0,0,0,0,0.165 +1,0.64,0.481,0.338,0.341,0.8,0,0,0,0,0 +1,0.64,0.481,0.338,0.534,0,0,0,0,0,0.165 +1,0.653,0.567,0.377,0.67,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.648,0.9,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.472,1,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.534,0.8,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.551,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0926 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0463 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.278 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.103 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.0515 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.0827 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.0827 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.0827 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.0827 +1,0.546,0.113,0.27,0,0,0,0,0,0.4,0.165 +1,0.546,0.113,0.27,0,0,0,0,0,1,0 +1,0.546,0.113,0.27,0,0,0.319,0.9,0,0,0 +1,0.538,0.16,0.381,0,0,0.283,0.6,0.4,0,0 +1,0.538,0.16,0.381,0,0,0,0,1,0,0 +1,0.538,0.16,0.381,0,0,0.839,0,1,0,0.0827 +1,0.538,0.212,0.362,0,0,0.217,0,1,0,0 +1,0.538,0.212,0.362,0,0,0,0,0.7,0,0 +1,0.538,0.212,0.362,0,0,0.126,0,0,0,0 +1,0.538,0.212,0.362,0,0,0.35,0,0,0,0 +1,0.538,0.212,0.362,0,0,0,0,0,0,0 +1,0.538,0.212,0.362,0,0,0.126,0,0,0,0 +1,0.538,0.253,0.351,0,0,0.126,0,0,0,0.0827 +1,0.538,0.253,0.351,0,0,0.567,0,0,0,0 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0.283,0,0,0,0.165 +1,0.538,0.253,0.351,0,0,0,0,0,0,0 +1,0.538,0.253,0.351,0,0,0.272,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.228,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.236,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.138,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.374,0,0,0,0 +1,0.538,0.278,0.335,0,0,0,0,0,0,0 +1,0.538,0.278,0.335,0,0,0.398,0,0,0,0 +1,0.538,0.298,0.324,0,0,0.217,0,0,0,0.165 +1,0.538,0.298,0.324,0,0,0,0,0,0,0.331 +1,0.538,0.298,0.324,0,0,0.465,0,0,0,0.0827 +1,0.538,0.298,0.324,0,0,0.0354,0,0,0,0 +1,0.538,0.298,0.324,0,0,0,0,0,0,0 +1,0.538,0.298,0.324,0,0,0.0906,0,0,0,0.0827 +1,0.538,0.352,0.32,0,0,0.319,0,0,0,0.0827 +1,0.538,0.352,0.32,0,0,0,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.283,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.26,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.213,0,0,0,0 +1,0.538,0.352,0.32,0,0,0.126,0,0,0,0.0827 +1,0.538,0.402,0.32,0,0,0.248,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0 +1,0.538,0.402,0.32,0,0,0,0,0,0,0.165 +1,0.538,0.402,0.32,0,0,0,0,0,0,0.0827 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.207 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.165 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.602,0.465,0.324,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0.4,0 +1,0.64,0.481,0.338,0,0,0,0,0,1,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.331 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.165 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.199 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0239 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.309 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.331 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0827 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.266 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.5 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.165 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0862 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0827 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.204 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.386 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0782 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.128 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0771 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.248 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.165 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.331 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.248 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.402 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0649 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0.364,0.4,0,0,0,0,0.188 +0.333,0.562,0.0873,0.14,0.614,1,0,0,0,0,0.34 +0.333,0.562,0.0873,0.14,0,1,0,0,0,0,0.0827 +0.333,0.562,0.0873,0.14,0.386,0.3,0,0,0,0,0.0827 +0.333,0.575,0.106,0.141,0.307,0,0,0,0,0,0.151 +0.333,0.575,0.106,0.141,0.318,0,0,0,0,0,0.19 +0.667,0.588,0.196,0.233,0.432,0,0,0,0,0,0.165 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0.443,0,0,0,0,0,0.206 +0.667,0.588,0.196,0.233,0.426,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.557,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.426,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.295,0,0,0,0,0,0 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.33,0,0,0,0,0.9,0.248 +1,0.64,0.352,0.338,0,0,0,0,0,1,0.331 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0,0,0,0,0,0.1,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0.543,0.9,0,0,0 +1,0.64,0.664,0.461,0,0,0.126,0.6,0.4,0,0 +1,0.615,0.82,0.59,0,0,0.315,0,0.9,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0827 +1,0.615,0.82,0.59,0,0,0.307,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.26,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.228,0,0,0,0 +1,0.597,0.552,0.41,0,0,0.236,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.272,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.508,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.135 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.0975 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.244 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.165 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.139 +1,0.487,0.0655,0.305,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0,0.0982 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0246 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.165 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.187 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.248 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.165 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.165 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.4,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,1,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.248 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.0827 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.135 +1,0.64,0.352,0.338,0,0,0,0,0,0.4,0 +1,0.653,0.474,0.377,0,0,0,0,0,1,0 +1,0.653,0.474,0.377,0.489,0.9,0,0,0,1,0 +0.667,0.623,0.321,0.268,0.597,1,0,0,0,1,0.0827 +1,0.653,0.474,0.377,0.472,0.8,0,0,0,0.8,0 +1,0.653,0.474,0.377,0.415,0,0,0,0,0,0 +1,0.653,0.474,0.377,0.29,0,0,0,0,0,0.165 +1,0.64,0.664,0.461,0.29,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0827 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.179 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0.205,0.4,0,0,0.0827 +1,0.563,0.777,0.72,0,0,0,1,0,0,0 +1,0.563,0.777,0.72,0,0,0.272,0.1,0.9,0,0 +1,0.563,0.523,0.496,0,0,0.441,0,1,0,0 +1,0.529,0.318,0.386,0,0,0,0,0.8,0,0 +1,0.529,0.318,0.386,0,0,0.248,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.272,0,0,0,0.0827 +1,0.529,0.318,0.386,0,0,0.575,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.488,0,0,0,0 +1,0.529,0.318,0.386,0,0,0.217,0,0,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0,0 +1,0.503,0.141,0.183,0,0,0.465,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.331,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.0551,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.248,0,0,0,0.0827 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.283,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.0906,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.26,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.598,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.205,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.669,0,0,0,0.0827 +1,0.528,0.0236,0.0578,0,0,0.283,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.283,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.217,0,0,0,0.165 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0171,0.0495,0,0,0.535,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.622,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.0551,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.374,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.193,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0.476,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0.5,0,0,0,0.331 +1,0.528,0.0157,0.0495,0,0,0.272,0,0,0,0.579 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.232 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0.108 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.331 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.248 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.9,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.5,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.287 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.102 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.23 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.231 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0942 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.118 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.129 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.206 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.32 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.119 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.9,0.226 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.5,0.291 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0979 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0979 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.306 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.125 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.183 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.186 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.439 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0477 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.188 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.182 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.165 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.138 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.248 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.22 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0734 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.1 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.126 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.14 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0989 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.173 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.207 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.413 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.165 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.4,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.261,0.4,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.369,1,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.273,1,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.273,0.3,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0.438,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.403,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.182 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0991 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.124 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.116 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.9,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.5,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.331 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.9,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.352 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.273 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0501 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.496 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.269 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0259 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.524 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0.0977 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0.147 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.218 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0961 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.168 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.231 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.257 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.129 +1,0.615,0.79,0.668,0.597,0.9,0,0,0,0,0 +1,0.615,0.79,0.668,0.409,1,0,0,0,0,0 +1,0.563,0.749,0.788,0.767,0.8,0,0,0,0,0 +1,0.563,0.749,0.788,0.381,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0.193,0.9,0,0,0.248 +1,0.546,0.142,0.263,0,0,0.205,0.6,0.4,0,0 +1,0.546,0.169,0.256,0,0,0,0,1,0,0 +1,0.546,0.169,0.256,0,0,0.126,0,1,0,0.0827 +1,0.546,0.169,0.256,0,0,0.0354,0,0.3,0,0 +0.667,0.554,0.0933,0.153,0,0,0.126,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0.283,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0.248,0,0,0,0.331 +0.667,0.554,0.101,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.228,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.0906,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.441,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.283,0,0,0,0 +0.667,0.554,0.101,0.147,0,0,0.0906,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0.193,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0.283,0,0,0,0.0827 +0.667,0.554,0.108,0.143,0,0,0.228,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0,0,0,0,0.248 +0.667,0.554,0.108,0.143,0,0,0.0118,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0.205,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0.114,0,0,0,0.0827 +0.667,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.125,0.142,0,0,0.35,0,0,0,0.0827 +0.667,0.554,0.125,0.142,0,0,0.465,0,0,0,0 +0.667,0.554,0.141,0.142,0,0,0.0551,0,0,0,0 +0.667,0.554,0.141,0.142,0,0,0.319,0,0,0,0.0827 +0.667,0.554,0.141,0.142,0,0,0.193,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0.319,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0.319,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.236,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.283,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.602,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0.0906,0,0,0,0.165 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.165 +0.333,0.575,0.162,0.144,0,0,0.283,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0.169,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.0958 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0.168 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.9,0.257 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.5,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0.165 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0.248 +0.667,0.623,0.37,0.289,0.432,0.9,0,0,0,0,0 +1,0.653,0.546,0.408,0.358,1,0,0,0,0,0 +1,0.64,0.718,0.518,0.517,1,0,0,0,0,0 +1,0.64,0.718,0.518,0.778,1,0,0,0,0,0 +1,0.64,0.718,0.518,0,1,0,0,0,0,0.0827 +1,0.614,0.485,0.362,0.42,0.6,0,0,0,0,0 +1,0.614,0.485,0.362,0.438,0,0,0,0,0,0 +1,0.614,0.485,0.362,0.46,0,0,0,0,0,0 +1,0.597,0.569,0.462,0.443,0,0,0,0,0,0 +1,0.597,0.569,0.462,0,0,0,0,0,0,0.0827 +1,0.597,0.569,0.462,0.619,0,0,0,0,0,0 +1,0.597,0.569,0.462,0.364,0,0,0,0,0,0 +1,0.597,0.569,0.462,0.534,0,0,0,0,0,0.0827 +1,0.597,0.569,0.462,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.496 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.101 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0.125 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0.125 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0.9,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0,1,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.9,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.0827 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.248 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.165 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.165 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.0827 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.165 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.248 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.248 +1,0.563,0.427,0.329,0,0,0,0,0,0,0.248 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0,0,0,0,0,0,0.165 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.225 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.215 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.165 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.0827 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0.9,0 +1,0.615,0.844,0.668,0,0,0,0,0,0.5,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.269 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0938 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.117 +1,0.512,0.492,0.571,0,0,0.339,0.9,0,0,0 +1,0.512,0.492,0.571,0,0,0.339,0.6,0.4,0,0 +1,0.503,0.155,0.183,0,0,0,0,1,0,0 +1,0.503,0.155,0.183,0,0,0.319,0,1,0,0 +1,0.503,0.155,0.183,0,0,0.0472,0,0.3,0,0 +1,0.503,0.155,0.183,0,0,0.445,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.177 +1,0.503,0.155,0.183,0,0,0.362,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.205,0,0,0,0 +1,0.495,0.059,0.099,0,0,0.283,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0.114,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0.169,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.224 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.0497 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.189 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0473 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.166 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.184 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.27 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.124 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.199 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0.386,0.9,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0.415,1,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0.358,0.8,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0.466,0,0,0,0,0,0.248 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0951 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0951 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.15 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.175 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.4,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,1,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.413 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.4,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,1,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,1,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,1,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.9,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.9,0.248 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.5,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0.307,0.9,0,0,0,0,0 +0.667,0.614,0.232,0.252,0.341,1,0,0,0,0.4,0 +0.667,0.614,0.232,0.252,0.54,0.8,0,0,0,1,0 +0.667,0.614,0.232,0.252,0.494,0,0,0,0,1,0 +1,0.64,0.339,0.353,0.312,0,0,0,0,0.4,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.331 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.17 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.248 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.165 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.197 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0984 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.265 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.249 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0249 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.0827 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.413 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0.699,0.9,0,0,0,0,0 +1,0.64,0.339,0.353,0.375,1,0,0,0,0.4,0 +1,0.653,0.457,0.408,0.443,1,0,0,0,1,0 +1,0.653,0.457,0.408,0.358,1,0,0,0,1,0 +1,0.653,0.457,0.408,0,1,0,0,0,1,0 +1,0.653,0.457,0.408,0,0.6,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,1,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.8,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.248 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0983 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.221 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.114 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.101 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0757 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.186 +1,0.512,0.453,0.571,0,0,0,0,0,0,0.103 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.165 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.248 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0966 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.165 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.165 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.415 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.415 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.205 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.165 +1,0.538,0.107,0.387,0,0,0,0,0,0,0.0827 +1,0.538,0.107,0.387,0,0,0,0,0,0,0.0458 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.137 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.9,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.5,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.103 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.129 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0996 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.149 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.165 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.331 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.371 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0919 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0919 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.131 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.406 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0966 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0966 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.165 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.165 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.216 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.048 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.222 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.074 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.22 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.147 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.9,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.257 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.023 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0.22 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0488 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0827 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.252 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.252 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.325 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.0962 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.0962 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.194 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.9,0.438 +0.333,0.554,0.0461,0.162,0.602,0.4,0,0,0,0.5,0.496 +0.667,0.546,0.0764,0.274,0.449,0.9,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.248 +0.667,0.546,0.0764,0.274,0.545,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0.557,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.9,0.0827 +0.333,0.575,0.103,0.144,0,0,0,0,0,1,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.534,0.9,0,0,0,0,0 +1,0.64,0.64,0.518,0.466,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.438,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.557,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.29,0.2,0,0,0,0,0 +1,0.615,0.79,0.668,0.29,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.331 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.165 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.0827 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.416 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.208 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.191 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0.551 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0.0734 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.248 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0.0827 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0.126,0.4,0,0,0.165 +1,0.653,0.546,0.408,0,0,0,1,0,0,0 +1,0.653,0.546,0.408,0,0,0.429,0.1,0.9,0,0 +1,0.653,0.546,0.408,0,0,0.0906,0,0.4,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0.26,0,0,0,0.0827 +1,0.653,0.546,0.408,0,0,0.169,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.331,0,0,0.9,0 +1,0.64,0.718,0.518,0,0,0.193,0,0,1,0 +1,0.64,0.718,0.518,0,0,0,0,0,0.9,0 +1,0.64,0.718,0.518,0,0,0.26,0,0,0,0.248 +1,0.64,0.718,0.518,0,0,0.272,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.169,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.272,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.579,0,0,0,0 +1,0.615,0.844,0.668,0,0,0.555,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0.0906,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.092 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.046 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.41 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0732 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0238 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.143 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.393 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.165 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.0827 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0.192 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0.0827 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.0925 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.0694 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.331 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.331 +1,0.546,0.169,0.256,0,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.121 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.248 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.0827 +1,0.546,0.184,0.245,0,0,0,0,0,0,0 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.1 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.251 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.125 +1,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0.0827 +0.667,0.546,0.198,0.237,0.483,0.4,0,0,0,0.4,0 +0.667,0.546,0.198,0.237,0.335,1,0,0,0,1,0 +0.667,0.546,0.198,0.237,0.267,1,0,0,0,1,0 +0.667,0.546,0.198,0.237,0,1,0,0,0,0.4,0 +0.667,0.546,0.232,0.235,0,1,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.358,1,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.602,1,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.438,0.5,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.369,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.259,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0.259,0,0,0,0,0,0.331 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0.455,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0.551,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0.597,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.21,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.46,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.466,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.381,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.369,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0.284,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0.5,0,0,0,0,0,0.165 +1,0.602,0.448,0.334,0.455,0,0,0,0,0,0.165 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0.517,0,0,0,0,0,0 +1,0.602,0.448,0.334,0.295,0,0,0,0,0,0 +1,0.64,0.464,0.353,0.472,0,0,0,0,0,0 +1,0.64,0.464,0.353,0.443,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.248 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0.489,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0.511,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.352,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.517,0,0,0,0,0,0.0827 +0.667,0.623,0.37,0.289,0.196,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.196,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0.631,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.273,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.239,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.477,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.534,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0.364,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.551,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.301,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.386,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0,0.0913 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.0685 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.165 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.355 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.143 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.0769 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.102 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.344 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.178 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.167 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.413 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.9,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.5,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.165 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.248 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.347,0.9,0,0,0,0,0 +1,0.653,0.457,0.408,0.403,1,0,0,0,0,0 +1,0.64,0.64,0.518,0.278,0.8,0,0,0,0,0 +1,0.64,0.64,0.518,0.443,0,0,0,0,0,0.165 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.438,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.415,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.324,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.415,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.472,0,0,0,0,0,0.165 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0.381,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.409,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.562,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.551,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.483,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.483,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.352,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.517,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.449,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.409,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.443,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0.215 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0.189 +0.667,0.495,0.0212,0.0506,0,0,0,0,0,0,0 +0.667,0.495,0.0212,0.0506,0,0,0,0,0,0,0.0827 +0.667,0.495,0.0212,0.0506,0,0,0,0,0,0,0.363 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.179 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.331 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.248 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.618 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.075 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0.24,0.9,0,0,0.248 +0.667,0.512,0.0474,0.222,0,0,0.126,0.6,0.4,0,0.265 +0.667,0.512,0.0474,0.222,0,0,0,0,0.9,0,0.199 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.333,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0488 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.195 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.248 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.248 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.248 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.165 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0.9,0 +1,0.614,0.232,0.252,0.818,0.4,0,0,0,1,0 +1,0.623,0.31,0.289,0.239,0.9,0,0,0,0.9,0 +1,0.623,0.31,0.289,0.239,0,0,0,0,0,0.0827 +1,0.653,0.457,0.408,0.483,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.773,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.591,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.562,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.602,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.352,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.324,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.426,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.225 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.025 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.19 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0.165 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.9,0.0827 +0.333,0.549,0.0396,0.163,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.4,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,1,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.9,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.331 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.331 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.426,0.9,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0.472,0.4,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0.494,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.369,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.511,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.744,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.483,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.534,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.517,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.489,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0.443,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.165 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.165 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.339,0.353,0.506,0.4,0,0,0,0,0.0827 +1,0.653,0.457,0.408,0.489,1,0,0,0,0,0 +1,0.653,0.457,0.408,0,1,0,0,0,0,0 +1,0.653,0.457,0.408,0.352,1,0,0,0,0,0 +1,0.653,0.457,0.408,0.869,1,0,0,0,0,0 +1,0.653,0.457,0.408,0.619,1,0,0,0,0,0 +1,0.653,0.457,0.408,0,0.1,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.432,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0.455,0,0,0,0,0,0.104 +1,0.64,0.64,0.518,0.602,0,0,0,0,0,0.207 +1,0.64,0.64,0.518,0.523,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.298,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0.298,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.46,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.54,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.381,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.551,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.523,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.517,0,0,0,0,0,0.102 +1,0.563,0.504,0.542,0.551,0,0,0,0,0,0.154 +1,0.563,0.504,0.542,0.369,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.261 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.102 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.254 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0508 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.208 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.078 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.245 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0995 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0995 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.387 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.326 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.424 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0.336 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.108 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.331 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.165 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.103 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.18 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.215 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.0477 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +1,0.538,0.198,0.327,0,0,0,0,0,0,0.336 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.316 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.235 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.0261 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.0827 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0.165 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.5,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.165 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.333,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0.541 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0827 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0994 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.248 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0497 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.168 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0214 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.248 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0919 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.0919 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.228 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.127 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.128 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.103 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.9,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.5,0.165 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.231 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.185 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.0956 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0956 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.091 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.165 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.248 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.26,0.4,0,0,0 +1,0.64,0.339,0.353,0,0,0,1,0,0,0 +1,0.64,0.339,0.353,0,0,0.283,0.1,0.9,0,0 +1,0.64,0.339,0.353,0.511,0.4,0.283,0,1,0.4,0 +1,0.64,0.339,0.353,0.494,1,0.157,0,0.8,1,0 +1,0.64,0.339,0.353,0,1,0.472,0,0,0,0 +1,0.64,0.339,0.353,0.318,1,0.217,0,0,0,0.0827 +1,0.653,0.457,0.408,0.812,1,0,0,0,0,0 +1,0.653,0.457,0.408,0,1,0.283,0,0,0,0 +1,0.653,0.457,0.408,0.409,0.1,0,0,0,0,0 +1,0.653,0.457,0.408,0.477,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.585,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.449,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.619,0.4,0,0,0,0,0.165 +1,0.615,0.79,0.668,0.347,1,0,0,0,0,0.248 +1,0.615,0.79,0.668,0,1,0,0,0,0,0 +1,0.615,0.79,0.668,0.676,0.3,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0.165 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.324,0.9,0,0,0,0,0 +0.667,0.546,0.232,0.235,0.625,1,0,0,0,0,0.165 +0.667,0.546,0.232,0.235,0.568,0.8,0,0,0,0,0.165 +0.667,0.546,0.232,0.235,0.631,0,0,0,0,0,0.0827 +0.667,0.546,0.232,0.235,0.352,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0.477,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.331 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.165 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0.9,0 +1,0.653,0.546,0.408,0,0,0,0,0,0.5,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0.0866 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.165 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.0827 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.165 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.165 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.0975 +1,0.474,0.224,0.249,0,0,0,0,0,0,0.122 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0,0.19 +1,0.474,0.224,0.249,0,0,0,0,0,0,0 +1,0.495,0.0699,0.099,0,0,0,0,0,0,0 +1,0.495,0.0699,0.099,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +1,0.554,0.0636,0.162,0,0,0,0,0,1,0 +1,0.554,0.0636,0.162,0,0,0,0,0,1,0.148 +1,0.554,0.0636,0.162,0,0,0,0,0,1,0.0827 +1,0.546,0.142,0.263,0,0,0,0,0,0.8,0 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.331 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.1 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.0251 +1,0.546,0.142,0.263,0,0,0,0,0,0,0.248 +1,0.546,0.142,0.263,0,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.248 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.9,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.5,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0.398,0.4,0,0,0,0,0.0827 +0.667,0.546,0.184,0.245,0.528,1,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,1,0,0,0,0,0.331 +0.667,0.546,0.184,0.245,0.506,1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.386,1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0,1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.472,0.1,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.29,0,0,0,0,0,0 +0.667,0.546,0.198,0.237,0.483,0,0,0,0,0,0 +1,0.538,0.287,0.331,0.574,0,0,0,0,0,0.258 +1,0.538,0.339,0.328,0,0,0,0,0,0,0.0464 +1,0.538,0.339,0.328,0,0,0,0,0,0,0 +1,0.538,0.339,0.328,0,0,0,0,0,0,0 +1,0.538,0.339,0.328,0,0,0,0,0,0,0 +1,0.538,0.339,0.328,0,0,0,0,0,0,0.413 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0.528,0.9,0,0,0,0,0 +1,0.563,0.427,0.329,0.5,1,0,0,0,0,0 +1,0.602,0.448,0.334,0.642,0.8,0,0,0,0,0 +1,0.602,0.448,0.334,0.489,0,0,0,0,0,0.301 +1,0.602,0.448,0.334,0.284,0,0,0,0,0,0.0728 +1,0.602,0.448,0.334,0,0,0,0,0,0,0 +1,0.602,0.448,0.334,0.443,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0.517,0,0,0,0,0,0.259 +0.333,0.588,0.167,0.151,0.312,0,0,0,0,0,0.0705 +0.333,0.588,0.167,0.151,0.202,0,0.339,0.9,0,0,0 +0.667,0.614,0.315,0.252,0.202,0,0.26,0.6,0.4,0,0 +0.667,0.614,0.315,0.252,0.398,0,0.0472,0,1,0,0 +0.667,0.614,0.315,0.252,0.358,0,0.157,0,1,0,0.132 +0.667,0.614,0.315,0.252,0.517,0,0.0551,0,0.3,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0.374,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0.555,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0.406,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0.169,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.421,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.169,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.646,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.13 +1,0.615,0.844,0.668,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.103 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.0772 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0.0827 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.091 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0683 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.439 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0221 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.193 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.331 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.331 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.165 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.331 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.39 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0997 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.194 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.292 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.9,0.119 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.119 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0757 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.435 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.186 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0766 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.138 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.442 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0251 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0.176 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +0.667,0.512,0.0474,0.222,0,0,0.374,0.4,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0.272,1,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0.441,0.1,0.9,0,0 +0.667,0.537,0.0633,0.277,0.506,0.4,0.441,0,1,0,0 +0.667,0.537,0.0633,0.277,0.398,0.9,0,0,1,0,0 +0.667,0.537,0.0633,0.277,0,0,0.398,0,1,0,0 +0.667,0.537,0.0633,0.277,0.358,0,0.126,0,0.1,0,0 +0.667,0.546,0.0764,0.274,0.347,0,0.283,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0.272,0,0,0,0 +0.667,0.546,0.0764,0.274,0.33,0,0.331,0,0,0,0 +0.667,0.546,0.0764,0.274,0.261,0,0.0236,0,0,0,0 +0.667,0.546,0.0764,0.274,0.642,0,0.0551,0,0,0,0.0827 +0.667,0.546,0.0764,0.274,0,0,0.0354,0,0,0,0 +0.667,0.546,0.0894,0.263,0.46,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0.622,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0.217,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0.283,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0.0118,0,0,0,0.165 +0.667,0.546,0.0996,0.256,0,0,0.0236,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.689,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.248,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.453,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0996,0.256,0,0,0.374,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.307,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.248,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.319,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.0472,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0.543,0,0,0,0.165 +0.667,0.546,0.11,0.245,0,0,0.0551,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.319,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.657,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.26,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0.228,0,0,0,0.248 +0.667,0.546,0.116,0.237,0,0,0.272,0,0,0,0.496 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0.496,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.248 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.5,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.22 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.321 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0827 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0 +1,0.461,0.0392,0.131,0,0,0,0,0,0,0.0934 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.0467 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.248 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.165 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0.115 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.248 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.4,0.165 +0.667,0.537,0.0633,0.277,0,0,0,0,0,1,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0688 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0993 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.174 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.474 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.341 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0703 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0703 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.409,0.9,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0.295,1,0,0,0.165 +0.667,0.554,0.0657,0.143,0,0,0.602,1,0,0,0 +0.667,0.554,0.0657,0.143,0,0,0.126,1,0,0,0.248 +0.667,0.554,0.0657,0.143,0,0,0.102,1,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,1,0,0,0 +0.667,0.554,0.073,0.142,0,0,0.0906,0.1,0.9,0,0.0827 +0.667,0.554,0.073,0.142,0,0,0.0354,0,1,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,1,0,0 +0.667,0.554,0.073,0.142,0,0,0.567,0,1,0,0 +0.667,0.554,0.073,0.142,0,0,0.126,0,0.1,0,0 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0.362,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0.26,0,0,0,0.0827 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0.283,0,0,0,0.248 +0.667,0.554,0.0766,0.142,0,0,0.217,0,0,0,0.165 +0.667,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.667,0.562,0.0846,0.143,0,0,0.61,0,0,0,0.165 +1,0.563,0.153,0.236,0,0,0.429,0,0,0,0 +1,0.563,0.153,0.236,0,0,0.409,0,0,0,0 +1,0.563,0.153,0.236,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0.0118,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0.272,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0.567,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0.362,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0.26,0,0,0,0.248 +0.667,0.588,0.19,0.239,0,0,0.236,0,0,0,0.101 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.227 +0.667,0.614,0.232,0.252,0,0,0.386,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0.457,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0.0551,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0.339,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0.701,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0.0118,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0.0906,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.579,0.274,0.256,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.214 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.189 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.248 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.306 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.107 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.268 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.103 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.165 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.143 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.154 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.165 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0.534,0.4,0,0,0,0,0 +0.333,0.592,0.163,0.169,0.381,1,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,1,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.42,0.3,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.352,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.318,0.9,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.369,1,0,0,0,0,0.0827 +0.667,0.614,0.432,0.362,0.733,0.8,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.494,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.185,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0.185,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0.392,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0.46,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0.4,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,1,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,1,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,1,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.9,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.165 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.104 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0827 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0.422 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0.9,0 +1,0.495,0.0314,0.104,0,0,0,0,0,1,0.103 +1,0.512,0.0474,0.222,0,0,0,0,0,1,0.258 +1,0.512,0.0474,0.222,0,0,0,0,0,1,0.186 +1,0.512,0.0474,0.222,0,0,0,0,0,1,0.165 +1,0.512,0.0474,0.222,0,0,0,0,0,0.8,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0827 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.165 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.248 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.248 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0.165 +0.667,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.165 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.0827 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.1 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.201 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.4,0 +1,0.64,0.64,0.518,0,0,0,0,0,1,0.0488 +1,0.64,0.64,0.518,0,0,0,0,0,1,0.195 +1,0.64,0.64,0.518,0.562,0.4,0,0,0,1,0 +1,0.615,0.79,0.668,0.523,1,0,0,0,0.9,0 +1,0.615,0.79,0.668,0,1,0,0,0,0,0 +1,0.615,0.79,0.668,0.29,0.3,0,0,0,0,0 +1,0.597,0.532,0.462,0.477,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.841,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.443,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.438,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.562,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.892,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.466,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.67,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.398,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.409,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.443,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0.0827 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.528,0.9,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.443,1,0,0,0,0,0 +1,0.554,0.0636,0.162,0.256,1,0,0,0,0,0 +1,0.554,0.0636,0.162,0.534,1,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0.162 +0.667,0.562,0.0181,0.0495,0,1,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0.331 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0.1 +0.667,0.554,0.0803,0.156,0,1,0,0,0,0,0.251 +0.667,0.554,0.0803,0.156,0,0.6,0,0,0,0,0.226 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0,0.0827 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.9,0 +1,0.538,0.244,0.359,0,0,0,0,0,1,0.0827 +1,0.538,0.268,0.343,0,0,0,0,0,1,0 +1,0.538,0.268,0.343,0,0,0,0,0,1,0 +1,0.538,0.268,0.343,0,0,0,0,0,0.4,0 +1,0.538,0.268,0.343,0,0,0,0,0,0,0 +1,0.538,0.268,0.343,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.248 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.4,0.165 +0.333,0.575,0.162,0.144,0,0,0,0,0,1,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.165 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.248 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.165 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.592,0.194,0.169,0,0,0,0,0,0,0 +0.333,0.592,0.194,0.169,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0.0827 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0.165 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.333,0.579,0.294,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.294,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.294,0.256,0,0,0,0,0,0,0.246 +0.333,0.562,0.272,0.296,0,0,0,0,0,0,0.123 +0.333,0.562,0.272,0.296,0,0,0,0,0,0,0.198 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0.194 +0.667,0.529,0.334,0.397,0,0,0,0,0,0,0.169 +0.667,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0.0827 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0,0.0917 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.0459 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.177 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.218 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.0727 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.3 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.0827 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.165 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0.276 +0.333,0.554,0.101,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.165 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0827 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0827 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.248 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.165 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0.0827 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.9,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.5,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0.0993 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0.0496 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0.114 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0.0827 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0.248 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0.165 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.397 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0248 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.185 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.115 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.22 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.122 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0888 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0222 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.331 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.331 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.9,0.224 +0.333,0.575,0.103,0.144,0,0,0,0,0,1,0.0249 +1,0.602,0.276,0.334,0,0,0,0,0,1,0 +1,0.602,0.276,0.334,0,0,0,0,0,1,0 +1,0.602,0.276,0.334,0,0,0,0,0,1,0.0955 +1,0.64,0.339,0.353,0,0,0,0,0,0.8,0.0477 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.0827 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.218 +1,0.64,0.339,0.353,0,0,0,0,0,0,0.0242 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0966 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0483 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.121 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.165 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.0827 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.165 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.194 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.413 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.265 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.248 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.413 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0792 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.9,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.5,0.104 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.155 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.163 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.046 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.138 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.9,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.5,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0.483,0.4,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0.551,1,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,1,0,0,0,0,0 +0.333,0.554,0.073,0.142,0.386,1,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0.341,1,0,0,0,0,0 +0.333,0.554,0.073,0.142,0.386,1,0,0,0,0,0.0827 +0.333,0.554,0.073,0.142,0.403,1,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,1,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,1,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,1,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0.3,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.166 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.179 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.024 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.4,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.195 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.165 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0827 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.168 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0506 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0897 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.9,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.5,0.0827 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.165 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0.646,0.9,0,0,0.0827 +0.333,0.554,0.0577,0.153,0,0,0.228,0.6,0.4,0,0 +0.333,0.554,0.0577,0.153,0,0,0.295,0,1,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,1,0,0 +0.333,0.554,0.0577,0.153,0,0,0.157,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.457,0,1,0,0.165 +0.333,0.554,0.0628,0.147,0,0,0.126,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.453,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.453,0,1,0,0 +0.333,0.554,0.0628,0.147,0,0,0.248,0,1,0,0.165 +0.333,0.554,0.0657,0.143,0,0,0.488,0,0.1,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.533 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.181 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.147 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.248 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.198 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.165 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.9,0.165 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.3,0.0827 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0827 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,1,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.165 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.218 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.0484 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0858 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0.331,0.4,0,0,0.098 +1,0.512,0.0474,0.222,0,0,0.657,1,0,0,0.147 +1,0.512,0.0474,0.222,0,0,0,0.1,0.9,0,0 +1,0.512,0.0474,0.222,0,0,0.205,0,1,0,0.0827 +1,0.512,0.0474,0.222,0,0,0,0,1,0,0.0983 +1,0.512,0.0474,0.222,0,0,0.331,0,1,0,0.172 +1,0.512,0.0474,0.222,0,0,0.362,0,0.1,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.262 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.257 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.0514 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0997 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.331 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0827 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.9,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,1,0.0827 +0.667,0.546,0.116,0.237,0,0,0,0,0,1,0 +0.667,0.546,0.116,0.237,0,0,0.205,0.9,0,1,0 +0.667,0.546,0.116,0.237,0,0,0.228,0.6,0.4,1,0 +0.667,0.546,0.13,0.235,0,0,0.0906,0,0.9,0.8,0 +0.667,0.546,0.13,0.235,0,0,0.307,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.228,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.398,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.307,0,0,0,0.0827 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.272,0,0,0,0.0827 +0.667,0.546,0.137,0.235,0,0,0.52,0,0,0,0.248 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.295,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.283,0,0,0,0.0827 +0.667,0.563,0.153,0.236,0,0,0.465,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.331 +1,0.563,0.222,0.329,0,0,0.114,0,0,0,0 +1,0.563,0.222,0.329,0,0,0,0,0,0,0 +1,0.563,0.222,0.329,0,0,0.0354,0,0,0,0 +1,0.563,0.222,0.329,0,0,0.228,0,0,0,0 +1,0.602,0.276,0.334,0,0,0,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.295,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.193,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.228,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.362,0,0,0,0 +1,0.602,0.276,0.334,0,0,0.283,0,0,0.4,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +1,0.64,0.339,0.353,0,0,0.283,0,0,1,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +1,0.64,0.339,0.353,0,0,0,0,0,1,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,1,0.0936 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0.117 +0.667,0.623,0.31,0.289,0,0,0,0,0,1,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.2,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.612 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.151 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.614,0.432,0.362,0,0,0,0,0,0,0.214 +1,0.614,0.432,0.362,0,0,0,0,0,0,0.17 +1,0.614,0.432,0.362,0,0,0,0,0,0,0.413 +1,0.614,0.432,0.362,0.511,0.4,0,0,0,0,0.248 +1,0.597,0.532,0.462,0.375,0.9,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.608,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.449,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0.477,0,0,0,0,0,0 +1,0.563,0.749,0.788,0.375,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.39 +1,0.563,0.504,0.542,0.42,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.432,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.523,0,0,0,0,0,0.248 +1,0.563,0.504,0.542,0.585,0,0,0,0,0,0.165 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0.165 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.59 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.224 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.19 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0827 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0605 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.165 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.293 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.0827 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0975 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.245 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.0245 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.0827 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.248 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.165 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.557 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.254 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.21 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0 +0.667,0.588,0.19,0.239,0.869,0.9,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.443,1,0,0,0,0,0.165 +0.667,0.588,0.19,0.239,0.267,0.8,0,0,0,0,0 +0.667,0.588,0.19,0.239,0.472,0,0,0,0,0,0.0827 +0.667,0.588,0.19,0.239,0.256,0,0,0,0,0,0.0827 +0.667,0.614,0.232,0.252,0.256,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.9,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.5,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.248 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0827 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.248 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.248 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.621 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.0927 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0927 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.0827 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.1 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.201 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.145 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0.4,0.203 +1,0.548,0.113,0.286,0,0,0,0,0,1,0.254 +1,0.548,0.113,0.286,0,0,0,0,0,1,0 +1,0.548,0.113,0.286,0,0,0,0,0,0.5,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.0965 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.0724 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.175 +1,0.542,0.212,0.392,0,0,0,0,0,0.4,0.1 +1,0.542,0.212,0.392,0,0,0,0,0,1,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.143 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.0956 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0827 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.165 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0.528,0.4,0,0,0,0,0 +0.667,0.548,0.204,0.251,0.335,1,0,0,0,0,0 +0.667,0.548,0.24,0.249,0.278,1,0,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0.278,1,0,0,0,0.4,0 +0.667,0.548,0.24,0.249,0.608,0.8,0,0,0,1,0 +0.667,0.548,0.24,0.249,0.614,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0.591,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.165 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.165 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.4,0.0827 +0.667,0.591,0.315,0.259,0,0,0,0,0,1,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,1,0.135 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.5,0.165 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.159 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.338 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.0766 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.229 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.051 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0849 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0614 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.244 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.183 +1,0.516,0.509,0.561,0,0,0,0,0,0,0.125 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0.2 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0.165 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0.0827 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0.331 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.212 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.0827 +1,0.548,0.113,0.286,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.248 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.331 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.248 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.165 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.102,0.4,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,1,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.61,1,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.0551,0.6,0.4,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0,0,1,0,0 +0.667,0.548,0.273,0.249,0,0,0.362,0,1,0,0 +0.667,0.548,0.273,0.249,0,0,0.622,0,1,0,0 +0.667,0.548,0.273,0.249,0,0,0.201,0,1,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,1,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,0.1,0.4,0.0827 +0.667,0.564,0.159,0.15,0,0,0,0,0,1,0 +0.667,0.564,0.159,0.15,0,0,0.126,0,0,1,0 +0.667,0.564,0.159,0.15,0,0,0.236,0,0,0.5,0 +0.667,0.564,0.159,0.15,0,0,0.488,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.555,0,0,0,0.165 +0.667,0.591,0.315,0.259,0,0,0.339,0,0,0,0 +1,0.606,0.464,0.363,0,0,0.228,0,0,0,0 +1,0.606,0.464,0.363,0,0,0.394,0,0,0,0 +1,0.606,0.464,0.363,0,0,0.205,0,0,0,0.0827 +1,0.606,0.464,0.363,0,0,0.283,0,0,0,0 +1,0.645,0.479,0.404,0,0,0.512,0,0,0,0.0827 +1,0.645,0.479,0.404,0,0,0.433,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0.228,0,0,0,0 +1,0.645,0.479,0.404,0,0,0.217,0,0,0,0.165 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.248 +1,0.658,0.565,0.501,0,0,0.15,0,0,0,0 +1,0.658,0.565,0.501,0,0,0.331,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0.0551,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0879 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.0827 +1,0.619,0.873,0.806,0,0,0,0,0,0,0.151 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.165 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0969 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.121 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.165 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.286 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0958 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0479 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.182 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.161 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.4,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.248 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.0827 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.288 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.347 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0993 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.146 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0243 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0.676,0.9,0,0,0,0,0 +0.667,0.6,0.55,0.554,0.375,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.58,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.54,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.259,1,0,0,0,0,0 +1,0.568,0.774,0.851,0.259,0.7,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +1,0.538,0.0323,0.139,0,0,0,0,0,1,0.12 +1,0.538,0.0323,0.139,0.5,0.9,0,0,0,0,0.131 +1,0.538,0.0323,0.139,0.597,1,0,0,0,0,0 +1,0.514,0.0488,0.228,0.466,0.9,0,0,0,0,0 +1,0.514,0.0488,0.228,0.545,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0.205,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0.205,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0.318,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0.432,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.244 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.165 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.0827 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.213 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.0943 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.315 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0942 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0942 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.4,0.0998 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0.125 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.248 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.43 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.364 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.521 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.0238 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.167 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.497,0.0158,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.104 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.156 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.178 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.195 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.367 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0246 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.592 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.446 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.256 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.248 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.4,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0.248 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +1,0.568,0.23,0.351,0,0,0,0,0,0,0 +1,0.568,0.23,0.351,0,0,0,0,0,0,0.331 +1,0.568,0.23,0.351,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.4,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,1,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.9,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.193 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.191 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.171 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.0489 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.248 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.182 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0.0496 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0.0827 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.201 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.165 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0.0354,0.4,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0.205,1,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.0472,0.1,0.9,0,0 +0.333,0.555,0.0676,0.15,0,0,0.331,0,0.4,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.791,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.488,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.0787,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.319,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.283,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.882,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0.236,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.579,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.488,0,0,0,0.248 +0.333,0.555,0.0789,0.149,0,0,0.252,0,0,0,0.331 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.283,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0.517,0.9,0,0,0,0,0.496 +0.333,0.564,0.0871,0.15,0.648,1,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.386,0.9,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.506,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.222,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.222,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.58,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.585,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.438,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.9,0 +1,0.645,0.351,0.404,0.369,0,0,0,0,0.5,0 +1,0.645,0.351,0.404,0.67,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0.358,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.426,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.29,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.426,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.42,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.506,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.568,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.42,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.727,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.455,0,0,0,0,0,0.0827 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.352,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.0827 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.331 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.165 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.096 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.231 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.101 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.253 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0253 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.4,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0.248 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.5,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.495 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.0503 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.462 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.812 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.16 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.104 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.104 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.187 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.231 +1,0.542,0.11,0.404,0,0,0,0,0,0.9,0.165 +1,0.542,0.11,0.404,0,0,0,0,0,0.5,0.0827 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.165 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.4,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,1,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.4,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.331 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.4,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.165 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.626,0.32,0.351,0,0,0,0,0,0,0 +1,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.102 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.254 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.127 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.4,0.0827 +0.667,0.6,0.55,0.554,0,0,0,0,0,1,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.268 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.428 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0726 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.0968 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.413 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.102 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.229 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.218 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.165 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0827 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.186 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0517 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.186 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0.4,0.0827 +1,0.551,0.0444,0.167,0,0,0,0,0,1,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0,0 +0.667,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.4,0 +1,0.542,0.212,0.392,0,0,0,0,0,1,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.165 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.4,0.0827 +0.667,0.548,0.191,0.259,0,0,0,0,0,1,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.414 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.187 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.232 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.154 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0.179 +1,0.542,0.351,0.349,0,0,0,0,0,0,0.192 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.351,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0.0936 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0.9,0 +1,0.542,0.401,0.349,0,0,0,0,0,1,0 +1,0.542,0.401,0.349,0,0,0,0,0,1,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.159 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0473 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.225 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.317 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.261 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0.248 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.206 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0.0966 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0.0966 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0.166 +0.667,0.617,0.501,0.454,0,0,0.126,0.4,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,1,0,0,0 +0.667,0.617,0.501,0.454,0,0,0.339,0.1,0.9,0,0 +0.667,0.617,0.501,0.454,0,0,0.126,0,0.4,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.217,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.248,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.465,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.157,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.193,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0.153 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.23 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0766 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.234 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.135 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.141 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.169 +1,0.555,0.0826,0.164,0,0,0,0,0,0.4,0.165 +1,0.555,0.0826,0.164,0,0,0,0,0,1,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.0897 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.0448 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0.338 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.548,0.174,0.27,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0995 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0498 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.165 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.331 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.4 +1,0.542,0.297,0.352,0.426,0.9,0,0,0,0,0 +1,0.542,0.297,0.352,0.466,1,0,0,0,0.4,0.0827 +1,0.542,0.297,0.352,0.409,0.9,0,0,0,1,0.0374 +1,0.542,0.297,0.352,0.312,0,0,0,0,0,0.0187 +1,0.542,0.297,0.352,0.472,0,0,0,0,0,0.165 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0.489,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.263 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.122 +1,0.542,0.401,0.349,0,0,0,0,0,0,0.0827 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.248 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.165 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.165 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.0827 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.248 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.165 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.229 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0993 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.114 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0228 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.257 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.377 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.227 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.9,0.409 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.5,0.265 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.266 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0977 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0977 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.517,0.9,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.477,1,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0.449,0.9,0,0,0,0,0.248 +0.333,0.555,0.0593,0.16,0.688,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0.455,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.5,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.506,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.375,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.438,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.483,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.9,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.5,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.248 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.331 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0.169,0.4,0,0,0 +1,0.645,0.351,0.404,0,0,0.35,1,0,0,0 +1,0.645,0.351,0.404,0,0,0.0354,0.1,0.9,0,0 +1,0.645,0.351,0.404,0,0,0.126,0,1,0,0 +1,0.645,0.351,0.404,0,0,0,0,1,0,0 +1,0.645,0.351,0.404,0.517,0.9,0.76,0,1,0,0 +1,0.645,0.351,0.404,0.341,1,0.39,0,1,0,0.165 +1,0.658,0.473,0.501,0.568,0.9,0.177,0,1,0,0 +1,0.658,0.473,0.501,0.398,0,0.339,0,1,0,0 +1,0.658,0.473,0.501,0.398,0,0.146,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.295,0,0,0,0 +1,0.658,0.473,0.501,0.398,0,0.0669,0,0,0,0 +0.667,0.626,0.32,0.351,0.267,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.0958 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.0479 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.315 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0,0.144 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.267 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.101 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.51 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.1 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.201 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.348 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.271 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.256 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0512 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.4,0.165 +0.667,0.548,0.0788,0.286,0,0,0,0,0,1,0.331 +0.667,0.548,0.0788,0.286,0,0,0,0,0,1,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.5,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.413 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0.248 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.247 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.102 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0254 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.152 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0914 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.248 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.234 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.165 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0.543,0.9,0,0,0.0827 +1,0.538,0.0323,0.139,0,0,0.315,1,0,0,0.0827 +1,0.54,0.0653,0.284,0,0,0,1,0,0,0 +1,0.54,0.0653,0.284,0,0,0.307,1,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0.717,1,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0.169,1,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0.236,0.2,0.8,0,0 +0.667,0.551,0.0406,0.167,0,0,0.457,0,0.5,0,0 +0.667,0.555,0.0473,0.168,0,0,0.52,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.165 +0.667,0.555,0.0473,0.168,0,0,0.465,0,0,0,0.165 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0.453,0,0,0,0 +0.667,0.555,0.0473,0.168,0,0,0.0551,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.0551,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.157,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.248,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.252,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +0.667,0.591,0.196,0.259,0.659,0.4,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0.528,1,0,0,0,0,0.248 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.528,1,0,0,0,0,0.102 +0.667,0.617,0.239,0.286,0.551,1,0,0,0,0,0.255 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0.0255 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0.6,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0986 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.222 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.164 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.103 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.232 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.165 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.4,0 +1,0.619,0.817,0.806,0,0,0,0,0,1,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.206 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.0972 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.17 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0.341,0.4,0,0,0,0,0 +1,0.531,0.317,0.391,0.443,1,0,0,0,0,0 +1,0.531,0.317,0.391,0.273,1,0,0,0,0,0 +1,0.546,0.167,0.22,0.273,0.4,0,0,0,0,0 +1,0.533,0.0781,0.116,0.432,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0.488,0.9,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0.307,0.6,0.4,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0.9,0,0 +0.333,0.555,0.0593,0.16,0,0,0.398,0,0,0,0.413 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0.476,0.9,0,0,0 +0.667,0.548,0.113,0.259,0,0,0.283,0.6,0.4,0,0.165 +0.667,0.548,0.119,0.251,0,0,0,0,0.9,0,0 +0.667,0.548,0.119,0.251,0,0,0.283,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0.272,0,0,0,0.165 +0.667,0.548,0.119,0.251,0,0,0,0,0,0,0.165 +0.667,0.548,0.119,0.251,0,0,0.319,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0.228,0,0,0,0.0827 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.126,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.283,0,0,0,0.165 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.134,0.249,0,0,0.26,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.236,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0.394,0,0,0,0.248 +0.667,0.548,0.142,0.249,0,0,0.646,0,0,0,0.248 +0.667,0.548,0.142,0.249,0,0,0.455,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0.148,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0.319,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0.488,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.165 +1,0.568,0.23,0.351,0,0,0.283,0,0,0.4,0.0827 +1,0.568,0.23,0.351,0,0,0.272,0,0,1,0 +1,0.568,0.23,0.351,0,0,0.398,0,0,0,0.0827 +1,0.568,0.23,0.351,0,0,0.622,0,0,0,0.248 +1,0.606,0.286,0.363,0,0,0.228,0,0,0,0.165 +1,0.606,0.286,0.363,0,0,0.622,0,0,0,0 +1,0.606,0.286,0.363,0,0,0.374,0,0,0.4,0 +1,0.606,0.286,0.363,0,0,0.283,0,0,1,0 +1,0.606,0.286,0.363,0,0,0.248,0,0,1,0 +1,0.606,0.286,0.363,0,0,0.217,0,0,0.5,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.26,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.236,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.567,0,0,0,0.0827 +1,0.645,0.351,0.404,0,0,0.362,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.295,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.26,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0972 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0486 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.13 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0.229 +1,0.6,0.55,0.554,0,0,0,0,0,0,0.178 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.268 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.118 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.409 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.238 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.331 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.258 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.2 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.209 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.165 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.287 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.305 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.9,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.5,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.119 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.355 +0.667,0.548,0.0788,0.286,0.705,0.4,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.205,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.205,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.625,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.705,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0.341,1,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0.2,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.483,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.608,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.614,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.42,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.207,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.259,0.207,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.54,0,0,0,0,0,0.248 +0.667,0.548,0.113,0.259,0.676,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.4,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,1,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,1,0.165 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.5,0 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.0827 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.102 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.153 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.0977 +1,0.546,0.167,0.22,0,0,0,0,0,0,0.0977 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.223 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.229 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0.9,0 +1,0.538,0.0301,0.139,0,0,0,0,0,1,0 +1,0.538,0.0301,0.139,0,0,0,0,0,1,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.165 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0827 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.0827 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.165 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.263 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.221 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.0827 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.194 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.165 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.0252 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.177 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.176 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.0466 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.182 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.315 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.16 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.342 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.141 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0827 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.165 +1,0.645,0.743,0.656,0,0,0.0354,0.4,0,0,0 +1,0.645,0.743,0.656,0,0,0,1,0,0,0 +1,0.645,0.743,0.656,0,0,0.181,1,0,0,0 +1,0.645,0.743,0.656,0,0,0.248,0.6,0.4,0,0 +1,0.645,0.743,0.656,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0.126,0,1,0,0 +1,0.619,0.873,0.806,0,0,0.283,0,0.3,0,0 +1,0.619,0.873,0.806,0,0,0.0906,0,0,0,0 +1,0.619,0.873,0.806,0,0,0.315,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.128 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0,0.223 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0,0.124 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.102 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.153 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.22 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.0979 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0.165 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0.331 +1,0.555,0.104,0.154,0,0,0,0,0,0,0.0827 +1,0.555,0.104,0.154,0,0,0,0,0,0.4,0 +1,0.555,0.104,0.154,0,0,0,0,0,1,0 +1,0.555,0.104,0.154,0,0,0,0,0,0,0 +1,0.555,0.104,0.154,0,0,0,0,0,0,0 +1,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0.0827 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0.0827 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.248 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.165 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.0952 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.143 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0.224 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0 +0.667,0.589,0.172,0.168,0,0,0,0,0,0,0.0827 +0.667,0.589,0.172,0.168,0.438,0.4,0,0,0,0,0.0827 +0.667,0.589,0.172,0.168,0.46,1,0,0,0,0,0 +0.667,0.589,0.172,0.168,0,1,0,0,0,0,0 +0.667,0.589,0.172,0.168,0.415,1,0,0,0,0,0 +0.667,0.589,0.172,0.168,0.364,1,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.506,1,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.432,1,0,0,0,0,0 +0.667,0.594,0.2,0.2,0,0.6,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.534,0,0,0,0,0,0 +0.667,0.594,0.2,0.2,0.29,0,0,0,0,0,0.0827 +0.667,0.594,0.2,0.2,0.432,0,0,0,0,0,0 +0.667,0.589,0.26,0.252,0.574,0,0,0,0,0,0.0827 +0.667,0.589,0.26,0.252,0,0,0.339,0.4,0,0,0 +0.667,0.589,0.26,0.252,0,0,0,1,0,0,0 +0.667,0.589,0.26,0.252,0,0,0.157,1,0,0,0 +0.667,0.589,0.26,0.252,0,0,0.339,0.6,0.4,0,0 +0.667,0.589,0.26,0.252,0,0,0,0,1,0,0 +1,0.6,0.588,0.554,0,0,0.272,0,1,0,0 +1,0.6,0.588,0.554,0,0,0.217,0,1,0,0 +1,0.6,0.588,0.554,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0.579,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,1,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,1,0,0 +1,0.568,0.806,0.851,0,0,0,0,0.2,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.165 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.165 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.248 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.173 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0469 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.164 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.248 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.4,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,1,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,1,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.716,0.4,0,0,0,0,0 +0.333,0.594,0.168,0.2,0.267,1,0,0,0,0,0 +0.333,0.594,0.168,0.2,0.267,0,0,0,0,0,0.0827 +0.667,0.626,0.32,0.351,0.625,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0.403,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0.358,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.0879 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0.0827 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0.219 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.0729 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0.182 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.026 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.417 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.377 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.221 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.0975 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.146 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0.394 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0.165 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.248 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.0827 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.292 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.195 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.215 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.0478 +1,0.542,0.131,0.392,0,0,0,0,0,0,0 +1,0.542,0.131,0.392,0,0,0,0,0,0,0 +1,0.542,0.131,0.392,0,0,0,0,0,0,0.0885 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0443 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.0827 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.126 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.619,0.9,0,0,0,0,0.553 +0.667,0.548,0.103,0.27,0.364,1,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.682,0.9,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.54,0,0,0,0,0,0.0771 +0.667,0.548,0.113,0.259,0.179,0,0,0,0,0,0.0257 +0.667,0.548,0.113,0.259,0.179,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0.409,0,0,0,0,0,0.0827 +0.667,0.548,0.113,0.259,0.46,0,0,0,0,0,0.248 +0.667,0.548,0.119,0.251,0.352,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0.409,0,0.146,0.4,0,0,0.248 +0.333,0.555,0.0676,0.15,0.489,0,0,1,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0.272,0.1,0.9,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0.4,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.4,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0827 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0933 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.07 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.105 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.171 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.105 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.225 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.452 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0919 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0919 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.165 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0.283,0.4,0,1,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,1,0,1,0 +0.667,0.538,0.0323,0.139,0,0,0,0.1,0.9,0,0.369 +0.667,0.538,0.0323,0.139,0,0,0,0,1,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0.8,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.333,0.538,0.0323,0.139,0,0,0,0,0,0,0.0853 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.0213 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.226 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.176 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.308 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0502 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0623 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.268 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0987 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.247 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0247 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.26 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.13 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.128 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.4,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,1,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0956 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.119 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.108 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.381,0.9,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.295,1,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.318,0.9,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.517,0,0,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0.409,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.236,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.236,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.352,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.551,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.864,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.267,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.42,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.352,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0.597,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0.386,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.477,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.477,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.581,0.283,0.302,0,0,0,0,0,0,0 +1,0.581,0.283,0.302,0.517,0,0,0,0,0,0 +1,0.581,0.283,0.302,0.608,0,0,0,0,0,0.256 +1,0.564,0.269,0.317,0.273,0,0,0,0,0,0.192 +1,0.564,0.269,0.317,0.54,0,0,0,0,0,0 +1,0.564,0.269,0.317,0.318,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.215 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0239 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.383 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.103 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.103 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.5,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.9,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.331 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.248 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,1,0.9,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.283,1,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0.0906,1,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0.1,0.9,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0.4,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0.386,0.4,0,0,0,0,0 +1,0.645,0.662,0.656,0.369,1,0,0,0,0,0 +1,0.645,0.662,0.656,0,1,0,0,0,0,0 +1,0.645,0.662,0.656,0.403,0.4,0,0,0,0,0 +1,0.645,0.662,0.656,0.523,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.574,0,0,0,0,0,0.165 +1,0.645,0.662,0.656,0.352,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.545,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.443,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0.0827 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0891 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0445 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.206 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,1,0.165 +0.667,0.538,0.0323,0.139,0,0,0,0,0,1,0.248 +0.667,0.538,0.0323,0.139,0,0,0,0,0,1,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.3,0.0827 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.557,0.4,0,0,0,0,0.165 +0.333,0.551,0.0406,0.167,0.47,1,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0.235,1,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0.551,0.4,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0.386,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0.5,0,0,0,0,0,0.0827 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.248 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.248 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.331 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.9,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,1,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0 +1,0.568,0.23,0.351,0,0,0,0,0,1,0 +1,0.606,0.286,0.363,0,0,0,0,0,0.9,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0.0827 +1,0.606,0.286,0.363,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.165 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0.157,0.4,0,0,0 +1,0.645,0.351,0.404,0,0,0.362,1,0,0,0 +1,0.645,0.351,0.404,0,0,0.248,0.1,0.9,0,0 +1,0.645,0.351,0.404,0,0,0.193,0,1,0,0 +1,0.658,0.473,0.501,0,0,0,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.339,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.319,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.0354,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.374,0,1,0,0 +1,0.658,0.473,0.501,0,0,0.283,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,0.5,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.248 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.165 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0827 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0827 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.181 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.0414 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.231 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.185 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.0827 +1,0.548,0.113,0.286,0,0,0,0,0,0.4,0.0897 +1,0.548,0.113,0.286,0,0,0,0,0,1,0.0448 +1,0.548,0.113,0.286,0,0,0,0,0,1,0 +1,0.548,0.113,0.286,0,0,0,0,0,0.5,0.0827 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.117 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.227 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.101 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0.265 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0.0496 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.165 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.0827 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.331 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.331 +0.333,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.4,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,1,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.9,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.129,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0911 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0456 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.248 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.165 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.197 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.074 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.0827 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.4,0.0827 +0.333,0.589,0.172,0.168,0,0,0,0,0,1,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0.4,0 +1,0.658,0.565,0.501,0,0,0,0,0,1,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0.4,0 +1,0.645,0.743,0.656,0,0,0,0,0,1,0 +1,0.645,0.743,0.656,0.284,0.9,0,0,0,0,0.208 +1,0.645,0.743,0.656,0.21,1,0,0,0,0,0 +1,0.645,0.743,0.656,0.722,0.9,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0.466,0,0,0,0,0,0 +1,0.619,0.873,0.806,0.472,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0.392,0,0,0,0,0,0.0991 +1,0.619,0.873,0.806,0.477,0,0,0,0,0,0.124 +1,0.568,0.806,0.851,0.398,0,0,0,0,0,0 +1,0.568,0.806,0.851,0.625,0,0.272,0.4,0,0,0 +1,0.568,0.806,0.851,0,0,0,1,0,0,0 +1,0.568,0.806,0.851,0,0,0.193,0.1,0.9,0,0 +1,0.568,0.806,0.851,0,0,0.283,0,0.4,0,0 +1,0.566,0.543,0.584,0,0,0.252,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.236,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.465,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.0551,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.339,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0.705,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.0949 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0949 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0.222 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0.215 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0.67,0.9,0,0,0,0,0.165 +1,0.548,0.113,0.286,0.403,1,0,0,0,0,0 +1,0.548,0.113,0.286,0.574,0.9,0,0,0,0,0 +1,0.548,0.113,0.286,0.352,0,0,0,0,0,0.248 +1,0.548,0.113,0.286,0.182,0,0,0,0,0,0 +1,0.548,0.113,0.286,0.182,0,0,0,0,0,0 +1,0.548,0.147,0.278,0,0,0,0,0,0,0.0827 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0.165 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0.165 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.165 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0.4,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,1,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.184 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.178 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.409,0.9,0,0,0.248 +0.667,0.548,0.24,0.249,0,0,0.374,0.6,0.4,0,0 +1,0.542,0.351,0.349,0,0,0.126,0,1,0,0 +1,0.542,0.351,0.349,0,0,0.173,0,1,0,0 +1,0.542,0.351,0.349,0,0,0.205,0,1,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,1,0,0.248 +1,0.542,0.401,0.349,0,0,0.272,0,1,0,0 +1,0.542,0.401,0.349,0,0,0.0118,0,0.1,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0.205,0,0,0,0 +1,0.542,0.401,0.349,0,0,0.169,0,0,0,0 +1,0.542,0.401,0.349,0,0,0.362,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0,0,0,0,0,0.4,0.165 +1,0.606,0.464,0.363,0,0,0,0,0,1,0.248 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.565,0.501,0.347,0.4,0,0,0,0,0 +0.667,0.626,0.383,0.351,0.415,1,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,1,0,0,0,0,0 +0.667,0.626,0.383,0.351,0.466,0.4,0,0,0,0,0.165 +0.667,0.626,0.383,0.351,0.409,0,0,0,0,0,0.0827 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0.0827 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0.0827 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0958 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0958 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.15 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.4,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0.181,0.9,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0.331,0.6,0.4,0.5,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0.9,0,0 +0.333,0.551,0.0406,0.167,0,0,0.512,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0.0354,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0.421,0,0,0,0 +0.333,0.551,0.0406,0.167,0,0,0.217,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.248,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.0906,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.374,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.638,0,0,0,0.165 +0.333,0.555,0.0473,0.168,0,0,0.303,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.457,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.236,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.319,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.535,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0.567,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0.169,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.331 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.104 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.234 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.165 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.353 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.248 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.101 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0506 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.4,0.165 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0 +1,0.658,0.473,0.501,0,0,0,0,0,1,0.165 +1,0.658,0.473,0.501,0,0,0,0,0,0.4,0.0827 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.181,0.4,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.524,1,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.543,0.1,0.9,0,0.496 +0.667,0.54,0.0653,0.284,0,0,0.272,0,1,0,0 +0.667,0.548,0.0788,0.286,0,0,0.52,0,0.8,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0.228,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0.283,0,0,0,0.0827 +0.667,0.548,0.0788,0.286,0,0,0.193,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.807,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.248 +0.667,0.548,0.0923,0.278,0,0,0.0236,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.0906,0,0,0,0.0827 +0.667,0.548,0.0923,0.278,0,0,0.339,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0.283,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.0827 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.597,0.4,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0.426,1,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.619,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.75,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.653,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.33,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.196,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0.196,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.727,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.392,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0.369,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0.483,0,0,0,0,0.4,0 +0.333,0.555,0.0789,0.149,0.318,0,0,0,0,1,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,1,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,1,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,1,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.165 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.26,0.4,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,1,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.283,0.1,0.9,0,0 +0.667,0.617,0.239,0.286,0,0,0.272,0,0.4,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.295,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.228,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.929,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.252,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.0984 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.0492 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.151 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,1,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.4,0.183 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.15 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.372 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.133 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.248 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.181 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.246 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.0246 +1,0.529,0.09,0.402,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0995 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0995 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.0827 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.152 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.177 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.091 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.248 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.165 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.4,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,1,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.562,0.4,0,0,0,0,0.102 +0.667,0.617,0.239,0.286,0.386,1,0,0,0,0,0.255 +0.667,0.617,0.239,0.286,0,1,0,0,0,0,0.338 +0.667,0.617,0.239,0.286,0.392,1,0,0,0,0,0.0255 +1,0.645,0.351,0.404,0.477,0.8,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.267 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.126 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.4,0 +1,0.645,0.662,0.656,0,0,0,0,0,1,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0951 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.0875 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0,0.101 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.101 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.165 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.226 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0956 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.0827 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.209 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0989 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.124 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.331 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.42 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.331 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.101 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0505 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.205 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0256 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.165 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.26,0.4,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,1,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.0787,0.1,0.9,0,0 +0.333,0.555,0.0789,0.149,0,0,0.217,0,1,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,1,0,0 +0.333,0.564,0.0871,0.15,0,0,0.217,0,1,0,0 +0.333,0.564,0.0871,0.15,0,0,0.0236,0,1,0,0.0827 +0.333,0.564,0.0871,0.15,0,0,0,0,0.6,0,0 +0.333,0.564,0.0871,0.15,0,0,0.138,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0.0118,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0.283,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0.0354,0,0,0,0.0938 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.117 +0.333,0.576,0.106,0.154,0,0,0.217,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0.272,0,0,0,0.0827 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.362,0,0,0,0.304 +0.667,0.617,0.239,0.286,0,0,0.0118,0,0,0,0.0492 +0.667,0.617,0.239,0.286,0,0,0.303,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.646,0,0,0,0.248 +0.667,0.617,0.239,0.286,0,0,0.295,0,0,0,0.184 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.202 +0.667,0.626,0.32,0.351,0,0,0.283,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.319,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0.283,0,0,0,0.217 +1,0.658,0.473,0.501,0,0,0.102,0,0,0,0.0241 +1,0.645,0.662,0.656,0,0,0.508,0,0,0,0 +1,0.645,0.662,0.656,0,0,0.248,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0905 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.0679 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.172 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.405 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.107 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.0827 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.146 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.248 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.165 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.165 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.248 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0827 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.248 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.0827 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.331 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.165 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.248 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,1,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0827 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0.0787,0.4,0,0,0 +1,0.645,0.662,0.656,0,0,0.488,1,0,0,0 +1,0.645,0.662,0.656,0,0,0,0.1,0.9,0,0 +1,0.645,0.662,0.656,0,0,0.169,0,0.4,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0.217,0,0,0,0 +1,0.619,0.817,0.806,0.597,0.4,0.283,0,0,0,0 +1,0.619,0.817,0.806,0.284,1,0.665,0,0,0,0 +1,0.619,0.817,0.806,0.179,1,0,0,0,0,0 +1,0.619,0.817,0.806,0.179,0.4,0.228,0,0,0,0 +1,0.568,0.774,0.851,0.341,0,0.217,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.0906,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.283,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.476,0,0,0,0 +1,0.568,0.774,0.851,0,0,0.283,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0.988,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.542,0.16,0.404,0,0,0,0,0,0,0 +1,0.542,0.16,0.404,0,0,0.0472,0.4,0,0,0.0827 +1,0.542,0.16,0.404,0,0,0.0906,1,0,0,0 +1,0.542,0.16,0.404,0,0,0.331,0.1,0.9,0,0 +1,0.542,0.16,0.404,0,0,0.236,0,1,0,0 +1,0.542,0.16,0.404,0,0,0,0,1,0,0 +1,0.542,0.212,0.392,0,0,0.496,0,1,0,0.0827 +1,0.542,0.212,0.392,0,0,0.26,0,1,0,0 +1,0.542,0.212,0.392,0,0,0,0,0.6,0,0 +1,0.542,0.212,0.392,0,0,0.531,0,0,0,0.0827 +1,0.542,0.212,0.392,0,0,0.0236,0,0,0,0 +1,0.542,0.212,0.392,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.205,0,0,0,0.0827 +1,0.542,0.252,0.381,0,0,0.217,0,0,0,0.0827 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.362,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.138,0,0,0,0 +1,0.542,0.252,0.381,0,0,0.181,0,0,0,0 +1,0.542,0.277,0.364,0,0,0.283,0,0,0,0 +1,0.542,0.277,0.364,0,0,0.193,0,0,0,0 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +1,0.542,0.277,0.364,0,0,0.236,0,0,0,0.248 +1,0.542,0.277,0.364,0,0,0.0787,0,0,0,0.165 +1,0.542,0.277,0.364,0,0,0.248,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.441,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.0787,0,0,0,0.165 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.441,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0.236,0,0,0,0.0827 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.272,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0.339,0,0,0,0.0827 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.512,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.362,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.126,0,0,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0.146,0,0,0,0.165 +0.667,0.548,0.273,0.249,0,0,0.295,0,0,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0.476,0,0,0,0.0827 +0.667,0.548,0.273,0.249,0,0,0.126,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0.205,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0.217,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0.283,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0.283,0,0,0,0 +0.667,0.564,0.159,0.15,0,0,0.362,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.26,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.217,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.35,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.0906,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.0906,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0.453,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0.398,0,0,0,0.262 +0.667,0.617,0.326,0.286,0,0,0.622,0,0,0,0.0971 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0.0827 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.165 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.331 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0923 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0692 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.548,0.113,0.286,0,0,0,0,0,0,0.647 +1,0.548,0.113,0.286,0,0,0,0,0,0.4,0.165 +1,0.548,0.113,0.286,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,1,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.4,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.756,0.9,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.608,0.5,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.54,0,0,0,0,0,0 +1,0.542,0.297,0.352,0,0,0,0,0,0,0 +1,0.542,0.297,0.352,0,0,0,0,0,0,0.0827 +1,0.542,0.297,0.352,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.0827 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.331 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.101 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.227 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.165 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.248 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0827 +1,0.568,0.441,0.351,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.119 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.189 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.248 +1,0.606,0.464,0.363,0,0,0,0,0,0,0 +1,0.606,0.464,0.363,0.443,0.4,0,0,0,0,0.1 +1,0.606,0.464,0.363,0.528,1,0,0,0,0,0.175 +1,0.606,0.464,0.363,0,1,0,0,0,0,0 +1,0.606,0.464,0.363,0.449,0.4,0,0,0,0.4,0.0827 +1,0.606,0.464,0.363,0.665,0,0,0,0,1,0 +1,0.645,0.479,0.404,0.716,0,0,0,0,0,0.0827 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.645,0.479,0.404,0.352,0,0,0,0,0,0 +1,0.645,0.479,0.404,0.46,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0.426,0,0,0,0,0,0 +1,0.626,0.383,0.351,0,0,0,0,0,0,0 +1,0.626,0.383,0.351,0.551,0,0,0,0,0,0.0827 +1,0.626,0.383,0.351,0.659,0,0,0,0,0,0 +1,0.626,0.383,0.351,0,0,0,0,0,0,0 +1,0.626,0.383,0.351,0.455,0,0,0,0,0,0 +1,0.626,0.383,0.351,0.511,0,0,0,0,0,0 +1,0.617,0.501,0.454,0.312,0,0,0,0,0,0 +1,0.617,0.501,0.454,0.557,0,0,0,0,0,0 +1,0.617,0.501,0.454,0,0,0,0,0,0,0 +1,0.617,0.501,0.454,0.409,0,0.543,0.9,0,0,0 +1,0.617,0.501,0.454,0.58,0,0,0.6,0.4,0,0.248 +1,0.645,0.743,0.656,0.341,0,0,0,1,0,0.413 +1,0.619,0.873,0.806,0.392,0,0,0,1,0,0 +1,0.619,0.873,0.806,0.455,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,1,0,0 +1,0.619,0.873,0.806,0,0,0,0,0.1,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.0827 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.739 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.199 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0.133 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.0757 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.0827 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.205 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.165 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.9,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.6,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.0827 +0.333,0.562,0.0159,0.0495,0.676,0.4,0,0,0,0.6,0 +0.333,0.601,0.0774,0.162,0.295,1,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0.264,1,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0.264,0.5,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.331 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.4,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,1,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,1,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.788,0.413,0.655,0,0,0,0,0,1,0 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.248 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,1,0 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.191 +1,0.788,0.413,0.655,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0 +1,0.772,0.578,0.829,0,0,0,0,0,1,0.165 +1,0.772,0.578,0.829,0,0,0,0,0,1,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.741,0.713,0.905,0,0,0,0,0,1,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,1,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.741,0.713,0.905,0,0,0,0,0,1,0 +1,0.679,0.676,0.821,0,0,0,0,0,1,0 +1,0.679,0.676,0.821,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.64,0.456,0.564,0,0,0,0,0,1,0 +1,0.599,0.278,0.356,0,0,0,0,0,1,0 +1,0.599,0.278,0.356,0,0,0,0,0,1,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,1,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,1,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0.2,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.295 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0236 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.0926 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0463 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.227 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.0503 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.0984 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.148 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0.307,0.4,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.205,1,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.26,0,1,0,0 +0.333,0.591,0.0486,0.174,0,0,0.0236,0,0.4,0,0.165 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.228,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0.283,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0.272,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0.283,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0.252,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.413 +1,0.679,0.2,0.387,0,0,0,0,0,0,0.0827 +1,0.679,0.2,0.387,0,0,0,0,0,0,0 +1,0.679,0.2,0.387,0,0,0,0,0,0,0 +1,0.679,0.2,0.387,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.9,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.6,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0.722,0.9,0,0,0,0,0 +1,0.772,0.307,0.501,0.33,1,0,0,0,0,0 +1,0.772,0.307,0.501,0.398,1,0,0,0,0,0 +1,0.772,0.307,0.501,0.551,0,0,0,0,0,0.398 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.186 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.152 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.101 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.248 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.235 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.156 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.218 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0242 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0993 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0496 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.207 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.109 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.165 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.331 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.496 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.9,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,1,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0.0827 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.165 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.137 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0704 +1,0.681,0.481,0.62,0,0,0,0,0,0,0.141 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.288 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.097 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0728 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.231 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.102 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0254 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.229 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.255 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.134 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.102 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0512 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.165 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.4,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.331 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.4,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +1,0.726,0.25,0.417,0,0,0,0,0,1,0.165 +1,0.726,0.25,0.417,0,0,0,0,0,1,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.1,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0.165 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.892,0.4,0,0,0,0,0 +1,0.772,0.578,0.829,0.259,1,0,0,0,0,0 +1,0.772,0.578,0.829,0.259,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.381,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.432,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.147 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.248 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.347 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0656 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.323 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.165 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.199 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.305 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.205 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.202 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.133 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0839 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.021 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.223 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.132 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.259 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.117 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0.124 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0.273 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0,0.331 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +1,0.671,0.172,0.294,0,0,0,0,0,0,0 +1,0.671,0.172,0.294,0,0,0,0,0,0,0 +1,0.671,0.172,0.294,0,0,0,0,0,0,0.165 +1,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +1,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +1,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.702,0.21,0.35,0,0,0,0,0,0.9,0 +1,0.702,0.21,0.35,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,1,0 +1,0.712,0.28,0.453,0,0,0,0,0,0.1,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.0827 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0.9,0 +1,0.681,0.481,0.62,0,0,0,0,0,0.6,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.12 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.0949 +1,0.599,0.278,0.356,0,0,0,0,0,0,0.142 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.248 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.609,0.0624,0.295,0,0,0,0,0,1,0 +1,0.609,0.0624,0.295,0,0,0,0,0,0.1,0 +1,0.609,0.0624,0.295,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0.449,0.9,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0.347,0.5,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.364,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.352,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.25,0,0,0,0,0,0.0937 +0.667,0.591,0.0855,0.17,0.25,0,0,0,0,0,0.0234 +0.667,0.591,0.0855,0.17,0.489,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.373 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.0257 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.205 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.165 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.201 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.331 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.107 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.329 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0246 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.165 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.145 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.165 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.248 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.0827 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.349 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.324 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.152,0.2,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0.0827 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0.165 +0.333,0.632,0.228,0.309,0,0,0,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0,0,0,0.9,0 +0.333,0.632,0.228,0.309,0,0,0,0,0,1,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,1,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,1,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.6,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.601,0.247,0.307,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0.165 +0.333,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.333,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.568,0.141,0.183,0,0,0,0,0,0,0 +0.667,0.558,0.0637,0.099,0,0,0,0,0,0,0 +0.667,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0495 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.253 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.0998 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.125 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.0827 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.136 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.165 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.386,0.9,0,0,0,0,0.248 +0.667,0.591,0.0855,0.17,0.46,0.5,0,0,0,0,0.0827 +0.667,0.62,0.153,0.291,0.415,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0.386,0,0,0,0,0,0.0827 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.352,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.301,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.426,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.648,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0.492,0,0,0,0,0,0.165 +0.667,0.62,0.179,0.271,0.246,0,0,0,0,0,0.248 +0.667,0.62,0.179,0.271,0.648,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0.26,0.4,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,1,0,0,0 +0.667,0.62,0.179,0.271,0,0,0.0472,0,1,0,0 +0.667,0.62,0.179,0.271,0,0,0.283,0,1,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0.8,0,0 +0.667,0.62,0.21,0.269,0,0,0.295,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.248,0,0,0,0.0827 +0.667,0.62,0.21,0.269,0,0,0.283,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.205,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.0551,0,0,0,0.0827 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.272,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.283,0,0,0,0.165 +0.667,0.62,0.239,0.269,0,0,0.374,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.524,0,0,0,0.248 +0.667,0.62,0.239,0.269,0,0,0.236,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0.693,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0.126,0,0,0,0.165 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.248 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.9,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.6,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.165 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.118 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0.103 +1,0.772,0.649,0.829,0,0,0,0,0,0,0.0517 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0.232 +1,0.741,0.763,0.905,0,0,0,0,0,0,0.155 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0.165 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0.216 +1,0.599,0.302,0.356,0,0,0,0,0,0,0.024 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0.0827 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.217 +1,0.56,0.0224,0.0798,0.557,0.4,0,0,0,0,0.0725 +1,0.578,0.0433,0.236,0.466,1,0,0,0,0,0 +1,0.578,0.0433,0.236,0,1,0.409,0.9,0,0,0 +1,0.578,0.0433,0.236,0.438,0.5,0.205,1,0,0,0.168 +1,0.578,0.0433,0.236,0.534,0,0.307,1,0,0,0 +1,0.578,0.0433,0.236,0,0,0.547,1,0,0.9,0.0827 +1,0.578,0.0433,0.236,0,0,0.374,0.3,0.7,1,0 +1,0.633,0.0786,0.417,0,0,0.217,0,0.7,1,0 +1,0.633,0.0786,0.417,0,0,0.0787,0,0,1,0.248 +0.667,0.609,0.0577,0.295,0,0,0.0354,0,0,0.6,0.165 +0.667,0.609,0.0577,0.295,0,0,0.319,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0.429,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0.26,0,0,0,0.165 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.9,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,1,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,1,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,1,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.6,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.165 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.9,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.6,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.331 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.4,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,1,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,1,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,1,0.248 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.6,0.0827 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.9,0 +1,0.62,0.118,0.269,0,0,0,0,0,0.6,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.331 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.319,0.9,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.283,0.5,0.5,0,0.165 +0.667,0.64,0.139,0.274,0,0,0.874,0,1,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0.362,0,1,0,0.165 +0.667,0.64,0.139,0.274,0,0,0.512,0,1,0,0 +0.667,0.671,0.172,0.294,0,0,0.453,0,1,0,0 +0.667,0.671,0.172,0.294,0,0,0.0118,0,1,0,0 +0.667,0.671,0.172,0.294,0,0,0.217,0,1,0,0.174 +0.667,0.671,0.172,0.294,0,0,0,0,0.6,0,0.0227 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.9,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.6,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.172 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.104 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.208 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.176 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0492 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.246 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.0827 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.158 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0.465,0.9,0,0,0.125 +1,0.57,0.0296,0.143,0,0,0.169,0.5,0.5,0,0.147 +1,0.585,0.0368,0.172,0,0,0,0,0.9,0,0 +1,0.585,0.0368,0.172,0,0,0.457,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0.228,0,0,0,0.103 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0.206 +1,0.609,0.0577,0.295,0,0,0.657,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0.26,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0.0551,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.227 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.367 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.301 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0996 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0249 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +1,0.649,0.114,0.424,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.195 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0913 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.0685 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.165 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.15 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.331 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.667,0.637,0.148,0.251,0,0,0,0,0,0,0 +0.667,0.637,0.148,0.251,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.335,0.4,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.477,1,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.219,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.219,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.449,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0.568,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.648,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.614,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.449,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.75,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.256,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.0827 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.397 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.0827 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.272 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.274 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.183 +1,0.587,0.057,0.33,0,0,0,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.249 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.167 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.0949 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.0827 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.178 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0713 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.17 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.122 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0938 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0938 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.0827 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.154 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.211 +0.667,0.712,0.28,0.453,0,0,0.205,0.4,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,1,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,1,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,1,0,0.102 +0.667,0.702,0.39,0.569,0,0,0,0,1,0,0.255 +0.667,0.702,0.39,0.569,0,0,0,0,1,0,0.255 +0.667,0.702,0.39,0.569,0,0,0,0,1,0,0.102 +1,0.772,0.578,0.829,0,0,0,0,0.7,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.19 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.167 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.221 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0492 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0966 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0483 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.355 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.247 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.247 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.0949 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.119 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.119 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.177 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0473 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.455 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.228 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.133 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.9,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,1,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.6,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0,0.165 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.267 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.103 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0515 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.248 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.234 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.156 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.263 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.346 +0.667,0.671,0.172,0.294,0.477,0.9,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0.614,1,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0.33,1,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.143 +0.667,0.702,0.21,0.35,0.625,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.318,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.25,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.25,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0.432,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.219 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.545,0.9,0,0,0,0,0 +1,0.772,0.578,0.829,0.608,0.5,0,0,0,0,0 +1,0.772,0.578,0.829,0.528,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.5,0,0,0,0,0,0.325 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.096 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.072 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.9,0.248 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.6,0.345 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0.0243 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0.0827 +1,0.558,0.0145,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.396 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0513 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0965 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.145 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.22 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.101 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0505 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.178 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.9,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.422 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.4,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,1,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.6,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.248 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.249 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.186 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0827 +1,0.681,0.481,0.62,0,0,0,0,0,0,0.233 +1,0.681,0.481,0.62,0,0,0,0,0,0,0.207 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.192 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.026 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.343 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.052 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0.0827 +0.667,0.62,0.153,0.291,0,0,0,0,0,1,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,1,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,1,0.165 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +1,0.649,0.242,0.394,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.6,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0.0827 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.413 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.248 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.248 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.165 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.248 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.165 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0.0827 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0.0827 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.0827 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.5,0.9,0,0,0 +1,0.741,0.763,0.905,0,0,0.421,0.5,0.5,0,0 +1,0.741,0.763,0.905,0,0,0,0,0.9,0,0 +1,0.741,0.763,0.905,0,0,0.476,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.272,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.457,0,0,0,0.235 +1,0.679,0.704,0.821,0,0,0.228,0,0,0,0.326 +1,0.64,0.475,0.564,0,0,0.327,0,0,0,0 +1,0.64,0.475,0.564,0,0,0.339,0,0,0,0 +1,0.64,0.475,0.564,0,0,0.26,0,0,0,0.165 +1,0.599,0.302,0.356,0,0,0,0,0,0,0.0827 +1,0.599,0.302,0.356,0,0,0.508,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.339,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.26,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.228,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.0472,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.283,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.0787,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.52,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.465,0,0,0,0.224 +1,0.568,0.141,0.183,0,0,0.26,0,0,0,0.0499 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.413 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.165 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.331 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.0827 +1,0.591,0.0737,0.174,0,0,0,0,0,0,0 +1,0.591,0.0737,0.174,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0.248 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0.0827 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0.0827 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,1,0.248 +0.667,0.591,0.114,0.159,0,0,0,0,0,1,0.0827 +0.667,0.591,0.114,0.159,0,0,0,0,0,1,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0.1,0.0827 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.165 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.331 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.248 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.331 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.0827 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.0938 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.0703 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0.174 +1,0.772,0.419,0.501,0,0,0,0,0,0,0.149 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.248 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.431 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.298 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0.0827 +1,0.64,0.475,0.564,0,0,0,0,0,0,0 +1,0.64,0.475,0.564,0,0,0,0,0,0,0 +1,0.64,0.475,0.564,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.405 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0954 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0239 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0914 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.118 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0.0705 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.375 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0827 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.102 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.178 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.216 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.228,0.4,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.398,1,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.386,0,1,0,0 +0.333,0.591,0.0604,0.16,0,0,0.0906,0,0.4,0,0 +0.333,0.591,0.0669,0.159,0,0,0.0906,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.0354,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.295,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.362,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.752,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.476,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.362,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.331,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.331,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.669,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.0551,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.441,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0.0906,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0.0669,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0.272,0,0,0,0.165 +0.333,0.616,0.0938,0.172,0,0,0.339,0,0,0,0.165 +0.333,0.616,0.0938,0.172,0,0,0.512,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0.669,0,0,0,0.0827 +0.333,0.616,0.0938,0.172,0,0,0.272,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0.227,0.9,0,0,0,0,0 +0.333,0.632,0.113,0.2,0.466,1,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.426,1,0,0,0,0,0 +0.667,0.702,0.21,0.35,0.574,0,0,0,0,0,0.413 +0.667,0.702,0.21,0.35,0.375,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.483,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.381,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.432,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.54,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.284,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0.284,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.472,0,0,0,0,0,0.241 +1,0.772,0.578,0.829,0,0,0.0354,0.4,0,0,0 +1,0.772,0.578,0.829,0,0,0.26,1,0,0,0 +1,0.772,0.578,0.829,0,0,0.102,0,1,0,0 +1,0.772,0.578,0.829,0,0,0.181,0,0.4,0,0.0562 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0.374,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0255 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.23 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.9,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,1,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0.212 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.128 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.0827 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.171 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0443 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.142 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.528,0.9,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.54,1,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0.5,1,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0.494,0,0,0,0,0,0.248 +0.333,0.591,0.0577,0.164,0.173,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0.173,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0.58,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.248 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.248 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.9,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.6,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.131 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.1 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.25 +1,0.741,0.713,0.905,0,0,0.339,0.9,0,0,0 +1,0.741,0.713,0.905,0,0,0.362,0.5,0.5,0,0.0827 +1,0.741,0.713,0.905,0,0,0.319,0,1,0,0 +1,0.741,0.713,0.905,0,0,0.657,0,1,0,0.188 +1,0.741,0.713,0.905,0,0,0.272,0,1,0,0 +1,0.679,0.676,0.821,0,0,0,0,1,0,0 +1,0.679,0.676,0.821,0,0,0.681,0,1,0,0 +1,0.679,0.676,0.821,0,0,0.398,0,0.2,0,0 +1,0.64,0.456,0.564,0,0,0.252,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.398,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.366,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.146,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.319,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.283,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.128 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.0993 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.199 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.116 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.48 +1,0.558,0.0289,0.11,0,0,0,0,0,0.4,0.0514 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0.165 +0.667,0.578,0.0433,0.236,0,0,0,0,0,1,0 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.1,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.248 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.248 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.331 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.1,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.236,0.9,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.26,0.5,0.5,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0.9,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.165 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.0827 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.514 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.273 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.191 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.155 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.18 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.269 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.187 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.235 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.209 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.376 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.154 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.239 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.558,0.0289,0.11,0,0,0,0,0,0,0 +0.667,0.558,0.0289,0.11,0,0,0,0,0,0,0.248 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +0.333,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0.165 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.9,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.6,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0.205,0.4,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.52,1,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.398,0,1,0,0 +0.333,0.591,0.0604,0.16,0,0,0.283,0,0.4,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0.567,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0.228,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.319,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0.295,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0.717,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0.0551,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.622,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0.0551,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.184 +0.333,0.637,0.148,0.251,0,0,0,0,0,0,0.126 +0.333,0.637,0.148,0.251,0,0,0,0,0,0,0.331 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.13 +1,0.788,0.413,0.655,0.415,0.9,0,0,0,0,0.13 +1,0.788,0.413,0.655,0.398,1,0,0,0,0,0 +1,0.772,0.578,0.829,0.415,1,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.574,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.443,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.466,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.619,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.331 +1,0.741,0.713,0.905,0.369,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.568,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.574,0,0,0,0,0,0 +1,0.679,0.676,0.821,0.597,0,0,0,0,0,0 +1,0.679,0.676,0.821,0.369,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.9,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,1,0.201 +1,0.587,0.057,0.33,0,0,0,0,0,1,0.45 +1,0.587,0.057,0.33,0,0,0,0,0,0.1,0.297 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.0827 +1,0.587,0.057,0.33,0,0,0,0,0,0,0 +1,0.587,0.057,0.33,0,0,0,0,0,0,0 +1,0.587,0.057,0.33,0,0,0,0,0,0,0.094 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.094 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.165 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.133 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.433 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.331 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.107 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.195 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.175 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.102 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.255 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0255 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.331 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.9,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,1,0 +1,0.64,0.139,0.274,0,0,0,0,0,1,0 +1,0.64,0.139,0.274,0,0,0,0,0,0.1,0.248 +1,0.64,0.139,0.274,0,0,0,0,0,0,0.165 +1,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.9,0.155 +1,0.726,0.25,0.417,0,0,0,0,0,0.6,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.54,0.9,0,0,0,0,0 +1,0.772,0.578,0.829,0.347,0.5,0,0,0,0,0 +1,0.772,0.578,0.829,0.5,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.477,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.341,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.341,0,0,0,0,0,0.116 +1,0.681,0.481,0.62,0.426,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.5,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0.477,0,0,0,0,0,0.0905 +1,0.64,0.456,0.564,0.545,0,0,0,0,0,0.0226 +1,0.64,0.456,0.564,0.756,0,0,0,0,0,0 +1,0.64,0.456,0.564,0.477,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0.432,0,0,0,0,0,0 +1,0.64,0.456,0.564,0.523,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.347,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.335,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.466,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.506,0,0,0,0,0,0 +1,0.58,0.147,0.203,0.528,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.386,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.625,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.293,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.293,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.324,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.301,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.392,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.347,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.386,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.6,0.165 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.409 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.6,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0.413 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.331 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.248 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.165 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0.567,0.9,0,0.9,0 +1,0.788,0.493,0.655,0,0,0.362,0.5,0.5,0.6,0.0827 +1,0.772,0.649,0.829,0,0,0,0,0.9,0,0 +1,0.772,0.649,0.829,0,0,0.248,0,0,0,0 +1,0.772,0.649,0.829,0,0,0.362,0,0,0,0 +1,0.772,0.649,0.829,0,0,0.736,0,0,0,0 +1,0.772,0.649,0.829,0,0,0,0,0,0,0 +1,0.772,0.649,0.829,0,0,0.228,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.169,0,0,0,0.248 +1,0.741,0.763,0.905,0,0,0.0472,0,0,0,0.165 +1,0.741,0.763,0.905,0,0,0.0551,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.362,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.205,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.693,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.205,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.339,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.331,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.705,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.26,0,0,0.9,0 +1,0.618,0.444,0.51,0,0,0.465,0,0,0.6,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0.0827 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.558,0.0205,0.0518,0,0,0,0,0,0,0.0827 +1,0.558,0.0205,0.0518,0,0,0,0,0,0,0 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0.165 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.609,0.0624,0.295,0,0,0,0,0,0,0 +0.667,0.609,0.0624,0.295,0.341,0.9,0,0,0,0,0 +0.667,0.609,0.0624,0.295,0.358,1,0,0,0,0,0.165 +0.667,0.62,0.0991,0.301,0.403,1,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0.551,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0.636,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0.716,0,0,0,0,0,0 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0737,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.165 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.21,0.269,0,0,0.362,0.9,0,0,0.0827 +0.667,0.62,0.21,0.269,0,0,0.0354,0.5,0.5,0,0.165 +1,0.649,0.307,0.378,0,0,0.669,0,1,0,0 +1,0.649,0.307,0.378,0,0,0.362,0,1,0,0.0827 +1,0.649,0.307,0.378,0,0,0.0787,0,1,0,0 +1,0.649,0.35,0.379,0,0,0,0,0.7,0,0 +1,0.649,0.35,0.379,0,0,0.386,0,0,0,0.0827 +1,0.649,0.35,0.379,0,0,0.26,0,0,0,0.0827 +1,0.649,0.35,0.379,0,0,0,0,0,0,0 +1,0.649,0.35,0.379,0,0,0,0,0,0,0 +1,0.649,0.35,0.379,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0827 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0 +0.333,0.616,0.147,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.147,0.172,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.248,0.4,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,1,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.398,0,1,0,0 +0.333,0.632,0.228,0.309,0,0,0.0551,0,0.4,0,0 +0.333,0.632,0.228,0.309,0,0,0.272,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0.445,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0.0354,0,0,0,0 +0.333,0.621,0.266,0.335,0,0,0,0,0,0,0 +0.333,0.621,0.266,0.335,0,0,0.272,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0.0827 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.179 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.232 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.165 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.165 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.165 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.187 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.186 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.103 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.165 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.248 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.103 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.18 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.9,0 +1,0.726,0.25,0.417,0,0,0,0,0,0.6,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.9,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.6,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.562,0.9,0,0,0,0,0 +1,0.788,0.413,0.655,0.534,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.375,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.46,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.259,1,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0.259,1,0,0,0,0,0 +1,0.772,0.578,0.829,0,1,0,0,0,0,0 +1,0.772,0.578,0.829,0.545,0.4,0,0,0,0,0 +1,0.772,0.578,0.829,0.432,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.608,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.364,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.835,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.591,0,0,0,0,0,0.165 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.412 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.1 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0752 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.183 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.108 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0999 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.165 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.224 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.0497 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.4,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,1,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.1,0.0827 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0827 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.4,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,1,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.1,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.103 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0774 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.162 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0231 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0827 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.103 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.103 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.178 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +0.333,0.562,0.0159,0.0495,0.665,0.4,0,0,0,0,0.0827 +0.333,0.585,0.0368,0.172,0.415,1,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,1,0,0,0,0.9,0.0827 +0.333,0.585,0.0368,0.172,0.659,0.5,0,0,0,1,0.165 +0.333,0.591,0.0427,0.175,0.369,0,0,0,0,1,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,1,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.6,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.152 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.9,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,1,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.1,0 +1,0.772,0.307,0.501,0.341,0.4,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0.557,1,0,0,0,0,0 +1,0.788,0.413,0.655,0.312,1,0,0,0,0,0.248 +1,0.788,0.413,0.655,0,0.5,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0.352,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.165 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0827 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.248 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0.0827 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0669,0.9,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0.146,0.5,0.5,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0.9,0,0 +1,0.56,0.0224,0.0798,0,0,0.366,0,0,0,0.314 +1,0.56,0.0224,0.0798,0,0,0.307,0,0,0,0.237 +1,0.558,0.0289,0.11,0,0,0.283,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0.217,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0.0906,0,0,0,0.0958 +1,0.578,0.0433,0.236,0,0,0.524,0,0,0,0.0239 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0.283,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0.421,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0.374,0,0,0,0.165 +0.667,0.57,0.0296,0.143,0,0,0.319,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0.705,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0.157,0,0,0,0.0827 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0.398,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0.35,0,0,0,0.165 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.331 +0.667,0.591,0.0427,0.175,0,0,0.217,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0.248,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0.429,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0.362,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.165 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.17 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.263 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.214 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.161 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.226 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.241 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.331 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.4,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.1,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0.193,0.9,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0.236,0.5,0.5,0,0 +1,0.702,0.39,0.569,0,0,0.398,0,0.9,0,0 +1,0.702,0.39,0.569,0,0,0.205,0,0,0,0 +1,0.702,0.39,0.569,0,0,0.26,0,0,0,0 +1,0.681,0.481,0.62,0,0,0.567,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0.126,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0.354,0,0,0,0.235 +1,0.681,0.481,0.62,0,0,0.331,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.157,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.169,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.126,0,0,0,0.103 +1,0.64,0.456,0.564,0,0,0.35,0,0,0,0.154 +1,0.64,0.456,0.564,0,0,0.476,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.228,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0.236,0,0,0,0.0827 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.248 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.258 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.0927 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.248 +1,0.578,0.0433,0.236,0,0,0,0,0,0.4,0.0827 +1,0.578,0.0433,0.236,0,0,0,0,0,1,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0.1,0.11 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0827 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.413 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.248 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.9,0.165 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.6,0.0827 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.248 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0827 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.511,0.4,0,0,0,0,0 +1,0.679,0.676,0.821,0.58,1,0,0,0,0,0 +1,0.679,0.676,0.821,0,1,0,0,0,0,0 +1,0.679,0.676,0.821,0.386,1,0,0,0,0,0.102 +1,0.679,0.676,0.821,0.477,1,0,0,0,0,0.154 +1,0.679,0.676,0.821,0,1,0,0,0,0,0 +1,0.679,0.676,0.821,0.517,0.5,0,0,0,0,0 +1,0.618,0.409,0.51,0.455,0,0,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.722,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.369,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.494,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.248 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.205 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.102 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.337 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.0508 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.165 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.0827 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.165 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.104 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.259 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.129 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +1,0.62,0.129,0.299,0,0,0,0,0,0,0 +1,0.62,0.129,0.299,0,0,0,0,0,0,0 +1,0.62,0.129,0.299,0,0,0,0,0,0,0.0978 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.0489 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.109 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.524 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.0881 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.022 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.0827 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.165 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.0905 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.4,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,1,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.1,0 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0.0827 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0 +1,0.679,0.385,0.387,0,0,0,0,0,0,0 +1,0.679,0.385,0.387,0,0,0,0,0,0,0.0827 +1,0.679,0.385,0.387,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.0827 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.0827 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.0827 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0.138,0.9,0,0,0 +1,0.772,0.419,0.501,0,0,0.362,0.5,0.5,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0.9,0,0 +0.667,0.702,0.285,0.35,0,0,0.374,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0.228,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0.646,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0.236,0,0,0,0.165 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0.339,0,0,0,0.0827 +1,0.788,0.493,0.655,0,0,0.0354,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0.622,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0.441,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.165 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.165 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0.165 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0.0827 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0 +0.667,0.58,0.16,0.203,0,0,0,0,0,0,0 +0.667,0.58,0.16,0.203,0,0,0,0,0,0,0.235 +0.667,0.58,0.16,0.203,0,0,0,0,0,0,0.0261 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.165 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.135 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.07 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.0467 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.248 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.248 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.248 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.248 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.331 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.165 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.248 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.372 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.18 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.122 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +1,0.649,0.259,0.382,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0 +1,0.62,0.21,0.269,0,0,0,0,0,0,0.0827 +1,0.62,0.239,0.269,0,0,0,0,0,0,0 +1,0.62,0.239,0.269,0,0,0.26,0.9,0,0,0 +0.667,0.591,0.129,0.159,0,0,0.272,0.5,0.5,0,0 +0.667,0.62,0.239,0.269,0,0,0,0,1,0,0 +0.667,0.62,0.239,0.269,0,0,0.26,0,1,0,0 +0.667,0.62,0.239,0.269,0,0,0.0551,0,1,0,0.165 +1,0.679,0.385,0.387,0,0,0.283,0,1,0,0 +1,0.679,0.385,0.387,0,0,0.622,0,1,0,0.248 +1,0.679,0.385,0.387,0,0,0.441,0,0.2,0,0.0827 +1,0.679,0.385,0.387,0,0,0,0,0,0,0 +1,0.679,0.385,0.387,0,0,0.272,0,0,0,0 +1,0.679,0.385,0.387,0,0,0.319,0,0,0,0 +1,0.726,0.405,0.417,0,0,0,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.484,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.283,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.26,0,0,0,0 +1,0.726,0.405,0.417,0,0,0.61,0,0,0,0.248 +1,0.726,0.405,0.417,0,0,0.272,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.0827 +1,0.788,0.493,0.655,0.523,0.4,0,0,0,0,0 +1,0.788,0.493,0.655,0.574,1,0,0,0,0,0 +1,0.788,0.493,0.655,0,1,0,0,0,0,0 +1,0.788,0.493,0.655,0.358,1,0,0,0,0,0.0827 +1,0.772,0.649,0.829,0.602,1,0,0,0,0,0 +1,0.772,0.649,0.829,0.324,1,0.0118,0.9,0,0,0 +1,0.772,0.649,0.829,0,1,0.169,1,0,0,0.165 +1,0.772,0.649,0.829,0,1,0,1,0,0,0 +1,0.772,0.649,0.829,0,1,0.598,1,0,0,0 +1,0.772,0.649,0.829,0,1,0.181,1,0,0,0 +1,0.741,0.763,0.905,0,0.9,0.512,1,0,0,0 +1,0.741,0.763,0.905,0,0,0,1,0,0,0 +1,0.741,0.763,0.905,0,0,0.114,1,0,0,0.0827 +1,0.741,0.763,0.905,0,0,0,0.6,0.4,0,0 +1,0.741,0.763,0.905,0,0,0.26,0,1,0,0 +1,0.741,0.763,0.905,0,0,0.138,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.327,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.228,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.228,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.52,0,0,0,0 +1,0.679,0.704,0.821,0,0,0.126,0,0,0,0.165 +1,0.618,0.444,0.51,0,0,0.307,0,0,0,0.0827 +1,0.618,0.444,0.51,0,0,0.331,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.205,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.433,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.362,0,0,0,0.0827 +1,0.599,0.302,0.356,0,0,0.0551,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.634,0,0,0,0 +1,0.568,0.141,0.183,0,0,0.272,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.104 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.261 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.199 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0,0.0827 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0.4,0.165 +0.667,0.57,0.0296,0.143,0,0,0,0,0,1,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.1,0.0827 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.248 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.184 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.228 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.0246 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.328 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.4,0.239 +0.333,0.616,0.0938,0.172,0,0,0,0,0,1,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.1,0 +1,0.726,0.25,0.417,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.413 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.165 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.165 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0827 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.167 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0494 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.148 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0.101 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.122 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.17 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.0752 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.1 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.245 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.049 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0827 +1,0.558,0.0197,0.0518,0,0,0,0,0,0,0.0827 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.149 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.207 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.104 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.078 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.165 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.174 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0498 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.143 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0866 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.239 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.248 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.326 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.508 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.342 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.274 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.4,0.0827 +0.667,0.601,0.0774,0.162,0,0,0,0,0,1,0 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.1,0.0827 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.0906,0.9,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.465,0.5,0.5,0,0.0827 +0.667,0.671,0.172,0.294,0,0,0.386,0,0.9,0,0 +0.667,0.671,0.172,0.294,0,0,0.0236,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.0354,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.524,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.409,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.283,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.417,0,0,0,0.165 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0827 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0827 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0998 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.249 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0499 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.165 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.165 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.232 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.0773 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0827 +0.667,0.57,0.0296,0.143,0.295,0.4,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.597,1,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.293,1,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.293,0.5,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0.557,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0.562,0,0,0,0,0,0 +0.667,0.585,0.0368,0.172,0.619,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.165 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.165 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.248 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.165 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0827 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.472,0.4,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.432,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.307,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.375,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.375,1,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.557,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,1,0,0,0,0,0.165 +1,0.741,0.713,0.905,0,0.4,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.104 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.126 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.202 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.107 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.321 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.144 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0959 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.151 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0505 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.358 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.128 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.0502 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.502 +1,0.618,0.069,0.318,0,0,0,0,0,0,0.0996 +1,0.618,0.069,0.318,0,0,0.236,0.1,0,0,0.0827 +1,0.618,0.069,0.318,0,0,0.283,1,0,0,0.0827 +1,0.647,0.0955,0.452,0,0,0.0669,0.3,0.7,0,0.156 +1,0.647,0.0955,0.452,0,0,0.126,0,0.8,0,0.135 +1,0.647,0.0955,0.452,0,0,0.331,0,0,0,0.0827 +1,0.647,0.113,0.456,0,0,0.236,0,0,0,0 +1,0.647,0.113,0.456,0,0,0.13,0,0,0,0.0661 +1,0.647,0.113,0.456,0,0,0.13,0,0,0,0.661 +1,0.647,0.113,0.456,0,0,0.283,0,0,0,0 +1,0.647,0.113,0.456,0,0,0.252,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.248,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.193,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.102,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.108 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.101 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.152 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.248 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.165 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +1,0.77,0.573,0.919,0,0,0,0,0,1,0 +1,0.77,0.573,0.919,0,0,0,0,0,1,0 +1,0.77,0.573,0.919,0,0,0,0,0,0.1,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0257 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.232 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.157 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.131 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0472,0.6,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.199,0.8,0.2,0,0.107 +1,0.562,0.0159,0.0495,0,0,0.199,0,1,0,0.223 +1,0.569,0.0294,0.147,0,0,0.283,0,0.3,0,0.0827 +1,0.569,0.0294,0.147,0,0,0.331,0,0,0,0.0827 +1,0.577,0.043,0.245,0,0,0.283,0,0,0,0 +1,0.631,0.078,0.433,0,0,0.283,0,0,0.6,0.312 +1,0.631,0.078,0.433,0,0,0,0,0,1,0.438 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0251 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.1 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.15 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.108 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.165 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.069 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.414 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.151 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.252 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.131 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.107 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.168 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +1,0.647,0.148,0.413,0,0,0,0,0,0,0 +1,0.647,0.148,0.413,0,0,0,0,0,0,0.101 +1,0.647,0.148,0.413,0,0,0,0,0,0,0.0827 +1,0.647,0.148,0.413,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.6,0.0454 +0.667,0.618,0.117,0.289,0,0,0,0,0,1,0.174 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.248 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.165 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0249 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0996 +1,0.785,0.409,0.946,0.517,0.6,0,0,0,0,0 +1,0.785,0.409,0.946,0.426,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.432,1,0,0,0,0,0 +1,0.77,0.573,0.919,0,1,0,0,0,0,0.153 +1,0.77,0.573,0.919,0.318,1,0,0,0,0,0.0256 +1,0.77,0.573,0.919,0.466,0.1,0,0,0,0,0 +1,0.77,0.573,0.919,0.466,0.6,0,0,0,0,0 +1,0.77,0.573,0.919,0.224,0.9,0,0,0,0,0.0258 +1,0.77,0.573,0.919,0.224,0,0,0,0,0,0.103 +1,0.739,0.708,0.747,0.318,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.705,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.449,0,0,0,0,0,0.153 +1,0.739,0.708,0.747,0.659,0,0,0,0,0,0.102 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0506 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.377 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0747 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.131 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0261 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.165 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.248 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0.248 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0.235 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.9,0.248 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.7,0.165 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.248 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.165 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.331 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0.0895 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.0224 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.165 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.248 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.331 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.248 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.165 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0212,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0212,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0212,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.7,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.618,0.128,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.128,0.321,0,0,0.248,0.9,0,0,0 +0.667,0.618,0.128,0.321,0,0,0.126,0.5,0.5,0,0 +0.667,0.618,0.128,0.321,0,0,0,0,1,0,0 +0.667,0.618,0.128,0.321,0,0,0.217,0,1,0.9,0 +0.667,0.618,0.128,0.321,0,0,0.26,0,1,0.7,0 +0.667,0.618,0.152,0.312,0,0,0.354,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.476,0,1,0,0.165 +0.667,0.618,0.152,0.312,0,0,0.26,0,0.7,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0.0236,0.4,0,0,0.0827 +0.667,0.618,0.166,0.3,0,0,0.362,1,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.531,0,1,0,0 +0.667,0.618,0.166,0.3,0,0,0.0472,0,1,0,0 +0.667,0.618,0.166,0.3,0,0,0.803,0,1,0,0 +0.667,0.618,0.166,0.3,0,0,0.228,0,1,0,0.0827 +0.667,0.618,0.166,0.3,0,0,0.236,0,1,0,0.165 +0.667,0.618,0.178,0.292,0,0,0,0,1,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0.0906,0,0.2,0,0.248 +0.667,0.618,0.178,0.292,0,0,0.126,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.0906,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0.35,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.9,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0.165 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,1,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,1,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.6,0.0827 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0.18 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.0485 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.165 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0.197 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0.0892 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0223 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0827 +0.667,0.711,0.332,0.647,0.381,0.4,0,0,0,0,0.0827 +0.667,0.7,0.435,0.629,0.534,1,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,1,0,0,0,0,0 +0.667,0.7,0.435,0.629,0.534,0.7,0,0,0,0,0 +0.667,0.7,0.435,0.629,0.307,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.9,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.7,0.0827 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.222 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.0741 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.1 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.0502 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.131 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.393 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.024 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.216 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0.331 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0.0827 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.165 +1,0.559,0.0223,0.0816,0,0,0.0669,0.1,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0.319,1,0,0,0 +1,0.559,0.0223,0.0816,0,0,0.0787,1,0,0,0 +1,0.559,0.0223,0.0816,0,0,0.136,1,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0.136,1,0,0,0.248 +1,0.577,0.043,0.245,0,0,0.248,1,0,0,0.0827 +1,0.577,0.043,0.245,0,0,0.614,1,0,0,0 +1,0.577,0.043,0.245,0,0,0.248,1,0,0,0 +1,0.577,0.043,0.245,0,0,0.181,1,0,0.6,0 +1,0.577,0.043,0.245,0,0,0.343,0.4,0.6,1,0 +1,0.577,0.043,0.245,0,0,0,0,0.9,1,0 +1,0.608,0.0573,0.305,0,0,0,0,0,1,0.157 +1,0.608,0.0573,0.305,0,0,0,0,0,1,0.261 +1,0.608,0.0573,0.305,0,0,0,0,0,0.3,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.245 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.6,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.156 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.104 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0256 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.256 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.154 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0927 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.132 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.13 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.358 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0691 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.198 +0.667,0.639,0.138,0.338,0,0,0.148,0.1,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.148,1,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0.3,0.7,0.6,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0.8,1,0.106 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0.161 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.724,0.248,0.612,0,0,0,0,0,0.3,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0.545,0.6,0,0,0,0,0 +1,0.77,0.304,0.804,0.392,1,0,0,0,0,0 +1,0.77,0.304,0.804,0.449,1,0,0,0,0,0 +1,0.785,0.409,0.946,0,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.341,1,0,0,0,0,0 +1,0.785,0.409,0.946,0,1,0,0,0,0,0 +1,0.785,0.409,0.946,0,0.7,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.026 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.078 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.3 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0225 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0879 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.12 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0622 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.435 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.139 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0231 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.248 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.145 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.228 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.6,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,1,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.248 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.496 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.111 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.248 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.411 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.449,0.6,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.693,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0.5,0,0,0,0,0.195 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.248 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0243 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.243 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0243 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.6,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,1,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.248 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0.449,0.6,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0.352,1,0,0,0,0,0 +1,0.77,0.304,0.804,0.415,1,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,1,0,0,0,0,0.248 +0.667,0.7,0.208,0.553,0.415,1,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,1,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0.7,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.274 +1,0.785,0.409,0.946,0.193,0.1,0,0,0,0,0 +1,0.785,0.409,0.946,0.193,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.46,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.778,1,0,0,0,0,0.0467 +1,0.77,0.573,0.919,0.665,0,0,0,0,0,0.287 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.106 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0254 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.254 +1,0.621,0.246,0.282,0,0,0,0,0,0,0.178 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.145 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.0482 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0238 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.143 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.176 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0.117 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.6,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.248 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0.228,0.6,0,0,0 +0.333,0.59,0.06,0.171,0,0,0.181,0.8,0.2,0,0 +0.333,0.59,0.06,0.171,0,0,0.441,0,1,0,0 +0.333,0.59,0.0665,0.169,0,0,0.272,0,1,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0.154,0,1,0,0 +0.333,0.59,0.0665,0.169,0,0,0.449,0,1,0,0 +0.333,0.59,0.0665,0.169,0,0,0.386,0,0.4,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0.124,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0.124,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0.398,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0.0591,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0.283,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0.228,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0.146,0,0,0,0.248 +0.333,0.6,0.0769,0.194,0,0,0.205,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0.181,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.181,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.283,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.488,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.362,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0.339,0,0,0.6,0 +0.333,0.616,0.0931,0.237,0,0,0.187,0,0,1,0.0827 +0.333,0.616,0.0931,0.237,0,0,0.222,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0.465,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.319,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.339,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.0118,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0.22,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.551,0,0,0,0 +1,0.77,0.304,0.804,0,0,0.35,0,0,0,0 +1,0.77,0.304,0.804,0,0,0.142,0,0,0,0 +1,0.77,0.304,0.804,0,0,0.142,0,0,0,0 +1,0.785,0.409,0.946,0,0,0.352,0,0,0,0.165 +1,0.785,0.409,0.946,0,0,0.352,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0.331,0,0,0,0 +1,0.785,0.409,0.946,0,0,0.331,0,0,0,0 +1,0.785,0.409,0.946,0.278,0.1,0.524,0,0,0,0 +1,0.785,0.409,0.946,0.278,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.233,1,0.236,0,0,0,0 +1,0.77,0.573,0.919,0.33,1,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0.335,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.33,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0258 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.232 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0236 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0827 +0.667,0.562,0.0159,0.0495,0.193,0.1,0,0,0,1,0.0827 +0.667,0.562,0.0159,0.0495,0.193,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.557,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.483,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.443,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0.381,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,1,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,1,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0.8,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.248 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,1,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,1,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.3,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.024 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.192 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0.275 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0.1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0 +1,0.77,0.304,0.804,0.489,0.6,0,0,0,1,0 +1,0.77,0.304,0.804,0.676,0.9,0,0,0,1,0.0827 +1,0.77,0.304,0.804,0.517,0,0,0,0,1,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0.216,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.7,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.145 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.203 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0501 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.275 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0839 +1,0.6,0.234,0.222,0,0,0,0,0,0,0.021 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0246 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.13 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.156 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0.0827 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0.165 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.248 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.145 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0771 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0771 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.104 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.261 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.9,0.0827 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.7,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0849,0.181,0,0,0.52,0.4,0,0,0 +0.333,0.59,0.092,0.175,0,0,0,1,0,0,0 +0.333,0.59,0.092,0.175,0,0,0.559,0,1,0,0 +0.333,0.59,0.092,0.175,0,0,0.0236,0,1,0,0.0827 +0.333,0.59,0.092,0.175,0,0,0,0,1,0,0 +0.333,0.59,0.092,0.175,0,0,0.24,0,0.1,0,0 +0.667,0.618,0.166,0.3,0,0,0.295,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.386,0,0,0,0.248 +0.667,0.618,0.178,0.292,0,0,0.327,0,0,0,0.165 +0.667,0.618,0.178,0.292,0,0,0.283,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.0354,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0.339,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0.555,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0.217,0,0,0,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0.157,0,0,0,0.248 +0.667,0.618,0.209,0.289,0,0,0.228,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0.319,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0.283,0,0,0,0.165 +0.667,0.59,0.128,0.173,0,0,0.0354,0,0,0,0.0827 +0.667,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.128,0.173,0,0,0.295,0,0,0,0.0827 +0.667,0.59,0.128,0.173,0,0,0.307,0,0,0,0.165 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.165 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.165 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.9,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.7,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0.0827 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.165 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.144 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0.0827 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0.187 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.0519 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.413 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.426 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.413 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.0993 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0496 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.165 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.11 +0.667,0.639,0.261,0.338,0.523,0.4,0,0,0,0,0 +0.667,0.67,0.274,0.425,0.545,1,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,1,0,0,0,0,0.0857 +0.667,0.67,0.274,0.425,0.398,0.7,0,0,0,0,0.0214 +0.667,0.67,0.274,0.425,0.438,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0.415,0,0,0,0,0,0 +1,0.67,0.274,0.425,0.733,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0.352,0,0,0,0,0,0 +1,0.7,0.283,0.553,0.528,0,0,0,0,0,0.165 +1,0.7,0.283,0.553,0.443,0,0,0,0,0,0 +1,0.7,0.283,0.553,0.381,0,0,0,0,0.9,0 +1,0.77,0.415,0.804,0.287,0,0,0,0,0.7,0.165 +1,0.785,0.489,0.946,0.287,0,0,0,0,0,0.579 +1,0.785,0.489,0.946,0.42,0,0,0,0,0,0.0827 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.213 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0.104 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.104 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.126 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0.0966 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.231 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.198 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.0508 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.254 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.191 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0707 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.248 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.247 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.13 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.165 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.31 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.165 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.6,0.0827 +0.667,0.585,0.0366,0.177,0,0,0,0,0,1,0.0239 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.143 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0.155 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0.0517 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0 +1,0.618,0.069,0.318,0,0,0,0,0,0,0 +1,0.618,0.069,0.318,0,0,0,0,0,0,0.0259 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0,0.156 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.265 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0.267,0.1,0,0,0,0,0.024 +0.667,0.618,0.0989,0.3,0.267,1,0,0,0,0,0.144 +0.667,0.618,0.104,0.292,0.557,1,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0.523,1,0,0,0,0,0 +0.667,0.618,0.104,0.292,0.489,1,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,1,0,0,0,0,0.14 +0.667,0.618,0.104,0.292,0.236,1,0,0,0,0,0.0701 +0.667,0.618,0.104,0.292,0.236,0.2,0,0,0,0,0 +0.667,0.618,0.117,0.289,0.375,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.248 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.6,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,1,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.165 +0.667,0.711,0.278,0.647,0.185,0.1,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.185,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.767,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.324,1,0,0,0,0,0 +1,0.785,0.409,0.946,0.585,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.438,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0966 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.6,0 +1,0.577,0.043,0.245,0,0,0,0,0,1,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0.339,0.6,0,0,0 +1,0.577,0.043,0.245,0,0,0.264,0.8,0.2,0,0 +1,0.577,0.043,0.245,0,0,0,0,1,0,0 +1,0.631,0.078,0.433,0,0,0.165,0,1,0,0.165 +1,0.631,0.078,0.433,0,0,0.197,0,0.9,0,0.0827 +1,0.631,0.078,0.433,0,0,0.567,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.272,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.0906,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.26,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.143 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.178 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0241 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.241 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.248 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.331 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.331 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.165 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.6,0.165 +0.333,0.616,0.0931,0.237,0,0,0,0,0,1,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.165 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.155 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.0258 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0248 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0993 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.144 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.024 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.142 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.177 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0248 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.198 +1,0.557,0.0287,0.114,0,0,0,0,0,0,0.165 +1,0.557,0.0287,0.114,0,0,0,0,0,0,0.165 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,1,0.165 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,1,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.6,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.273 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0996 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0827 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.6,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,1,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,1,0 +1,0.677,0.199,0.482,0,0,0,0,0,0.6,0.331 +1,0.677,0.199,0.482,0,0,0,0,0,0,0.0827 +1,0.677,0.199,0.482,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0.6,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.137 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0228 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0248 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.248 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.156 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.13 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0247 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.173 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.155 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.16 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.6,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,1,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.248 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.165 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.165 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.121 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0254 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0761 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.165 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.248 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.6,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.126 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.107 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.255 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.0827 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.159 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.253 +1,0.631,0.078,0.433,0,0,0,0,0,0,0.127 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.6,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,1,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.165 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.496 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.165 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.155 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0773 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.153 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.0244 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.195 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.0502 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.1 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.3,0.248 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0,0.479 +1,0.585,0.04,0.177,0,0,0,0,0,0,0.205 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.331 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.47 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.132 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.0943 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.0707 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.128,0.321,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0.147 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.152,0.312,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0.9,0 +1,0.618,0.166,0.3,0,0,0,0,0,1,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,1,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,1,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,1,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,1,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,0.6,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,0,0 +1,0.647,0.257,0.413,0,0,0,0,0,0,0 +1,0.647,0.257,0.413,0,0,0,0,0,0,0 +1,0.647,0.257,0.413,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.0827 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.165 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.0827 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.647,0.347,0.421,0,0,0,0,0,0,0 +1,0.647,0.347,0.421,0,0,0,0,0,0,0 +1,0.647,0.347,0.421,0.17,0.4,0,0,0,0,0 +1,0.647,0.347,0.421,0.449,1,0,0,0,0,0 +1,0.647,0.347,0.421,0.216,1,0,0,0,0,0.165 +1,0.647,0.347,0.421,0.216,0.7,0,0,0,0,0.0827 +1,0.677,0.382,0.482,0.528,0,0,0,0,0,0 +1,0.677,0.382,0.482,0.426,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.248 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.165 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0.0827 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0.608,0.4,0,0,0,0,0 +1,0.785,0.489,0.946,0.472,1,0,0,0,0,0 +1,0.785,0.489,0.946,0,0.1,0,0,0,0,0 +1,0.785,0.489,0.946,0.364,0,0,0,0,0,0.0827 +1,0.785,0.489,0.946,0.415,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0.574,0,0,0,0,0,0.0827 +1,0.77,0.643,0.919,0.574,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.574,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.472,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.335,0,0,0,0,0,0 +1,0.77,0.643,0.919,0.511,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.166 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.051 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0765 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.331 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.426 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.474 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.0827 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0,0.097 +1,0.585,0.04,0.177,0,0,0,0,0,0.9,0.218 +1,0.585,0.04,0.177,0,0,0,0,0,1,0 +1,0.585,0.04,0.177,0,0,0,0,0,1,0 +1,0.585,0.04,0.177,0,0,0,0,0,1,0.0827 +1,0.585,0.04,0.177,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,1,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0.3,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.165 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.248 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.0827 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.4,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,1,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.2,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.0827 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.165 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0 +1,0.724,0.402,0.612,0,0,0,0,0,0,0.165 +1,0.77,0.415,0.804,0,0,0,0,0,0,0.248 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0.426,0.9,0,0,0,0,0 +1,0.77,0.415,0.804,0.534,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.602,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.233,0.2,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0.489,0.9,0,0,0,0,0 +1,0.616,0.441,0.493,0.432,1,0,0,0,0,0 +1,0.598,0.3,0.345,0,1,0,0,0,0,0 +1,0.598,0.3,0.345,0,1,0,0,0,0,0 +1,0.598,0.3,0.345,0,0.8,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.32 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.0473 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.355 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.0827 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.233 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.133 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.188 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0236 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.116 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.248 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.6,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,1,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,1,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.6,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.248 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.352 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.065 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.145 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.6,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,1,0.0242 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.194 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.101 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.217 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.507 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.104 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.165 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0.145 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0.0724 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0.283,0.6,0,0,0 +0.667,0.639,0.452,0.394,0,0,0.496,0.8,0.2,0,0.0233 +0.667,0.639,0.452,0.394,0,0,0,0,1,0,0.116 +0.667,0.598,0.276,0.345,0,0,0.0906,0,0.3,0,0 +0.667,0.598,0.276,0.345,0,0,0.205,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0.236,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0,0,0,0,0.136 +0.667,0.598,0.276,0.345,0,0,0,0,0,0,0 +0.667,0.58,0.146,0.197,0,0,0,0,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.15 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.183 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.557,0.0287,0.114,0,0,0,0,0,0,0 +1,0.557,0.0287,0.114,0,0,0,0,0,0.1,0.105 +1,0.557,0.0287,0.114,0,0,0,0,0,1,0.275 +1,0.577,0.043,0.245,0,0,0,0,0,1,0 +1,0.577,0.043,0.245,0,0,0,0,0,1,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.1,0.126 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.176 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.0244 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.244 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.0244 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0.24 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.6,0.0827 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,1,0.165 +0.333,0.6,0.0769,0.194,0,0,0.199,0.1,0,1,0.331 +0.333,0.6,0.0769,0.194,0,0,0.482,1,0,0.3,0 +0.333,0.6,0.0769,0.194,0,0,0.256,0.3,0.7,0,0 +0.333,0.6,0.0769,0.194,0,0,0.335,0,0.8,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0.35,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0.114,0,0,0,0.057 +0.667,0.67,0.17,0.425,0,0,0.669,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.228,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.283,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.136,0,0,0,0.108 +0.667,0.67,0.17,0.425,0,0,0.372,0,0,0,0.452 +0.667,0.7,0.208,0.553,0,0,0.524,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.512,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.6,0 +1,0.77,0.304,0.804,0,0,0,0,0,1,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,1,0 +1,0.785,0.409,0.946,0,0,0,0,0,1,0.165 +1,0.785,0.409,0.946,0,0,0,0,0,1,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0.3,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.165 +1,0.77,0.573,0.919,0,0,0.142,0.1,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0.142,1,0,0,0 +1,0.739,0.708,0.747,0,0,0.268,0.3,0.7,0,0 +1,0.739,0.708,0.747,0,0,0.37,0,0.8,0,0 +1,0.739,0.708,0.747,0,0,0.26,0,0,0,0 +1,0.739,0.708,0.747,0,0,0.236,0,0,0,0.154 +1,0.739,0.708,0.747,0,0,0.205,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0.567,0,0,0,0 +1,0.677,0.671,0.566,0,0,0.102,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0.421,0,0,0,0 +1,0.639,0.452,0.394,0,0,0.165,0,0,0,0 +1,0.639,0.452,0.394,0,0,0.165,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.148,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.305,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.441,0,0,0,0 +1,0.58,0.146,0.197,0,0,0.217,0,0,0,0.0827 +1,0.58,0.146,0.197,0,0,0.0551,0,0,0,0.0827 +1,0.58,0.146,0.197,0,0,0.126,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.35,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.142,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.37,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.146,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0.0787,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.65 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.146 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0486 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.106 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0937 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.147 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.049 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.188,0.1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.188,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.597,1,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0.381,1,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0.284,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.472,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,1,0,0,0,0,0.062 +0.333,0.59,0.0528,0.181,0,0.2,0,0,0,0,0.434 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.314 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.124 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.116 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0699 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.15 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.258 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.226 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0238 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.6,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,1,0.159 +0.333,0.631,0.112,0.301,0,0,0,0,0,1,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.6,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0.131 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0.0718 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.165 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0827 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.0827 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.331 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0827 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0953 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0239 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0954 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.139 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0464 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0224 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.112 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.238 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.176 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +1,0.631,0.078,0.433,0,0,0,0,0,0,0.0827 +1,0.631,0.078,0.433,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.496 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.248 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.165 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.165 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.0827 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0827 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.0243 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.146 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0,0.331 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0.025 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0.125 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0 +1,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.141 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0469 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.025 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.2 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0.0827 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.621,0.246,0.282,0,0,0,0,0,0,0 +0.667,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.139 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0232 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0538 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.108 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.118 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.304 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.185 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0449 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.112 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.107 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.171 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.384 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.188 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.107 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.195 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.103 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0222 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0888 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.144 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.131 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0643 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.386 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.165 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.165 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,1,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +0.667,0.7,0.387,0.629,0.511,0.6,0,0,0,1,0 +0.667,0.7,0.387,0.629,0.466,1,0,0,0,1,0 +0.667,0.7,0.387,0.629,0.341,1,0,0,0,0.4,0 +0.667,0.7,0.387,0.629,0.267,0.5,0,0,0,0,0.0827 +0.667,0.7,0.387,0.629,0.267,0,0,0,0,0,0.0827 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.284 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0464 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.153 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.0234 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.141 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0987 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.123 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.333 +1,0.585,0.04,0.177,0,0,0,0,0,0,0 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.422 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.397 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.248 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.165 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.0827 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.9,0.0827 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.7,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +0.667,0.616,0.146,0.237,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0,0,0,0,0,0.9,0 +1,0.77,0.415,0.804,0,0,0,0,0,0.7,0 +1,0.77,0.415,0.804,0,0,0,0,0,0,0 +1,0.77,0.415,0.804,0.665,0.9,0,0,0,0,0.0827 +1,0.77,0.415,0.804,0.705,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.511,1,0,0,0,0,0 +1,0.785,0.489,0.946,0.528,1,0,0,0,0,0 +1,0.785,0.489,0.946,0,0.8,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.165 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0.223 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.165 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0.0827 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0.512,0.9,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0.327,0.5,0.5,0,0 +0.667,0.618,0.152,0.312,0,0,0.248,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.126,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.398,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.236,0,1,0,0 +0.667,0.618,0.152,0.312,0,0,0.579,0,0.1,0,0 +0.667,0.618,0.152,0.312,0,0,0.669,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.295,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.165 +0.667,0.618,0.166,0.3,0,0,0.272,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.0787,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.398,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.248 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.248 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.248 +1,0.618,0.237,0.297,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.0827 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.165 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.331 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.475 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +1,0.639,0.261,0.338,0,0,0,0,0,0,0 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.0827 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.311 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0 +1,0.67,0.274,0.425,0,0,0,0,0,0,0.222 +1,0.67,0.274,0.425,0,0,0,0,0,0,0.123 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.125 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.175 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.0827 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.0827 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0.165 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +1,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.9,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.7,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0.182 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.269 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.0673 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.331 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.165 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0242 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.121 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.165 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0858 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0827 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.165 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.1,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,1,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,1,0.0827 +0.667,0.59,0.0697,0.173,0,0,0,0,0,1,0.0827 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.1,0.0827 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.165 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.108 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.256 +1,0.724,0.248,0.612,0,0,0,0,0,0,0.103 +1,0.724,0.248,0.612,0,0,0,0,0,0.1,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.5,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.1,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,1,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,0.5,0 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.155 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0518 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0237 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.142 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0997 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0997 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.309 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.165 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.399 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.411 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.251 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.426,0.6,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0.409,1,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.33,1,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0.216,0.5,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0.216,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0.506,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0.415,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.716,0.6,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.381,1,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.256,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.256,0.5,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.386,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.398,0.6,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.409,1,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.562,1,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0.5,0,0,0,0,0.206 +0.333,0.631,0.112,0.301,0.409,0,0,0,0,0,0.13 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.453 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.149 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.198 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.025 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.175 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.142 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0947 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0236 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.212 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0827 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0827 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.331 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.283 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.106 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0 +1,0.585,0.0565,0.342,0,0,0.181,0.1,0,0,0.131 +1,0.585,0.0565,0.342,0,0,0.181,1,0,0,0.37 +1,0.585,0.0565,0.342,0,0,0.0551,0.3,0.7,0,0.248 +1,0.585,0.0565,0.342,0,0,0.146,0,1,0,0.165 +1,0.585,0.0565,0.342,0,0,0,0,1,0,0 +1,0.631,0.078,0.433,0,0,0.0236,0,1,0,0.147 +1,0.631,0.078,0.433,0,0,0.126,0,0.9,0,0.197 +0.667,0.608,0.0573,0.305,0,0,0.0118,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0.339,0,0,0,0.0827 +0.667,0.608,0.0573,0.305,0,0,0.157,0,0,0,0.0477 +0.333,0.585,0.0366,0.177,0,0,0,0,0,0,0.143 +0.333,0.59,0.0424,0.184,0,0,0.0551,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0.181,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0.181,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0.299,0,0,0,0.165 +0.333,0.59,0.0424,0.184,0,0,0.362,0,0,0,0.331 +0.333,0.59,0.0424,0.184,0,0,0.504,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.65,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.169,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.169,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.272,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.413,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.22,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.295,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.205,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.26,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.159,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.159,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0.0236,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.248 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.165 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0.398,0.6,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0.307,1,0,0,0,0.1,0 +0.333,0.616,0.0931,0.237,0.403,1,0,0,0,1,0 +0.667,0.67,0.17,0.425,0.301,0.5,0,0,0,0.5,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0.472,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.153 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.153 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0.835,0.6,0,0,0,0,0 +0.667,0.7,0.387,0.629,0.42,1,0,0,0,0,0.0946 +1,0.77,0.573,0.919,0.304,1,0,0,0,0,0.0473 +1,0.77,0.573,0.919,0.304,0.5,0,0,0,0,0 +1,0.77,0.573,0.919,0.256,0,0,0,0,0,0.0827 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.409,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0.494,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.585,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.46,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.568,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0827 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.165 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.331 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.6,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,1,0.0827 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0827 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0827 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0827 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.6,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,1,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.0827 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.331 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.443,0.6,0,0,0,0,0 +1,0.77,0.573,0.919,0.517,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.432,1,0,0,0,0,0 +1,0.77,0.573,0.919,0,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.449,1,0,0,0,0,0 +1,0.77,0.573,0.919,0.699,1,0,0,0,0,0 +1,0.739,0.708,0.747,0.449,0.7,0,0,0,0,0 +1,0.739,0.708,0.747,0.202,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.202,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.398,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.432,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0.472,0,0,0,0,0,0.0827 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0827 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0244 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.147 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0827 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0.0827 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.0827 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.106 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.14 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0827 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.0977 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0977 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0827 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0528,0.181,0.227,0.1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.227,1,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.42,0.4,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.807,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.33,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.195 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.165 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0827 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0827 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.165 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0827 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0 +1,0.724,0.248,0.612,0,0,0,0,0,0.6,0.0827 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.724,0.248,0.612,0,0,0,0,0,1,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.6,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0827 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.0827 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.378 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.131 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0253 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.101 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.111 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.248 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.176 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.117 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.249 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.0797 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.258 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.0516 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.331 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.9,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.7,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.165 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.165 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.248 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.413 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.248 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.165 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.165 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.248 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.165 +1,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.165 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.0827 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.269 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0258 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.341 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.175 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0984 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.0984 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.193 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0.0984 +1,0.836,0.372,0.596,0,0,0,0,0,0,0.0984 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.12 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.248 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.394 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.426 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.165 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.248 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.234 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.046 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0.9,0 +1,0.706,0.394,0.342,0,0,0,0,0,1,0 +1,0.667,0.183,0.183,0,0,0,0,0,1,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.4,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.492 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.241 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.129 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.367 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.104 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.155 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.103 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.267 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.255 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.375 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.331 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.331 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.4,0.0827 +0.333,0.699,0.145,0.323,0,0,0,0,0,1,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,1,0.138 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.9,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.0827 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.167 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0.165 +1,0.993,0.541,1,0,0,0,0,0,0,0.248 +1,0.993,0.541,1,0,0,0,0,0,0,0.159 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0827 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.9,0.0827 +0.667,0.758,0.596,0.386,0,0,0,0,0,1,0 +1,0.758,0.596,0.386,0,0,0,0,0,1,0 +1,0.758,0.596,0.386,0,0,0,0,0,1,0.0827 +1,0.758,0.596,0.386,0,0,0,0,0,1,0 +1,0.634,0.189,0.196,0,0,0,0,0,1,0 +1,0.634,0.189,0.196,0,0,0,0,0,1,0 +1,0.634,0.189,0.196,0.494,0.4,0,0,0,1,0 +1,0.634,0.189,0.196,0.653,1,0,0,0,0.5,0 +1,0.634,0.189,0.196,0,0.2,0,0,0,0,0 +1,0.634,0.189,0.196,0.347,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.534,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.722,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.347,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.619,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.614,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.449,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.619,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.182,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.182,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.2,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0765 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.248 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.248 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.9,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.7,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.165 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.4,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.9,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.188 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.733,0.9,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.915,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.466,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.247,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.247,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.312,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,1,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.597,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.472,1,0,0,0,0,0 +1,0.934,0.936,0.732,0,0.9,0,0,0,0,0 +1,0.934,0.936,0.732,0.58,0,0,0,0,0,0 +1,0.934,0.936,0.732,0.403,0,0,0,0,0,0 +1,0.934,0.936,0.732,0.33,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.165 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.442 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.248 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.174 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0.54,0.4,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0.597,1,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,1,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0.438,0.8,0,0,0,0,0.103 +0.667,0.647,0.0527,0.19,0.381,0,0,0,0,0,0.129 +0.667,0.647,0.0527,0.19,0.545,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.19,0.625,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.166 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0827 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.9,0.248 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.7,0.0882 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0441 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.248 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.248 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0.653,0.9,0,0,0,0,0 +0.667,0.758,0.181,0.359,0.466,1,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0.426,1,0,0,0,0,0 +0.667,0.797,0.224,0.457,0.284,0.3,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0,0.0827 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0.9,0 +1,0.915,0.327,0.661,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.4,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.496 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.248 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.101 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.126 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.56 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0884 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0858 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.309 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.284 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.586 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.425 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.052 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.296 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0944 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.142 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.104 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.26 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.191 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.165 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.271 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.203 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.143 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.0688 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.0583 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.9,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.7,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0.324,0.9,0,0,0,0,0 +0.667,0.836,0.273,0.596,0.824,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.557,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.364,0.3,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.29,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.29,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.272,0.9,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0.362,0.5,0.5,0,0 +0.667,0.836,0.51,0.638,0,0,0.102,0,1,0,0 +0.667,0.836,0.51,0.638,0,0,0.508,0,0.1,0,0 +0.667,0.836,0.51,0.638,0,0,0.193,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.228 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.228 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.215 +1,0.634,0.189,0.196,0,0,0,0,0,0,0.0239 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.103 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.0771 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.244 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.0938 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.117 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0236 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.208 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.248 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.248 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.514 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0935 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0701 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.155 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0714 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0714 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.262 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.218 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0245 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.411 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.288 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0931 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.116 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.198 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.363 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.799 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.248 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.459 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.175 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.383 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.0987 +1,0.993,0.541,1,0,0,0,0,0,0,0.123 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.475 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0755 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0.157,0.4,0,0,0.132 +1,0.934,0.936,0.732,0,0,0,1,0,0,0 +1,0.934,0.936,0.732,0,0,0.205,0,1,0,0.0827 +1,0.81,0.629,0.504,0,0,0.362,0,0.6,0,0 +1,0.81,0.629,0.504,0,0,0.626,0,0,0,0 +1,0.81,0.629,0.504,0,0,0.0551,0,0,0,0 +1,0.81,0.629,0.504,0,0,0.0551,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.316 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0518 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.181 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.196 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0827 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0.228,0.4,0,0,0 +1,0.647,0.0928,0.193,0,0,0.217,1,0,0,0 +1,0.647,0.0928,0.193,0,0,0.248,0,1,0,0 +1,0.647,0.0928,0.193,0,0,0.228,0,1,0,0 +1,0.647,0.108,0.189,0,0,0,0,1,0,0 +1,0.647,0.108,0.189,0,0,0,0,0.3,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.42 +1,0.732,0.198,0.328,0,0,0,0,0,0.4,0.175 +1,0.818,0.317,0.449,0,0,0,0,0,1,0.0696 +1,0.818,0.317,0.449,0,0,0,0,0,0.2,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0.0827 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.188 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.271 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0678 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.474 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.201 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.447 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0827 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.165 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.9,0 +0.333,0.699,0.195,0.323,0,0,0,0,0,1,0 +0.333,0.705,0.228,0.366,0,0,0,0,0,1,0 +0.333,0.705,0.228,0.366,0,0,0,0,0,0.4,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0.248 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0.165 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0.0827 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0.103 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0.0772 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0.115 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0.165 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.248 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.0912 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.0228 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.154 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0.0827 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0.266 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.0502 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.081 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.111 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0221 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0958 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.168 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.352 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0.0827 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.0827 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.15 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0946 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.118 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0827 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.438 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.0963 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.0722 +1,0.818,0.34,0.436,0,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.165 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.0827 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.453 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.263 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.171 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.331 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.131 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0923 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0461 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.104 +1,0.993,0.647,1,0,0,0,0,0,0,0.104 +1,0.993,0.647,1,0,0,0,0,0,0,0.165 +1,0.993,0.647,1,0,0,0,0,0,0,0.248 +1,0.993,0.647,1,0,0,0,0,0,0,0.165 +1,0.993,0.647,1,0,0,0,0,0,0,0.173 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0427 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0427 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.0827 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.224 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.0748 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.165 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.0917 +1,0.706,0.394,0.342,0,0,0,0,0,0,0.0459 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.203 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.0258 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.129 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.102 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.141 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.401 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.266 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.15 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.496 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.304 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0492 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.371 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.186 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.226 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.252 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.227 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.12 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0827 +1,0.732,0.0895,0.33,0,0,0,0,0,0,0.261 +1,0.732,0.105,0.337,0,0,0,0,0,0,0.296 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +1,0.732,0.105,0.337,0,0,0,0,0,0,0.23 +1,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.0933 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.07 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.165 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.168 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.072 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.283 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.193 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.0827 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0.0827 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.18 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.0969 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.248 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0.9,0 +1,0.915,0.327,0.661,0,0,0,0,0,0.7,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.9,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0827 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.0827 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.992 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.199 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.0827 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.364 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.157 +1,0.74,0.0747,0.351,0,0,0,0,0,0.9,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0.7,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0827 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0.0551,0.4,0,0,0.165 +0.667,0.732,0.105,0.337,0,0,0,1,0,0,0 +0.667,0.732,0.105,0.337,0,0,0.634,1,0,0,0 +0.667,0.732,0.105,0.337,0,0,0.421,1,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0.646,1,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0.376,1,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0.498,0.5,0.5,0,0 +0.333,0.647,0.0664,0.189,0,0,0.0354,0,1,0,0 +0.333,0.647,0.0664,0.189,0,0,0.283,0,1,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0.165 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,1,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0.8,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.248 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.348 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.165 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.249 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.182 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.165 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.248 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.1 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.25 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.225 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0.386,0.4,0,0,0 +1,0.973,0.758,0.933,0,0,0.0906,1,0,0,0 +1,0.973,0.758,0.933,0,0,0.374,0,1,0,0 +1,0.973,0.758,0.933,0,0,0.217,0,0.6,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.559,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.559,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.366,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.0551,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.0906,0,0,0,0 +1,0.857,0.887,0.554,0,0,0.236,0,0,0,0 +1,0.857,0.887,0.554,0,0,0.272,0,0,0,0 +1,0.758,0.596,0.386,0,0,0.0551,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0.0551,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.22 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.132 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0968 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0.0242 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.455,0.9,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.506,1,0,0,0,0,0.0827 +0.333,0.64,0.0449,0.181,0.545,1,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0.415,0.3,0,0,0,0.9,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.7,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.331 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.9,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.4,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0.432,0.9,0,0,0,0,0 +1,0.915,0.327,0.661,0.295,1,0,0,0,0.4,0 +1,0.973,0.402,0.869,0.455,1,0,0,0,1,0 +1,0.973,0.402,0.869,0.403,1,0,0,0,0.2,0 +1,0.973,0.402,0.869,0.466,1,0,0,0,0,0 +1,0.973,0.402,0.869,0,1,0,0,0,0,0 +1,0.973,0.402,0.869,0,0.6,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.165 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0827 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0.0354,0.9,0,0,0 +1,0.857,0.887,0.554,0,0,0.217,0.5,0.5,0,0 +1,0.857,0.887,0.554,0,0,0,0,1,0,0 +1,0.857,0.887,0.554,0,0,0.488,0,0.1,0,0 +1,0.857,0.887,0.554,0,0,0.52,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.0787,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.0669,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.331,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.283,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.331,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.307,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.362,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.102,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.146,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.228,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.5,0,0,0,0.0827 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.26,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.0354,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.61,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.0551,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.567,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0.272,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0.441,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0.319,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.136 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.165 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.165 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0942 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.141 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.135 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.4,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,1,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.2,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0 +1,0.973,0.758,0.933,0,0,0,0,0,1,0 +1,0.973,0.758,0.933,0.489,0.9,0,0,0,1,0.331 +1,0.973,0.758,0.933,0.381,1,0,0,0,0.9,0 +1,0.973,0.758,0.933,0.358,1,0,0,0,0,0 +1,0.973,0.758,0.933,0.261,1,0,0,0,0,0 +1,0.973,0.758,0.933,0.602,1,0,0,0,0,0.0827 +1,0.934,0.936,0.732,0,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.699,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.267,1,0,0,0,0,0 +1,0.934,0.936,0.732,0,0.3,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0.165 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.0827 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.093 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0232 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.708 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.268 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.154 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.165 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.165 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.349 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.311 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0932 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0466 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.9,0.0827 +0.667,0.647,0.0845,0.177,0,0,0,0,0,1,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,1,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.4,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.231 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.0768 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.248 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.174 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0685 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.231 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.0769 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.235 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0261 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0.165 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0.165 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0.165 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0.0827 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0.248 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0827 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.402,0.432,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.0827 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0.676,0.9,0,0,0,0,0.0827 +1,0.818,0.459,0.446,0.608,1,0,0,0,0,0.165 +1,0.857,0.505,0.513,0.54,1,0,0,0,0,0 +1,0.857,0.505,0.513,0.557,0.3,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0.375,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0.568,0,0,0,0,0.4,0.165 +1,0.915,0.531,0.661,0.25,0,0,0,0,1,0.165 +1,0.915,0.531,0.661,0.307,0,0,0,0,1,0 +1,0.915,0.531,0.661,0.591,0,0,0,0,1,0 +1,0.915,0.531,0.661,0.332,0,0,0,0,1,0 +1,0.915,0.531,0.661,0.332,0,0,0,0,0.6,0 +1,0.915,0.531,0.661,0.398,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.248 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0927 +1,0.993,0.647,1,0,0,0,0,0,0,0.0927 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.173 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0.221 +1,0.779,0.582,0.488,0,0,0,0,0,0,0.147 +1,0.779,0.582,0.488,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0.0475 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0.0827 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.216 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.024 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.133 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.165 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0.248 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.141 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.269 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0,0.269 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.9,0.225 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.7,0.05 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0.0862 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.172 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.165 +1,0.818,0.289,0.468,0,0,0,0,0,0,0 +1,0.818,0.289,0.468,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.102 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.102 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.331 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.172 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.248 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.263 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.123 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.297 +1,0.818,0.459,0.446,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0827 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.248 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0914 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0.126,0.4,0,0,0.0827 +0.667,0.849,0.437,0.683,0,0,0.61,1,0,0,0 +0.667,0.849,0.437,0.683,0,0,0.217,0,1,0,0 +0.667,0.849,0.437,0.683,0,0,0.429,0,0.6,0,0 +0.667,0.849,0.437,0.683,0,0,0.283,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.4,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,1,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.2,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0.386,0.9,0,0,0,0,0 +0.667,0.81,0.673,0.504,0.432,1,0.272,0.4,0,0,0 +0.667,0.81,0.673,0.504,0.506,1,0,1,0,0,0 +0.667,0.81,0.673,0.504,0.33,0.3,0.283,0,1,0,0 +1,0.934,1,0.732,0.472,0,0.26,0,1,0,0 +1,0.857,0.923,0.554,0,0,0.26,0,1,0,0 +1,0.857,0.923,0.554,0.426,0,0.272,0,1,0,0 +1,0.857,0.923,0.554,0,0,0.374,0,0.9,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0.295,0,0,0,0 +1,0.857,0.923,0.554,0,0,0.272,0,0,0,0 +1,0.706,0.394,0.342,0,0,0.343,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0.0236,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0.657,0,0,0,0.23 +1,0.706,0.394,0.342,0,0,0.272,0,0,0,0.0256 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0.295,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.201 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.196 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.0827 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0.166 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0717 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.309 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.165 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.144 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0975 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0779 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.165 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0827 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.9,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.7,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0.0966 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.217 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.0242 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.194 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0978 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0733 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.331 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.4,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.3,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.807,0.4,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.202,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.202,1,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.46,0.8,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.358,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.364,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.523,0,0,0,0,0,0.103 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.148 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.217 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.9,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.7,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.397 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.147 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.165 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.232 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0257 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.101 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0761 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.165 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.331 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.9,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.7,0.0969 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.194 +1,0.973,0.402,0.869,0,0,0.0906,0.9,0,0,0 +1,0.973,0.402,0.869,0,0,0.272,0.5,0.5,0,0.165 +1,0.973,0.402,0.869,0,0,0,0,1,0,0 +1,0.973,0.402,0.869,0,0,0.319,0,0.1,0,0.331 +0.667,0.836,0.273,0.596,0,0,0.0787,0,0,0,0.0827 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0.102,0,0,0,0.0827 +0.333,0.705,0.191,0.366,0,0,0.217,0,0,0,0.184 +0.333,0.705,0.191,0.366,0,0,0.681,0,0,0,0.253 +0.333,0.705,0.191,0.366,0,0,0.524,0,0,0,0.203 +0.667,0.849,0.366,0.683,0,0,0.228,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.362,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.126,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0994 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.224 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.216 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.072 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.0827 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.234 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.7,0.156 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.139 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.25 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.312 +1,0.798,0.103,0.444,0.284,0.9,0,0,0,0,0.24 +1,0.798,0.103,0.444,0.722,0.7,0,0,0,0,0 +1,0.818,0.126,0.47,0.591,0,0,0,0,0,0 +1,0.818,0.126,0.47,0.318,0,0,0,0,0,0.0494 +1,0.818,0.126,0.47,0.381,0,0.283,0.4,0,0,0.388 +1,0.818,0.126,0.47,0,0,0,1,0,0,0.0827 +1,0.818,0.126,0.47,0,0,0.157,0,1,0,0 +1,0.818,0.126,0.47,0,0,0.126,0,1,0,0 +1,0.818,0.149,0.481,0,0,0,0,1,0,0 +1,0.818,0.149,0.481,0,0,0.295,0,0.3,0,0.313 +1,0.818,0.149,0.481,0,0,0.0906,0,0,0,0.0256 +1,0.818,0.149,0.481,0,0,0,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.319,0,0,0,0.0827 +1,0.818,0.149,0.481,0,0,0.157,0,0,0,0.232 +1,0.818,0.168,0.468,0,0,0,0,0,0,0.154 +1,0.818,0.168,0.468,0,0,0.354,0,0,0,0.0827 +1,0.818,0.168,0.468,0,0,0.217,0,0,0,0.0827 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0.476,0,0,0,0.165 +0.667,0.732,0.117,0.328,0,0,0.114,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.429,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.5,0,0,0,0.331 +0.667,0.732,0.129,0.316,0,0,0.0669,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.421,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.248 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0 +1,0.818,0.235,0.446,0,0,0,0,0,0,0.165 +1,0.857,0.263,0.513,0,0,0,0,0,0,0 +1,0.857,0.263,0.513,0,0,0,0,0,0,0.0827 +1,0.857,0.263,0.513,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +1,0.857,0.263,0.513,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0,0,0,0,0,0,0 +1,0.915,0.327,0.661,0.352,0.9,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.534,1,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.312,1,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.25,1,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0.284,1,0,0,0,0.4,0.165 +0.667,0.836,0.273,0.596,0.528,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,1,0.165 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.248 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.165 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0481 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0721 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0881 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.022 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.331 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.101 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.202 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.654,0.0173,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0519 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0778 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.479 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.217 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.182 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0246 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0738 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.165 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0.283,0.4,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.228,1,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.657,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.217,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.409,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.512,0,0.3,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0.26,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.146,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.339,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0.441,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.248 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.229 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0509 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0.0827 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0827 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.229 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.0254 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.172 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0827 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.351 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0827 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.413 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,1,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.4,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0.574,0.4,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0.483,1,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,1,0,0,0,0,0 +0.667,0.732,0.153,0.305,0.426,0.8,0,0,0,0,0 +0.667,0.732,0.153,0.305,0.489,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0.352,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0.67,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.496 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.9,0.0827 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,1,0 +1,0.993,0.541,1,0,0,0,0,0,0.4,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.413 +1,0.993,0.541,1,0,0,0,0,0,0,0.175 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0923 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.9,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.7,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.0827 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.195 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0956 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.119 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.165 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.276 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.197 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.372 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.254 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.0762 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.165 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.248 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.248 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0827 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.165 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.9,0.165 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.7,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0988 +1,0.993,0.647,1,0,0,0,0,0,0,0.247 +1,0.993,0.647,1,0,0,0,0,0,0,0.0247 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.224 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.125 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.248 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.104 +1,0.934,1,0.732,0,0,0,0,0,0,0.261 +1,0.934,1,0.732,0,0,0,0,0,0,0.261 +1,0.934,1,0.732,0,0,0,0,0,0,0.209 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.0827 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.0827 +1,0.621,0.0327,0.15,0,0,0,0,0,0.4,0.165 +1,0.621,0.0327,0.15,0,0,0,0,0,1,0.165 +1,0.621,0.0327,0.15,0,0,0,0,0,1,0 +1,0.621,0.0327,0.15,0,0,0,0,0,1,0 +1,0.64,0.049,0.181,0,0,0,0,0,1,0 +1,0.64,0.049,0.181,0,0,0,0,0,1,0.128 +1,0.64,0.049,0.181,0,0,0,0,0,1,0 +1,0.64,0.049,0.181,0,0,0,0,0,0.3,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0961 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.168 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.183 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.248 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.4,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,1,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,1,0.0827 +0.667,0.647,0.0928,0.193,0,0,0,0,0,1,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,1,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.6,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.0827 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0985 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.0739 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.147 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.331 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.9,0 +0.667,0.732,0.312,0.314,0,0,0.283,0.4,0,0.7,0 +0.667,0.732,0.312,0.314,0,0,0,1,0,0,0 +0.667,0.732,0.312,0.314,0,0,0.417,0,1,0,0.0827 +1,0.818,0.459,0.446,0,0,0.169,0,1,0,0 +1,0.857,0.505,0.513,0,0,0.205,0,1,0,0 +1,0.857,0.505,0.513,0,0,0.0669,0,1,0,0.248 +1,0.857,0.505,0.513,0,0,0,0,0.9,0,0.413 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.0827 +1,0.915,0.531,0.661,0,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.248 +1,0.797,0.36,0.457,0,0,0,0,0,0.4,0.0827 +1,0.836,0.372,0.596,0,0,0,0,0,1,0 +1,0.836,0.372,0.596,0,0,0,0,0,1,0 +1,0.836,0.372,0.596,0,0,0,0,0,0.9,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.836,0.372,0.596,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.165 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.263 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0827 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.472 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.0995 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0827 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.154 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0771 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.0827 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.248 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.248 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.232 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.181 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.0827 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0827 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.444 +0.333,0.699,0.145,0.323,0,0,0.126,0.4,0,0,0.183 +0.667,0.836,0.273,0.596,0,0,0.362,1,0,0,0.0754 +0.667,0.836,0.273,0.596,0,0,0.295,0,1,0,0 +1,0.973,0.402,0.869,0,0,0.228,0,1,0,0 +1,0.993,0.541,1,0,0,0,0,1,0,0 +1,0.993,0.541,1,0,0,0,0,1,0,0.355 +1,0.993,0.541,1,0,0,0,0,1,0,0.0827 +1,0.993,0.541,1,0,0,0,0,1,0,0 +1,0.993,0.541,1,0,0,0,0,0.6,0,0.0261 +1,0.993,0.541,1,0,0,0,0,0,0,0.261 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0261 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.229 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.248 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.248 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.46 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0951 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0238 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.094 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.0827 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.0958 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0718 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.165 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0.0827 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.331 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0.248,0.4,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,1,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0.228,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0.0354,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0.512,0,1,0,0 +0.667,0.647,0.0759,0.178,0,0,0.0236,0,0.9,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0.0906,0,0,0,0.331 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.4,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0.165 +0.333,0.647,0.0888,0.182,0,0,0,0,0,1,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.6,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.9,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.7,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.165 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0.347,0.4,0,0,0,0,0 +1,0.934,0.936,0.732,0.335,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.293,1,0,0,0,0.9,0 +1,0.934,0.936,0.732,0.293,1,0,0,0,0.7,0 +1,0.934,0.936,0.732,0.528,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.716,0.5,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0.659,0,0,0,0,0,0.233 +1,0.857,0.887,0.554,0.528,0,0,0,0,0,0.165 +1,0.857,0.887,0.554,0.358,0,0,0,0,0,0.0827 +1,0.857,0.887,0.554,0.483,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0862 +1,0.779,0.536,0.488,0,0,0,0,0,0,0 +1,0.779,0.536,0.488,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.305 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0493 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.254 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0.0827 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.243 +1,0.68,0.0551,0.251,0,0,0,0,0,0.9,0.0974 +1,0.68,0.0551,0.251,0,0,0,0,0,1,0 +1,0.68,0.0551,0.251,0,0,0,0,0,1,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0.4,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.071 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.418 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.109 +1,0.818,0.126,0.47,0,0,0,0,0,0,0 +1,0.818,0.126,0.47,0,0,0,0,0,0,0 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.185 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.103 +1,0.818,0.126,0.47,0,0,0,0,0,0,0 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0766 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.9,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.7,0.165 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.248 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.248 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0827 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.248 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.331 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.9,0.15 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.7,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.0827 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.327,0.9,0,0,0 +1,0.934,0.936,0.732,0,0,0.228,1,0,0,0 +1,0.934,0.936,0.732,0,0,0,1,0,0,0 +1,0.934,0.936,0.732,0,0,0.0906,1,0,0,0.0827 +1,0.934,0.936,0.732,0,0,0.26,1,0,0,0 +1,0.857,0.887,0.554,0,0,0,1,0,0,0 +1,0.857,0.887,0.554,0,0,0.339,0,1,0,0 +1,0.857,0.887,0.554,0,0,0.0354,0,1,0,0 +1,0.857,0.887,0.554,0,0,0,0,1,0,0 +1,0.857,0.887,0.554,0,0,0,0,0.3,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0827 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.187 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.169 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0.0827 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.124 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.148 +1,0.68,0.0551,0.251,0,0,0,0,0,0.4,0.0827 +1,0.74,0.0747,0.351,0,0,0,0,0,1,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0.2,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.101 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.0756 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.131 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.248 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.165 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0827 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.0669,0.4,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.429,1,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.579,0,1,0,0 +0.333,0.647,0.0845,0.177,0,0,0.319,0,0.6,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.555,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0.319,0,0,0,0.0827 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0.567,0,0,0,0.103 +0.667,0.732,0.162,0.314,0,0,0.319,0,0,0,0.103 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.228,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0.0906,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0.26,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0.0551,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0.469,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0.327,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0.331,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.421,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0.555,0,0,0,0.0827 +1,0.973,0.402,0.869,0,0,0.307,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.165 +1,0.973,0.402,0.869,0,0,0.228,0,0,0,0.165 +1,0.973,0.402,0.869,0,0,0.205,0,0,0,0 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.308 +1,0.973,0.402,0.869,0,0,0,0,0,0,0.2 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.698 +1,0.993,0.541,1,0,0,0,0,0,0,0.0481 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0933 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0233 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.234 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0519 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0938 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0.0938 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.219 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.0731 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0.101 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0827 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0.228,0.9,0,0.9,0.165 +1,0.608,0.026,0.0829,0,0,0.0354,0.5,0.5,1,0.0998 +1,0.68,0.0551,0.251,0,0,0,0,1,1,0.125 +1,0.68,0.0551,0.251,0,0,0.146,0,1,0.4,0 +1,0.74,0.0747,0.351,0,0,0.248,0,1,0,0 +1,0.74,0.0747,0.351,0,0,0.362,0,1,0,0 +1,0.74,0.0747,0.351,0,0,0.319,0,1,0,0.192 +1,0.74,0.0747,0.351,0,0,0.157,0,1,0,0 +1,0.798,0.103,0.444,0,0,0,0,1,0,0 +1,0.798,0.103,0.444,0,0,0.339,0,1,0,0 +1,0.798,0.103,0.444,0,0,0.228,0,1,0,0 +1,0.798,0.103,0.444,0,0,0,0,1,0,0 +1,0.798,0.103,0.444,0,0,0.157,0,1,0,0 +1,0.798,0.103,0.444,0.335,0.4,0.193,0,1,0,0 +1,0.818,0.126,0.47,0.352,1,0.622,0,1,0,0 +1,0.818,0.126,0.47,0.281,0.2,0,0,1,0,0.248 +1,0.818,0.126,0.47,0.281,0,0.283,0,0.4,0,0.0827 +1,0.818,0.126,0.47,0.398,0,0,0,0,0,0 +1,0.818,0.126,0.47,0.426,0,0.524,0,0,0,0 +1,0.818,0.126,0.47,0.585,0,0.26,0,0,0,0.248 +1,0.818,0.149,0.481,0.301,0,0.295,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.26,0,0,0,0.331 +1,0.818,0.149,0.481,0,0,0.0906,0,0,0,0.165 +1,0.818,0.149,0.481,0,0,0.26,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.228,0,0,0,0 +1,0.818,0.149,0.481,0,0,0.0906,0,0,0,0.093 +1,0.818,0.168,0.468,0,0,0,0,0,0,0.0232 +1,0.818,0.168,0.468,0,0,0.362,0,0,0,0 +1,0.818,0.168,0.468,0,0,0.484,0,0,0,0 +1,0.818,0.168,0.468,0,0,0.453,0,0,0,0.195 +1,0.818,0.168,0.468,0,0,0.126,0,0,0,0 +1,0.818,0.168,0.468,0,0,0.362,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0.126,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.217,0,0,0,0.0827 +0.667,0.732,0.129,0.316,0,0,0.0236,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.11,0,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.0236,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.26,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.283,0,0,0,0.0827 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.496,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.567,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.248,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.319,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.26,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.165 +0.333,0.647,0.0845,0.177,0,0,0.228,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.236,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.283,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0.307,0,0,0,0.0827 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0.374,0,0,0,0.165 +0.667,0.732,0.162,0.314,0,0,0.283,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0.248,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.0472,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.52,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0.236,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.217,0,0,0,0.165 +0.667,0.797,0.224,0.457,0,0,0.114,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.236,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.52,0,0,0,0.0827 +0.667,0.797,0.224,0.457,0,0,0.331,0,0,0,0.165 +0.667,0.836,0.273,0.596,0,0,0.425,0,0,0,0.0827 +0.667,0.836,0.273,0.596,0,0,0.142,0,0,0,0.234 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0.0827 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.184 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.0853 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.0213 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0.216 +1,0.634,0.189,0.196,0,0,0,0,0,0,0.248 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.248 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.0827 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0.0827 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.7,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0827 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.165 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.182 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0993 +1,0.647,0.0731,0.19,0,0,0,0,0,0.9,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0.7,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.442 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.0986 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.247 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.178 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.102 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.0511 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.0827 +1,0.732,0.217,0.316,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +1,0.818,0.317,0.449,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.248 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.165 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.0827 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0827 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.248 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.0827 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.9,0 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.7,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0.126,0.9,0,0,0 +1,0.915,0.531,0.661,0,0,0.228,0.5,0.5,0,0 +1,0.915,0.531,0.661,0,0,0,0,1,0,0 +1,0.915,0.531,0.661,0,0,0.386,0,1,0,0.0827 +1,0.915,0.531,0.661,0,0,0.217,0,0.8,0,0.165 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0.26,0,0,0,0 +1,0.973,0.549,0.869,0,0,0.283,0,0,0,0.0827 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.248 +1,0.973,0.549,0.869,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.993,0.647,1,0,0,0,0,0,0,0.0827 +1,0.993,0.647,1,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.165 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0.0827 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.9,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.7,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0.0827 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0,0.165 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.0827 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.165 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.165 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.127 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.248 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.178 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.0715 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.195 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.0254 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.369 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.331 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.165 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0827 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0827 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0.101 +1,0.934,1,0.732,0,0,0,0,0,0,0.201 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0827 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0933 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0233 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +1,0.654,0.0362,0.116,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0,0,0.463 +1,0.74,0.0747,0.351,0.761,0.4,0,0,0,0,0.0827 +1,0.74,0.0747,0.351,0.267,1,0,0,0,0,0 +1,0.74,0.0747,0.351,0.267,1,0,0,0,0,0 +1,0.74,0.0747,0.351,0.455,0.8,0,0,0,0,0.25 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.0501 +1,0.798,0.103,0.444,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.9,0.0827 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.7,0.165 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.165 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.9,0 +0.667,0.732,0.117,0.328,0.517,0.4,0,0,0,0.7,0 +0.667,0.732,0.129,0.316,0.284,1,0,0,0,0,0 +0.667,0.732,0.129,0.316,0.239,1,0,0,0,0.9,0 +0.667,0.732,0.129,0.316,0.239,1,0,0,0,1,0 +0.667,0.732,0.129,0.316,0.636,1,0,0,0,1,0 +0.667,0.732,0.129,0.316,0,1,0,0,0,0.4,0 +0.667,0.732,0.129,0.316,0,1,0,0,0,0,0.0827 +0.667,0.732,0.136,0.307,0,1,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0.8,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.165 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.248 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.331 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0.165 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.165 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.248 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.165 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.248 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.179 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0.099 +1,0.993,0.541,1,0,0,0,0,0,0,0.0495 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.192 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0722 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.165 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0827 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-ev-charger.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-ev-charger.csv new file mode 100644 index 0000000000..e2831280f8 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-ev-charger.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,lighting_garage,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,clothes_dryer,cooking_range,hot_water_fixtures,electric_vehicle +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.567,0,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0.717,0.519,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0,0.197,1 +0.667,0.719,0.074,0.316,0.316,0,0,0,0,0,0,0.0394,1 +0.333,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0,-1 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.0394,-0.1 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0.197,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.236,0 +0.333,0.647,0.0759,0.181,0.181,0.588,0.267,0,0,0,0,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,-0.583 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0.317,0.0394,-0.5 +0.667,0.797,0.224,0.418,0.418,0,0,0,0,0,0.967,0.158,1 +1,0.973,0.402,0.798,0.798,0.103,0.0667,0,0,0,0,0.276,1 +1,0.993,0.541,0.979,0.979,0.44,0.467,0,0,0,0,0.0788,1 +1,0.973,0.758,0.991,0.991,0.487,0.533,0,0,0,0,0.0394,1 +1,0.934,0.936,0.823,0.823,0.475,0,0,0,0,0,0.0788,1 +1,0.857,0.887,0.621,0.621,0.482,0,0,0,0,0,0.197,1 +1,0.706,0.363,0.374,0.374,0,0,0,0,0,0,0.303,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.608,0.0183,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.608,0.0166,0.0495,0.0495,0,0,0,0,0,0,0.15,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.234,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0,0.695,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.134,-0.95 +0.333,0.647,0.0527,0.192,0.192,0.461,0.533,0,0,0,0,0.0394,0 +0.333,0.647,0.0604,0.196,0.196,0.14,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0.158,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.236,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0788,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.118,-0.95 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0,0.407,-0.5 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0.25,0.0203,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.236,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0,1 +1,0.66,0.306,0.24,0.24,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.153,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0,0.408,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0,0.691,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0.317,0.25,1 +1,0.798,0.103,0.449,0.449,0,0,0,0,0,0.183,0.177,1 +1,0.818,0.126,0.477,0.477,0,0,0,0,0,0,0.199,1 +1,0.818,0.149,0.49,0.49,0,0,0,0,0,0,0.198,1 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0.271,-0.833 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.214,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.581,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.556,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0788,-0.0833 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0.817,0.354,-0.75 +1,0.915,0.327,0.602,0.602,0,0,0,0,0,0.217,0.118,1 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0,0,1 +0.667,0.849,0.366,0.669,0.669,0,0,0,0,0,0.567,0.192,-0.217 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0.2,0.0788,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.277,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0.0809,1 +1,0.706,0.363,0.374,0.374,0,0,0,0,0,0,0.159,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0.118,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0.476,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0758,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.329,1 +1,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0.231,1 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.25,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.517 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.236,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.315,-0.517 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0.25,0.158,-0.5 +0.667,0.797,0.224,0.418,0.418,0,0,0,0,0,0,0.0394,1 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0,0.0394,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.118,1 +0.667,0.836,0.51,0.677,0.677,0,0,0,0,0,0,0.354,-0.15 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.184,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0.108,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.159,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0.317,0.396,-0.15 +0.667,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0.45,0.389,-0.133 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0.317,0.236,1 +1,0.719,0.074,0.316,0.316,0,0,0,0,0,0.45,0.199,1 +1,0.732,0.0895,0.334,0.334,0.693,0.267,0,0,0,0,0.0944,1 +1,0.818,0.149,0.49,0.49,0.271,0,0,0,0,0,0.859,1 +1,0.818,0.168,0.477,0.477,0,0,0,0,0,0,0.37,1 +1,0.818,0.186,0.458,0.458,0,0,0,0,0,0,0.601,1 +1,0.818,0.196,0.445,0.445,0,0,0,0,0,0,0.152,-0.5 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.0788,-0.2 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.158,0 +0.333,0.66,0.0982,0.196,0.196,0.515,0.533,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.418,0.476,0,0,0,0,0.25,0.118,-0.433 +0.667,0.836,0.273,0.548,0.548,0.799,0.317,0,0,0,0,0.118,-0.25 +1,0.993,0.541,0.979,0.979,0.729,0.217,0,0,0,0,0.374,1 +0.667,0.699,0.263,0.363,0.363,0.398,0.533,0,0,0,0,0.0799,-0.217 +1,0.81,0.629,0.565,0.565,0.201,0,0,0,0,0,0,1 +1,0.66,0.306,0.24,0.24,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0.0788,1 +1,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.608,0.031,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.298,1 +0.667,0.647,0.0731,0.192,0.192,0,0,0,0,0,0,0.303,1 +0.667,0.647,0.0928,0.196,0.196,0,0,0,0,0,0,0.107,1 +0.667,0.732,0.198,0.334,0.334,0,0,0,0,0,0,0.195,1 +0.667,0.732,0.217,0.322,0.322,0,0,0,0,0,0,0.142,1 +0.667,0.732,0.233,0.313,0.313,0,0,0,0,0,0,0,1 +0.333,0.647,0.146,0.18,0.18,0,0,0,0,0,0,0.0788,-0.267 +0.333,0.647,0.165,0.182,0.182,0,0,0,0,0,0.233,0.315,0 +0.333,0.66,0.18,0.196,0.196,0,0,0,0,0,0.0167,0.0788,-0.25 +0.667,0.797,0.36,0.418,0.418,0,0,0,0,0,0,0.0394,1 +0.667,0.836,0.372,0.548,0.548,0,0,0,0,0,0,0.0788,1 +1,0.993,0.647,0.979,0.979,0,0,0,0,0,0,0.0394,1 +1,0.973,0.851,0.991,0.991,0,0,0,0,0,0,0,1 +1,0.934,1,0.823,0.823,0,0,0,0,0,0,0.158,1 +1,0.758,0.621,0.43,0.43,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.374,0.374,0,0,0,0,0,0,0,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0.312,1 +1,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.621,0.0327,0.151,0.151,0,0,0,0,0,0,0.103,-0.117 +0.667,0.64,0.049,0.183,0.183,0,0,0,0,0,0,0.202,-0.1 +1,0.647,0.0731,0.192,0.192,0,0,0,0,0,0,0.484,1 +0.667,0.732,0.168,0.343,0.343,0,0,0,0,0,0,0.0394,-0.5 +0.333,0.647,0.108,0.192,0.192,0,0,0,0,0,0,0.0394,-0.05 +0.333,0.647,0.118,0.186,0.186,0,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0.181,0,0,0,0,0,0.25,0.276,-0.283 +0.333,0.647,0.146,0.18,0.18,0,0,0,0,0,0,0.197,-0.25 +1,0.818,0.459,0.448,0.448,0,0,0,0,0,0,0,1 +0.667,0.758,0.343,0.343,0.343,0,0,0,0,0,0,0.433,1 +0.667,0.797,0.36,0.418,0.418,0,0,0,0,0,0,0.0788,1 +1,0.973,0.549,0.798,0.798,0,0,0,0,0,0,0,1 +0.667,0.849,0.437,0.669,0.669,0,0,0,0,0,0,0.0788,1 +1,0.836,0.573,0.677,0.677,0,0,0,0,0,0,0.0394,1 +1,0.934,1,0.823,0.823,0,0,0,0,0,0,0.255,1 +1,0.857,0.923,0.621,0.621,0,0,0,0,0,0,0.019,1 +1,0.779,0.582,0.536,0.536,0,0,0,0,0,0,0,1 +1,0.667,0.183,0.183,0.183,0,0,0,0,0,0,0.0985,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.567,0,1 +1,0.74,0.0747,0.355,0.355,0,0,0,0,0,0.533,0.0394,1 +0.667,0.719,0.074,0.316,0.316,0,0,0,0,0,0.183,0.118,-0.5 +0.333,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.0394,-0.983 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0.197,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.315,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0.0667,0.336,0 +0.667,0.758,0.181,0.343,0.343,0,0,0,0,0,0.183,0.384,0 +0.667,0.797,0.224,0.418,0.418,0,0,0,0,0,0.0667,0.0394,-0.733 +0.667,0.836,0.273,0.548,0.548,0,0,0,0,0,0.183,0.416,-0.75 +1,0.849,0.366,0.669,0.669,0,0,0,0,0,0,0.184,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.0394,1 +1,0.758,0.596,0.43,0.43,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0.192,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0.118,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.125,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0,0.156,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0.317,0.283,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0.2,0.202,1 +0.667,0.64,0.0449,0.183,0.183,0,0,0,0,0,0.25,0.0788,-0.75 +0.333,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.158,-0.85 +0.333,0.647,0.0604,0.196,0.196,0,0,0.274,0.246,0.333,0,0.276,0 +0.333,0.647,0.0664,0.192,0.192,0,0,0.56,0,0.2,0,0.236,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0.382,0,0,0,0.0788,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0.627,0,0,0,0.118,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0.5,0,0,0,0.0394,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0.818,0,0,0,0.118,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0.274,0,0,0,0.158,0 +0.667,0.797,0.224,0.418,0.418,0,0,0.239,0,0,0,0.0788,-0.35 +0.667,0.836,0.273,0.548,0.548,0,0,0.853,0,0,0,0.118,-1 +0.667,0.849,0.366,0.669,0.669,0,0,0.595,0,0,0,0,-0.25 +1,0.973,0.758,0.991,0.991,0,0,0.457,0,0,0,0.217,1 +1,0.934,0.936,0.823,0.823,0,0,0.454,0,0,0,0,1 +1,0.857,0.887,0.621,0.621,0,0,0.278,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0,0.119,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0199,-0.983 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.394,0 +0.333,0.647,0.0604,0.196,0.196,0,0,0.197,0.246,0.0833,0,0.0788,0 +0.333,0.647,0.0664,0.192,0.192,0,0,0.454,0,1,0,0.158,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0.494,0,1,0,0.197,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0.537,0,0.367,0.567,0.0788,0 +0.667,0.732,0.153,0.311,0.311,0,0,0.508,0,0,0.2,0,0 +0.667,0.732,0.162,0.315,0.315,0,0,0.145,0,0,0,0.0394,-0.733 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0,-0.75 +0.333,0.679,0.12,0.234,0.234,0,0,0.33,0.246,0.0833,0,0.197,1 +0.667,0.836,0.273,0.548,0.548,0,0,0.485,0,0.183,0,0,1 +1,0.993,0.541,0.979,0.979,0,0,0.33,0,0,0,0.197,-0.25 +0.667,0.836,0.51,0.677,0.677,0,0,0.543,0,0,0,0,-0.05 +0.667,0.81,0.629,0.565,0.565,0,0,0.466,0,0,0,0,-0.283 +1,0.857,0.887,0.621,0.621,0,0,0.55,0,0,0,0,1 +1,0.706,0.363,0.374,0.374,0,0,0.407,0,0,0,0.0394,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.153,1 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.309,1 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.21,-0.5 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.417 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0.197,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0.7,0.118,-0.15 +0.667,0.758,0.181,0.343,0.343,0,0,0,0,0,0,0.315,-0.75 +1,0.915,0.327,0.602,0.602,0,0,0,0,0,0,0.118,1 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0.0667,0.236,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0.183,0,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0.0394,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0,1 +1,0.758,0.596,0.43,0.43,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.517,0.671,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0,0.349,-0.25 +0.667,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.533 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0.365,0.246,0.333,0,0.118,0 +0.333,0.679,0.12,0.234,0.234,0,0,0.417,0,0.483,0.0667,0.118,0 +0.333,0.699,0.145,0.299,0.299,0,0,0,0,0,0.183,0.0788,-0.767 +0.667,0.849,0.366,0.669,0.669,0,0,0,0,0,0,0.197,-1 +0.667,0.836,0.51,0.677,0.677,0,0,0,0,0,0,0.0394,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0.25,0.12,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0.235,1 +0.667,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0.574,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.608,0.0215,0.0513,0.0513,0,0,0,0,0,0,0.0948,1 +1,0.608,0.0241,0.0833,0.0833,0,0,0,0,0,0,0.0394,1 +1,0.68,0.0473,0.253,0.253,0,0,0,0,0,0,0.197,1 +1,0.719,0.0799,0.316,0.316,0.26,0.233,0,0,0,0,0.314,1 +1,0.818,0.183,0.477,0.477,0.736,0.3,0,0,0,0.733,0,1 +0.667,0.732,0.168,0.343,0.343,0.227,0,0,0,0,0.3,0.0394,1 +0.667,0.732,0.198,0.334,0.334,0,0,0,0,0,0.25,0,-0.433 +0.667,0.732,0.217,0.322,0.322,0,0,0,0,0,0,0.197,0 +0.333,0.647,0.125,0.181,0.181,0,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0.18,0,0,0,0,0,0,0.0788,-0.617 +0.333,0.647,0.165,0.182,0.182,0,0,0,0,0,0,0.0394,-0.183 +0.667,0.758,0.343,0.343,0.343,0,0,0.239,0.246,0.267,0,0.158,1 +1,0.915,0.531,0.602,0.602,0,0,0,0,0,0,0.0394,1 +1,0.973,0.549,0.798,0.798,0,0,0,0,0,0,0.0394,1 +0.667,0.849,0.437,0.669,0.669,0,0,0,0,0,0,0.118,1 +0.667,0.836,0.573,0.677,0.677,0,0,0,0,0,0,0,1 +0.667,0.81,0.673,0.565,0.565,0,0,0,0,0,0,0.147,1 +0.667,0.758,0.621,0.43,0.43,0,0,0,0,0,0,0,1 +0.333,0.634,0.206,0.212,0.212,0,0,0,0,0,0,0,1 +0.667,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0,1 +0.667,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0,1 +0.667,0.608,0.031,0.0578,0.0578,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.621,0.0327,0.151,0.151,0,0,0,0,0,0,0.146,1 +0.667,0.64,0.049,0.183,0.183,0,0,0,0,0,0,0.197,1 +1,0.732,0.128,0.334,0.334,0,0,0,0,0,0,0.33,1 +1,0.732,0.168,0.343,0.343,0,0,0,0,0,0,0.59,1 +1,0.732,0.198,0.334,0.334,0,0,0,0,0,0,0.277,1 +0.667,0.732,0.217,0.322,0.322,0,0,0,0,0,0,0.295,1 +0.667,0.732,0.233,0.313,0.313,0,0,0,0,0,0,0.523,1 +0.667,0.732,0.274,0.311,0.311,0,0,0,0,0,0,0.236,1 +0.667,0.732,0.312,0.315,0.315,0,0,0,0,0,0.233,0.0788,1 +1,0.758,0.343,0.343,0.343,0,0,0,0,0,0.283,0.0394,1 +1,0.915,0.531,0.602,0.602,0,0,0,0,0,0,0.276,1 +1,0.973,0.549,0.798,0.798,0,0,0,0,0,0,0.236,-0.3 +0.667,0.849,0.437,0.669,0.669,0,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0.677,0,0,0,0,0,0,0,-0.283 +1,0.934,1,0.823,0.823,0,0,0,0,0,0,0,1 +1,0.857,0.923,0.621,0.621,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.374,0.374,0,0,0,0,0,0,0,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.188,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.217,1 +0.667,0.621,0.0355,0.151,0.151,0,0,0,0,0,0,0.241,1 +0.667,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0.236,-0.5 +0.333,0.647,0.0527,0.192,0.192,0,0,0,0,0,0.25,0,-0.383 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0.192,0,0,0.586,0.246,0.267,0,0.0788,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0.376,0,0,0,0.118,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0.365,0,0,0,0,-0.367 +0.333,0.647,0.0845,0.18,0.18,0,0,0.229,0,0,0.25,0.0394,-0.5 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.197,-0.583 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.567 +0.667,0.849,0.366,0.669,0.669,0.675,0.533,0,0,0,0,0.236,1 +0.667,0.836,0.51,0.677,0.677,0.581,0,0,0,0,0,0,1 +0.667,0.81,0.629,0.565,0.565,0.698,0.8,0,0,0,0,0.118,1 +0.667,0.66,0.306,0.24,0.24,0.419,0,0,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.654,0.0689,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.719,0.074,0.316,0.316,0,0,0,0,0,0,0.236,-0.25 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0,-1 +0.667,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0,-0.167 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.315,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.276,0 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0,0.0394,-0.917 +0.333,0.699,0.145,0.299,0.299,0.403,0.533,0,0,0,0,0.248,-0.5 +1,0.993,0.541,0.979,0.979,0.192,0,0,0,0,0,0,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.0788,1 +0.667,0.66,0.306,0.24,0.24,0,0,0,0,0,0,0,1 +0.667,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0.0788,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.132,1 +0.667,0.621,0.0355,0.151,0.151,0,0,0,0,0,0,0.713,1 +0.667,0.719,0.074,0.316,0.316,0,0,0,0,0,0.25,0.277,1 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.0394,1 +0.667,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0,1 +0.667,0.732,0.117,0.334,0.334,0,0,0,0,0,0,0.158,1 +0.667,0.732,0.129,0.322,0.322,0,0,0,0,0,0,0.213,1 +0.667,0.732,0.136,0.313,0.313,0,0,0,0,0,0,0.333,1 +0.667,0.732,0.153,0.311,0.311,0,0,0,0,0,0,0,-0.7 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.196,0.396,0.533,0,0,0,0,0.251,0 +0.667,0.797,0.224,0.418,0.418,0.476,0,0,0,0,0,0.354,0 +0.667,0.836,0.273,0.548,0.548,0,0,0,0,0,0.25,0.0394,-0.683 +1,0.993,0.541,0.979,0.979,0.393,0.567,0,0,0,0,0.0788,1 +1,0.836,0.51,0.677,0.677,0.436,0.233,0,0,0,0,0.0788,1 +0.667,0.686,0.322,0.307,0.307,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.621,0.0355,0.151,0.151,0,0,0,0,0,0,0.121,1 +1,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0.29,1 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.0992,1 +0.667,0.732,0.105,0.343,0.343,0,0,0,0,0,0,0.467,1 +1,0.818,0.168,0.477,0.477,0,0,0,0,0,0,0.514,-0.25 +0.667,0.732,0.129,0.322,0.322,0,0,0,0,0,0,0.231,-0.65 +0.667,0.732,0.136,0.313,0.313,0,0,0,0,0,0.25,0.118,0 +0.667,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.517,0.158,0 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0,0,-0.9 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0,0.0394,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.118,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0.0394,-0.0833 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0,1 +1,0.758,0.596,0.43,0.43,0,0,0,0,0,0,0.166,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.551,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0,0.337,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.133,-0.8 +0.333,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0664,0.192,0.192,0,0,0.101,0.0702,0,0,0.0394,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0.462,0.175,0.267,0,0,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.236,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.158,-0.8 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.158,-0.5 +0.667,0.797,0.224,0.418,0.418,0,0,0,0,0,0.0667,0.182,1 +0.667,0.836,0.273,0.548,0.548,0,0,0,0,0,0.45,0.118,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.235,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0.0788,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.196,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0.395,1 +1,0.706,0.363,0.374,0.374,0,0,0,0,0,0,0.0774,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0.119,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.382,1 +1,0.64,0.049,0.183,0.183,0,0,0,0,0,0.233,0.194,1 +1,0.732,0.128,0.334,0.334,0,0,0,0,0,0.283,0.0394,1 +0.667,0.732,0.168,0.343,0.343,0,0,0,0,0,0,0.236,1 +0.667,0.732,0.198,0.334,0.334,0,0,0,0,0,0,0.0394,1 +0.667,0.732,0.217,0.322,0.322,0,0,0,0,0,0,0.0788,1 +0.667,0.732,0.233,0.313,0.313,0,0,0,0,0,0,0.0788,1 +0.667,0.732,0.274,0.311,0.311,0,0,0,0,0,0,0.158,1 +0.667,0.732,0.312,0.315,0.315,0,0,0,0,0,0.25,0.236,1 +0.667,0.758,0.343,0.343,0.343,0,0,0,0,0,0,0.118,1 +0.667,0.797,0.36,0.418,0.418,0,0,0,0,0,0,0.594,1 +1,0.973,0.549,0.798,0.798,0,0,0,0,0,0,0.0788,1 +0.667,0.705,0.228,0.359,0.359,0,0,0,0,0,0,0.0394,1 +0.667,0.699,0.296,0.363,0.363,0,0,0,0,0,0,0,-0.333 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.364,0 +0.667,0.66,0.32,0.24,0.24,0,0,0,0,0,0,0,-0.333 +1,0.706,0.394,0.374,0.374,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.617 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.367 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.25 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.149,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.168,1 +1,0.64,0.049,0.183,0.183,0,0,0,0,0,0,0.488,1 +1,0.732,0.128,0.334,0.334,0,0,0,0,0,0,0.896,-0.217 +0.667,0.732,0.168,0.343,0.343,0,0,0,0,0,0,0.318,-0.217 +0.667,0.732,0.198,0.334,0.334,0,0,0,0,0,0,0.211,1 +0.667,0.732,0.217,0.322,0.322,0,0,0,0,0,0,0.319,1 +0.667,0.732,0.233,0.313,0.313,0,0,0,0,0,0,0.262,1 +0.667,0.732,0.274,0.311,0.311,0,0,0,0,0,0,0.748,1 +1,0.818,0.459,0.448,0.448,0,0,0.344,0.246,0.533,0,0.0788,1 +1,0.857,0.505,0.49,0.49,0,0,0,0,0,0.767,0,1 +1,0.915,0.531,0.602,0.602,0,0,0,0,0,0,0,1 +1,0.973,0.549,0.798,0.798,0,0,0.459,0.246,0.267,0,0,1 +1,0.993,0.647,0.979,0.979,0,0,0.375,0,0,0,0,1 +1,0.973,0.851,0.991,0.991,0,0,0.524,0,0,0,0,1 +1,0.934,1,0.823,0.823,0,0,0.939,0,0,0,0,1 +1,0.857,0.923,0.621,0.621,0,0,0.992,0,0,0,0,1 +1,0.779,0.582,0.536,0.536,0,0,0.379,0,0,0,0,1 +1,0.72,0.265,0.249,0.249,0,0,0.246,0,0,0,0,1 +1,0.701,0.0954,0.124,0.124,0,0,0.286,0,0,0,0,1 +1,0.654,0.0362,0.066,0.066,0,0,0,0,0,0,0,1 +1,0.608,0.0183,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.42,1 +1,0.608,0.026,0.0833,0.0833,0,0,0.401,0.246,0.267,0,0.194,1 +0.667,0.621,0.0355,0.151,0.151,0,0,0.581,0,0,0,0.0394,1 +0.667,0.64,0.0449,0.183,0.183,0,0,0.58,0,0,0,0.0788,1 +0.667,0.647,0.0527,0.192,0.192,0,0,0.0795,0,0,0,0.158,1 +0.667,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.0788,-0.75 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0.158,-0.267 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0394,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.276,-0.767 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0,0,-0.25 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0.517,0,1 +1,0.993,0.541,0.979,0.979,0.424,0.567,0,0,0,0,0.118,-0.0667 +1,0.973,0.758,0.991,0.991,0.511,1,0,0,0,0,0,1 +1,0.934,0.936,0.823,0.823,0.366,0.317,0,0,0,0,0.192,1 +1,0.758,0.596,0.43,0.43,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.0352,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.583 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.257,0 +0.667,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0.304,-0.583 +1,0.818,0.126,0.477,0.477,0,0,0,0,0,0,0.318,1 +1,0.818,0.149,0.49,0.49,0,0,0,0,0,0,0,1 +0.667,0.732,0.117,0.334,0.334,0,0,0,0,0,0,0,-0.75 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.0394,-0.267 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.312,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.152,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.158,0 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0,0.18,-0.75 +0.333,0.699,0.145,0.299,0.299,0,0,0.414,0.246,0.267,0,0.0394,-0.25 +0.667,0.849,0.366,0.669,0.669,0,0,0.3,0,0,0.25,0.368,1 +0.667,0.836,0.51,0.677,0.677,0,0,0.388,0,0,0,0,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0,1 +1,0.66,0.306,0.24,0.24,0,0,0,0,0,0,0.0852,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0.173,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.517,0.0394,1 +1,0.621,0.0355,0.151,0.151,0,0,0,0,0,0,0.15,1 +1,0.719,0.074,0.316,0.316,0,0,0,0,0,0,0.326,1 +1,0.732,0.0895,0.334,0.334,0,0,0,0,0,0,0.414,1 +0.667,0.732,0.105,0.343,0.343,0,0,0,0,0,0,0.391,1 +0.667,0.732,0.117,0.334,0.334,0,0,0,0,0,0,0.244,1 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.163,-0.3 +0.667,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.314,1 +0.667,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.226,1 +0.667,0.732,0.162,0.315,0.315,0,0,0,0,0,0,0.0394,-0.25 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.0394,-0.15 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0.25,0.197,0 +0.333,0.699,0.145,0.299,0.299,0,0,0,0,0,0,0.593,-0.4 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.0394,1 +0.667,0.699,0.263,0.363,0.363,0.356,0.317,0,0,0,0,0.177,1 +1,0.934,0.936,0.823,0.823,0.522,0.217,0,0,0,0,0.0777,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0.0394,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0.0394,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.608,0.026,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0746,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.237,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0,0.328,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0,0.541,1 +1,0.798,0.103,0.449,0.449,0,0,0,0,0,0,0.367,1 +1,0.818,0.126,0.477,0.477,0,0,0,0,0,0,0.392,1 +1,0.818,0.149,0.49,0.49,0,0,0.387,0.246,0.267,0,0.345,1 +1,0.818,0.168,0.477,0.477,0,0,0.44,0,0,0,0.107,1 +1,0.818,0.186,0.458,0.458,0,0,0,0,0,0,0.804,1 +1,0.818,0.196,0.445,0.445,0,0,0,0,0,0,0.205,1 +0.667,0.732,0.153,0.311,0.311,0,0,0,0,0,0,0,1 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0,-0.367 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.0788,0 +0.333,0.679,0.12,0.234,0.234,0,0,0,0,0,0.25,0.158,-0.35 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0,0.118,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.0394,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0.0394,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.207,1 +1,0.758,0.596,0.43,0.43,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.251,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0,0.521,1 +1,0.68,0.0551,0.253,0.253,0,0,0,0,0,0,0.634,1 +1,0.719,0.074,0.316,0.316,0,0,0,0,0,0,0.0788,1 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0.25,0.0394,-1 +0.667,0.732,0.105,0.343,0.343,0,0,0,0,0,0,0.0788,-0.0167 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.0167 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0.0394,1 +0.667,0.679,0.12,0.234,0.234,0,0,0,0,0,0.0667,0.158,1 +0.667,0.699,0.145,0.299,0.299,0,0,0,0,0,0.967,0,1 +1,0.849,0.366,0.669,0.669,0,0,0,0,0,0,0.231,1 +1,0.836,0.51,0.677,0.677,0,0,0,0,0,0,0.266,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.0394,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0,1 +1,0.706,0.363,0.374,0.374,0,0,0,0,0,0,0,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.654,0.0816,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0.136,0.246,0,0,0.197,1 +1,0.64,0.049,0.183,0.183,0,0,0.387,0,0.817,0,0.158,1 +1,0.647,0.0731,0.192,0.192,0,0,0,0,0,0.25,0.312,1 +1,0.732,0.168,0.343,0.343,0,0,0,0,0,0,0.0788,1 +1,0.732,0.198,0.334,0.334,0.558,0.983,0,0,0,0,0,1 +1,0.732,0.217,0.322,0.322,0,0.9,0,0,0,0,0,-0.3 +0.667,0.647,0.125,0.181,0.181,0,0,0,0,0,0,0.118,-0.0333 +0.333,0.647,0.146,0.18,0.18,0,0,0,0,0,0,0.0788,-0.25 +0.667,0.647,0.165,0.182,0.182,0,0,0,0,0,0,0.274,1 +1,0.857,0.505,0.49,0.49,0,0,0,0,0,0.25,0.157,1 +1,0.915,0.531,0.602,0.602,0,0,0,0,0,0,0.118,1 +1,0.973,0.549,0.798,0.798,0,0,0,0,0,0,0.307,1 +1,0.993,0.647,0.979,0.979,0,0,0,0,0,0,0.381,1 +1,0.973,0.851,0.991,0.991,0,0,0,0,0,0,0.416,1 +1,0.934,1,0.823,0.823,0,0,0,0,0,0,0.0948,1 +1,0.857,0.923,0.621,0.621,0,0,0,0,0,0,0.0788,1 +1,0.706,0.394,0.374,0.374,0,0,0,0,0,0,0,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0.0788,1 +1,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.608,0.031,0.0578,0.0578,0,0,0,0,0,0,0.118,1 +1,0.608,0.0224,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.162,1 +0.667,0.647,0.0928,0.196,0.196,0,0,0,0,0,0,0.28,1 +0.667,0.647,0.108,0.192,0.192,0,0,0,0,0,0,0.335,1 +0.667,0.647,0.118,0.186,0.186,0,0,0.251,0.246,0,0,0.473,1 +0.667,0.732,0.233,0.313,0.313,0,0,0.518,0.263,0.533,0,0.283,1 +1,0.818,0.402,0.441,0.441,0,0,0.387,0,0,0,0.484,1 +0.667,0.732,0.312,0.315,0.315,0,0,0.537,0,0,0,0.289,1 +0.667,0.758,0.343,0.343,0.343,0,0,0.437,0,0,0.25,0.0788,-0.4 +0.667,0.797,0.36,0.418,0.418,0,0,0,0,0,0,0.276,-0.617 +0.333,0.699,0.195,0.299,0.299,0,0,0,0,0,0,0.315,0 +0.333,0.705,0.228,0.359,0.359,0,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0.363,0,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.117 +0.667,0.66,0.32,0.24,0.24,0,0,0,0,0,0,0,-0.75 +1,0.706,0.394,0.374,0.374,0,0,0,0,0,0,0.167,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0.0971,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.621,0.0355,0.151,0.151,0,0,0,0,0,0,0.0788,1 +0.667,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0.338,-1 +0.667,0.647,0.0527,0.192,0.192,0,0,0,0,0,0,0.249,-0.567 +0.667,0.732,0.105,0.343,0.343,0,0,0,0,0,0,0.229,0 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.158,0 +0.333,0.66,0.0982,0.196,0.196,0,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0.234,0,0,0,0,0,0,0,-0.8 +0.667,0.836,0.273,0.548,0.548,0,0,0,0,0,0,0.118,-0.75 +0.667,0.849,0.366,0.669,0.669,0,0,0,0,0,0,0.0788,1 +0.667,0.836,0.51,0.677,0.677,0,0,0,0,0,0,0.276,1 +1,0.934,0.936,0.823,0.823,0,0,0,0,0,0,0.0845,1 +1,0.857,0.887,0.621,0.621,0,0,0,0,0,0,0.351,1 +1,0.706,0.363,0.374,0.374,0,0,0,0,0,0,0.0799,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0.12,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +1,0.608,0.0166,0.0495,0.0495,0,0,0,0,0,0,0.254,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0.0667,0.523,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,1,0.098,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.733,0.458,-1 +0.667,0.64,0.0449,0.183,0.183,0,0,0,0,0,0,0.627,-0.383 +0.667,0.732,0.0895,0.334,0.334,0,0,0,0,0,0,0.415,0 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.182,0 +0.667,0.732,0.117,0.334,0.334,0,0,0,0,0,0.0667,0.314,0 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0.183,0,0 +0.333,0.647,0.0759,0.181,0.181,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0845,0.18,0.18,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0888,0.182,0.182,0.155,0.0667,0,0,0,0,0.0788,-0.883 +0.333,0.66,0.0982,0.196,0.196,0.644,0.467,0,0,0,0,0,-0.5 +0.667,0.797,0.224,0.418,0.418,0,0,0,0,0,0,0.0788,1 +1,0.973,0.402,0.798,0.798,0,0,0,0,0,0,0.158,1 +1,0.993,0.541,0.979,0.979,0,0,0,0,0,0,0.351,1 +1,0.973,0.758,0.991,0.991,0,0,0,0,0,0,0.0394,1 +1,0.81,0.629,0.565,0.565,0,0,0,0,0,0,0,1 +1,0.758,0.596,0.43,0.43,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.608,0.026,0.0833,0.0833,0,0,0,0,0,0,0.191,1 +1,0.68,0.0551,0.253,0.253,0.41,0.533,0.11,0.246,0.267,0.0667,0.12,1 +0.667,0.719,0.074,0.316,0.316,0.675,0.533,0,0,0,0.183,0.0788,1 +0.667,0.732,0.0895,0.334,0.334,0.729,0,0,0,0,0,0.0788,-0.5 +0.333,0.647,0.0604,0.196,0.196,0,0,0,0,0,0,0.0394,-1 +0.333,0.647,0.0664,0.192,0.192,0,0,0,0,0,0,0.158,-0.0667 +0.333,0.647,0.0724,0.186,0.186,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0759,0.181,0.181,0.717,0.533,0,0,0,0,0.0788,0 +0.333,0.647,0.0845,0.18,0.18,0.0803,0,0,0,0,0,0.118,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,-0.3 +0.333,0.705,0.191,0.359,0.359,0,0,0,0,0,0,0.0394,-1 +0.333,0.699,0.263,0.363,0.363,0,0,0,0,0,0,0,-0.25 +1,0.81,0.629,0.565,0.565,0,0,0,0,0,0,0,1 +1,0.66,0.306,0.24,0.24,0,0,0,0,0,0,0.106,1 +1,0.634,0.189,0.212,0.212,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.25,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.195,1 +0.667,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0.212,1 +0.667,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0.163,1 +0.667,0.649,0.0601,0.193,0.193,0,0,0,0,0,0,0.415,1 +0.667,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0.246,1 +0.667,0.736,0.128,0.316,0.316,0,0,0,0,0,0.25,0.301,1 +0.667,0.736,0.135,0.307,0.307,0,0,0,0,0,0,0.156,-0.25 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.118,-0.45 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.0788,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.158,0 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0,0.0394,-0.183 +0.333,0.701,0.144,0.258,0.258,0,0,0,0,0,0.0167,0.236,-0.5 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0.233,0.218,1 +0.667,0.841,0.507,0.67,0.67,0.0707,0.0167,0,0,0,0,0.165,1 +1,0.941,0.929,0.913,0.913,0.394,0.5,0,0,0,0,0.385,1 +1,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0.107,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0.347,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.116,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.373,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.367 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0.354,-0.35 +0.667,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.167 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.0394,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.0394,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.0788,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.118,0 +0.667,0.762,0.179,0.322,0.322,0,0,0,0,0,0,0.0788,-0.15 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0,0.0788,-1 +1,0.98,0.399,0.674,0.674,0.0977,0.0167,0,0,0,0,0.0788,1 +0.667,0.854,0.364,0.595,0.595,0.389,0.5,0,0,0,0,0.0394,-0.45 +0.667,0.841,0.507,0.67,0.67,0,0,0,0,0,0,0.0788,0 +0.333,0.688,0.32,0.337,0.337,0,0,0,0,0,0,0.167,-0.433 +0.667,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0.482,0.526,0.267,0,0,1 +1,0.616,0.0874,0.116,0.116,0,0,0.392,0,0.783,0,0,1 +1,0.61,0.0496,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.61,0.0215,0.0513,0.0513,0,0,0.22,0.263,0.45,0,0.0394,1 +1,0.658,0.0299,0.116,0.116,0,0,0.194,0,0.6,0,0.118,1 +1,0.684,0.047,0.251,0.251,0,0,0,0,0,0,0.227,1 +0.667,0.642,0.0488,0.181,0.181,0,0,0,0,0,0,0.253,1 +0.667,0.649,0.0727,0.19,0.19,0,0,0,0,0,0,0,-0.333 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.317 +0.667,0.649,0.117,0.183,0.183,0,0,0,0,0,0,0.118,1 +0.667,0.649,0.125,0.178,0.178,0,0,0,0,0,0,0.219,1 +0.667,0.649,0.145,0.177,0.177,0.63,0.517,0,0,0,0,0.118,1 +0.333,0.649,0.164,0.178,0.178,0,0,0,0,0,0.25,0.276,1 +0.333,0.662,0.179,0.186,0.186,0,0,0,0,0,0,0.0394,1 +0.667,0.802,0.358,0.367,0.367,0,0,0,0,0,0,0,1 +0.667,0.841,0.369,0.466,0.466,0,0,0,0,0,0,0.0788,1 +0.667,0.854,0.434,0.595,0.595,0,0,0,0,0,0,0.0788,1 +0.667,0.841,0.569,0.67,0.67,0,0,0,0,0,0,0.226,1 +1,0.941,0.993,0.913,0.913,0,0,0,0,0,0,0.157,1 +1,0.863,0.916,0.727,0.727,0,0,0,0,0,0,0.188,1 +1,0.784,0.578,0.638,0.638,0,0,0,0,0,0,0.114,1 +1,0.725,0.264,0.249,0.249,0,0,0,0,0,0,0.375,1 +1,0.706,0.113,0.124,0.124,0,0,0,0,0,0,0,1 +1,0.61,0.0309,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.0667 +1,0.61,0.024,0.0829,0.0829,0,0,0,0,0,0,0.158,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.642,0.0488,0.181,0.181,0,0,0,0,0,0,0.118,1 +1,0.649,0.0727,0.19,0.19,0,0,0,0,0,0,0.166,1 +1,0.649,0.0923,0.193,0.193,0,0,0,0,0,0,0.299,1 +0.667,0.649,0.108,0.189,0.189,0,0,0,0,0,0,0.0409,1 +0.667,0.736,0.216,0.316,0.316,0,0,0,0,0,0,0.0394,1 +0.333,0.649,0.125,0.178,0.178,0,0,0,0,0,0,0.0788,1 +0.333,0.649,0.145,0.177,0.177,0,0,0,0,0,0,0.473,1 +0.333,0.649,0.164,0.178,0.178,0,0,0,0,0,0,0.197,1 +0.333,0.662,0.179,0.186,0.186,0,0,0,0,0,0.2,0.0394,1 +0.667,0.802,0.358,0.367,0.367,0,0,0,0,0,0.3,0.276,1 +0.667,0.841,0.369,0.466,0.466,0,0,0,0,0,0,0,1 +1,1,0.642,0.868,0.868,0,0,0,0,0,0,0,1 +1,0.98,0.845,0.98,0.98,0,0,0,0,0,0,0,1 +1,0.941,0.993,0.913,0.913,0,0,0,0,0,0,0.118,1 +1,0.863,0.916,0.727,0.727,0,0,0,0,0,0,0.128,1 +1,0.784,0.578,0.638,0.638,0,0,0,0,0,0,0,1 +1,0.671,0.182,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.658,0.0684,0.099,0.099,0,0,0,0,0,0,0.0394,1 +1,0.658,0.036,0.066,0.066,0,0,0,0,0,0,0.236,1 +1,0.61,0.0183,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.61,0.0165,0.0495,0.0495,0,0,0,0,0,0,0.216,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.14,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0,0.78,1 +0.667,0.623,0.0353,0.15,0.15,0,0,0,0,0,0,0.221,1 +0.667,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0.36,1 +0.667,0.736,0.0889,0.33,0.33,0,0,0.419,0.263,0.267,0,0.271,1 +0.667,0.736,0.104,0.337,0.337,0,0,0.48,0,0.25,0,0,1 +0.333,0.649,0.066,0.189,0.189,0,0,0.382,0,0,0,0.0394,-0.883 +0.333,0.649,0.072,0.183,0.183,0,0,0.369,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0.405,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0.613,0,0,0,0.236,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0.428,0,0,0,0.0394,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0.474,0,0,0,0.0788,-0.867 +0.667,0.802,0.222,0.367,0.367,0,0,0.492,0,0,0,0.0394,1 +1,0.98,0.399,0.674,0.674,0,0,0.346,0,0,0,0.158,1 +1,1,0.537,0.868,0.868,0,0,0.055,0,0,0.0167,0.117,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0.233,0.0394,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0,1 +1,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0.274,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0.137,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0,0.447,1 +1,0.745,0.0742,0.351,0.351,0,0,0,0,0,0,0.344,1 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0,0.473,1 +0.667,0.736,0.0889,0.33,0.33,0,0,0,0,0,0,0.739,1 +0.667,0.736,0.104,0.337,0.337,0,0,0,0,0,0,0.374,1 +0.667,0.736,0.116,0.328,0.328,0,0,0,0,0,0,0.276,1 +0.667,0.736,0.128,0.316,0.316,0,0,0,0,0,0,0.119,1 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.118,-0.25 +0.667,0.736,0.152,0.305,0.305,0,0,0,0,0,0,0.0394,-0.517 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0.25,0.118,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.197,0 +0.333,0.682,0.119,0.208,0.208,0,0,0,0,0,0,0.236,0 +0.667,0.841,0.271,0.466,0.466,0,0,0,0,0,0,0.0394,-0.75 +1,1,0.537,0.868,0.868,0,0,0,0,0,0,0.0394,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0.0788,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0,1 +1,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0.0726,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0.0896,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.205,1 +1,0.658,0.036,0.116,0.116,0,0,0,0,0,0,0.679,1 +1,0.745,0.0742,0.351,0.351,0,0,0,0,0,0,0.195,1 +0.667,0.723,0.0735,0.313,0.313,0,0,0.592,0.263,0.25,0,0.194,1 +0.667,0.736,0.0889,0.33,0.33,0,0,0.613,0,0,0,0,-0.75 +0.333,0.649,0.0601,0.193,0.193,0,0,0.593,0,0,0,0.276,-0.633 +0.667,0.736,0.116,0.328,0.328,0,0,0.472,0,0,0,0,0 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.118,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.118,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.268,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.118,0 +0.333,0.682,0.119,0.208,0.208,0.0576,0.0167,0,0,0,0,0.0394,-0.617 +0.333,0.701,0.144,0.258,0.258,0.541,1,0,0,0,0,0.451,-0.75 +0.667,0.854,0.364,0.595,0.595,0.723,0.567,0,0,0,0,0.49,1 +0.667,0.841,0.507,0.67,0.67,0.131,0,0,0,0,0,0.0869,1 +0.667,0.815,0.625,0.625,0.625,0,0,0,0,0,0,0,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0.276,-0.5 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.45 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0196,-0.95 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.207,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0,0.64,1 +1,0.745,0.0742,0.351,0.351,0,0,0,0,0,0.25,0.526,1 +1,0.804,0.102,0.444,0.444,0,0,0,0,0,0,0.0394,-0.75 +0,0.562,0.0159,0.0495,0.0495,0.337,0.25,0,0,0,0,0,-0.6 +0.333,0.649,0.0601,0.193,0.193,0.667,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.189,0.363,0,0,0,0,0,0.0988,0 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.706,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.182,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0.0528,0.0175,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.45,0.246,0.767,0,0.0394,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0.55,0,0.283,0.0167,0.394,-0.833 +0.667,0.802,0.222,0.367,0.367,0,0,0.59,0,0,0.233,0.118,-0.5 +1,0.98,0.399,0.674,0.674,0,0,0,0,0,0,0,1 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0.0394,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0.322,1 +1,0.815,0.625,0.625,0.625,0,0,0,0,0,0,0.143,1 +1,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0.595,1 +1,0.71,0.36,0.442,0.442,0,0,0,0,0,0,0.279,-0.5 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.3 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.783 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.562,1 +1,0.623,0.0353,0.15,0.15,0,0,0,0,0,0,0.187,1 +1,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0.157,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.649,0.0601,0.193,0.193,0,0,0,0,0,0,0.0394,1 +0.667,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0.118,1 +1,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.197,1 +0.667,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0,-0.333 +0.667,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.118,-0.0833 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.25 +1,0.863,0.261,0.458,0.458,0,0,0,0,0,0,0.0394,1 +0.333,0.682,0.119,0.208,0.208,0,0,0,0,0,0,0.118,-0.25 +0.333,0.701,0.144,0.258,0.258,0,0,0,0,0,0.25,0.358,-0.25 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0.594,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0.283,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0.2,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0.0519,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0.0163,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0.161,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0.551,0.517,0,0,0,0,0.197,1 +1,0.649,0.0923,0.193,0.193,0.236,0,0,0,0,0.45,0.263,1 +1,0.824,0.287,0.468,0.468,0,0,0,0,0,0.567,0.427,1 +0.667,0.736,0.216,0.316,0.316,0,0,0,0,0,0,0.0998,1 +1,0.824,0.338,0.436,0.436,0,0,0,0,0,0,0.158,1 +0.667,0.736,0.272,0.305,0.305,0.702,0.25,0,0,0,0,0.236,-0.367 +0.333,0.649,0.164,0.178,0.178,0.52,0,0,0,0,0,0.158,0 +0.333,0.662,0.179,0.186,0.186,0.148,0,0.488,0.263,0.25,0.25,0.118,-0.367 +1,0.922,0.527,0.526,0.526,0,0,0.477,0,0,0,0.118,1 +1,0.98,0.545,0.674,0.674,0,0,0.15,0,0,0,0.352,1 +1,1,0.642,0.868,0.868,0,0,0,0,0,0,0.0788,1 +0.667,0.841,0.569,0.67,0.67,0,0,0,0,0,0,0,-0.367 +0.667,0.815,0.668,0.625,0.625,0,0,0,0,0,0,0.0971,0 +0.667,0.762,0.617,0.501,0.501,0,0,0,0,0,0,0,-0.35 +1,0.784,0.578,0.638,0.638,0,0,0.697,0.263,0.25,0,0.232,1 +1,0.671,0.182,0.183,0.183,0,0,0,0,0,0,0.0963,1 +1,0.61,0.0496,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.61,0.0309,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.642,0.0488,0.181,0.181,0,0,0,0,0,0,0.384,1 +1,0.736,0.127,0.33,0.33,0,0,0,0,0,0,0.335,1 +1,0.736,0.166,0.337,0.337,0,0,0,0,0,0,0,-0.217 +0.667,0.649,0.108,0.189,0.189,0,0,0.474,0.263,0.45,0,0.0788,-0.217 +0.667,0.649,0.117,0.183,0.183,0,0,0.572,0,1,0,0.197,1 +0.667,0.736,0.231,0.307,0.307,0,0,0.791,0,0.117,0,0.0788,1 +0.667,0.736,0.272,0.305,0.305,0,0,0.427,0,0,0,0.0788,1 +0.667,0.736,0.31,0.307,0.307,0,0,0.404,0,0,0,0.0394,1 +0.333,0.662,0.179,0.186,0.186,0,0,0.476,0,0,0,0.433,1 +0.333,0.682,0.188,0.208,0.208,0,0,0.521,0,0,0,0.118,1 +1,0.841,0.369,0.466,0.466,0,0,0.563,0,0,0,0,1 +1,0.854,0.434,0.595,0.595,0,0,0.517,0,0,0,0,1 +1,0.98,0.845,0.98,0.98,0,0,0.514,0,0,0,0.118,1 +1,0.815,0.668,0.625,0.625,0,0,0,0,0,0,0.0394,1 +1,0.762,0.617,0.501,0.501,0,0,0,0,0,0,0.0394,1 +1,0.71,0.392,0.442,0.442,0,0,0,0,0,0,0.0788,1 +1,0.616,0.1,0.116,0.116,0,0,0,0,0,0,0.115,1 +1,0.61,0.0421,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.61,0.0259,0.0578,0.0578,0,0,0,0,0,0.0167,0.224,1 +1,0.61,0.0183,0.0495,0.0495,0,0,0,0,0,0.233,0.0788,1 +1,0.61,0.0165,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.105,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0,0.193,1 +1,0.623,0.0353,0.15,0.15,0,0,0,0,0,0,0.159,1 +0.667,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0,-0.267 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.25 +0.667,0.736,0.104,0.337,0.337,0,0,0,0,0,0,0,1 +0.333,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0.236,-0.617 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.118,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.0394,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.0394,-0.367 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0.517,0.118,-0.25 +0.667,0.762,0.179,0.322,0.322,0,0,0,0,0,0.25,0.0788,1 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0,0.158,1 +0.667,0.841,0.271,0.466,0.466,0,0,0,0,0,0.25,0,1 +0.667,0.854,0.364,0.595,0.595,0,0,0.119,0.263,0.0167,0.0167,0.268,1 +0.667,0.841,0.507,0.67,0.67,0,0,0,0,0.5,0.233,0.118,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0.118,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.71,0.36,0.442,0.442,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.125,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.229,-0.283 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.114,1 +1,0.658,0.036,0.116,0.116,0,0,0,0,0,0,0.331,1 +1,0.684,0.0548,0.251,0.251,0,0,0,0,0,0,0.528,-0.5 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0,0.0394,-1 +0.333,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0.158,-0.467 +0.333,0.649,0.0601,0.193,0.193,0,0,0,0,0,0,0.0518,0 +0.333,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.236,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.0788,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.251,0 +0.333,0.682,0.119,0.208,0.208,0,0,0,0,0,0,0.315,0 +0.333,0.701,0.144,0.258,0.258,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.95 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0,1 +1,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0167,0,1 +1,0.623,0.0353,0.15,0.15,0,0,0.393,0.263,0.25,1,0,1 +0.667,0.642,0.0447,0.181,0.181,0,0,0.546,0,0,1,0.565,1 +0.667,0.736,0.0889,0.33,0.33,0,0,0.453,0,0,0.283,0.102,1 +0.667,0.736,0.104,0.337,0.337,0,0,0.436,0,0,0,0.0788,-0.75 +0.333,0.649,0.066,0.189,0.189,0,0,0.261,0,0,0,0.118,-0.383 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.0788,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.276,-0.117 +0.333,0.682,0.119,0.208,0.208,0,0,0,0,0,0.25,0,-1 +0.667,0.841,0.271,0.466,0.466,0,0,0,0,0,0,0.254,1 +1,1,0.537,0.868,0.868,0,0,0,0,0,0,0.199,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0,1 +1,0.815,0.625,0.625,0.625,0,0,0,0,0,0,0,1 +1,0.662,0.304,0.275,0.275,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-1 +0.667,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0.0394,-0.533 +0.333,0.562,0.0159,0.0495,0.0495,0.0969,0.0167,0,0,0,0,0.276,0 +0.333,0.649,0.0601,0.193,0.193,0.874,0.5,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.189,0.0759,0,0,0,0,0,0.158,0 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.0394,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0.158,-0.0167 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.482,-1 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0,0.0394,-0.5 +1,0.98,0.399,0.674,0.674,0,0,0,0,0,0.0167,0.0394,1 +1,1,0.537,0.868,0.868,0,0,0,0,0,0.483,0,-0.15 +0.667,0.841,0.507,0.67,0.67,0,0,0,0,0,0,0.0394,-0.133 +1,0.815,0.625,0.625,0.625,0,0,0,0,0,0,0.128,1 +1,0.662,0.304,0.275,0.275,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.0573,0.0175,0,0.5,0.0394,1 +1,0.61,0.0183,0.0495,0.0495,0,0,0.732,0.246,0.767,0,0.0788,1 +1,0.61,0.0165,0.0495,0.0495,0,0,0.0841,0,0.283,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0167,0.0186,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.75,0.361,1 +1,0.804,0.102,0.444,0.444,0,0,0.309,0.263,0.25,0,0.15,1 +1,0.824,0.125,0.47,0.47,0,0,0.515,0,0,0,0.34,1 +0.667,0.736,0.104,0.337,0.337,0,0,0.674,0,0,0,0.439,1 +0.667,0.736,0.116,0.328,0.328,0,0,0.726,0,0,0,0.0788,-0.5 +0.333,0.649,0.072,0.183,0.183,0,0,0.661,0,0,0,0,-0.6 +0.333,0.649,0.0754,0.178,0.178,0,0,0.55,0,0,0,0.158,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0.0482,0,0,0.25,0.0394,0 +0.333,0.562,0.0159,0.0495,0.0495,0.0803,0.0167,0,0,0,0,0.158,0 +0.667,0.662,0.0976,0.186,0.186,0.236,0.767,0,0,0,0,0.197,0 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0,0.118,-0.0833 +0.667,0.701,0.144,0.258,0.258,0,0,0,0,0,0.25,0,-1 +1,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0,1 +1,0.841,0.507,0.67,0.67,0,0,0,0,0,0,0,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0.25,0.359,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.4,1 +1,0.736,0.127,0.33,0.33,0,0,0,0,0,0,0.118,1 +0.667,0.649,0.0923,0.193,0.193,0,0,0,0,0,0,0.0394,1 +1,0.736,0.197,0.328,0.328,0.461,0.45,0.202,0.211,0,0,0,1 +1,0.736,0.216,0.316,0.316,0,0.0667,0.497,0.842,0.2,0,0.0394,1 +0.667,0.649,0.125,0.178,0.178,0,0,0.546,0,0.05,0.2,0.118,1 +0.667,0.649,0.145,0.177,0.177,0,0,0.272,0,0,0.05,0.0394,1 +0.667,0.736,0.31,0.307,0.307,0,0,0.836,0,0,0,0.158,1 +0.667,0.762,0.34,0.322,0.322,0,0,0.419,0,0,0,0.0394,1 +0.667,0.802,0.358,0.367,0.367,0,0,0.963,0,0,0,0.0788,1 +0.667,0.841,0.369,0.466,0.466,0,0,0.346,0,0,0,0.236,1 +1,1,0.642,0.868,0.868,0.353,0.45,0.599,0,0,0,0.0788,1 +1,0.98,0.845,0.98,0.98,0.717,0.6,0.549,0,0,0,0,1 +1,0.941,0.993,0.913,0.913,0.176,0,0.352,0,0,0,0,1 +1,0.863,0.916,0.727,0.727,0,0,0.433,0,0,0,0,1 +1,0.784,0.578,0.638,0.638,0,0,0,0,0,0,0,1 +1,0.725,0.264,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.211,1 +1,0.736,0.127,0.33,0.33,0,0,0,0,0,0,0.205,1 +1,0.736,0.166,0.337,0.337,0,0,0,0,0,0,0,1 +1,0.824,0.287,0.468,0.468,0,0,0.512,0.263,0.25,0,0,1 +1,0.824,0.315,0.449,0.449,0,0,0.376,0,0,0,0.276,1 +1,0.736,0.231,0.307,0.307,0,0,0.202,0,0,0,0.354,1 +1,0.736,0.272,0.305,0.305,0,0,0,0,0,0.25,0.0788,1 +1,0.736,0.31,0.307,0.307,0,0,0,0,0,0,0.0788,1 +1,0.762,0.34,0.322,0.322,0,0,0,0,0,0,0.118,1 +1,0.802,0.358,0.367,0.367,0,0,0,0,0,0,0.0788,1 +1,0.98,0.545,0.674,0.674,0,0,0,0,0,0,0.586,1 +1,1,0.642,0.868,0.868,0.827,0.783,0,0,0,0,0.164,1 +1,0.98,0.845,0.98,0.98,0.49,0,0,0,0,0,0.503,1 +1,0.941,0.993,0.913,0.913,0,0,0,0,0,0,0.125,1 +1,0.863,0.916,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.784,0.578,0.638,0.638,0,0,0,0,0,0,0,1 +1,0.671,0.182,0.183,0.183,0,0,0,0,0,0,0.0394,1 +1,0.61,0.0421,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.372,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0,0.287,1 +1,0.684,0.0548,0.251,0.251,0,0,0,0,0,0,0.665,1 +0.667,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0.287,1 +0.667,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0.0394,-0.5 +0.333,0.649,0.0601,0.193,0.193,0,0,0,0,0,0,0.0394,-0.733 +0.333,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.0788,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.0394,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.118,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.233 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.841,0.271,0.466,0.466,0,0,0,0,0,0,0.0979,-0.0667 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0.455,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0.0788,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0.311,1 +1,0.762,0.592,0.501,0.501,0,0,0,0,0,0,0.0388,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.61,0.0421,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.481,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.424,1 +1,0.658,0.036,0.116,0.116,0,0,0,0,0,0,0.311,1 +0.667,0.684,0.0548,0.251,0.251,0,0,0,0,0,0.267,0.329,-1 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0.233,0.0394,-0.417 +0.333,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0.201,0 +0.333,0.649,0.0601,0.193,0.193,0,0,0.404,0.263,0.25,0,0.223,0 +0.333,0.649,0.066,0.189,0.189,0,0,0.455,0,0,0,0.197,0 +0.333,0.649,0.072,0.183,0.183,0,0,0.505,0,0,0,0.197,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0.317,0,0,0,0.0394,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0.358,0,0,0,0.197,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.118,-0.667 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0.25,0.315,-0.75 +1,0.922,0.325,0.526,0.526,0,0,0,0,0,0,0.0394,1 +1,0.98,0.399,0.674,0.674,0,0,0,0,0,0,0.0394,1 +1,1,0.537,0.868,0.868,0,0,0,0,0,0,0.118,-0.0667 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0.153,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.71,0.36,0.442,0.442,0,0,0,0,0,0,0,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.61,0.0421,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.0833 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.0917,0.263,0.0167,0.25,0.167,1 +1,0.745,0.0742,0.351,0.351,0,0,0.055,0.0175,0.233,0,0.221,-0.5 +0.667,0.723,0.0735,0.313,0.313,0,0,0.795,0.246,0.767,0,0,-1 +0.333,0.649,0.0524,0.19,0.19,0,0,0.31,0,0.283,0,0.158,-0.2 +0.333,0.649,0.0601,0.193,0.193,0,0,0.486,0,0,0,0.236,0 +0.333,0.649,0.066,0.189,0.189,0,0,0.408,0,0,0,0.0788,0 +0.333,0.649,0.072,0.183,0.183,0,0,0.518,0,0,0,0.0394,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0.554,0,0,0,0.0394,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0.829,0,0,0,0.236,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0.554,0,0,0,0.0788,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0.537,0,0,0,0.197,0 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0.25,0.0788,-0.45 +0.667,0.841,0.271,0.466,0.466,0,0,0,0,0,0,0.0394,-1 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0,-0.25 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0.0394,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0.254,1 +1,0.71,0.36,0.442,0.442,0,0,0,0,0,0,0.108,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.605,1 +1,0.61,0.0259,0.0829,0.0829,0,0,0,0,0,0.5,0.346,1 +0.667,0.684,0.0548,0.251,0.251,0,0,0,0,0,0,0.118,1 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0,0,-0.5 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.733 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.667,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.118,0 +0.667,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.118,-0.233 +0.667,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.0394,-1 +0.667,0.682,0.119,0.208,0.208,0,0,0,0,0,0.25,0.426,1 +1,0.98,0.399,0.674,0.674,0,0,0,0,0,0,0.197,1 +1,1,0.537,0.868,0.868,0,0,0,0,0,0,0,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0.0394,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0.267,0.222,1 +1,0.784,0.532,0.638,0.638,0,0,0,0,0,0.5,0.0923,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0,0.142,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.116,1 +0.667,0.642,0.0447,0.181,0.181,0,0,0,0,0,0,0.259,-0.5 +0.333,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0.276,-1 +0.333,0.649,0.0601,0.193,0.193,0,0,0,0,0,0,0.197,0 +0.333,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0.0788,0 +0.333,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.118,0 +0.333,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.118,0 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.733 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.75 +0.667,0.708,0.19,0.322,0.322,0,0,0,0,0,0,0.197,1 +0.667,0.701,0.261,0.36,0.36,0,0,0,0,0,0.25,0.118,1 +0.667,0.688,0.32,0.337,0.337,0,0,0,0,0,0,0,1 +0.667,0.662,0.304,0.275,0.275,0,0,0,0,0,0,0,1 +0.667,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0.0394,1 +1,0.616,0.0874,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.61,0.0189,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.61,0.0215,0.0513,0.0513,0,0,0,0,0,0,0.0788,1 +1,0.61,0.024,0.0829,0.0829,0,0,0,0,0,0.25,0,1 +1,0.684,0.047,0.251,0.251,0,0,0,0,0,0,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.736,0.166,0.337,0.337,0,0,0,0,0,0,0.254,1 +0.667,0.736,0.197,0.328,0.328,0,0,0,0,0,0,0.729,1 +0.667,0.736,0.216,0.316,0.316,0,0,0,0,0,0,0.573,1 +0.667,0.736,0.231,0.307,0.307,0,0,0,0,0,0,0.352,1 +0.667,0.736,0.272,0.305,0.305,0,0,0,0,0,0,0.394,1 +0.667,0.736,0.31,0.307,0.307,0,0,0,0,0,0,0.388,1 +1,0.863,0.502,0.458,0.458,0,0,0,0,0,0,0.197,-0.217 +0.667,0.802,0.358,0.367,0.367,0,0,0.291,0.474,0,0.25,0.118,1 +0.667,0.841,0.369,0.466,0.466,0,0,0.291,0.316,0.517,0,0.0788,1 +1,1,0.642,0.868,0.868,0,0,0.335,0.263,0.45,0,0,1 +1,0.98,0.845,0.98,0.98,0,0,0.48,0,0.0667,0,0,1 +1,0.941,0.993,0.913,0.913,0,0,0.463,0,0,0,0,1 +0.667,0.762,0.617,0.501,0.501,0,0,0,0,0,0,0.09,1 +1,0.784,0.578,0.638,0.638,0,0,0,0,0,0,0.124,1 +1,0.671,0.182,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.61,0.0215,0.0513,0.0513,0,0,0,0,0,0,0.0394,1 +1,0.61,0.024,0.0829,0.0829,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.103,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.649,0.0923,0.193,0.193,0,0,0,0,0,0,0.354,1 +0.667,0.649,0.108,0.189,0.189,0,0,0,0,0,0,0.172,1 +0.667,0.649,0.117,0.183,0.183,0,0,0,0,0,0,0.0394,1 +0.667,0.649,0.125,0.178,0.178,0,0,0,0,0,0,0,1 +1,0.824,0.399,0.432,0.432,0,0,0,0,0,0,0.0788,1 +1,0.824,0.456,0.435,0.435,0,0,0,0,0,0,0.236,1 +1,0.863,0.502,0.458,0.458,0,0,0,0,0,0,0,1 +1,0.922,0.527,0.526,0.526,0,0,0,0,0,0,0.0394,1 +1,0.98,0.545,0.674,0.674,0,0,0,0,0,0,0,1 +0.667,0.854,0.434,0.595,0.595,0,0,0.3,0.211,0,0,0,1 +0.667,0.841,0.569,0.67,0.67,0,0,0,0.0526,0.25,0,0.354,1 +0.667,0.815,0.668,0.625,0.625,0,0,0,0,0,0,0.16,1 +1,0.863,0.916,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.71,0.392,0.442,0.442,0,0,0,0,0,0,0,1 +1,0.671,0.182,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.276,1 +1,0.61,0.02,0.0513,0.0513,0,0,0,0,0,0.0167,0.288,1 +1,0.706,0.0461,0.15,0.15,0,0,0,0,0,0.75,0.277,1 +1,0.745,0.0742,0.351,0.351,0,0,0,0,0,0,0.546,1 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0,0.146,1 +0.667,0.736,0.0889,0.33,0.33,0,0,0,0,0,0.25,0.118,1 +0.667,0.736,0.104,0.337,0.337,0,0,0,0,0,0,0,1 +0.667,0.736,0.116,0.328,0.328,0,0,0,0,0,0,0.02,-0.0667 +0.667,0.736,0.128,0.316,0.316,0,0,0,0,0,0,0.435,1 +0.667,0.736,0.135,0.307,0.307,0,0,0,0,0,0,0,-0.517 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0,0.236,0 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.276,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0,0.139,-0.5 +0.667,0.802,0.222,0.367,0.367,0,0,0,0,0,0.5,0,1 +1,0.98,0.399,0.674,0.674,0,0,0,0,0,0,0,-0.15 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0,-0.133 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0,1 +1,0.941,0.929,0.913,0.913,0,0,0.33,0.263,0.25,0,0,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.336,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.198,-0.25 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0.423,-0.55 +0.667,0.684,0.0548,0.251,0.251,0,0,0,0,0,0,0.0788,0 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0,0.197,0 +0.333,0.649,0.0524,0.19,0.19,0,0,0,0,0,0,0.0596,0 +0.333,0.649,0.0601,0.193,0.193,0,0,0,0,0,0,0.354,-0.55 +0.333,0.649,0.066,0.189,0.189,0,0,0,0,0,0,0.167,-0.25 +0.667,0.649,0.072,0.183,0.183,0,0,0,0,0,0,0.0788,1 +0.667,0.649,0.0754,0.178,0.178,0,0,0,0,0,0,0.315,1 +0.333,0.649,0.0839,0.177,0.177,0,0,0,0,0,0.5,0.0788,-0.583 +0.333,0.649,0.0882,0.178,0.178,0,0,0,0,0,0,0.0788,0 +0.333,0.662,0.0976,0.186,0.186,0,0,0,0,0,0.0167,0.0394,0 +0.333,0.682,0.119,0.208,0.208,0,0,0,0,0,0.233,0,-0.583 +1,0.98,0.399,0.674,0.674,0,0,0,0,0,0,0,1 +1,1,0.537,0.868,0.868,0.424,0.517,0,0,0,0,0,1 +1,0.98,0.752,0.98,0.98,0.658,0.533,0,0,0,0,0,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0.5,0,1 +1,0.863,0.88,0.727,0.727,0.401,0.517,0,0,0,0,0,1 +1,0.636,0.188,0.246,0.246,0.518,0.267,0,0,0,0,0,1 +1,0.616,0.0874,0.116,0.116,0.356,0,0,0,0,0,0,1 +1,0.61,0.0421,0.0743,0.0743,0.208,0,0,0,0,0,0,1 +1,0.61,0.0259,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.61,0.0183,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.61,0.0165,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.019,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.517,0.363,-0.883 +0.667,0.723,0.0735,0.313,0.313,0,0,0,0,0,0.233,0,0 +0.667,0.736,0.0889,0.33,0.33,0,0,0,0,0,0,0.0788,0 +0.667,0.736,0.104,0.337,0.337,0,0,0,0,0,0,0.0394,0 +0.667,0.736,0.116,0.328,0.328,0,0,0,0,0,0,0.118,0 +0.667,0.736,0.128,0.316,0.316,0,0,0,0,0,0,0.0394,0 +0.667,0.736,0.135,0.307,0.307,0,0,0,0,0,0,0.118,0 +0.667,0.736,0.152,0.305,0.305,0,0,0,0,0,0,0.0394,0 +0.667,0.736,0.161,0.307,0.307,0.227,0.267,0,0,0,0,0.0394,0 +0.333,0.662,0.0976,0.186,0.186,0.258,0.25,0,0,0,0,0.158,0 +0.333,0.682,0.119,0.208,0.208,0,0,0,0,0,0.25,0.158,-0.883 +0.333,0.701,0.144,0.258,0.258,0,0,0,0,0,0,0.0788,-1 +0.667,0.854,0.364,0.595,0.595,0,0,0,0,0,0,0.0394,1 +1,0.98,0.752,0.98,0.98,0,0,0,0,0,0,0,1 +1,0.941,0.929,0.913,0.913,0,0,0,0,0,0,0.0788,1 +1,0.863,0.88,0.727,0.727,0,0,0,0,0,0,0,1 +1,0.636,0.188,0.246,0.246,0,0,0,0,0,0,0,1 +1,0.616,0.0874,0.116,0.116,0.133,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0186,0.051,0.051,0,0,0,0,0,0,0.474,1 +1,0.559,0.0314,0.114,0.114,0,0,0,0,0,0.233,0.227,1 +0.667,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.24,1 +0.667,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0.257,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0.338,0.246,0.25,0,0.0394,-0.25 +0.333,0.591,0.0527,0.185,0.185,0,0,0.567,0,0,0,0.118,-0.733 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.0394,-0.483 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0.483,0.0394,-0.5 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0,0.158,1 +0.667,0.704,0.232,0.395,0.395,0.48,0.567,0,0,0,0,0.0394,1 +0.667,0.714,0.31,0.507,0.507,0.665,0.7,0,0,0,0,0.354,1 +0.667,0.704,0.432,0.613,0.613,0,0,0,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0.0765,1 +1,0.682,0.749,0.807,0.807,0,0,0,0,0,0,0.0956,1 +1,0.6,0.307,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0186,0.051,0.051,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0816,0.0816,0,0,0,0,0,0,0.0898,1 +1,0.58,0.0474,0.245,0.245,0,0,0,0,0,0,0.186,1 +1,0.611,0.0634,0.305,0.305,0,0,0,0,0,0,0.227,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0,0,0,0,0.344,-0.25 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0.0788,-0.8 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0.233,0.118,0 +0.333,0.591,0.0658,0.171,0.171,0.616,0.817,0,0,0,0,0.0394,0 +0.333,0.591,0.073,0.169,0.169,0,0.45,0,0,0,0,0.479,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0,-0.05 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0,0.118,1 +0.667,0.704,0.232,0.395,0.395,0,0,0,0,0,0.233,0.154,1 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0.203,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0.224,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0.289,1 +0.667,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0.317,1 +0.667,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0.464,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0.0391,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.307,1 +1,0.56,0.0281,0.0578,0.0578,0,0,0,0,0,0,0.307,1 +1,0.56,0.0208,0.0495,0.0495,0,0,0,0,0,0,0.422,1 +1,0.56,0.0179,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.586,0.0433,0.177,0.177,0,0,0,0,0,0,0.158,1 +1,0.621,0.109,0.318,0.318,0,0,0,0,0,0,0.294,1 +1,0.621,0.143,0.321,0.321,0,0,0,0,0,0,0.236,1 +0.667,0.591,0.0934,0.181,0.181,0,0,0,0,0,0,0.0788,1 +0.333,0.591,0.101,0.175,0.175,0,0,0,0,0,0,0.0394,1 +0.333,0.591,0.108,0.171,0.171,0.607,0.5,0.11,0.158,0,0,0.407,1 +1,0.651,0.34,0.409,0.409,0.108,0,0.141,0.351,0.517,0.483,0.639,1 +0.667,0.621,0.265,0.29,0.29,0,0,0,0,0,0,0.118,1 +0.667,0.642,0.291,0.298,0.298,0,0,0,0,0,0.15,0.197,1 +0.667,0.673,0.305,0.326,0.326,0.319,0.4,0,0,0,0.0833,0.0394,1 +0.667,0.704,0.315,0.395,0.395,0.29,0.1,0.128,0.158,0,0,0.0788,1 +0.667,0.714,0.371,0.507,0.507,0.702,0.5,0,0.0877,0.517,0,0,1 +1,0.774,0.719,0.895,0.895,0.599,0,0,0,0,0,0,1 +1,0.744,0.845,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.682,0.78,0.807,0.807,0.412,0.65,0,0,0,0,0,1 +1,0.62,0.492,0.5,0.5,0.709,0.617,0,0,0,0,0.158,1 +1,0.569,0.156,0.183,0.183,0.365,0,0,0,0,0,0.118,1 +1,0.56,0.044,0.0743,0.0743,0.59,0,0,0,0,0,0.176,1 +1,0.56,0.0281,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.177,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.417,1 +1,0.586,0.0433,0.177,0.177,0,0,0,0,0,0,0.373,1 +1,0.591,0.0636,0.184,0.184,0,0,0,0,0,0,0.29,1 +1,0.591,0.0803,0.185,0.185,0,0,0,0,0,0,0.0788,1 +1,0.591,0.0934,0.181,0.181,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0.274,0.246,0.167,0.65,0.276,1 +0.667,0.591,0.108,0.171,0.171,0,0,0.164,0,0.867,0.317,0.197,1 +0.667,0.591,0.125,0.169,0.169,0,0,0.436,0,0,0,0.118,1 +0.667,0.621,0.265,0.29,0.29,0,0,0.303,0,0,0,0,1 +0.667,0.642,0.291,0.298,0.298,0,0,0,0,0,0,0.158,1 +0.333,0.617,0.162,0.188,0.188,0,0,0,0,0,0,0,-0.917 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0.331,0,0,0,0,0,0,0.158,0 +0.333,0.622,0.294,0.342,0.342,0,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0.555,0,0,0.272,0.246,0.167,0,0.0394,-0.65 +0.667,0.6,0.334,0.35,0.35,0,0,0.344,0,0.867,0,0,-0.25 +1,0.573,0.224,0.249,0.249,0.124,0,0.136,0,0,0,0,1 +1,0.558,0.0806,0.124,0.124,0,0,0.494,0,0,0,0.0394,1 +1,0.559,0.0314,0.066,0.066,0,0,0.407,0,0,0,0.0394,1 +1,0.56,0.0171,0.0495,0.0495,0,0,0.404,0,0,0,0.118,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0.427,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.571,0.0316,0.147,0.147,0,0,0,0,0,0.233,0,1 +0.667,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0,1 +0.667,0.591,0.0462,0.184,0.184,0,0,0,0,0,0,0.119,1 +0.667,0.621,0.0895,0.321,0.321,0.698,0.5,0,0,0,0,0.409,1 +0.667,0.621,0.0997,0.312,0.312,0.29,0,0,0,0,0,0.283,1 +0.667,0.621,0.11,0.3,0.3,0,0,0,0,0,0,0.467,1 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.354,-0.867 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0.503,0.246,0.25,0,0.0394,0 +0.667,0.642,0.153,0.298,0.298,0,0,0.37,0,0,0,0,0 +0.667,0.673,0.19,0.326,0.326,0,0,0.164,0,0,0.233,0.0394,0 +0.667,0.704,0.232,0.395,0.395,0,0,0,0,0,0,0.0394,-0.867 +0.667,0.714,0.31,0.507,0.507,0,0,0,0,0,0,0.0394,1 +0.667,0.704,0.432,0.613,0.613,0,0,0,0,0,0,0.118,1 +0.667,0.683,0.532,0.635,0.635,0.398,0.25,0,0,0,0,0,1 +0.667,0.642,0.505,0.555,0.555,0.649,0,0,0,0,0,0,1 +1,0.6,0.307,0.35,0.35,0.644,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0171,0.0495,0.0495,0,0,0,0,0,0,0.315,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.299,1 +0.667,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.648,-1 +0.667,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0,-0.6 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.119,0 +0.333,0.591,0.0527,0.185,0.185,0,0,0.106,0.0702,0,0,0.118,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.534,0.175,0.25,0,0,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0.735,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0.388,0,0,0,0,0 +0.333,0.591,0.073,0.169,0.169,0,0,0.592,0,0,0,0.0394,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0.771,0,0,0,0.0788,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0.771,0,0,0,0,-0.6 +0.667,0.673,0.19,0.326,0.326,0,0,0.735,0,0,0,0.0394,-1 +1,0.774,0.34,0.567,0.567,0.206,0.317,0.251,0,0,0,0.118,1 +1,0.79,0.457,0.736,0.736,0.581,0.183,0.523,0,0,0,0.0394,1 +1,0.774,0.64,0.895,0.895,0.651,0,0.529,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0.672,0,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0.511,0,0,0,0,0,0,1 +1,0.581,0.162,0.2,0.2,0.693,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0.248,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0186,0.051,0.051,0,0,0,0,0,0.233,0.0788,1 +1,0.56,0.0236,0.0816,0.0816,0,0,0,0,0,0,0.0394,1 +0.667,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.0948,1 +0.667,0.611,0.0634,0.305,0.305,0,0,0,0,0,0.317,0.602,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0,0,0,0.167,0.342,1 +0.333,0.591,0.0527,0.185,0.185,0.696,0.817,0,0,0,0,0,-1 +0.333,0.591,0.0578,0.181,0.181,0.168,0.717,0,0,0,0,0.0788,-0.35 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0.233,0.118,0 +0.333,0.591,0.0658,0.171,0.171,0.127,0.0667,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.169,0.169,0.682,0.433,0,0,0,0,0.354,0 +0.333,0.591,0.0767,0.17,0.17,0.611,0,0,0,0,0,0.0394,0 +0.333,0.602,0.0846,0.174,0.174,0.677,0,0,0,0,0.0667,0.0788,0 +0.333,0.617,0.103,0.188,0.188,0.0995,0,0.0917,0.0702,0,0.167,0.0788,-0.0833 +0.667,0.704,0.232,0.395,0.395,0,0,0.497,0.175,0.517,0,0.0394,-1 +0.667,0.714,0.31,0.507,0.507,0,0,0.532,0,0,0,0.0788,-0.25 +1,0.774,0.64,0.895,0.895,0,0,0.479,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0,0,0.373,0,0,0,0,1 +1,0.682,0.749,0.807,0.807,0,0,0.22,0,0,0,0.174,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0.196,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.214,1 +1,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.292,1 +1,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.0788,1 +0.667,0.591,0.0527,0.185,0.185,0,0,0,0,0,0.167,0.0394,1 +0.667,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0,1 +0.667,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.236,1 +0.667,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.197,1 +0.667,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +0.667,0.617,0.103,0.188,0.188,0,0,0,0,0,0,0.158,1 +0.667,0.633,0.124,0.222,0.222,0,0,0,0,0,0.0667,0.316,1 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0.417,0.118,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0.233,0.34,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0.355,1 +1,0.682,0.749,0.807,0.807,0,0,0,0,0,0,0.336,1 +1,0.62,0.453,0.5,0.5,0,0,0,0,0,0,0.183,1 +0.667,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,-0.183 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.167 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.56,0.0171,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0394,1 +1,0.58,0.0474,0.245,0.245,0,0,0,0,0,0,0.236,1 +1,0.611,0.0634,0.305,0.305,0,0,0,0,0,0,0.0788,1 +1,0.621,0.0764,0.318,0.318,0.147,0.0667,0,0,0,0,0.0788,1 +1,0.621,0.0895,0.321,0.321,0.723,0.433,0,0,0,0,0.263,1 +1,0.651,0.142,0.443,0.443,0.618,0,0,0,0,0,0.24,-0.5 +0.333,0.591,0.0629,0.175,0.175,0.661,0,0,0,0,0,0.0936,-0.3 +0.333,0.591,0.0658,0.171,0.171,0.25,0,0,0,0,0,0.315,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.0788,0 +0.333,0.602,0.0846,0.174,0.174,0.26,0.25,0,0,0,0,0.0394,-0.8 +1,0.673,0.19,0.326,0.326,0.475,0,0,0,0,0.233,0.0788,1 +1,0.774,0.34,0.567,0.567,0,0,0,0,0,0,0,1 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0.233,0.237,-0.0833 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0.0711,1 +1,0.6,0.307,0.35,0.35,0,0,0,0,0,0,0.132,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.65,0,1 +1,0.571,0.0295,0.147,0.147,0,0,0,0,0,0.0667,0.0394,1 +0.667,0.586,0.0433,0.177,0.177,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.0636,0.184,0.184,0,0,0,0,0,0,0.234,1 +0.667,0.591,0.0803,0.185,0.185,0,0,0,0,0,0.15,0.194,1 +0.333,0.591,0.0934,0.181,0.181,0,0,0,0,0,0.0833,0.0788,1 +0.667,0.621,0.185,0.3,0.3,0,0,0,0,0,0,0.142,1 +0.667,0.621,0.198,0.292,0.292,0,0,0,0,0,0,0.176,1 +0.667,0.621,0.233,0.289,0.289,0,0,0,0,0,0,0.587,1 +0.667,0.621,0.265,0.29,0.29,0,0,0,0,0,0,0.724,1 +0.667,0.642,0.291,0.298,0.298,0,0,0,0,0,0,0.0788,1 +0.667,0.673,0.305,0.326,0.326,0,0,0,0,0,0.15,0.236,1 +0.667,0.704,0.315,0.395,0.395,0,0,0,0,0,0.0833,0.236,-0.25 +0.667,0.714,0.371,0.507,0.507,0,0,0,0,0,0,0,-0.25 +1,0.774,0.719,0.895,0.895,0,0,0,0,0,0,0,1 +1,0.744,0.845,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.682,0.78,0.807,0.807,0,0,0,0,0,0,0.154,1 +1,0.62,0.492,0.5,0.5,0,0,0,0,0,0,0.295,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.364,1 +1,0.56,0.0223,0.0816,0.0816,0,0,0,0,0,0.233,0.138,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +1,0.586,0.0433,0.177,0.177,0,0,0,0,0,0.65,0,1 +1,0.621,0.109,0.318,0.318,0,0,0,0,0,1,0.276,1 +0.667,0.591,0.0803,0.185,0.185,0,0,0,0,0,0.3,0,1 +0.667,0.591,0.0934,0.181,0.181,0,0,0,0,0,0,0,1 +0.667,0.591,0.101,0.175,0.175,0,0,0,0,0,0,0.124,1 +0.667,0.621,0.198,0.292,0.292,0,0,0,0,0,0.233,0.919,1 +0.667,0.621,0.233,0.289,0.289,0,0,0,0,0,0,0.302,1 +0.667,0.621,0.265,0.29,0.29,0,0,0,0,0,0,0.345,1 +0.667,0.642,0.291,0.298,0.298,0,0,0,0,0,0,0.0394,1 +0.667,0.673,0.305,0.326,0.326,0,0,0,0,0,0,0.0394,1 +1,0.774,0.464,0.567,0.567,0,0,0.176,0.158,0,0,0.118,1 +1,0.79,0.547,0.736,0.736,0,0,0.524,0.0877,0.917,0,0,1 +1,0.774,0.719,0.895,0.895,0,0,0.346,0,0.383,0,0.118,1 +1,0.744,0.845,0.928,0.928,0,0,0.529,0,0,0,0,1 +1,0.682,0.78,0.807,0.807,0,0,0.291,0,0,0,0,1 +1,0.6,0.334,0.35,0.35,0,0,0,0,0,0,0.237,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0.154,1 +1,0.559,0.059,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0186,0.051,0.051,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.571,0.0316,0.147,0.147,0.297,0.317,0,0,0,0.817,0,1 +0.667,0.611,0.0634,0.305,0.305,0.515,0.95,0,0,0,1,0.333,-0.25 +0.333,0.591,0.0462,0.184,0.184,0,0,0,0,0,1,0.191,-1 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,1,0.0394,-0.0667 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0.317,0.0394,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.327,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0.233,0,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0,0.394,-0.55 +0.333,0.617,0.103,0.188,0.188,0,0,0,0,0,0,0,-0.75 +0.667,0.704,0.232,0.395,0.395,0,0,0,0,0,0,0.0394,1 +0.667,0.714,0.31,0.507,0.507,0,0,0,0,0,0,0.0394,1 +1,0.774,0.64,0.895,0.895,0.403,0.5,0,0,0,0,0.343,1 +1,0.744,0.791,0.928,0.928,0.518,0,0,0,0,0,0.36,1 +1,0.682,0.749,0.807,0.807,0,0,0,0,0,0,0.211,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.308,1 +1,0.56,0.0236,0.0816,0.0816,0,0,0,0,0,0,0.0671,1 +1,0.589,0.0632,0.342,0.342,0,0,0,0,0,0,0.386,1 +0.667,0.611,0.0634,0.305,0.305,0,0,0,0,0,0,0.118,-0.75 +0.333,0.591,0.0462,0.184,0.184,0.667,0.5,0,0,0,0,0.0788,-0.667 +0.333,0.591,0.0527,0.185,0.185,0.754,0,0,0,0,0,0.197,0 +0.333,0.591,0.0578,0.181,0.181,0.761,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.175,0.106,0,0,0,0,0,0.158,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0.233,0.236,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.4 +0.333,0.617,0.103,0.188,0.188,0,0,0,0,0,0,0.158,-1 +0.667,0.704,0.232,0.395,0.395,0,0,0,0,0,0,0.231,1 +1,0.79,0.457,0.736,0.736,0.126,0.0667,0,0,0,0,0.793,1 +1,0.774,0.64,0.895,0.895,0.513,0.183,0.239,0.246,0.333,0,0.158,1 +1,0.744,0.791,0.928,0.928,0,0,0.557,0,0.183,0,0,1 +1,0.602,0.26,0.302,0.302,0,0,0.462,0,0,0,0,1 +1,0.581,0.162,0.2,0.2,0,0,0.255,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.56,0.0236,0.0816,0.0816,0,0,0,0,0,0,0.347,1 +1,0.589,0.0632,0.342,0.342,0,0,0,0,0,0,0.182,1 +0.333,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0.153,-1 +0.333,0.591,0.0462,0.184,0.184,0,0,0,0,0,0,0,-0.467 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0.317,0.276,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0.9,0.158,0 +0.333,0.591,0.0658,0.171,0.171,0.237,0.317,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.169,0.169,0.731,0.183,0.211,0.246,0.0833,0,0.118,0 +0.333,0.591,0.0767,0.17,0.17,0.286,0,0.726,0,0.683,0,0.118,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0.489,0,0,0,0,-0.45 +0.333,0.617,0.103,0.188,0.188,0,0,0,0,0,0,0.482,-1 +1,0.704,0.232,0.395,0.395,0,0,0,0,0,0,0,1 +0.667,0.638,0.163,0.278,0.278,0.29,0.25,0,0,0,0,0.153,1 +1,0.774,0.64,0.895,0.895,0.942,0,0,0,0,0,0.118,1 +1,0.744,0.791,0.928,0.928,0.543,0,0.323,0.246,0.0833,0,0.126,1 +1,0.682,0.749,0.807,0.807,0,0,0.106,0,0.167,0,0.398,1 +1,0.6,0.307,0.35,0.35,0,0,0,0,0,0,0.249,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.33,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0893,1 +1,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.206,1 +0.333,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0.158,-0.733 +0.333,0.591,0.0462,0.184,0.184,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0578,0.181,0.181,0,0,0.106,0.0702,0,0,0.158,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0.515,0.175,0.25,0,0.118,-0.717 +0.667,0.621,0.116,0.292,0.292,0,0,0.176,0,0,0,0.0788,1 +0.667,0.621,0.13,0.289,0.289,0,0,0,0,0,0,0.262,1 +0.667,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.817,0.197,1 +0.667,0.617,0.103,0.188,0.188,0,0,0,0,0,1,0.118,1 +0.667,0.633,0.124,0.222,0.222,0,0,0,0,0,1,0.0707,1 +0.333,0.638,0.163,0.278,0.278,0,0,0,0,0,1,0.0353,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,1,0.118,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0.3,0,1 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.136,1 +1,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.23,1 +1,0.586,0.0396,0.177,0.177,0,0,0,0,0,0.717,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.45 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.394,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.473,0 +0.667,0.642,0.153,0.298,0.298,0,0,0,0,0,0,0.197,0 +0,0.562,0.0159,0.0495,0.0495,0.742,0.817,0,0,0,0,0.276,-0.45 +0.333,0.633,0.124,0.222,0.222,0.461,0.2,0,0,0,0,0.174,-1 +0.667,0.714,0.31,0.507,0.507,0,0,0,0,0,0,0.384,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0.164,0.0667,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0.625,0.433,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.591,0.0636,0.184,0.184,0,0,0,0,0,0,0.197,1 +1,0.591,0.0803,0.185,0.185,0,0,0,0,0,0,0.0394,1 +0.667,0.591,0.0934,0.181,0.181,0,0,0,0,0,0,0.0394,1 +0.667,0.591,0.101,0.175,0.175,0,0,0,0,0,0,0.354,1 +0.667,0.591,0.108,0.171,0.171,0,0,0,0,0,0,0.158,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +0.667,0.591,0.141,0.17,0.17,0,0,0,0,0,0,0,1 +0.667,0.642,0.291,0.298,0.298,0,0,0,0,0,0,0.118,1 +0.667,0.673,0.305,0.326,0.326,0,0,0,0,0,0,0,1 +1,0.704,0.315,0.395,0.395,0,0,0,0,0,0,0.374,1 +1,0.714,0.371,0.507,0.507,0,0,0,0,0,0.233,0.0788,1 +1,0.774,0.719,0.895,0.895,0,0,0,0,0,0,0,1 +1,0.744,0.845,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.682,0.78,0.807,0.807,0,0,0,0,0,0,0,1 +1,0.6,0.334,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +0.333,0.591,0.0803,0.185,0.185,0,0,0,0,0,0,0.197,1 +0.667,0.621,0.169,0.312,0.312,0.792,0.5,0,0,0,0,0.158,1 +0.333,0.591,0.101,0.175,0.175,0.346,0,0,0,0,0,0,1 +0.333,0.591,0.108,0.171,0.171,0,0,0,0,0,0,0.158,1 +0.667,0.621,0.233,0.289,0.289,0,0,0,0,0,0,0.158,1 +0.333,0.591,0.141,0.17,0.17,0,0,0,0,0,0,0.197,1 +0.333,0.602,0.154,0.174,0.174,0,0,0,0,0,0,0.118,1 +0.667,0.673,0.305,0.326,0.326,0,0,0,0,0,0,0.0394,1 +1,0.774,0.464,0.567,0.567,0,0,0,0,0,0,0.475,1 +1,0.79,0.547,0.736,0.736,0,0,0,0,0,0.233,0.522,1 +0.667,0.633,0.252,0.331,0.331,0,0,0,0,0,0,0.0394,1 +0.667,0.622,0.294,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.642,0.526,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.6,0.334,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.565,0.0869,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.158,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.074,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.441,1 +1,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0.17,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0,0,0,0,0.452,-0.25 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0,-0.0833 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.317 +0.667,0.591,0.0629,0.175,0.175,0,0,0,0,0,0.0667,0.277,-0.183 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0.167,0.118,-0.183 +0.667,0.621,0.13,0.289,0.289,0,0,0,0,0,0,0.315,1 +0.667,0.621,0.137,0.29,0.29,0,0,0,0,0,0,0.197,1 +0.667,0.642,0.153,0.298,0.298,0,0,0,0,0,0,0.0788,1 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0,0,1 +0.667,0.704,0.232,0.395,0.395,0,0,0.635,0.246,0.25,0,0.0394,1 +1,0.79,0.457,0.736,0.736,0.679,0.25,0.593,0,0,0,0.118,1 +1,0.774,0.64,0.895,0.895,0.518,0,0.101,0,0,0,0.375,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.419,1 +1,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.151,1 +0.667,0.586,0.0396,0.177,0.177,0,0,0,0,0,0.233,0.392,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0,0,0,0,0.207,1 +0.667,0.621,0.0895,0.321,0.321,0,0,0,0,0,0,0.295,1 +0.667,0.621,0.0997,0.312,0.312,0,0,0,0,0,0,0.0394,-0.25 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.0394,-0.4 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.0394,-0.4 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0.233,0,-0.25 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0,0.0788,1 +1,0.774,0.34,0.567,0.567,0,0,0,0,0,0,0.236,1 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0.236,1 +0.667,0.704,0.432,0.613,0.613,0.15,0.0667,0,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0.808,0.433,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0.18,0,0,0,0,0,0.187,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.313,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.58,0.0474,0.245,0.245,0,0,0,0,0,0,0.239,1 +1,0.611,0.0634,0.305,0.305,0,0,0,0,0,0.817,0.157,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0,0,0,0.15,0.596,1 +0.667,0.621,0.0895,0.321,0.321,0,0,0,0,0,0,0.197,1 +0.667,0.621,0.0997,0.312,0.312,0,0,0,0,0,0,0,1 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.0394,-0.3 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.276,-0.283 +0.667,0.621,0.13,0.289,0.289,0,0,0,0,0,0,0.197,-0.25 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0,-0.15 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0,0.236,0 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0,0.208,-0.4 +1,0.774,0.34,0.567,0.567,0,0,0,0,0,0,0.155,1 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0.118,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0.118,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.682,0.749,0.807,0.807,0,0,0,0,0,0,0,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +1,0.56,0.0186,0.051,0.051,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0816,0.0816,0,0,0,0,0,0,0.354,-0.217 +0.667,0.58,0.0474,0.245,0.245,0,0,0,0,0,0,0.308,-0.217 +1,0.635,0.0871,0.433,0.433,0,0,0,0,0,0,0.538,1 +0.667,0.621,0.0764,0.318,0.318,0,0,0,0,0,0,0.197,1 +0.667,0.621,0.0895,0.321,0.321,0,0,0,0,0,0,0.0788,-0.75 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0.0788,-0.483 +0.333,0.591,0.0629,0.175,0.175,0,0,0.554,0.246,0.25,0,0.118,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0.563,0,0,0,0.276,0 +0.333,0.591,0.073,0.169,0.169,0,0,0.382,0,0,0,0.0788,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0.61,0,0,0,0.315,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0.233,0.0394,0 +0.333,0.617,0.103,0.188,0.188,0,0,0,0,0,0,0,-0.483 +0.333,0.633,0.124,0.222,0.222,0,0,0,0,0,0.233,0.158,-0.75 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0.0394,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.442,1 +1,0.611,0.0634,0.305,0.305,0,0,0,0,0,0.233,0.185,1 +0.667,0.591,0.0462,0.184,0.184,0,0,0.216,0.246,0.0833,0,0.65,1 +0.667,0.621,0.0895,0.321,0.321,0,0,0.365,0,1,0,0.464,1 +0.667,0.621,0.0997,0.312,0.312,0,0,0.471,0,1,0,0.605,1 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0.25,0,0.0924,1 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.638,1 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.358,1 +0.667,0.621,0.137,0.29,0.29,0,0,0.00917,0.0702,0,0.233,0.234,1 +0.667,0.642,0.153,0.298,0.298,0,0,0.375,0.175,0.25,0,0.0394,1 +1,0.728,0.277,0.464,0.464,0,0,0.234,0,0,0,0.197,1 +1,0.774,0.34,0.567,0.567,0,0,0.424,0,0,0,0.0394,1 +1,0.79,0.457,0.736,0.736,0,0,0.636,0,0,0,0.231,1 +1,0.774,0.64,0.895,0.895,0,0,0.0214,0,0,0,0.0394,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.6,0.307,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.467,1 +1,0.56,0.0223,0.0816,0.0816,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.483,0.0394,1 +1,0.621,0.185,0.3,0.3,0,0,0,0,0,0,0.156,1 +1,0.651,0.288,0.413,0.413,0,0,0,0,0,0,0.332,1 +1,0.651,0.34,0.409,0.409,0,0,0,0,0,0,0.487,1 +1,0.651,0.388,0.41,0.41,0,0,0,0,0,0.233,0.445,1 +1,0.682,0.427,0.422,0.422,0,0,0,0,0,0,0.389,1 +1,0.728,0.449,0.464,0.464,0,0,0,0,0,0,0.272,1 +1,0.774,0.464,0.567,0.567,0,0,0,0,0,0,0.118,1 +1,0.79,0.547,0.736,0.736,0,0,0,0,0,0,0.0788,1 +1,0.774,0.719,0.895,0.895,0,0,0,0,0,0,0.113,1 +1,0.744,0.845,0.928,0.928,0,0,0,0,0,0,0.175,1 +1,0.682,0.78,0.807,0.807,0,0,0,0,0,0,0.19,1 +1,0.6,0.334,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.559,0.0699,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.559,0.038,0.066,0.066,0,0,0,0,0,0,0,1 +1,0.559,0.0235,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.559,0.0177,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.591,0.0636,0.184,0.184,0,0,0,0,0,0,0,-0.117 +0.667,0.591,0.0803,0.185,0.185,0,0,0,0,0,0,0.219,-0.1 +1,0.651,0.244,0.443,0.443,0,0,0,0,0,0,0.166,1 +1,0.651,0.268,0.426,0.426,0,0,0,0,0,0.233,0.24,1 +1,0.651,0.288,0.413,0.413,0,0,0,0,0,0,0.197,1 +0.667,0.621,0.233,0.289,0.289,0,0,0,0,0,0,0.118,1 +0.667,0.621,0.265,0.29,0.29,0,0,0.197,0.246,0.167,0,0.224,1 +0.667,0.642,0.291,0.298,0.298,0,0,0.564,0,0.35,0,0.588,1 +0.667,0.673,0.305,0.326,0.326,0,0,0.318,0,0,0,0.249,1 +0.667,0.704,0.315,0.395,0.395,0,0,0.569,0,0,0,0.197,1 +0.333,0.638,0.194,0.278,0.278,0,0,0.679,0,0,0,0.114,1 +0.667,0.704,0.485,0.613,0.613,0,0,0.372,0,0,0,0,1 +0.667,0.622,0.294,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.642,0.526,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.62,0.492,0.5,0.5,0,0,0,0,0,0,0,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.206,1 +1,0.56,0.0236,0.0816,0.0816,0,0,0,0,0,0.317,0.352,1 +1,0.589,0.0632,0.342,0.342,0,0,0,0,0,0.167,0.452,1 +0.667,0.611,0.0634,0.305,0.305,0,0,0,0,0,0,0.244,-0.25 +0.333,0.591,0.0462,0.184,0.184,0,0,0,0,0,0,0.21,-0.483 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0.451,0 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0.716,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.216,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0.233,0.79,-0.717 +0.667,0.621,0.13,0.289,0.289,0,0,0,0,0,0,0.115,-0.333 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0,0.0394,-0.317 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0,0.0394,1 +0.667,0.704,0.232,0.395,0.395,0,0,0,0,0,0,0,1 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0.0788,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0.0788,1 +1,0.744,0.791,0.928,0.928,0.36,0.567,0,0,0,0,0.0788,1 +1,0.642,0.505,0.555,0.555,0.41,0.2,0,0,0,0,0,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0.0706,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0.0671,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.33,1 +1,0.58,0.0474,0.245,0.245,0,0,0,0,0,0,0.152,1 +1,0.635,0.0871,0.433,0.433,0,0,0.502,0.246,0.25,0,0.214,-0.5 +0.667,0.621,0.0764,0.318,0.318,0,0,0.358,0,0,0,0,-0.917 +0.667,0.621,0.0895,0.321,0.321,0,0,0.849,0,0,0,0.0788,0 +0.667,0.621,0.0997,0.312,0.312,0,0,0.676,0,0,0,0.451,0 +0.667,0.621,0.11,0.3,0.3,0,0,0.41,0,0,0,0.0394,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0.593,0,0,0,0.236,0 +0.333,0.591,0.073,0.169,0.169,0,0,0.353,0,0,0,0.118,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0.618,0,0,0,0.197,0 +0.667,0.642,0.153,0.298,0.298,0,0,0.514,0,0,0,0.158,-0.167 +0.667,0.673,0.19,0.326,0.326,0,0,0.509,0,0,0.0667,0.0394,-1 +0.667,0.704,0.232,0.395,0.395,0,0,0.633,0,0,0.167,0.158,-0.25 +1,0.79,0.457,0.736,0.736,0,0,0.474,0,0,0,0.0394,1 +1,0.774,0.64,0.895,0.895,0,0,0,0,0,0,0.182,1 +1,0.744,0.791,0.928,0.928,0,0,0,0,0,0,0.167,1 +1,0.682,0.749,0.807,0.807,0,0,0,0,0,0,0.291,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0.236,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0358,-0.933 +0.667,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.373,0 +0.667,0.586,0.0396,0.177,0.177,0,0,0,0,0,0,0.361,0 +0.333,0.591,0.0462,0.184,0.184,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0.315,0 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0.0667,0.276,-0.667 +0.667,0.673,0.19,0.326,0.326,0,0,0,0,0,0.167,0.354,-1 +0.667,0.704,0.232,0.395,0.395,0,0,0,0,0,0,0.118,-0.25 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.895,0.895,0.597,0.817,0,0,0,0,0,1 +1,0.744,0.791,0.928,0.928,0.239,0.45,0,0,0,0,0,1 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.17,1 +1,0.559,0.0213,0.0525,0.0525,0,0,0,0,0,0,0.251,1 +1,0.559,0.0314,0.114,0.114,0,0,0,0,0,0.317,0.529,1 +1,0.58,0.0474,0.245,0.245,0,0,0,0,0,0.65,0.506,1 +0.667,0.611,0.0634,0.305,0.305,0,0,0,0,0,0,0.247,-1 +0.333,0.591,0.0462,0.184,0.184,0,0,0,0,0,0,0.0995,-0.483 +0.333,0.591,0.0527,0.185,0.185,0,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.181,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0629,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.0788,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0,0.0394,-0.233 +0.333,0.617,0.103,0.188,0.188,0,0,0,0,0,0.0667,0.158,-1 +0.667,0.704,0.232,0.395,0.395,0.387,0.5,0,0,0,0.167,0.0394,-0.25 +0.667,0.714,0.31,0.507,0.507,0.644,0,0,0,0,0,0.303,1 +1,0.774,0.64,0.895,0.895,0.839,0,0,0,0,0,0,1 +1,0.683,0.532,0.635,0.635,0.653,0,0,0,0,0,0.0394,1 +1,0.642,0.505,0.555,0.555,0.567,0,0,0,0,0,0.214,1 +1,0.581,0.162,0.2,0.2,0,0,0,0,0,0,0.0855,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +0.667,0.571,0.0316,0.147,0.147,0,0,0,0,0,0,0.0788,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.0788,0 +0.333,0.591,0.0658,0.171,0.171,0,0,0,0,0,0.167,0.394,0 +0.333,0.591,0.073,0.169,0.169,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0767,0.17,0.17,0,0,0,0,0,0,0.276,0 +0.333,0.602,0.0846,0.174,0.174,0,0,0,0,0,0,0.0394,-0.1 +0.333,0.617,0.103,0.188,0.188,0,0,0,0,0,0,0.158,-1 +0.333,0.633,0.124,0.222,0.222,0,0,0,0,0,0.233,0.0394,-0.5 +1,0.79,0.457,0.736,0.736,0,0,0,0,0,0,0.0788,1 +0.667,0.704,0.432,0.613,0.613,0,0,0,0,0,0,0,-0.133 +0.667,0.683,0.532,0.635,0.635,0,0,0,0,0,0.233,0,1 +1,0.642,0.505,0.555,0.555,0,0,0,0,0,0,0.118,1 +1,0.6,0.307,0.35,0.35,0,0,0,0,0,0,0.0394,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0796,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.326,1 +1,0.621,0.109,0.318,0.318,0,0,0,0,0,0,0.202,1 +1,0.621,0.143,0.321,0.321,0,0,0,0,0,0,0.176,1 +0.667,0.621,0.169,0.312,0.312,0,0,0,0,0,0,0.363,1 +0.667,0.621,0.185,0.3,0.3,0,0,0,0,0,0,0.593,1 +1,0.651,0.288,0.413,0.413,0,0,0,0,0,0,0.118,1 +1,0.621,0.233,0.289,0.289,0,0,0,0,0,0,0.0394,1 +1,0.621,0.265,0.29,0.29,0,0,0,0,0,0.717,0.118,1 +1,0.602,0.154,0.174,0.174,0,0,0,0,0,0,0.197,1 +1,0.617,0.162,0.188,0.188,0,0,0,0,0,0,0,1 +1,0.704,0.315,0.395,0.395,0,0,0,0,0,0,0.197,1 +1,0.714,0.371,0.507,0.507,0,0,0,0,0,0,0,1 +1,0.704,0.485,0.613,0.613,0,0,0,0,0,0,0.461,1 +1,0.744,0.845,0.928,0.928,0,0,0,0,0,0,0,1 +1,0.682,0.78,0.807,0.807,0,0,0,0,0,0,0,1 +1,0.62,0.492,0.5,0.5,0,0,0,0,0,0,0,1 +1,0.573,0.224,0.249,0.249,0,0,0,0,0,0,0.119,1 +1,0.557,0.0705,0.099,0.099,0,0,0,0,0,0,0.106,1 +1,0.56,0.0282,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.245,1 +1,0.585,0.0436,0.172,0.172,0,0,0,0,0,0,0.405,1 +1,0.59,0.0641,0.175,0.175,0,0,0,0,0,0,0.14,1 +1,0.619,0.144,0.299,0.299,0,0,0,0,0,0.233,0.196,1 +1,0.648,0.246,0.411,0.411,0,0,0,0,0,0,0.0788,1 +0.667,0.619,0.186,0.279,0.279,0,0,0,0,0,0,0.182,1 +0.333,0.59,0.109,0.16,0.16,0,0,0,0,0,0,0.271,1 +0.333,0.59,0.126,0.159,0.159,0,0,0,0,0,0,0.354,1 +0.333,0.59,0.142,0.159,0.159,0,0,0,0,0,0,0.118,1 +0.667,0.64,0.293,0.269,0.269,0,0,0,0,0,0,0.0788,1 +0.333,0.616,0.163,0.162,0.162,0,0,0,0,0,0,0.184,1 +0.667,0.701,0.318,0.291,0.291,0,0,0,0,0,0,0.36,1 +0.667,0.712,0.374,0.339,0.339,0,0,0,0,0,0,0.0788,-0.7 +0.333,0.631,0.254,0.239,0.239,0,0,0,0,0,0,0.0788,0 +0.333,0.621,0.296,0.294,0.294,0,0,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0.326,0,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0.232,0,0,0,0,0,0,0.27,-0.683 +1,0.568,0.157,0.183,0.183,0,0,0,0,0,0,0.0957,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,1,0.118,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0.817,0.475,-0.25 +0.667,0.609,0.0639,0.295,0.295,0,0,0,0,0,0,0.267,-0.983 +0.333,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.28,0 +0.333,0.59,0.0582,0.17,0.17,0.267,0.317,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.164,0.653,0.917,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.16,0.382,0.567,0,0,0,0,0.118,0 +0.333,0.59,0.0735,0.159,0.159,0.724,0.667,0,0,0,0,0.0788,0 +0.333,0.59,0.0772,0.159,0.159,0.68,0,0,0,0,0,0.236,-0.983 +0.667,0.64,0.155,0.269,0.269,0.537,0,0,0,0,0,0.236,-0.25 +1,0.671,0.191,0.274,0.274,0.672,0,0,0,0,0.0667,0.158,1 +1,0.701,0.234,0.291,0.291,0.131,0,0,0,0,0.867,0,1 +1,0.712,0.313,0.339,0.339,0,0,0,0,0,0,0,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0.0394,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0.0757,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0.113,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0377,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.465,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.65,1 +1,0.633,0.0879,0.417,0.417,0,0,0,0,0,0,0.147,1 +0.333,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.229,1 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.464,1 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.24,-0.75 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,-0.45 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.276,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.298,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.293,0 +0.667,0.64,0.155,0.269,0.269,0,0,0,0,0,0.317,0.803,0 +0.333,0.616,0.104,0.162,0.162,0,0,0,0,0,0.617,0.0394,0 +0.333,0.631,0.125,0.17,0.17,0,0,0,0,0,0,0,-0.7 +0.333,0.637,0.164,0.194,0.194,0,0,0,0,0,0,0.255,-0.5 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0.158,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.158,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.553,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.172,1 +1,0.633,0.0879,0.417,0.417,0,0,0,0,0,0,0.0394,-0.5 +0.333,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.118,-0.95 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.236,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.118,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.163,0 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0,0.266,-0.95 +0.667,0.701,0.234,0.291,0.291,0,0,0,0,0,0,0.231,-0.5 +1,0.787,0.461,0.484,0.484,0,0,0,0,0,0,0.0788,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0.0788,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.187,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.25,1 +0.667,0.57,0.0318,0.143,0.143,0,0,0,0,0,0,0.492,-1 +0.667,0.609,0.0639,0.295,0.295,0,0,0,0,0,0,0.543,-0.817 +0.667,0.619,0.077,0.301,0.301,0,0,0,0,0,0,0.191,0 +0.667,0.619,0.0902,0.299,0.299,0,0,0,0,0,0,0.151,0 +0.667,0.619,0.1,0.291,0.291,0,0,0,0,0,0,0.305,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.616,0.104,0.162,0.162,0,0,0,0,0,0,0.315,-0.3 +0.333,0.631,0.125,0.17,0.17,0,0,0,0,0,0,0.315,-1 +0.333,0.637,0.164,0.194,0.194,0,0,0,0,0,0.0667,0.182,-0.5 +0.667,0.701,0.436,0.429,0.429,0,0,0,0,0,0.167,0.118,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.0917,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0.0978,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0.194,1 +1,0.56,0.0377,0.0743,0.0743,0,0,0,0,0,0,0.145,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.56,0.0186,0.0506,0.0506,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.157,-0.0833 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.391,1 +0.667,0.619,0.0902,0.299,0.299,0,0,0,0,0,0,0.272,1 +0.667,0.619,0.1,0.291,0.291,0,0,0,0,0,0,0.206,-0.25 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0,-0.433 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.158,-0.183 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0.233,0.236,-0.5 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0,0.236,1 +1,0.771,0.343,0.412,0.412,0,0,0,0,0,0,0,1 +1,0.787,0.461,0.484,0.484,0.569,0.233,0,0,0,0,0.199,1 +1,0.771,0.646,0.619,0.619,0.482,0,0,0,0,0.233,0.307,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.221,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.56,0.0179,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.619,0.11,0.301,0.301,0,0,0.217,0.123,0,0,0.118,1 +1,0.619,0.144,0.299,0.299,0,0,0.612,0.14,0.483,0,0.197,1 +1,0.619,0.17,0.291,0.291,0,0,0.39,0,0,0,0.0394,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.3 +0.333,0.59,0.109,0.16,0.16,0.597,0.483,0.22,0.263,0.117,0,0.433,-0.283 +1,0.619,0.234,0.269,0.269,0,0,0.529,0,0.367,0,0.0394,1 +1,0.619,0.267,0.268,0.268,0,0,0.323,0,0,0,0.0394,1 +1,0.64,0.293,0.269,0.269,0,0,0,0,0,0,0.118,1 +0.667,0.671,0.308,0.274,0.274,0,0,0,0,0,0,0.118,1 +1,0.771,0.468,0.412,0.412,0.347,0.367,0,0,0,0,0.118,1 +1,0.787,0.551,0.484,0.484,0.658,0.867,0,0,0,0,0.25,1 +1,0.771,0.725,0.619,0.619,0.781,0,0,0,0,0,0.319,1 +1,0.741,0.852,0.783,0.783,0.055,0,0,0,0,0,0.0394,1 +1,0.679,0.786,0.88,0.88,0,0,0,0,0,0,0.0394,1 +1,0.599,0.337,0.415,0.415,0,0,0,0,0,0,0.2,1 +1,0.565,0.0875,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0443,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.359,1 +1,0.59,0.0641,0.175,0.175,0,0,0,0,0,0,0.158,1 +1,0.619,0.144,0.299,0.299,0,0,0,0,0,0,0.249,1 +1,0.619,0.17,0.291,0.291,0,0,0,0,0,0,0.432,1 +0.667,0.59,0.102,0.164,0.164,0,0,0,0,0,0.117,0.197,1 +0.667,0.59,0.109,0.16,0.16,0,0,0,0,0,0.117,0,1 +1,0.619,0.234,0.269,0.269,0,0,0,0,0,0,0.3,1 +0.667,0.59,0.142,0.159,0.159,0,0,0,0,0,0,0.315,1 +0.667,0.64,0.293,0.269,0.269,0,0,0,0,0,0,0.257,1 +0.333,0.616,0.163,0.162,0.162,0,0,0,0,0,0.117,0.499,1 +0.667,0.701,0.318,0.291,0.291,0,0,0,0,0,0.117,0.276,1 +1,0.787,0.551,0.484,0.484,0,0,0,0,0,0,0,1 +1,0.771,0.725,0.619,0.619,0,0,0,0,0,0,0,1 +1,0.741,0.852,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.679,0.786,0.88,0.88,0,0,0,0,0,0,0,1 +1,0.617,0.496,0.597,0.597,0,0,0,0,0,0,0.0394,1 +1,0.568,0.157,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.56,0.0377,0.0743,0.0743,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0238,0.0578,0.0578,0,0,0,0,0,0,0.296,1 +1,0.56,0.0172,0.0495,0.0495,0,0,0,0,0,0,0.075,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0,0,0,0,0.143,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.287,1 +1,0.57,0.0318,0.143,0.143,0,0,0,0,0,0,0.135,-0.5 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0,0.0394,-1 +0.333,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0.233,0.0394,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.118,-0.733 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0,0.0757,-0.75 +1,0.771,0.343,0.412,0.412,0,0,0,0,0,0.467,0.33,1 +1,0.787,0.461,0.484,0.484,0,0,0,0,0,0,0.2,1 +1,0.771,0.646,0.619,0.619,0.143,0.0667,0,0,0,0,0.551,1 +1,0.741,0.797,0.783,0.783,0.766,0.417,0.379,0.263,0.233,0,0.465,1 +1,0.679,0.756,0.88,0.88,0.754,0,0,0,0,0,0,1 +1,0.599,0.31,0.415,0.415,0.211,0,0,0,0,0,0,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.206,1 +1,0.56,0.0186,0.0506,0.0506,0,0,0,0,0,0,0.313,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.56,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.302,1 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0,0.197,1 +0.667,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.0348,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.45 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0,-0.933 +0.667,0.601,0.0853,0.159,0.159,0,0,0,0,0,0.233,0.274,1 +0.667,0.616,0.104,0.162,0.162,0,0,0,0,0,0.233,0.0394,1 +1,0.701,0.234,0.291,0.291,0,0,0,0,0,0,0.0788,1 +0.667,0.712,0.313,0.339,0.339,0,0,0,0,0,0,0.0394,-0.283 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.64,0.509,0.603,0.603,0,0,0,0,0,0,0.0701,1 +1,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0.128,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.21,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.371,1 +1,0.609,0.0639,0.295,0.295,0,0,0,0,0,0,0,-0.75 +0.667,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.168,-0.7 +0.667,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.385,0 +0.667,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.0913,0 +0.667,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.254,0 +0.667,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.0788,0 +0.667,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.289,0 +0.667,0.619,0.139,0.268,0.268,0,0,0,0,0,0,0.118,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.0788,-0.2 +0.333,0.616,0.104,0.162,0.162,0,0,0,0,0,0,0.19,-1 +0.333,0.631,0.125,0.17,0.17,0,0,0,0,0,0,0.401,-0.25 +1,0.787,0.461,0.484,0.484,0,0,0,0,0,0,0,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0.118,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.0394,1 +1,0.601,0.262,0.326,0.326,0,0,0,0,0,0,0.158,1 +1,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0186,0.0506,0.0506,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.291,1 +0.667,0.57,0.0318,0.143,0.143,0,0,0,0,0,0,0.428,-1 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0,0.0394,-0.417 +0.333,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.236,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0,-0.667 +0.333,0.601,0.0853,0.159,0.159,0.527,0.483,0,0,0,0,0.0788,-0.75 +0.667,0.671,0.191,0.274,0.274,0.277,0,0,0,0,0,0.0394,1 +0.333,0.631,0.125,0.17,0.17,0.435,0.483,0,0,0,0,0,1 +0.667,0.712,0.313,0.339,0.339,0.319,0,0,0,0,0.317,0.116,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0.15,0.15,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.17,1 +1,0.64,0.509,0.603,0.603,0,0,0,0,0,0,0.0394,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0394,1 +1,0.557,0.0214,0.0518,0.0518,0,0,0,0,0,0,0.0788,1 +1,0.557,0.0316,0.11,0.11,0,0,0,0,0,0,0.289,1 +0.667,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.233,1 +0.667,0.609,0.0639,0.295,0.295,0,0,0,0,0,0.233,0.235,1 +0.667,0.619,0.077,0.301,0.301,0,0,0,0,0,0,0.281,-0.5 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.0394,-0.667 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.473,0 +0.667,0.64,0.155,0.269,0.269,0,0,0,0,0,0.233,0.315,-0.65 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0,0,-0.5 +1,0.771,0.343,0.412,0.412,0,0,0,0,0,0.233,0.158,1 +1,0.787,0.461,0.484,0.484,0,0,0,0,0,0,0.118,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.0825,1 +1,0.64,0.509,0.603,0.603,0,0,0,0,0,0,0,1 +0.667,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0.0394,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.562,1 +0.667,0.585,0.0436,0.172,0.172,0,0,0,0,0,0.117,0.29,1 +0.667,0.59,0.0641,0.175,0.175,0.229,0.367,0,0,0,0.117,0.0394,1 +0.667,0.619,0.144,0.299,0.299,0.805,0.117,0,0,0,0,0.118,1 +0.667,0.619,0.17,0.291,0.291,0.571,0,0,0,0,0,0.315,1 +0.333,0.59,0.102,0.164,0.164,0.616,0,0,0,0,0,0,1 +0.333,0.59,0.109,0.16,0.16,0.368,0,0,0,0,0,0.197,1 +0.667,0.619,0.234,0.269,0.269,0,0,0,0,0,0,0,1 +0.333,0.59,0.142,0.159,0.159,0,0,0,0,0,0,0.118,-0.583 +0.667,0.64,0.293,0.269,0.269,0,0,0,0,0,0,0.0394,0 +0.667,0.671,0.308,0.274,0.274,0,0,0,0,0,0.233,0.118,0 +0.667,0.701,0.318,0.291,0.291,0,0,0,0,0,0,0.197,-0.583 +1,0.787,0.551,0.484,0.484,0,0,0,0,0,0,0.158,1 +1,0.771,0.725,0.619,0.619,0,0,0,0,0,0,0.0394,1 +1,0.741,0.852,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.679,0.786,0.88,0.88,0,0,0,0,0,0,0,1 +1,0.617,0.496,0.597,0.597,0,0,0,0,0,0,0,1 +1,0.571,0.226,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.585,0.0436,0.172,0.172,0,0,0,0,0,0,0.268,1 +1,0.59,0.0641,0.175,0.175,0,0,0,0,0,0.117,0.158,1 +1,0.648,0.206,0.424,0.424,0.168,0.117,0,0,0,0.35,0,1 +1,0.648,0.246,0.411,0.411,0.684,0.867,0,0,0,0,0,-0.25 +0.333,0.59,0.102,0.164,0.164,0.154,0,0,0,0,0,0.118,-0.3 +0.333,0.59,0.109,0.16,0.16,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.126,0.159,0.159,0.297,0.367,0,0,0,0,0.315,-0.0333 +0.333,0.59,0.142,0.159,0.159,0.635,0.117,0,0,0,0,0.118,-0.5 +0.667,0.64,0.293,0.269,0.269,0.48,0,0,0,0,0,0,1 +1,0.725,0.452,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.771,0.468,0.412,0.412,0,0,0,0,0,0.367,0,1 +1,0.787,0.551,0.484,0.484,0,0,0,0,0,0.1,0.0788,1 +1,0.771,0.725,0.619,0.619,0,0,0,0,0,0,0.0788,1 +1,0.741,0.852,0.783,0.783,0,0,0,0,0,0.233,0,1 +1,0.679,0.786,0.88,0.88,0,0,0,0,0,0,0.198,1 +1,0.599,0.337,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.56,0.0186,0.0506,0.0506,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.0788,1 +0.667,0.57,0.0318,0.143,0.143,0,0,0,0,0,0,0,-0.75 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.883 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.0788,-0.133 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0,0.0788,-1 +0.667,0.631,0.125,0.17,0.17,0,0,0.407,0.263,0.567,0,0.0788,-0.5 +1,0.712,0.313,0.339,0.339,0,0,0.459,0,0.417,0,0.0788,1 +1,0.701,0.436,0.429,0.429,0,0,0.728,0,0,0,0,1 +1,0.681,0.537,0.538,0.538,0,0,0.11,0,0,0.233,0,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0,1 +1,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0.0394,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0377,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.56,0.0238,0.0578,0.0578,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0172,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.127,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.0804,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.3 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0788,1 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.276,-0.9 +0.333,0.59,0.0582,0.17,0.17,0,0,0.0887,0.0702,0,0,0,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0.665,0.193,0.233,0,0.0788,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0.136,0,0,0.233,0.0394,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.315,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.153,-0.65 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.31,-0.25 +0.667,0.616,0.104,0.162,0.162,0,0,0,0,0,0,0.436,1 +0.667,0.631,0.125,0.17,0.17,0,0,0,0,0,0,0.236,1 +1,0.712,0.313,0.339,0.339,0,0,0,0,0,0,0.0394,1 +1,0.701,0.436,0.429,0.429,0,0,0,0,0,0,0,1 +1,0.681,0.537,0.538,0.538,0.64,0.483,0,0,0,0,0.118,1 +1,0.64,0.509,0.603,0.603,0.255,0,0,0,0,0,0.0394,1 +1,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.167,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0.817,0.175,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0.117,0.244,-0.75 +0.667,0.609,0.0639,0.295,0.295,0,0,0,0,0,0,0.118,-0.0833 +0.333,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.174,0.199,0.233,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.17,0.595,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0.317,0.0788,-0.833 +0.667,0.619,0.117,0.271,0.271,0,0,0,0,0,0.15,0.158,-0.25 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.276,-0.817 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.158,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.118,0 +0.333,0.616,0.104,0.162,0.162,0,0,0,0,0,0,0.158,0 +0.333,0.631,0.125,0.17,0.17,0,0,0.0443,0.0702,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.528,0.193,0.233,0,0.0788,-0.05 +0.667,0.701,0.436,0.429,0.429,0,0,0.755,0,0,0,0.0788,-1 +1,0.741,0.797,0.783,0.783,0,0,0.503,0,0,0,0,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0,1 +1,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0.118,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.4,0.315,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.229,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0.617,0.148,1 +0.667,0.609,0.0639,0.295,0.295,0,0,0,0,0,0,0.0994,1 +0.667,0.619,0.077,0.301,0.301,0,0,0,0,0,0,0,-0.75 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.0394,-0.6 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.664,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.616,0.104,0.162,0.162,0,0,0,0,0,0,0.0788,-0.833 +0.333,0.631,0.125,0.17,0.17,0,0,0,0,0,0,0,-0.5 +1,0.787,0.461,0.484,0.484,0.347,0.483,0,0,0,0.233,0.315,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0,0.394,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0.0784,1 +1,0.58,0.163,0.232,0.232,0,0,0,0,0,0,0.255,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0.0879,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.36,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.301,-0.5 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0,0.341,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.0667 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.3 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,-1 +0.667,0.701,0.234,0.291,0.291,0.709,0.483,0,0,0,0,0.0788,-0.25 +1,0.787,0.461,0.484,0.484,0.762,0,0,0,0,0,0.0394,1 +1,0.771,0.646,0.619,0.619,0.586,0,0,0,0,0,0.0394,1 +1,0.741,0.797,0.783,0.783,0.689,0,0,0,0,0,0.327,1 +1,0.679,0.756,0.88,0.88,0,0,0,0,0,0,0,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.59,0.0641,0.175,0.175,0,0,0,0,0,0,0.118,1 +1,0.59,0.0809,0.174,0.174,0,0,0,0,0,0,0.221,1 +1,0.648,0.246,0.411,0.411,0,0,0,0,0,0,0.118,1 +0.667,0.619,0.186,0.279,0.279,0,0,0,0,0,0.367,0,1 +1,0.619,0.199,0.271,0.271,0,0,0,0,0,0.1,0.0394,1 +0.667,0.59,0.126,0.159,0.159,0,0,0,0,0,0,0.276,1 +0.667,0.59,0.142,0.159,0.159,0,0,0,0,0,0,0.276,1 +0.667,0.601,0.156,0.159,0.159,0,0,0,0,0,0,0.197,1 +0.667,0.671,0.308,0.274,0.274,0,0,0,0,0,0.367,0.317,-0.217 +0.667,0.701,0.318,0.291,0.291,0,0,0,0,0,0.1,0.675,1 +1,0.787,0.551,0.484,0.484,0,0,0,0,0,0,0.22,1 +1,0.771,0.725,0.619,0.619,0,0,0,0,0,0,0.0927,1 +1,0.741,0.852,0.783,0.783,0,0,0,0,0,0,0,1 +1,0.679,0.786,0.88,0.88,0,0,0,0,0,0,0.119,1 +1,0.599,0.337,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.565,0.0875,0.116,0.116,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0443,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.365,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.619,0.17,0.291,0.291,0,0,0,0,0,0,0.0788,1 +1,0.619,0.186,0.279,0.279,0,0,0,0,0,0,0,1 +0.667,0.59,0.109,0.16,0.16,0,0,0,0,0,0,0.0394,1 +0.667,0.59,0.126,0.159,0.159,0,0,0,0,0,0,0.236,1 +0.667,0.59,0.142,0.159,0.159,0,0,0,0,0,0,0.197,1 +0.667,0.601,0.156,0.159,0.159,0,0,0,0,0,0,0.0788,1 +1,0.725,0.452,0.386,0.386,0,0,0,0,0,0,0.158,1 +0.667,0.701,0.318,0.291,0.291,0,0,0,0,0,0.233,0.0788,1 +1,0.787,0.551,0.484,0.484,0.487,0.233,0,0,0,0,0,1 +1,0.771,0.725,0.619,0.619,0.497,0,0,0,0,0,0,1 +1,0.741,0.852,0.783,0.783,0.604,0,0,0,0,0,0.118,1 +1,0.679,0.786,0.88,0.88,0.602,0,0,0,0,0,0,1 +1,0.599,0.337,0.415,0.415,0.611,0,0,0,0,0,0,1 +1,0.568,0.157,0.183,0.183,0.525,0,0,0,0,0,0.18,1 +1,0.56,0.0377,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.437,0.544,0.233,0.233,0.168,1 +1,0.633,0.0879,0.417,0.417,0,0,0.45,0,0,0,0.0578,1 +1,0.648,0.108,0.427,0.427,0,0,0.335,0,0,0,0.158,1 +1,0.648,0.127,0.424,0.424,0,0,0.563,0,0,0,0,1 +1,0.648,0.143,0.411,0.411,0,0,0.604,0,0,0.233,0.118,1 +0.667,0.619,0.111,0.279,0.279,0.309,0.317,0.673,0,0,0,0.118,1 +0.667,0.619,0.117,0.271,0.271,0.241,0.167,0,0,0,0,0.354,1 +0.667,0.619,0.131,0.269,0.269,0,0,0,0,0,0,0.118,1 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.276,-0.583 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0.0394,0 +0.333,0.616,0.104,0.162,0.162,0,0,0.0214,0.0702,0,0.317,0.0788,0 +0.333,0.631,0.125,0.17,0.17,0,0,0.382,0.474,0.55,1,0.158,-0.583 +1,0.787,0.461,0.484,0.484,0.377,0.483,0.347,0,0.683,0.333,0,1 +1,0.771,0.646,0.619,0.619,0.583,0,0.45,0,0,0,0,1 +1,0.741,0.797,0.783,0.783,0.895,0,0.633,0,0,0,0.172,1 +1,0.64,0.509,0.603,0.603,0,0,0,0,0,0,0.208,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0186,0.0506,0.0506,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.118,1 +1,0.57,0.0318,0.143,0.143,0,0,0,0,0,0,0.669,1 +1,0.633,0.0879,0.417,0.417,0,0,0,0,0,0,0.163,1 +0.667,0.619,0.077,0.301,0.301,0,0,0.0657,0.263,0.0667,0,0.646,-1 +0.333,0.59,0.053,0.174,0.174,0,0,0.538,0,0.417,0,0.0788,-0.2 +0.333,0.59,0.0582,0.17,0.17,0,0,0.203,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0.817,0.276,0 +0.667,0.619,0.131,0.269,0.269,0,0,0,0,0,0.117,0.0788,0 +0.667,0.619,0.139,0.268,0.268,0,0,0,0,0,0,0.158,0 +0.667,0.64,0.155,0.269,0.269,0,0,0.563,0.263,0.317,0,0.0394,-0.933 +0.667,0.671,0.191,0.274,0.274,0,0,0.347,0,0.417,0,0,-0.25 +1,0.771,0.343,0.412,0.412,0,0,0,0,0,0,0.309,1 +1,0.787,0.461,0.484,0.484,0,0,0,0,0,0,0.12,1 +1,0.771,0.646,0.619,0.619,0,0,0,0,0,0.233,0.307,1 +1,0.741,0.797,0.783,0.783,0.707,0.483,0,0,0,0,0.184,1 +1,0.64,0.509,0.603,0.603,0,0,0,0,0,0,0.146,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0.525,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0377,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.093,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.135,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.471,1 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0,0.62,1 +0.667,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.158,-0.167 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.315,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.131,0.263,0.233,0,0.197,0 +0.333,0.616,0.104,0.162,0.162,0,0,0,0,0,0.233,0.0394,0 +0.667,0.701,0.234,0.291,0.291,0,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.339,0,0,0,0,0,0,0.118,-0.667 +0.667,0.701,0.436,0.429,0.429,0,0,0,0,0,0,0,-1 +1,0.621,0.276,0.294,0.294,0,0,0,0,0,0,0.118,1 +1,0.601,0.262,0.326,0.326,0,0,0,0,0,0,0.224,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.348,-1 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0,0.502,-0.817 +0.667,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.208,0 +0.667,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.391,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.118,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0.233,0.0394,-0.317 +0.667,0.701,0.234,0.291,0.291,0.379,0.233,0,0,0,0,0,-1 +0.667,0.712,0.313,0.339,0.339,0.468,0,0,0,0,0.467,0.0394,-0.5 +1,0.771,0.646,0.619,0.619,0.534,0,0,0,0,0,0,1 +0.667,0.681,0.537,0.538,0.538,0,0,0,0,0,0,0.0394,1 +0.667,0.64,0.509,0.603,0.603,0,0,0.382,0.263,0.317,0,0,1 +0.667,0.599,0.31,0.415,0.415,0,0,0.462,0,0.417,0,0,1 +1,0.565,0.0765,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.207,1 +1,0.56,0.0238,0.0798,0.0798,0,0,0,0,0,0,0.513,1 +1,0.57,0.0318,0.143,0.143,0,0,0,0,0,0,0.693,1 +1,0.609,0.0639,0.295,0.295,0,0,0,0,0,0,0.169,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0788,-0.883 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0.138,0 +0.667,0.619,0.117,0.271,0.271,0,0,0,0,0,0,0.143,0 +0.667,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,0 +0.667,0.601,0.0853,0.159,0.159,0,0,0,0,0,0.233,0.0788,-0.367 +0.667,0.671,0.191,0.274,0.274,0,0,0,0,0,0,0,-1 +1,0.771,0.343,0.412,0.412,0.314,0.317,0,0,0,0,0,1 +1,0.787,0.461,0.484,0.484,0.248,0.917,0.28,0.263,0.483,0,0,1 +1,0.771,0.646,0.619,0.619,0,0,0.309,0,0,0,0.0394,1 +1,0.741,0.797,0.783,0.783,0,0,0,0,0,0,0.118,1 +1,0.64,0.509,0.603,0.603,0,0,0,0,0,0,0,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.568,0.137,0.183,0.183,0,0,0,0,0,0,0.1,1 +1,0.56,0.0443,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.236,-0.55 +0.667,0.56,0.0223,0.0798,0.0798,0,0,0,0,0,0,0.0788,0 +0.667,0.57,0.0297,0.143,0.143,0,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,-0.55 +0.667,0.59,0.0641,0.175,0.175,0,0,0,0,0,0,0.197,1 +0.667,0.59,0.0809,0.174,0.174,0.703,0.233,0,0,0,0,0.236,1 +0.667,0.59,0.0941,0.17,0.17,0,0,0,0,0,0,0.0788,1 +0.667,0.59,0.102,0.164,0.164,0.777,0.483,0,0,0,0,0,1 +0.667,0.59,0.109,0.16,0.16,0.715,0,0,0,0,0,0.197,1 +0.667,0.619,0.234,0.269,0.269,0.0637,0,0,0,0,0.233,0.236,1 +0.667,0.619,0.267,0.268,0.268,0,0,0,0,0,0,0,1 +0.667,0.64,0.293,0.269,0.269,0,0,0,0,0,0,0.371,1 +0.667,0.671,0.308,0.274,0.274,0,0,0,0,0,0,0.195,1 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0,-0.183 +0.333,0.637,0.196,0.194,0.194,0,0,0,0,0,0,0.0788,-0.183 +1,0.771,0.725,0.619,0.619,0,0,0,0,0,0,0,1 +1,0.741,0.852,0.783,0.783,0,0,0,0,0,0,0.139,1 +1,0.679,0.786,0.88,0.88,0,0,0,0,0,0,0.45,1 +1,0.599,0.337,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.111,1 +1,0.619,0.144,0.299,0.299,0,0,0,0,0,0,0.284,1 +1,0.648,0.246,0.411,0.411,0,0,0,0,0,0,0.196,1 +0.667,0.619,0.186,0.279,0.279,0,0,0,0,0,0,0.466,-0.283 +0.667,0.619,0.199,0.271,0.271,0,0,0,0,0,0,0,1 +0.667,0.619,0.234,0.269,0.269,0,0,0,0,0,0.467,0.197,1 +1,0.648,0.391,0.378,0.378,0,0,0,0,0,0,0.158,-0.5 +0.667,0.601,0.156,0.159,0.159,0,0,0,0,0,0,0.0394,-0.267 +0.667,0.616,0.163,0.162,0.162,0,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.667,0.637,0.196,0.194,0.194,0,0,0,0,0,0,0.276,0 +0.667,0.631,0.254,0.239,0.239,0,0,0,0,0,0,0.0788,-0.75 +1,0.681,0.574,0.538,0.538,0,0,0.476,0.263,0.367,0,0.0394,1 +1,0.64,0.53,0.603,0.603,0,0,0.251,0,0.617,0,0.388,1 +1,0.617,0.496,0.597,0.597,0,0,0,0,0,0.367,0.139,1 +1,0.568,0.157,0.183,0.183,0,0,0,0,0,0.333,0,1 +1,0.557,0.0595,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.56,0.0238,0.0578,0.0578,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0172,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.385,1 +1,0.578,0.0478,0.236,0.236,0,0,0,0,0,0,0.26,1 +0.667,0.585,0.0399,0.172,0.172,0,0,0,0,0,0.233,0.158,-1 +0.667,0.59,0.0465,0.175,0.175,0,0,0,0,0,0,0.0788,-0.9 +0.333,0.59,0.053,0.174,0.174,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0582,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0633,0.164,0.164,0,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.16,0,0,0,0,0,0,0.236,0 +0.333,0.59,0.0735,0.159,0.159,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0772,0.159,0.159,0,0,0,0,0,0,0.0788,0 +0.333,0.601,0.0853,0.159,0.159,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.0394,0 +0.667,0.712,0.313,0.339,0.339,0,0,0,0,0,0.15,0.0394,-0.883 +0.667,0.701,0.436,0.429,0.429,0,0,0,0,0,0,0,-1 +0.667,0.681,0.537,0.538,0.538,0.428,0.317,0,0,0,0,0.0394,1 +1,0.64,0.509,0.603,0.603,0.314,0.167,0,0,0,0,0.118,1 +1,0.599,0.31,0.415,0.415,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.119,1 +1,0.56,0.0186,0.0503,0.0503,0,0,0,0,0,0,0.473,1 +0.667,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0,-0.183 +0.667,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.366,-0.167 +1,0.635,0.0871,0.402,0.402,0,0,0,0,0,0,0.215,-0.4 +0.667,0.621,0.0764,0.286,0.286,0,0,0,0,0,0,0.318,0 +0.667,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.345,-0.15 +0.667,0.621,0.0997,0.27,0.27,0,0,0,0,0,0,0.111,-0.5 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0.317,0.236,-0.483 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0.15,0.315,0 +0.333,0.591,0.073,0.149,0.149,0,0,0.269,0.333,0,0,0.276,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0.385,0.193,0.233,0.233,0.0394,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.347,-0.717 +1,0.728,0.277,0.353,0.353,0,0,0,0,0,0.233,0,1 +1,0.774,0.34,0.371,0.371,0,0,0,0,0,0,0.0394,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.141,1 +0.667,0.704,0.432,0.365,0.365,0,0,0.18,0.263,0.0667,0,0.297,1 +1,0.683,0.532,0.464,0.464,0,0,0.164,0,0.667,0,0.258,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0,0.0903,1 +1,0.581,0.162,0.227,0.227,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.204,1 +1,0.58,0.0474,0.228,0.228,0,0,0,0,0,0,0.464,1 +1,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.324,1 +0.667,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.356,1 +0.667,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.241,1 +0.667,0.621,0.0997,0.27,0.27,0,0,0,0,0,0,0.518,1 +0.667,0.621,0.11,0.259,0.259,0,0,0,0,0,0,0.3,-0.25 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0,-0.367 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0,-0.617 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0.317,0.197,1 +1,0.774,0.34,0.371,0.371,0,0,0,0,0,0.633,0.315,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.0394,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.0394,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.158,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0,0.0995,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.154,1 +1,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.188,1 +1,0.58,0.0474,0.228,0.228,0,0,0,0,0,0,0.707,1 +1,0.635,0.0871,0.402,0.402,0,0,0,0,0,0,0.37,1 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.118,-0.517 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0,-0.5 +0.667,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0394,-0.25 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.15 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.4 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0,0,1 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0.467,0.354,1 +1,0.714,0.31,0.296,0.296,0,0,0,0,0,0,0.116,1 +1,0.704,0.432,0.365,0.365,0.455,0.567,0,0,0,0,0.537,1 +1,0.683,0.532,0.464,0.464,0.3,0.65,0,0,0,0,0.0394,1 +1,0.602,0.26,0.299,0.299,0,0,0,0,0,0,0,1 +1,0.581,0.162,0.227,0.227,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.328,1 +1,0.586,0.0396,0.167,0.167,0,0,0,0,0,0,0.214,1 +0.667,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0,-0.75 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.38,-0.533 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.132,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.073,0.149,0.149,0.373,0.317,0,0,0,0,0.276,0 +0.333,0.591,0.0767,0.149,0.149,0.283,0.167,0,0,0,0,0.118,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.0788,-0.267 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0.467,0.0788,-1 +1,0.774,0.34,0.371,0.371,0.314,0.317,0,0,0,0,0.158,1 +1,0.79,0.457,0.42,0.42,0.538,0.167,0,0,0,0,0.0394,1 +1,0.774,0.64,0.523,0.523,0.663,0,0,0,0,0,0.11,1 +1,0.744,0.791,0.671,0.671,0.476,0,0,0,0,0,0.241,1 +1,0.682,0.749,0.799,0.799,0,0,0,0,0,0,0,1 +1,0.581,0.162,0.227,0.227,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.044,0.0743,0.0743,0,0,0,0,0,0,0.165,1 +1,0.56,0.0281,0.0578,0.0578,0,0,0,0,0,0,0.45,1 +1,0.56,0.0208,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0179,0.0495,0.0495,0,0,0,0,0,0,0,-0.217 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0.29,0.317,0,0,0,0,0.223,1 +0.667,0.621,0.143,0.278,0.278,0.347,0.4,0,0,0,0,0.294,1 +1,0.651,0.244,0.381,0.381,0,0,0,0,0,0,0.678,1 +1,0.651,0.268,0.364,0.364,0,0,0,0,0,0,0.159,1 +0.667,0.621,0.198,0.251,0.251,0,0,0,0,0,0,0.147,1 +0.667,0.621,0.233,0.249,0.249,0,0,0,0,0,0,0.158,1 +0.667,0.621,0.265,0.249,0.249,0,0,0,0,0,0,0.197,1 +0.667,0.642,0.291,0.249,0.249,0,0,0,0,0,0.567,0.0788,1 +0.667,0.673,0.305,0.252,0.252,0,0,0,0,0,1,0,1 +1,0.774,0.464,0.371,0.371,0,0,0,0,0,1,0.0788,1 +1,0.79,0.547,0.42,0.42,0,0,0,0,0,1,0.21,1 +1,0.774,0.719,0.523,0.523,0,0,0,0,0,1,0,1 +1,0.683,0.57,0.464,0.464,0,0,0,0,0,0.483,0.0394,1 +1,0.642,0.526,0.549,0.549,0,0,0,0,0,0,0.296,1 +1,0.6,0.334,0.405,0.405,0,0,0,0,0,0,0.0788,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.232,1 +1,0.56,0.0223,0.0781,0.0781,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.486,1 +0.667,0.591,0.0803,0.164,0.164,0,0,0,0,0,0,0.299,1 +0.333,0.591,0.0934,0.16,0.16,0,0,0.11,0.333,0,0,0.233,-0.0667 +0.667,0.621,0.185,0.259,0.259,0,0,0.428,0.193,0.483,0,0.315,1 +0.333,0.591,0.108,0.15,0.15,0,0,0.502,0,0,0,0.236,1 +0.667,0.591,0.125,0.149,0.149,0,0,0.15,0,0,0,0.118,1 +0.667,0.591,0.141,0.149,0.149,0.12,0.0667,0,0,0,0,0.207,1 +0.667,0.602,0.154,0.149,0.149,0.717,0.65,0,0,0,0,0.155,1 +0.667,0.673,0.305,0.252,0.252,0,0,0.0306,0.0702,0,0.317,0.445,1 +0.667,0.704,0.315,0.264,0.264,0,0,0.0183,1,0.05,0.633,0.628,-0.15 +0.667,0.714,0.371,0.296,0.296,0,0,0,0,0.433,0,0.0788,-0.733 +0.667,0.704,0.485,0.365,0.365,0,0,0,0,0,0,0.0394,0 +0.667,0.683,0.57,0.464,0.464,0,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0.299,0,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.0767,-0.717 +0.667,0.565,0.0869,0.116,0.116,0,0,0,0,0,0,0.075,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.349,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.108,1 +1,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0.0667,0.44,1 +0.667,0.58,0.0474,0.228,0.228,0,0,0,0,0,0.4,0.249,1 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.216,-0.25 +0.667,0.621,0.0764,0.286,0.286,0,0,0,0,0,0,0.118,-1 +0.667,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.0394,-0.233 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.273,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.272,0.263,0.0667,0,0.269,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0.295,0,0.667,0,0,0 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0.233,0.0394,-0.483 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0.233,0.197,-1 +0.667,0.714,0.31,0.296,0.296,0,0,0,0,0,0,0.0776,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.433,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.109,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0,0.152,1 +1,0.581,0.162,0.227,0.227,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.141,1 +1,0.58,0.0474,0.228,0.228,0,0,0,0,0,0,0.406,1 +0.667,0.586,0.0396,0.167,0.167,0,0,0,0,0,0,0,-0.767 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.717,0.0788,-0.517 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0.233,0.0788,-0.5 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.394,-0.183 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.158,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.0394,-0.433 +0.667,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0,1 +1,0.774,0.34,0.371,0.371,0,0,0,0,0,0,0.324,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.0788,1 +1,0.744,0.791,0.671,0.671,0.738,0.233,0,0,0,0,0,1 +1,0.682,0.749,0.799,0.799,0.497,0.0667,0,0,0,0,0.299,1 +1,0.6,0.307,0.405,0.405,0.616,0.167,0,0,0,0.567,0.197,1 +1,0.569,0.136,0.183,0.183,0.237,0,0,0,0,0.633,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0.148,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.196,1 +1,0.56,0.0171,0.0495,0.0495,0,0,0,0,0,0,0.268,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0539,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.318,1 +1,0.559,0.0314,0.107,0.107,0,0,0,0,0,0,0.277,-0.5 +0.333,0.571,0.0316,0.139,0.139,0.103,0.0667,0,0,0,0,0,-1 +0.333,0.586,0.0396,0.167,0.167,0.625,1,0,0,0,0,0,-0.317 +0.333,0.591,0.0462,0.168,0.168,0.565,0.15,0,0,0,0,0.156,0 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.254,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.205,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.315,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.23,0 +0.667,0.642,0.153,0.249,0.249,0,0,0,0,0,0.0667,0.409,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0.167,0.0788,-0.8 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0,0.197,-1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.0394,1 +1,0.774,0.64,0.523,0.523,0,0,0.11,0.263,0.0667,0,0,1 +1,0.744,0.791,0.671,0.671,0,0,0.511,0,0.167,0,0.0394,1 +1,0.682,0.749,0.799,0.799,0,0,0.379,0,0,0,0,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +0.667,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.307,-0.8 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.51,0 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0,-0.3 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0.233,0.197,-0.5 +0.667,0.621,0.116,0.251,0.251,0,0,0,0,0,0,0,1 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0,-0.4 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0.0667,0.354,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0.167,0.0788,-0.4 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0.475,1 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0,0.236,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0.233,0.118,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.386,1 +1,0.683,0.532,0.464,0.464,0,0,0,0,0,0,0.168,1 +1,0.602,0.26,0.299,0.299,0,0,0,0,0,0,0.234,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.187,1 +1,0.56,0.0186,0.0503,0.0503,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.505,1 +1,0.589,0.0632,0.317,0.317,0,0,0,0,0,0.233,0.781,1 +1,0.635,0.0871,0.402,0.402,0,0,0,0,0,0,0,1 +0.667,0.621,0.0764,0.286,0.286,0,0,0,0,0,0,0.474,1 +0.667,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.0578,1 +0.667,0.621,0.0997,0.27,0.27,0,0,0,0,0,0,0.118,1 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.0394,-0.983 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.158,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0.0394,-0.233 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0,0.236,-0.75 +0.667,0.714,0.31,0.296,0.296,0,0,0,0,0,0,0.0394,-0.0667 +0.667,0.704,0.432,0.365,0.365,0,0,0,0,0,0,0.118,1 +0.667,0.683,0.532,0.464,0.464,0,0,0,0,0,0,0.383,1 +1,0.602,0.26,0.299,0.299,0,0,0,0,0,0,0.0199,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0798,1 +1,0.591,0.0636,0.168,0.168,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.0803,0.164,0.164,0,0,0,0,0,0,0.315,1 +1,0.621,0.169,0.27,0.27,0,0,0,0,0,0,0,1 +0.333,0.591,0.101,0.154,0.154,0,0,0,0,0,0.317,0.0788,-0.217 +0.333,0.591,0.108,0.15,0.15,0,0,0,0,0,0.4,0.0788,-0.217 +0.667,0.591,0.125,0.149,0.149,0,0,0,0,0,0,0.158,1 +0.667,0.621,0.265,0.249,0.249,0,0,0,0,0,0,0.118,1 +0.667,0.642,0.291,0.249,0.249,0,0,0,0,0,0,0,1 +0.667,0.673,0.305,0.252,0.252,0,0,0,0,0,0,0.236,1 +1,0.774,0.464,0.371,0.371,0,0,0,0,0,0,0.0394,1 +0.667,0.714,0.371,0.296,0.296,0,0,0,0,0,0,0,1 +1,0.774,0.719,0.523,0.523,0,0,0,0,0,0,0,1 +1,0.744,0.845,0.671,0.671,0,0,0,0,0,0,0.0394,1 +1,0.682,0.78,0.799,0.799,0,0,0,0,0,0,0,1 +1,0.6,0.334,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.073,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.133,1 +1,0.56,0.0223,0.0781,0.0781,0,0,0,0,0,0,0.457,1 +1,0.58,0.0409,0.228,0.228,0,0,0,0,0,0,0.255,1 +1,0.611,0.0685,0.284,0.284,0,0,0,0,0,0.233,0.477,1 +1,0.621,0.109,0.286,0.286,0,0,0,0,0,0,0,1 +0.667,0.591,0.0803,0.164,0.164,0.243,0.317,0,0,0,0,0.0788,-0.25 +0.333,0.591,0.0934,0.16,0.16,0.525,0.167,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0.154,0,0,0.356,0.263,0.317,0,0.0788,-0.25 +0.667,0.621,0.198,0.251,0.251,0,0,0.67,0,0.667,0,0.357,-0.75 +0.333,0.591,0.125,0.149,0.149,0,0,0.404,0,0,0,0,-0.267 +0.667,0.621,0.265,0.249,0.249,0,0,0.705,0,0,0,0.0788,0 +0.667,0.642,0.291,0.249,0.249,0,0,0.63,0,0,0.467,0.394,0 +0.667,0.673,0.305,0.252,0.252,0,0,0.459,0,0,0,0.118,0 +0.667,0.704,0.315,0.264,0.264,0,0,0.639,0,0,0,0.0788,0 +0.333,0.638,0.194,0.173,0.173,0.246,0.317,0.243,0,0,0,0,-0.767 +0.667,0.704,0.485,0.365,0.365,0.408,0.167,0,0,0,0,0.0394,-0.25 +1,0.744,0.845,0.671,0.671,0,0,0,0,0,0,0,1 +1,0.682,0.78,0.799,0.799,0,0,0,0,0,0,0,1 +1,0.6,0.334,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.565,0.0869,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.158,-0.25 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.197,-0.117 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.0788,-0.117 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0.317,0,-0.25 +0.667,0.621,0.11,0.259,0.259,0,0,0,0,0,0.633,0,1 +0.667,0.621,0.116,0.251,0.251,0,0,0.101,0.0702,0,0,0.118,1 +0.667,0.621,0.13,0.249,0.249,0,0,0.414,0.193,0.483,0,0.433,1 +0.667,0.621,0.137,0.249,0.249,0,0,0,0,0,0,0.0788,1 +0.667,0.642,0.153,0.249,0.249,0,0,0,0,0,0,0.118,1 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0,-0.217 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0.467,0.221,-0.217 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.322,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.346,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.0968,1 +1,0.602,0.26,0.299,0.299,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0171,0.0495,0.0495,0,0,0.506,0.263,0.483,0,0.197,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0.476,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.302,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0954,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.17,1 +1,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.194,1 +0.667,0.621,0.0997,0.27,0.27,0,0,0,0,0,0,0.449,-0.25 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.485,-0.767 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.283,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.527,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0.0667,0,-0.267 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0.167,0.354,-0.75 +1,0.79,0.457,0.42,0.42,0.449,0.483,0,0,0,0,0.0788,1 +1,0.774,0.64,0.523,0.523,0.478,0,0,0,0,0,0.136,1 +1,0.744,0.791,0.671,0.671,0.729,0,0,0,0,0.233,0.466,1 +1,0.642,0.505,0.549,0.549,0.466,0,0,0,0,0,0,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0.0394,1 +1,0.569,0.136,0.183,0.183,0,0,0,0,0,0,0.0719,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0.0539,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.325,1 +1,0.58,0.0474,0.228,0.228,0,0,0,0,0,0.15,0.131,1 +1,0.635,0.0871,0.402,0.402,0,0,0,0,0,0,0.0394,-0.467 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.426,-0.467 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0,-0.617 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.168,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.0394,-0.367 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.25 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0.467,0.0788,1 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0.467,0.0788,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0,1 +1,0.683,0.532,0.464,0.464,0.522,0.817,0,0,0,0,0.0394,1 +1,0.642,0.505,0.549,0.549,0.672,0.4,0,0,0,0,0.104,1 +1,0.581,0.162,0.227,0.227,0,0,0,0,0,0,0.224,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.259,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +1,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.236,-0.5 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0.817,0.0788,-1 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,1,0,-0.4 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,1,0.236,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,1,0.236,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0.0333,0.118,0 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.197,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0,0.0394,-0.383 +0.667,0.714,0.31,0.296,0.296,0,0,0,0,0,0,0,-1 +0.667,0.704,0.432,0.365,0.365,0.0925,0.0667,0,0,0,0.717,0.0394,-0.5 +1,0.744,0.791,0.671,0.671,0.621,0.417,0,0,0,0,0,1 +1,0.682,0.749,0.799,0.799,0.571,0,0,0,0,0,0.133,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0.213,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0186,0.0503,0.0503,0,0,0,0,0,0,0.197,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.219,1 +0.667,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.154,1 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.365,1 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.176,1 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.163,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.35 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0.118,-0.0833 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0.233,0.0394,-1 +0.667,0.714,0.31,0.296,0.296,0.461,0.567,0,0,0,0,0.0394,-0.25 +1,0.774,0.64,0.523,0.523,0.7,0.15,0,0,0,0,0,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0,0.125,1 +1,0.581,0.162,0.227,0.227,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.289,1 +1,0.591,0.0636,0.168,0.168,0,0,0,0,0,0,0.248,1 +1,0.621,0.143,0.278,0.278,0,0,0,0,0,0,0.393,1 +1,0.621,0.169,0.27,0.27,0,0,0,0,0,0,0.177,1 +1,0.651,0.268,0.364,0.364,0,0,0,0,0,0,0.236,1 +0.667,0.621,0.198,0.251,0.251,0,0,0,0,0,0,0.278,1 +1,0.651,0.34,0.349,0.349,0,0,0,0,0,0,0.397,1 +1,0.651,0.388,0.348,0.348,0,0,0,0,0,0,0.236,1 +1,0.682,0.427,0.349,0.349,0,0,0.427,0.263,0.233,0.233,0.158,1 +1,0.728,0.449,0.353,0.353,0,0,0.446,0,0,0,0.0788,1 +1,0.774,0.464,0.371,0.371,0,0,0.907,0,0,0,0.0394,1 +1,0.79,0.547,0.42,0.42,0,0,0.497,0,0,0,0.0394,1 +1,0.774,0.719,0.523,0.523,0,0,0.486,0,0,0,0.0788,1 +1,0.744,0.845,0.671,0.671,0,0,0.407,0,0,0.0667,0,1 +1,0.682,0.78,0.799,0.799,0,0,0,0,0,0.167,0,1 +1,0.6,0.334,0.405,0.405,0,0,0,0,0,0,0.108,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.56,0.044,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.0667,0.526,1 +1,0.591,0.0636,0.168,0.168,0,0,0,0,0,0.167,0.0394,1 +1,0.591,0.0803,0.164,0.164,0,0,0,0,0,0,0.118,1 +1,0.621,0.169,0.27,0.27,0,0,0,0,0,0,0.0394,-0.217 +0.667,0.591,0.101,0.154,0.154,0,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0.251,0,0,0,0,0,0,0.0788,-0.217 +0.667,0.621,0.233,0.249,0.249,0,0,0,0,0,0,0.236,1 +0.333,0.591,0.141,0.149,0.149,0,0,0,0,0,0,0.276,-0.333 +0.333,0.602,0.154,0.149,0.149,0,0,0,0,0,0.233,0.158,-0.0667 +0.667,0.673,0.305,0.252,0.252,0.11,0.0667,0.00459,0.263,0.567,0,0.236,-0.25 +1,0.774,0.464,0.371,0.371,0.45,0.167,0,0,0.417,0,0.0788,1 +1,0.79,0.547,0.42,0.42,0,0,0,0,0,0,0.0788,1 +0.667,0.704,0.485,0.365,0.365,0,0,0,0,0,0,0,1 +0.667,0.683,0.57,0.464,0.464,0,0,0,0,0,0.233,0.0719,1 +1,0.682,0.78,0.799,0.799,0,0,0,0,0,0,0,1 +1,0.62,0.492,0.582,0.582,0,0,0,0,0,0,0,1 +1,0.573,0.224,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.559,0.059,0.099,0.099,0,0,0,0,0,0,0.0394,1 +1,0.559,0.0314,0.066,0.066,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +1,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.118,1 +1,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.0788,1 +0.667,0.586,0.0396,0.167,0.167,0,0,0,0,0,0,0.236,-0.5 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.362,-0.233 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.316,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.0394,-0.217 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.155,-0.583 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0.467,0.296,-0.0667 +0.667,0.621,0.137,0.249,0.249,0,0,0,0,0,0,0.0394,-0.333 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.0788,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0,0.276,-0.317 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0,0.158,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0,1 +1,0.682,0.749,0.799,0.799,0,0,0,0,0,0,0.315,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.293,1 +1,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.221,1 +0.667,0.58,0.0474,0.228,0.228,0,0,0,0,0,0,0.475,1 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.231,-0.5 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.118,-1 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.236,-0.167 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.158,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.315,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0,0.582,-0.667 +0.667,0.714,0.31,0.296,0.296,0,0,0,0,0,0.467,0.0202,-1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.0394,1 +1,0.602,0.26,0.299,0.299,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.104,1 +1,0.559,0.0314,0.107,0.107,0,0,0,0,0,0,0.276,1 +1,0.589,0.0632,0.317,0.317,0,0,0,0,0,0.233,0.604,1 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.0913,-1 +0.667,0.621,0.0764,0.286,0.286,0,0,0,0,0,0,0.311,-0.45 +0.667,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.248,0 +0.667,0.621,0.0997,0.27,0.27,0,0,0,0,0,0.0667,0.283,0 +0.667,0.621,0.11,0.259,0.259,0,0,0,0,0,0.4,0.265,0 +0.667,0.621,0.116,0.251,0.251,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.158,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0,-0.45 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0,-1 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0.167,0.158,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.0394,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.0632,1 +1,0.682,0.749,0.799,0.799,0,0,0,0,0,0,0.298,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0562,1 +1,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.217,1 +0.667,0.571,0.0316,0.139,0.139,0,0,0.19,0.263,0.0667,0.717,0.166,1 +0.667,0.586,0.0396,0.167,0.167,0,0,0,0,1,0,0.585,-0.25 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0.417,0,0.297,-0.05 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0,-0.283 +0.667,0.621,0.0997,0.27,0.27,0,0,0,0,0,0,0.115,1 +0.667,0.621,0.11,0.259,0.259,0,0,0,0,0,0,0.0394,1 +0.333,0.591,0.0658,0.15,0.15,0,0,0,0,0,0,0.0394,-0.55 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.0394,-0.533 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0.0667,0.268,1 +1,0.774,0.34,0.371,0.371,0,0,0,0,0,0.167,0.0394,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.118,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.0788,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.214,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0,0,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.56,0.0171,0.0495,0.0495,0,0,0,0,0,0,0.315,1 +1,0.56,0.0157,0.0495,0.0495,0,0,0,0,0,0,0.142,1 +1,0.559,0.0213,0.0511,0.0511,0,0,0,0,0,0,0.216,-0.5 +0.667,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.474,-1 +0.667,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.273,-0.0667 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.317 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-1 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.236,-0.25 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0,0.0788,1 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0,0,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.118,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0.0667,0.0394,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0.167,0.0873,1 +1,0.569,0.136,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0573,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.171,1 +1,0.586,0.0433,0.167,0.167,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +0.667,0.591,0.0934,0.16,0.16,0,0,0,0,0,0.567,0.0788,1 +0.667,0.591,0.101,0.154,0.154,0,0,0,0,0,0.383,0.197,1 +0.667,0.591,0.108,0.15,0.15,0,0,0,0,0,0,0.197,1 +0.333,0.591,0.125,0.149,0.149,0,0,0,0,0,0,0.158,-0.0667 +0.667,0.621,0.265,0.249,0.249,0,0,0,0,0,0,0.0394,-0.15 +0.333,0.602,0.154,0.149,0.149,0,0,0,0,0,0,0.315,-0.133 +0.667,0.617,0.162,0.151,0.151,0,0,0,0,0,0,0.621,1 +0.667,0.704,0.315,0.264,0.264,0,0,0,0,0,0,0.417,1 +0.667,0.714,0.371,0.296,0.296,0,0,0,0,0,0.233,0.197,1 +0.667,0.704,0.485,0.365,0.365,0,0,0,0,0,0,0.222,1 +0.667,0.683,0.57,0.464,0.464,0,0,0,0,0,0,0.166,1 +1,0.682,0.78,0.799,0.799,0,0,0,0,0,0,0.126,1 +1,0.62,0.492,0.582,0.582,0,0,0,0,0,0,0,1 +1,0.573,0.224,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0.396,0.317,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0.527,0.167,0,0,0,0,0.118,1 +1,0.586,0.0433,0.167,0.167,0,0,0,0,0,0.317,0,1 +1,0.591,0.0636,0.168,0.168,0,0,0.557,0.263,0.233,0.15,0.0394,1 +0.667,0.621,0.143,0.278,0.278,0,0,0.252,0,0,0,0.0788,1 +0.667,0.621,0.169,0.27,0.27,0,0,0.265,0,0,0,0.0394,1 +0.667,0.621,0.185,0.259,0.259,0,0,0.167,0,0,0,0.158,1 +0.667,0.621,0.198,0.251,0.251,0,0,0,0,0,0,0.118,1 +0.667,0.621,0.233,0.249,0.249,0,0,0,0,0,0,0.197,1 +0.667,0.621,0.265,0.249,0.249,0,0,0,0,0,0,0.0394,1 +0.667,0.602,0.154,0.149,0.149,0,0,0,0,0,0.233,0.276,1 +0.667,0.617,0.162,0.151,0.151,0,0,0,0,0,0,0.315,1 +1,0.774,0.464,0.371,0.371,0,0,0,0,0,0,0.0788,1 +1,0.79,0.547,0.42,0.42,0.349,0.483,0,0,0,0,0,1 +1,0.774,0.719,0.523,0.523,0.297,0,0,0,0,0,0.0394,1 +1,0.744,0.845,0.671,0.671,0,0,0,0,0,0,0,1 +1,0.682,0.78,0.799,0.799,0,0,0,0,0,0,0.115,1 +1,0.6,0.334,0.405,0.405,0,0,0,0,0,0,0.111,1 +1,0.569,0.156,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.56,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.56,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.192,1 +1,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0.348,1 +0.667,0.586,0.0396,0.167,0.167,0.791,0.483,0.101,0.0702,0,0,0.147,1 +0.667,0.621,0.0764,0.286,0.286,0.0855,0,0.312,0.193,0.483,0,0.242,-0.5 +0.333,0.591,0.0527,0.164,0.164,0,0,0.453,0,0,0,0.0394,-0.783 +0.333,0.591,0.0578,0.16,0.16,0,0,0.592,0,0,0,0.0788,0 +0.333,0.591,0.0629,0.154,0.154,0,0,0.309,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0.15,0,0,0.326,0,0,0,0.118,0 +0.333,0.591,0.073,0.149,0.149,0,0,0.42,0,0,0,0.158,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0.586,0,0,0,0.276,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0.0214,0,0,0,0.0394,-0.0167 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0,-1 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0.167,0.118,-0.25 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.0788,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.0788,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.0394,1 +1,0.682,0.749,0.799,0.799,0,0,0,0,0,0,0.251,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.316,1 +1,0.58,0.0474,0.228,0.228,0,0,0,0,0,0,0.398,1 +0.667,0.586,0.0396,0.167,0.167,0,0,0,0,0,0,0.162,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.85 +0.333,0.591,0.0527,0.164,0.164,0,0,0.145,0.333,0,0,0,0 +0.333,0.591,0.0578,0.16,0.16,0,0,0.255,0.737,0.3,0,0.158,0 +0.667,0.621,0.11,0.259,0.259,0,0,0.379,0,0.683,0,0,0 +0.667,0.621,0.116,0.251,0.251,0,0,0.424,0,0,0,0.0394,0 +0.333,0.591,0.073,0.149,0.149,0,0,0.531,0,0,0,0.236,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0.277,0,0,0,0.0394,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0.0489,0.333,0,0,0.0394,-0.583 +0.667,0.673,0.19,0.252,0.252,0,0,0,0.456,0.233,0.233,0,-0.75 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0,0.398,1 +1,0.79,0.457,0.42,0.42,0,0,0.41,0.263,0.317,0,0.543,1 +1,0.774,0.64,0.523,0.523,0,0,0.101,0,0.167,0,0.0394,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.0394,1 +1,0.642,0.505,0.549,0.549,0,0,0,0,0,0,0,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.169,1 +1,0.58,0.0474,0.228,0.228,0,0,0,0,0,0,0.227,1 +0.667,0.611,0.0634,0.284,0.284,0,0,0,0,0,0,0.248,1 +0.667,0.621,0.0764,0.286,0.286,0,0,0,0,0,0,0.259,1 +0.333,0.591,0.0527,0.164,0.164,0,0,0,0,0,0,0.158,-1 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0,-0.2 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.354,0 +0.333,0.591,0.073,0.149,0.149,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.0788,0 +0.333,0.617,0.103,0.151,0.151,0,0,0,0,0,0.0667,0.354,-0.933 +0.333,0.633,0.124,0.157,0.157,0,0,0,0,0,0.167,0.0394,-0.25 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.0394,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.136,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0.233,0,1 +1,0.682,0.749,0.799,0.799,0.328,0.317,0,0,0,0,0.139,1 +1,0.62,0.453,0.582,0.582,0.44,0.4,0,0,0,0,0.0742,1 +0.667,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0.0557,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.23,1 +0.667,0.56,0.0236,0.0781,0.0781,0,0,0,0,0,0,0.235,1 +0.667,0.571,0.0316,0.139,0.139,0,0,0,0,0,0,0,-0.233 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.218,-0.217 +0.667,0.591,0.0462,0.168,0.168,0,0,0,0,0,0,0.163,1 +0.667,0.621,0.0895,0.278,0.278,0,0,0,0,0,0,0.206,1 +0.333,0.591,0.0578,0.16,0.16,0,0,0,0,0,0,0.0788,-0.867 +0.333,0.591,0.0629,0.154,0.154,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0.149,0,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0.149,0,0,0,0,0,0,0.142,-0.867 +0.667,0.673,0.19,0.252,0.252,0,0,0,0,0,0,0.504,1 +0.667,0.704,0.232,0.264,0.264,0,0,0,0,0,0.233,0.385,1 +1,0.79,0.457,0.42,0.42,0,0,0,0,0,0,0.154,1 +1,0.774,0.64,0.523,0.523,0,0,0,0,0,0,0.502,1 +1,0.744,0.791,0.671,0.671,0,0,0,0,0,0,0.355,1 +1,0.682,0.749,0.799,0.799,0,0,0,0,0,0,0.231,1 +1,0.6,0.307,0.405,0.405,0,0,0,0,0,0,0.0394,1 +1,0.565,0.0759,0.116,0.116,0,0,0,0,0,0,0.0394,1 +1,0.529,0.0383,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.242,1 +0.667,0.538,0.0323,0.136,0.136,0,0,0,0,0,0,0.248,1 +1,0.54,0.0653,0.277,0.277,0,0,0,0,0,0,0.364,1 +0.667,0.548,0.0788,0.274,0.274,0,0,0,0,0,0,0.289,-0.25 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.0394,-0.983 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.512,0 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0.144,0,0,0,0,0,0,0.0394,-0.983 +0.333,0.589,0.128,0.148,0.148,0,0,0,0,0,0,0.118,-0.25 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0.118,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0,0.0394,1 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0,0,1 +1,0.564,0.269,0.275,0.275,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.538,0.0301,0.136,0.136,0,0,0,0,0,0,0.118,1 +1,0.54,0.0706,0.277,0.277,0,0,0,0,0,0,0,1 +0.667,0.548,0.113,0.274,0.274,0,0,0,0,0,0.0667,0,1 +0.667,0.548,0.147,0.263,0.263,0,0,0,0,0,0.167,0.0788,-0.0667 +0.667,0.548,0.174,0.256,0.256,0,0,0,0,0,0,0,1 +0.667,0.548,0.191,0.245,0.245,0,0,0,0,0,0,0.118,1 +0.667,0.548,0.204,0.237,0.237,0,0,0,0,0,0,0.0394,1 +0.667,0.548,0.24,0.235,0.235,0,0,0,0,0,0,0.158,1 +0.667,0.548,0.273,0.235,0.235,0,0,0,0,0,0.233,0.315,1 +0.667,0.566,0.3,0.235,0.235,0,0,0,0,0,0,0,1 +0.667,0.591,0.315,0.238,0.238,0,0,0.197,0.263,0.0667,0,0.315,1 +1,0.617,0.326,0.247,0.247,0,0,0.414,0,0.417,0,0,1 +1,0.658,0.565,0.384,0.384,0,0,0,0,0,0,0.156,1 +1,0.645,0.743,0.467,0.467,0,0,0,0,0,0,0.0788,1 +0.667,0.6,0.588,0.413,0.413,0,0,0,0,0,0,0.0801,1 +1,0.568,0.806,0.726,0.726,0,0,0,0,0,0,0.16,1 +0.667,0.531,0.345,0.388,0.388,0,0,0,0,0,0,0,-0.883 +0.667,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0.0743,0,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0.0578,0,0,0,0,0,0,0.118,0 +0.667,0.529,0.0211,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.667,0.529,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.867 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.538,0.0301,0.136,0.136,0,0,0,0,0,0,0.158,1 +1,0.551,0.0444,0.163,0.163,0,0,0,0,0,0,0.158,1 +1,0.555,0.0654,0.162,0.162,0,0,0,0,0,0,0.158,1 +1,0.548,0.147,0.263,0.263,0,0,0,0,0,0,0,1 +1,0.548,0.174,0.256,0.256,0,0,0,0,0,0,0.0788,1 +1,0.548,0.191,0.245,0.245,0,0,0,0,0,0,0,1 +1,0.548,0.204,0.237,0.237,0,0,0,0,0,0,0.0394,1 +1,0.548,0.24,0.235,0.235,0,0,0,0,0,0.233,0.276,1 +1,0.542,0.401,0.327,0.327,0,0,0,0,0,0,0.587,1 +1,0.568,0.441,0.328,0.328,0,0,0,0,0,0,0.147,1 +1,0.606,0.464,0.332,0.332,0,0,0,0,0,0,0.0394,1 +1,0.645,0.479,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.658,0.565,0.384,0.384,0,0,0,0,0,0,0.0813,1 +1,0.645,0.743,0.467,0.467,0,0,0,0,0,0.233,0.0407,1 +1,0.6,0.588,0.413,0.413,0,0,0,0,0,0,0,1 +1,0.566,0.543,0.501,0.501,0,0,0,0,0,0,0,1 +0.667,0.546,0.182,0.219,0.219,0.639,0.467,0,0,0,0,0,-0.0667 +1,0.505,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.529,0.0188,0.05,0.05,0,0,0,0,0,0,0.197,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0,0.142,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0.165,1 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0,0.0394,1 +0.667,0.555,0.0473,0.162,0.162,0,0,0,0,0,0.233,0.0394,-0.5 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.0394,-0.95 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.354,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0.333,0.576,0.106,0.144,0.144,0,0,0,0,0,0,0.315,0 +0.667,0.617,0.239,0.247,0.247,0.642,0.467,0,0,0,0,0.315,-0.95 +0.667,0.626,0.32,0.273,0.273,0.649,0.467,0,0,0,0,0,-0.5 +1,0.645,0.662,0.467,0.467,0.627,0,0,0,0,0,0.0788,1 +1,0.619,0.817,0.595,0.595,0.129,0,0,0,0,0,0.118,1 +1,0.566,0.521,0.501,0.501,0,0,0,0,0,0,0.307,1 +1,0.531,0.317,0.388,0.388,0,0,0,0,0,0,0.177,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.129,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0.467,0.164,1 +1,0.514,0.0488,0.222,0.222,0,0,0.644,0.263,0.567,0.233,0.158,1 +0.667,0.54,0.0653,0.277,0.277,0,0,0.323,0,0.4,0,0.0788,1 +0.667,0.548,0.0788,0.274,0.274,0,0,0,0,0,0,0,-0.5 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.0394,-0.517 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.158,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.118,-0.517 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.0394,-0.5 +0.667,0.591,0.196,0.238,0.238,0,0,0,0,0,0.233,0.0788,1 +1,0.645,0.351,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0.0394,1 +1,0.617,0.446,0.328,0.328,0,0,0,0,0,0.317,0.0394,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,1,0,-0.0667 +1,0.568,0.774,0.726,0.726,0,0,0,0,0,0.8,0.502,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0.135,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.172,1 +1,0.529,0.0188,0.05,0.05,0,0,0,0,0,0,0.351,1 +0.667,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0,0.0788,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0,1 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0.233,0.303,-0.25 +0.667,0.548,0.0788,0.274,0.274,0.627,0.7,0,0,0,0,0,-1 +0.333,0.555,0.0541,0.156,0.156,0.692,0,0,0,0,0,0.0394,-0.1 +0.333,0.555,0.0593,0.153,0.153,0.298,0,0,0,0,0,0.197,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0.0887,0.263,0.0667,0,0,0 +0.667,0.555,0.0789,0.142,0.142,0,0,0.242,0,0.167,0,0.0394,0 +0.667,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.118,-0.35 +0.667,0.576,0.106,0.144,0.144,0,0,0,0,0,0.317,0.197,-1 +1,0.645,0.351,0.345,0.345,0,0,0,0,0,0.383,0,1 +0.667,0.594,0.168,0.161,0.161,0,0,0,0,0,0,0.0788,1 +1,0.617,0.446,0.328,0.328,0,0,0,0,0,0,0.0394,1 +0.667,0.581,0.283,0.231,0.231,0,0,0,0,0,0,0,1 +0.667,0.564,0.269,0.275,0.275,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.9 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.325,0 +0.667,0.555,0.0473,0.162,0.162,0,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.197,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.537,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.375,-0.65 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.0394,-0.25 +0.667,0.548,0.134,0.235,0.235,0,0,0,0,0,0,0.0788,-0.217 +0.667,0.548,0.142,0.235,0.235,0,0,0,0,0,0,0.118,1 +0.667,0.566,0.158,0.235,0.235,0,0,0,0,0,0.233,0.118,1 +1,0.606,0.286,0.332,0.332,0,0,0,0,0,0,0.0394,1 +0.667,0.617,0.239,0.247,0.247,0,0,0,0,0,0,0.0394,1 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0.0788,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0,0.196,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,0,0.221,1 +1,0.568,0.774,0.726,0.726,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.258,1 +1,0.529,0.0188,0.05,0.05,0,0,0,0,0,0,0.16,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0.0489,0.0702,0,0,0.337,1 +0.667,0.538,0.0323,0.136,0.136,0.541,0.467,0,0.193,0.233,0,0,-0.367 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0.317,0,0 +0.333,0.555,0.0473,0.162,0.162,0,0,0,0,0,1,0.0394,-0.367 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,1,0.136,-0.583 +0.667,0.548,0.103,0.256,0.256,0,0,0,0,0,0.983,0,0 +0.667,0.548,0.113,0.245,0.245,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0676,0.143,0.143,0.428,0.467,0,0,0,0,0.0394,-0.583 +0.667,0.548,0.134,0.235,0.235,0.162,0,0,0,0,0,0.315,1 +0.667,0.548,0.142,0.235,0.235,0,0,0,0,0,0,0.591,1 +0.667,0.566,0.158,0.235,0.235,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.196,0.238,0.238,0,0,0,0,0,0.467,0,1 +1,0.645,0.351,0.345,0.345,0,0,0,0,0,0,0.0394,1 +1,0.658,0.473,0.384,0.384,0,0,0.026,0.0702,0,0,0.0394,1 +1,0.645,0.662,0.467,0.467,0,0,0.593,0.193,0.233,0,0.0394,1 +1,0.619,0.817,0.595,0.595,0,0,0.682,0,0,0,0,1 +1,0.568,0.774,0.726,0.726,0,0,0.498,0,0,0,0,1 +1,0.531,0.317,0.388,0.388,0,0,0,0,0,0,0.0738,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.0554,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.26,1 +1,0.538,0.0301,0.136,0.136,0,0,0,0,0,0,0.397,1 +1,0.54,0.0706,0.277,0.277,0,0,0,0,0,0,0.542,1 +1,0.548,0.113,0.274,0.274,0,0,0,0,0,0.233,0.421,1 +1,0.542,0.212,0.37,0.37,0,0,0,0,0,0,0.378,1 +1,0.542,0.252,0.359,0.359,0,0,0,0,0,0,0.331,1 +1,0.542,0.277,0.343,0.343,0,0,0,0,0,0,0.282,1 +1,0.542,0.297,0.331,0.331,0,0,0,0,0,0,0.191,1 +0.667,0.548,0.24,0.235,0.235,0,0,0,0,0,0,0.513,1 +0.667,0.548,0.273,0.235,0.235,0,0,0,0,0,0,0.693,1 +0.333,0.564,0.159,0.142,0.142,0,0,0,0,0,0,0.0788,1 +0.333,0.576,0.167,0.144,0.144,0,0,0,0,0,0,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.217 +0.667,0.594,0.2,0.161,0.161,0,0,0,0,0,0,0,1 +0.667,0.617,0.501,0.328,0.328,0,0,0.492,0.263,0.317,0.233,0.158,1 +1,0.619,0.873,0.595,0.595,0,0,0,0,0.65,0,0.118,1 +1,0.566,0.543,0.501,0.501,0,0,0,0,0,0,0,1 +1,0.531,0.345,0.388,0.388,0,0,0,0,0,0,0,1 +1,0.505,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.529,0.0451,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0.0443,0.0702,0,0.233,0.0788,1 +1,0.548,0.147,0.263,0.263,0,0,0.781,0.193,0.483,0,0.118,1 +1,0.542,0.252,0.359,0.359,0,0,0.365,0,0,0,0.197,1 +1,0.542,0.277,0.343,0.343,0,0,0.645,0,0,0,0.0788,1 +1,0.542,0.297,0.331,0.331,0,0,0.451,0,0,0,0.118,1 +1,0.542,0.351,0.328,0.328,0,0,0.243,0,0,0,0.0394,1 +1,0.542,0.401,0.327,0.327,0,0,0.177,0,0,0,0.0394,1 +1,0.568,0.441,0.328,0.328,0,0,0,0,0,0,0.0394,1 +0.667,0.591,0.315,0.238,0.238,0,0,0,0,0,0,0.0394,1 +1,0.645,0.479,0.345,0.345,0,0,0,0,0,0,0.118,1 +1,0.658,0.565,0.384,0.384,0,0,0,0,0,0.0667,0.0394,1 +1,0.645,0.743,0.467,0.467,0,0,0,0,0,0.867,0.197,-0.367 +0.667,0.6,0.588,0.413,0.413,0,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0.501,0,0,0,0,0,0,0,-0.35 +0.667,0.531,0.345,0.388,0.388,0,0,0,0,0,0,0,1 +0.667,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.497,0.0608,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.529,0.0188,0.05,0.05,0,0,0,0,0,0,0.158,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0.304,0.263,0.233,0,0.236,1 +1,0.538,0.0323,0.136,0.136,0,0,0.424,0,0,0,0.236,1 +1,0.54,0.0653,0.277,0.277,0,0,0.433,0,0,0,0.345,-0.25 +0.667,0.548,0.0788,0.274,0.274,0,0,0,0,0,0,0.17,-0.7 +0.667,0.548,0.0923,0.263,0.263,0,0,0,0,0,0,0.334,0 +0.667,0.548,0.103,0.256,0.256,0,0,0,0,0,0,0.551,0 +0.667,0.548,0.113,0.245,0.245,0,0,0,0,0,0,0.217,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.281,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0.0816,-0.683 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.0802,-0.25 +0.667,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.0788,1 +0.667,0.576,0.106,0.144,0.144,0,0,0,0,0,0,0.0788,1 +1,0.617,0.239,0.247,0.247,0,0,0,0,0,0,0,1 +1,0.626,0.32,0.273,0.273,0,0,0,0,0,0,0.0788,1 +1,0.617,0.446,0.328,0.328,0,0,0,0,0,0,0.0394,1 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0,0.0394,1 +1,0.564,0.269,0.275,0.275,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.231,1 +1,0.529,0.0188,0.05,0.05,0,0,0,0,0,0,0.431,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0,0.197,1 +1,0.538,0.0323,0.136,0.136,0,0,0,0,0,0,0.111,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0.335,0.263,0.233,0,0.163,1 +0.667,0.548,0.0788,0.274,0.274,0,0,0.581,0,0,0,0.236,-0.75 +0.667,0.548,0.0923,0.263,0.263,0,0,0.44,0,0,0,0.236,-0.167 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0.197,-0.4 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.158,-0.5 +0.667,0.566,0.158,0.235,0.235,0,0,0,0,0,0,0.0394,1 +0.667,0.591,0.196,0.238,0.238,0,0,0,0,0,0.233,0.123,1 +1,0.645,0.351,0.345,0.345,0.164,0.0667,0,0,0,0,0.173,1 +1,0.658,0.473,0.384,0.384,0.164,0.4,0,0,0,0.317,0.307,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0.617,0.171,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,0,0.285,1 +0.667,0.564,0.269,0.275,0.275,0,0,0,0,0,0,0,1 +0.667,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.216,1 +1,0.538,0.0323,0.136,0.136,0,0,0,0,0,0,0.373,-0.25 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0,0.0391,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.467 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.276,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.0788,0 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0.144,0,0,0,0,0,0.233,0.236,-0.2 +0.667,0.617,0.239,0.247,0.247,0.396,0.467,0,0,0,0,0.0788,-1 +0.667,0.626,0.32,0.273,0.273,0.284,0,0,0,0,0.233,0.0788,-0.5 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0,0.118,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,0,0.0754,1 +1,0.568,0.774,0.726,0.726,0,0,0,0,0,0,0.516,1 +1,0.516,0.468,0.557,0.557,0,0,0,0,0,0,0.292,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.242,1 +1,0.529,0.0383,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.567,0.194,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0.617,0.274,1 +0.333,0.551,0.0406,0.163,0.163,0,0,0,0,0,0,0.122,-0.683 +0.333,0.555,0.0473,0.162,0.162,0,0,0,0,0,0,0.253,0 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.281,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.118,-0.683 +0.667,0.548,0.119,0.237,0.237,0,0,0.0183,0.0702,0,0,0.118,1 +0.667,0.548,0.134,0.235,0.235,0,0,0.65,0.456,0.567,0,0.118,1 +0.667,0.548,0.142,0.235,0.235,0,0,0.573,0,0.15,0.233,0.378,1 +1,0.568,0.23,0.328,0.328,0,0,0.754,0,0,0,0.0394,1 +1,0.606,0.286,0.332,0.332,0,0,0,0,0,0,0.394,1 +0.667,0.589,0.128,0.148,0.148,0,0,0,0,0,0.233,0.197,1 +1,0.626,0.32,0.273,0.273,0.12,0.0667,0,0,0,0,0.0788,1 +1,0.617,0.446,0.328,0.328,0.401,0.4,0,0,0,0,0,1 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0.233,0.0778,1 +1,0.566,0.521,0.501,0.501,0,0,0,0,0,0,0.272,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.538,0.0323,0.136,0.136,0,0,0,0,0,0,0.0394,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.124,-1 +0.667,0.548,0.0788,0.274,0.274,0,0,0.529,0.263,0.233,0,0.16,-0.283 +0.333,0.555,0.0541,0.156,0.156,0,0,0.431,0,0,0,0.433,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0.511,0,0,0,0.315,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0.491,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0.462,0,0,0,0.118,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0.422,0,0,0,0.197,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0.32,0,0,0,0.153,-0.517 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.274,-0.75 +0.667,0.591,0.196,0.238,0.238,0,0,0,0,0,0,0.0788,1 +1,0.645,0.351,0.345,0.345,0,0,0,0,0,0,0.0788,1 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0.198,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0,0.3,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,0,0,1 +1,0.568,0.774,0.726,0.726,0,0,0,0,0,0,0.176,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.529,0.0226,0.0768,0.0768,0,0,0,0,0,0.233,0.0788,1 +1,0.538,0.0301,0.136,0.136,0,0,0,0,0,0,0.197,1 +1,0.551,0.0444,0.163,0.163,0,0,0,0,0,0,0.197,1 +1,0.555,0.0654,0.162,0.162,0,0,0.131,0.263,0.0667,0.233,0.275,1 +1,0.555,0.0826,0.156,0.156,0,0,0.0917,0,1,0,0.345,1 +1,0.542,0.252,0.359,0.359,0,0,0,0,0.133,0,0.314,1 +1,0.542,0.277,0.343,0.343,0,0,0,0,0,0,0.445,1 +0.667,0.548,0.204,0.237,0.237,0,0,0,0,0,0,0.272,1 +0.667,0.548,0.24,0.235,0.235,0.283,0.233,0,0,0,0,0.0788,1 +0.667,0.548,0.273,0.235,0.235,0.613,0,0,0,0,0,0.0394,1 +0.667,0.566,0.3,0.235,0.235,0.386,0,0,0,0,0.567,0.118,1 +0.667,0.591,0.315,0.238,0.238,0,0,0,0,0,0.133,0,1 +1,0.617,0.326,0.247,0.247,0,0,0,0,0,0,0.0394,1 +1,0.626,0.383,0.273,0.273,0,0,0,0,0,0,0,-0.217 +0.667,0.589,0.26,0.189,0.189,0,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0.413,0,0,0,0,0,0,0,-0.217 +1,0.568,0.806,0.726,0.726,0.37,0.467,0,0,0,0,0,1 +1,0.516,0.509,0.557,0.557,0.558,0,0,0,0,0,0,1 +1,0.477,0.232,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.497,0.0721,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.551,0.0444,0.163,0.163,0,0,0,0,0,0,0.197,1 +1,0.555,0.0654,0.162,0.162,0,0,0,0,0,0,0.118,1 +1,0.548,0.147,0.263,0.263,0,0,0,0,0,0.233,0.0394,1 +0.667,0.555,0.0961,0.153,0.153,0,0,0,0,0,0,0.315,1 +1,0.548,0.191,0.245,0.245,0,0,0,0,0,0,0,1 +0.667,0.555,0.111,0.143,0.143,0,0,0,0,0,0,0.0788,1 +0.667,0.555,0.129,0.142,0.142,0,0,0,0,0,0,0.118,1 +0.667,0.555,0.146,0.142,0.142,0,0,0,0,0,0.0667,0.0394,1 +0.333,0.564,0.159,0.142,0.142,0,0,0,0,0,0.167,0.0394,1 +0.667,0.591,0.315,0.238,0.238,0,0,0,0,0,0,0.276,1 +0.333,0.589,0.172,0.148,0.148,0,0,0,0,0,0,0.315,-0.367 +0.667,0.626,0.383,0.273,0.273,0,0,0,0,0,0,0.158,0 +0.667,0.617,0.501,0.328,0.328,0,0,0,0,0,0,0.0394,-0.35 +1,0.619,0.873,0.595,0.595,0,0,0,0,0,0,0.197,1 +1,0.566,0.543,0.501,0.501,0,0,0,0,0,0,0.128,1 +1,0.531,0.345,0.388,0.388,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0.159,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.491,1 +1,0.538,0.0323,0.136,0.136,0,0,0,0,0,0,0.0788,1 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0,0.0394,-0.5 +0.333,0.555,0.0473,0.162,0.162,0,0,0,0,0,0,0.0788,-0.883 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.175,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.171,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0788,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.315,0 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.236,-0.383 +0.333,0.576,0.106,0.144,0.144,0,0,0,0,0,0.317,0.158,-1 +0.667,0.617,0.239,0.247,0.247,0,0,0,0,0,0.383,0.0788,1 +0.667,0.626,0.32,0.273,0.273,0,0,0,0,0,0,0.197,1 +1,0.645,0.662,0.467,0.467,0.433,0.233,0,0,0,0,0.0802,1 +0.667,0.6,0.55,0.413,0.413,0.23,0,0,0,0,0,0.221,1 +1,0.568,0.774,0.726,0.726,0,0,0,0,0,0,0.235,1 +1,0.531,0.317,0.388,0.388,0,0,0,0,0,0,0.145,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.118,1 +1,0.529,0.0383,0.0743,0.0743,0,0,0,0,0,0,0.0394,1 +1,0.529,0.0241,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.189,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.456,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0.233,0.405,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0,-0.25 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.05 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.158,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.276,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0,-0.55 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0,0.0394,-0.75 +1,0.606,0.286,0.332,0.332,0,0,0,0,0,0,0.3,1 +0.667,0.617,0.239,0.247,0.247,0,0,0,0,0,0.233,0.363,-0.3 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0.0394,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0,0.12,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,0,0.209,1 +1,0.566,0.521,0.501,0.501,0,0,0,0,0,0,0.364,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0.463,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.222,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.529,0.0241,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.638,1 +1,0.54,0.0653,0.277,0.277,0,0,0,0,0,0,0.188,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.767 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.226,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.338,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.158,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0.199,0.333,0,0,0.118,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0.673,0.193,0.717,0,0.197,-0.0167 +0.333,0.564,0.0871,0.142,0.142,0,0,0.59,0,0,0.233,0,-1 +0.333,0.576,0.106,0.144,0.144,0,0,0,0,0,0,0.118,-0.25 +1,0.645,0.351,0.345,0.345,0.222,0.317,0,0,0,0,0.0788,1 +1,0.658,0.473,0.384,0.384,0.663,0.617,0.00917,0.0702,0,0,0.158,1 +1,0.645,0.662,0.467,0.467,0.394,0,0.667,0.193,0.233,0,0.118,-0.0833 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0,0.0719,1 +1,0.564,0.269,0.275,0.275,0,0,0,0,0,0,0.0394,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.0394,1 +1,0.529,0.0383,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.529,0.0173,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.529,0.0158,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +1,0.529,0.0188,0.05,0.05,0,0,0,0,0,0,0.544,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0,0.322,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0.0667,0.134,1 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0.167,0.0788,1 +0.667,0.555,0.0473,0.162,0.162,0,0,0,0,0,0,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.267 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.163,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.187,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0.252,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.576,0.106,0.144,0.144,0,0,0,0,0,0,0.0394,-0.517 +0.667,0.617,0.239,0.247,0.247,0,0,0,0,0,0,0.197,-0.75 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0,0,1 +1,0.619,0.817,0.595,0.595,0,0,0,0,0,0,0,1 +1,0.566,0.521,0.501,0.501,0,0,0,0,0,0,0.0394,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.338,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0.408,1 +0.667,0.54,0.0653,0.277,0.277,0,0,0,0,0,0,0.333,1 +0.667,0.548,0.0788,0.274,0.274,0,0,0.768,0.263,0.233,0,0.778,1 +0.667,0.548,0.0923,0.263,0.263,0,0,0.541,0,0,0,0.262,1 +0.667,0.548,0.103,0.256,0.256,0,0,0.638,0,0,0,0.197,-0.75 +0.333,0.555,0.0646,0.147,0.147,0,0,0.378,0,0,0,0,-0.167 +0.333,0.555,0.0676,0.143,0.143,0,0,0.453,0,0,0,0.0788,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0.754,0,0,0,0.197,0 +0.333,0.555,0.0789,0.142,0.142,0,0,0.335,0,0,0,0.197,0 +0.333,0.564,0.0871,0.142,0.142,0,0,0,0,0,0.0667,0,-0.4 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.167,0.118,-0.5 +1,0.645,0.351,0.345,0.345,0.134,0.0667,0,0,0,0,0.197,1 +1,0.658,0.473,0.384,0.384,0.585,0.4,0,0,0,0,0.182,1 +1,0.645,0.662,0.467,0.467,0,0,0,0,0,0.467,0,1 +1,0.619,0.817,0.595,0.595,0.435,0.467,0,0,0,0,0.158,1 +1,0.564,0.269,0.275,0.275,0.209,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.124,1 +0.667,0.555,0.0826,0.156,0.156,0,0,0,0,0,0,0.455,1 +1,0.548,0.174,0.256,0.256,0,0,0,0,0,0,0.0202,1 +1,0.542,0.277,0.343,0.343,0,0,0,0,0,0,0.197,1 +0.667,0.548,0.204,0.237,0.237,0,0,0,0,0,0,0.0394,1 +1,0.542,0.351,0.328,0.328,0,0,0,0,0,0,0.276,1 +0.667,0.548,0.273,0.235,0.235,0,0,0,0,0,0,0.0394,1 +0.667,0.564,0.159,0.142,0.142,0,0,0,0,0,0.233,0.354,1 +0.667,0.576,0.167,0.144,0.144,0,0,0,0,0,0,0.0788,1 +0.667,0.589,0.172,0.148,0.148,0,0,0,0,0,0,0.118,1 +0.667,0.626,0.383,0.273,0.273,0,0,0,0,0,0,0.236,1 +1,0.645,0.743,0.467,0.467,0,0,0,0,0,0,0.184,1 +1,0.619,0.873,0.595,0.595,0,0,0,0,0,0,0.0164,1 +1,0.568,0.806,0.726,0.726,0,0,0,0,0,0,0,1 +1,0.531,0.345,0.388,0.388,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.551,0.0444,0.163,0.163,0,0,0,0,0,0,0.118,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.111,-0.217 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.381,-0.217 +1,0.542,0.252,0.359,0.359,0,0,0,0,0,0,0.425,1 +1,0.542,0.277,0.343,0.343,0,0,0,0,0,0,0.213,1 +1,0.542,0.297,0.331,0.331,0,0,0,0,0,0,0.302,1 +1,0.542,0.351,0.328,0.328,0,0,0,0,0,0,0.638,1 +1,0.542,0.401,0.327,0.327,0,0,0,0,0,0,0.197,1 +0.667,0.566,0.3,0.235,0.235,0,0,0,0,0,0,0.236,1 +0.667,0.591,0.315,0.238,0.238,0,0,0,0,0,0,0.288,1 +0.667,0.617,0.326,0.247,0.247,0,0,0,0,0,0,0.158,1 +0.667,0.626,0.383,0.273,0.273,0,0,0,0,0,0,0.0394,1 +0.667,0.617,0.501,0.328,0.328,0,0,0,0,0,0,0,1 +0.667,0.6,0.588,0.413,0.413,0,0,0,0,0,0,0.0788,1 +0.667,0.566,0.543,0.501,0.501,0.611,0.817,0,0,0,0,0,1 +1,0.516,0.509,0.557,0.557,0.246,0.117,0,0,0,0,0,1 +1,0.505,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.313,0.263,0.567,0,0.455,1 +1,0.514,0.0488,0.222,0.222,0,0,0.673,0,0.4,0.233,0.438,1 +1,0.529,0.09,0.39,0.39,0,0,0.485,0,0,0,0.334,1 +1,0.542,0.11,0.387,0.387,0,0,0.546,0,0,0,0,-0.25 +0.667,0.548,0.0923,0.263,0.263,0,0,0.722,0,0,0,0.0394,-0.617 +0.667,0.548,0.103,0.256,0.256,0,0,0.424,0,0,0,0.0788,0 +0.667,0.548,0.113,0.245,0.245,0,0,0.639,0,0,0,0.0394,0 +0.667,0.548,0.119,0.237,0.237,0,0,0.445,0,0,0.233,0.0788,0 +0.667,0.548,0.134,0.235,0.235,0,0,0.661,0,0,0,0.0394,-0.117 +0.667,0.548,0.142,0.235,0.235,0,0,0.379,0,0,0,0.165,-0.75 +1,0.568,0.23,0.328,0.328,0,0,0.699,0,0,0,0.3,1 +0.667,0.591,0.196,0.238,0.238,0,0,0.44,0,0,0,0.0394,-0.15 +1,0.617,0.239,0.247,0.247,0,0,0,0,0,0,0.0788,1 +1,0.626,0.32,0.273,0.273,0,0,0,0,0,0,0.158,1 +1,0.617,0.446,0.328,0.328,0,0,0,0,0,0,0.0394,1 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0,0,1 +1,0.564,0.269,0.275,0.275,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.418,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0.417,-0.5 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0,0,-0.45 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.239,0 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0.25,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.518,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.0757,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.438,-0.933 +0.333,0.555,0.0751,0.142,0.142,0,0,0.361,0.263,0.233,0,0.158,1 +0.333,0.555,0.0789,0.142,0.142,0,0,0.381,0,0,0,0.158,-0.4 +0.333,0.564,0.0871,0.142,0.142,0,0,0.419,0,0,0,0.0788,0 +0.333,0.576,0.106,0.144,0.144,0,0,0.402,0,0,0.233,0.0394,-0.4 +0.667,0.617,0.239,0.247,0.247,0,0,0.306,0,0,0,0.0788,1 +0.667,0.626,0.32,0.273,0.273,0,0,0,0,0,0,0,1 +0.667,0.617,0.446,0.328,0.328,0,0,0,0,0,0,0.118,1 +0.667,0.6,0.55,0.413,0.413,0,0,0,0,0,0.0667,0.0394,1 +0.667,0.564,0.269,0.275,0.275,0,0,0,0,0,0.4,0.0893,1 +1,0.531,0.317,0.388,0.388,0,0,0,0,0,0,0.207,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.301,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0.272,0.317,0,0,0,0.233,0.192,1 +1,0.529,0.0241,0.0768,0.0768,0.595,0.383,0,0,0,0,0.527,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0.184,1 +0.667,0.551,0.0406,0.163,0.163,0,0,0,0,0,0,0.0394,-0.75 +0.333,0.555,0.0473,0.162,0.162,0,0,0,0,0,0,0.0394,-0.3 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.276,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0.0394,-0.55 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.0788,-0.5 +0.667,0.566,0.158,0.235,0.235,0,0,0,0,0,0,0.238,1 +1,0.606,0.286,0.332,0.332,0,0,0,0,0,0,0.31,1 +1,0.645,0.351,0.345,0.345,0.211,0.317,0,0,0,0,0,1 +1,0.658,0.473,0.384,0.384,0.906,0.617,0,0,0,0.233,0.0788,1 +1,0.645,0.662,0.467,0.467,0.766,0,0.688,0.526,0.233,0,0,1 +1,0.619,0.817,0.595,0.595,0,0,0.502,0,0,0,0.0788,1 +1,0.568,0.774,0.726,0.726,0,0,0.373,0,0,0,0,1 +1,0.531,0.317,0.388,0.388,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0.311,1 +1,0.529,0.0383,0.0743,0.0743,0,0,0,0,0,0,0.0968,1 +1,0.529,0.0241,0.0578,0.0578,0,0,0,0,0,0,0.201,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.136,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0.233,0.159,1 +1,0.538,0.0323,0.136,0.136,0,0,0,0,0,0,0.373,1 +1,0.54,0.0653,0.277,0.277,0,0,0,0,0,0,0.849,1 +0.667,0.548,0.0788,0.274,0.274,0,0,0,0,0,0,0.553,1 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0,0,-0.8 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.667,0.548,0.113,0.245,0.245,0,0,0,0,0,0.233,0.0394,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.197,0 +0.333,0.555,0.0751,0.142,0.142,0,0,0,0,0,0,0.0394,-0.3 +0.333,0.555,0.0789,0.142,0.142,0,0,0,0,0,0,0.169,-0.5 +0.667,0.566,0.158,0.235,0.235,0,0,0,0,0,0.0667,0.0788,1 +0.667,0.591,0.196,0.238,0.238,0,0,0,0,0,0.167,0.0394,1 +1,0.645,0.351,0.345,0.345,0,0,0,0,0,0,0.118,1 +1,0.658,0.473,0.384,0.384,0,0,0,0,0,0,0,1 +1,0.617,0.446,0.328,0.328,0,0,0,0,0,0,0,1 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0,0.315,1 +1,0.566,0.521,0.501,0.501,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.219,0.219,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.275,1 +1,0.529,0.0241,0.0768,0.0768,0,0,0,0,0,0,0.282,1 +1,0.514,0.0488,0.222,0.222,0,0,0,0,0,0,0.285,1 +1,0.54,0.0653,0.277,0.277,0,0,0,0,0,0,0.38,1 +0.333,0.555,0.0473,0.162,0.162,0,0,0,0,0,0,0.158,-1 +0.333,0.555,0.0541,0.156,0.156,0,0,0,0,0,0.317,0.223,-0.267 +0.333,0.555,0.0593,0.153,0.153,0,0,0,0,0,0.15,0.0788,0 +0.333,0.555,0.0646,0.147,0.147,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,-0.517 +0.333,0.576,0.106,0.144,0.144,0,0,0.538,0.263,0.233,0,0.276,-0.75 +0.667,0.617,0.239,0.247,0.247,0,0,0.76,0,0,0,0.354,1 +1,0.658,0.473,0.384,0.384,0,0,0.668,0,0,0,0.0394,1 +1,0.645,0.662,0.467,0.467,0,0,0.213,0,0,0,0,1 +1,0.6,0.55,0.413,0.413,0,0,0,0,0,0,0,1 +1,0.566,0.521,0.501,0.501,0,0,0,0,0,0,0.404,1 +1,0.531,0.317,0.388,0.388,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.551,0.0444,0.163,0.163,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.555,0.0826,0.156,0.156,0,0,0,0,0,0,0.351,1 +1,0.548,0.174,0.256,0.256,0,0,0.22,0.263,0.0667,0,0.232,1 +1,0.542,0.277,0.343,0.343,0,0,0.309,0,0.9,0,0.332,-0.25 +0.333,0.555,0.111,0.143,0.143,0,0,0,0,0,0,0.118,-0.2 +0.667,0.548,0.24,0.235,0.235,0,0,0,0,0,0,0.0394,0 +0.667,0.555,0.146,0.142,0.142,0,0,0,0,0,0,0.118,-0.433 +1,0.568,0.441,0.328,0.328,0,0,0,0,0,0,0.118,1 +1,0.606,0.464,0.332,0.332,0,0,0,0,0,0,0.118,1 +1,0.645,0.479,0.345,0.345,0,0,0,0,0,0,0.0788,1 +1,0.658,0.565,0.384,0.384,0,0,0,0,0,0,0.0788,-0.467 +0.667,0.589,0.26,0.189,0.189,0,0,0,0,0,0,0.118,0 +0.667,0.581,0.303,0.231,0.231,0,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0.275,0,0,0,0,0,0,0,-0.467 +1,0.516,0.509,0.557,0.557,0,0,0,0,0,0,0,1 +1,0.505,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.252,1 +1,0.528,0.0226,0.0763,0.0763,0,0,0,0,0,0,0.248,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0,1 +0.667,0.549,0.0444,0.162,0.162,0,0,0,0,0,0,0,-0.183 +0.667,0.554,0.0655,0.16,0.16,0,0,0,0,0,0,0.118,-0.433 +0.667,0.554,0.0828,0.154,0.154,0,0,0,0,0,0.15,0,0 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.0833,0.197,-0.25 +0.667,0.554,0.105,0.145,0.145,0,0,0,0,0,0,0,1 +0.667,0.554,0.111,0.141,0.141,0,0,0,0,0,0,0.197,1 +0.667,0.554,0.129,0.14,0.14,0,0,0,0,0,0,0.0394,1 +0.667,0.554,0.146,0.14,0.14,0,0,0,0,0,0,0.118,1 +0.667,0.562,0.16,0.14,0.14,0.609,0.45,0,0,0,0,0.0788,1 +0.667,0.588,0.316,0.233,0.233,0.841,0,0,0,0,0.4,0.276,1 +1,0.64,0.481,0.338,0.338,0.818,0,0,0,0,0.0667,0.0788,1 +0.667,0.623,0.384,0.268,0.268,0,0,0,0,0,0,0,1 +0.667,0.614,0.503,0.324,0.324,0,0,0,0,0,0,0,1 +0.667,0.597,0.59,0.41,0.41,0,0,0,0,0,0,0,1 +1,0.563,0.808,0.72,0.72,0,0,0,0,0,0,0,1 +1,0.512,0.51,0.554,0.554,0,0,0,0,0,0,0.117,1 +1,0.503,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.495,0.061,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.528,0.0241,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.528,0.0174,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.528,0.0158,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.221,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.181,-1 +0.667,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.165,-0.5 +0.667,0.546,0.079,0.27,0.27,0,0,0,0,0,0,0.276,0 +0.667,0.546,0.0926,0.258,0.258,0,0,0.0887,0.0702,0,0,0.0394,0 +0.333,0.554,0.0595,0.15,0.15,0,0,0.664,0.474,0.45,0,0.0788,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0.159,0,0,0,0.158,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.0788,0 +0.667,0.546,0.142,0.23,0.23,0,0,0,0,0,0,0.315,-0.233 +0.667,0.563,0.159,0.23,0.23,0,0,0,0,0,0,0.0775,-1 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0.421,-0.25 +1,0.64,0.352,0.338,0.338,0,0,0.0443,0.0702,0,0.233,0,1 +1,0.653,0.474,0.377,0.377,0,0,0.448,0.193,0.45,0,0.301,1 +1,0.64,0.664,0.461,0.461,0,0,0.138,0,0,0,0.13,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.74,1 +1,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0.187,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0.118,1 +1,0.528,0.0384,0.0743,0.0743,0,0,0,0,0,0,0.198,1 +1,0.528,0.0241,0.0578,0.0578,0,0,0,0,0,0,0.0185,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.148,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.559,1 +0.667,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.118,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.267 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.168,-0.517 +0.333,0.575,0.106,0.141,0.141,0.45,0.45,0,0,0,0,0.146,-0.75 +1,0.64,0.352,0.338,0.338,0.288,0,0,0,0,0.233,0,1 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0,0.235,1 +1,0.64,0.664,0.461,0.461,0,0,0.662,0.263,0.45,0,0.241,1 +1,0.615,0.82,0.59,0.59,0,0,0.76,0,0,0,0.39,1 +1,0.563,0.523,0.496,0.496,0,0,0.471,0,0,0,0.253,1 +1,0.529,0.318,0.386,0.386,0,0,0.216,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0.131,0,0,0,0.158,1 +1,0.528,0.0384,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.292,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0,0.434,1 +0.667,0.549,0.0407,0.162,0.162,0,0,0,0,0,0.233,0,-0.15 +0.667,0.546,0.079,0.27,0.27,0,0,0,0,0,0,0.0394,1 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0,-0.583 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0.419,0.333,0,0,0.118,-0.583 +0.667,0.546,0.135,0.23,0.23,0,0,0.512,0.211,0.217,0,0.197,1 +0.667,0.546,0.142,0.23,0.23,0,0,0.476,0,0,0,0,1 +0.333,0.562,0.0873,0.14,0.14,0,0,0.18,0,0,0.233,0.118,1 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0.291,1 +1,0.64,0.352,0.338,0.338,0,0,0,0,0,0,0,-0.0667 +0.667,0.623,0.321,0.268,0.268,0,0,0,0,0,0,0,1 +1,0.64,0.664,0.461,0.461,0,0,0,0,0,0,0.197,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0,1 +1,0.562,0.269,0.273,0.273,0,0,0,0,0,0,0,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.55,1 +0.667,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.0394,-1 +0.667,0.554,0.0475,0.16,0.16,0,0,0,0,0,0,0.0788,-0.45 +0.667,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0.541,0.263,0.45,0,0.118,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0.787,0,0,0,0.0394,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0.19,0,0,0.317,0,-0.45 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0.15,0.354,-1 +1,0.64,0.352,0.338,0.338,0,0,0,0,0,0,0.197,1 +1,0.653,0.474,0.377,0.377,0.485,0.217,0,0,0,0,0.197,1 +1,0.64,0.664,0.461,0.461,0.33,0,0,0,0,0,0.0788,1 +1,0.615,0.82,0.59,0.59,0.141,0.0667,0,0,0,0,0.0394,1 +1,0.562,0.269,0.273,0.273,0.443,0.383,0,0,0,0,0,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0.108,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0.137,1 +1,0.528,0.0384,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.248,1 +1,0.528,0.0241,0.0763,0.0763,0,0,0,0,0,0.233,0.236,-0.5 +0.667,0.537,0.0324,0.135,0.135,0,0,0,0,0,0.233,0,-0.333 +0.667,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0475,0.16,0.16,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0.236,0 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0.0804,-0.583 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0.317,0.257,-0.25 +0.667,0.546,0.12,0.232,0.232,0.766,0.217,0,0,0,0.15,0,1 +0.667,0.546,0.135,0.23,0.23,0,0,0,0,0,0,0.236,-0.4 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.158,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0.49,-0.4 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0.235,1 +1,0.64,0.352,0.338,0.338,0,0,0,0,0,0,0.0788,1 +1,0.653,0.474,0.377,0.377,0.295,0.317,0,0,0,0,0,1 +1,0.64,0.664,0.461,0.461,0.494,0.133,0,0,0,0,0,1 +1,0.615,0.82,0.59,0.59,0.49,0,0,0,0,0,0.0789,1 +1,0.563,0.777,0.72,0.72,0.55,0,0,0,0,0,0.158,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.549,0.0444,0.162,0.162,0,0,0,0,0,0,0.451,1 +1,0.554,0.0655,0.16,0.16,0,0,0,0,0,0.233,0.246,1 +0.667,0.546,0.148,0.258,0.258,0,0,0,0,0,0,0.0394,1 +0.667,0.546,0.175,0.25,0.25,0,0,0,0,0,0,0.0394,1 +0.667,0.546,0.191,0.24,0.24,0,0,0,0,0,0,0,1 +0.667,0.546,0.205,0.232,0.232,0,0,0,0,0,0,0.276,1 +0.333,0.554,0.129,0.14,0.14,0,0,0,0,0,0,0.197,1 +0.333,0.554,0.146,0.14,0.14,0,0,0,0,0,0,0.315,1 +0.667,0.563,0.301,0.23,0.23,0,0,0,0,0,0,0.0394,-0.183 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.4,0,-0.183 +0.667,0.614,0.327,0.242,0.242,0,0,0,0,0,0.0667,0,1 +0.667,0.623,0.384,0.268,0.268,0,0,0,0,0,0,0.236,1 +0.667,0.614,0.503,0.324,0.324,0,0,0,0,0,0,0.197,1 +0.667,0.597,0.59,0.41,0.41,0,0,0,0,0,0,0,1 +1,0.563,0.808,0.72,0.72,0,0,0,0,0,0,0.368,1 +1,0.512,0.51,0.554,0.554,0,0,0,0,0,0,0.0695,1 +1,0.503,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.495,0.0723,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.528,0.0286,0.0578,0.0578,0,0,0,0,0,0,0.0394,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.197,1 +0.667,0.554,0.0655,0.16,0.16,0,0,0,0,0,0,0.197,1 +0.667,0.546,0.148,0.258,0.258,0,0,0,0,0,0,0.422,1 +0.667,0.546,0.175,0.25,0.25,0,0,0,0,0,0,0.099,1 +0.333,0.554,0.105,0.145,0.145,0,0,0,0,0,0,0.118,1 +0.333,0.554,0.111,0.141,0.141,0,0,0,0,0,0,0.118,1 +0.667,0.546,0.241,0.23,0.23,0,0,0,0,0,0,0.0394,1 +0.667,0.546,0.274,0.23,0.23,0,0,0,0,0,0,0,1 +0.333,0.562,0.16,0.14,0.14,0,0,0,0,0,0,0.118,1 +0.667,0.575,0.167,0.141,0.141,0,0,0,0,0,0,0.0394,1 +1,0.588,0.172,0.146,0.146,0,0,0,0,0,0,0.158,1 +1,0.592,0.201,0.159,0.159,0,0,0,0,0,0,0.197,1 +1,0.588,0.26,0.187,0.187,0,0,0,0,0,0,0,1 +1,0.579,0.304,0.23,0.23,0,0,0,0,0,0,0,1 +1,0.563,0.545,0.496,0.496,0,0,0,0,0,0,0,1 +1,0.529,0.346,0.386,0.386,0,0,0,0,0,0,0.449,1 +1,0.532,0.0896,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.271,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0.233,0.212,1 +1,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.322,-0.5 +0.667,0.546,0.079,0.27,0.27,0,0,0,0,0,0,0.138,-0.85 +0.667,0.546,0.0926,0.258,0.258,0,0,0,0,0,0,0.118,0 +0.667,0.546,0.103,0.25,0.25,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0,-0.583 +0.333,0.575,0.106,0.141,0.141,0,0,0,0,0,0,0.169,-0.75 +0.667,0.614,0.24,0.242,0.242,0,0,0,0,0,0,0.133,-0.0667 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0,0.197,1 +1,0.64,0.664,0.461,0.461,0,0,0,0,0,0,0.0394,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.0394,1 +1,0.563,0.777,0.72,0.72,0,0,0,0,0,0,0,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0.236,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0.0394,1 +1,0.528,0.0384,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.293,1 +1,0.528,0.0241,0.0763,0.0763,0,0,0.506,0.263,0.217,0,0.23,1 +1,0.512,0.0489,0.22,0.22,0,0,0.28,0,0,0,0.412,1 +1,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0,-0.75 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.783 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,0 +0.333,0.575,0.106,0.141,0.141,0.168,0.0667,0,0,0,0,0.315,-0.767 +0.333,0.588,0.128,0.146,0.146,0.475,0.15,0,0,0,0,0.197,-0.75 +1,0.653,0.474,0.377,0.377,0.628,0,0,0,0,0,0.118,1 +1,0.64,0.664,0.461,0.461,0.796,0,0,0,0,0,0.118,1 +1,0.615,0.82,0.59,0.59,0.225,0,0,0,0,0,0.118,1 +1,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0738,1 +1,0.528,0.0189,0.0499,0.0499,0,0,0,0,0,0,0.208,1 +1,0.528,0.0241,0.0763,0.0763,0,0,0,0,0,0,0.173,1 +1,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0.365,1 +0.667,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.12,-0.5 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.7 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.18,0 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.0788,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.45 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0.233,0.197,-0.75 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0.276,1 +1,0.64,0.352,0.338,0.338,0.578,0.45,0,0,0,0,0.0788,1 +1,0.653,0.474,0.377,0.377,0.154,0,0,0,0,0,0.589,1 +1,0.64,0.664,0.461,0.461,0,0,0,0,0,0,0.606,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.216,1 +1,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.32,1 +1,0.528,0.0189,0.0499,0.0499,0,0,0,0,0,0,0.185,1 +0.667,0.528,0.0241,0.0763,0.0763,0,0,0,0,0,0,0,-0.75 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.16,-0.383 +0.333,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.117 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.197,-1 +0.667,0.546,0.135,0.23,0.23,0,0,0,0,0,0,0.0788,1 +0.667,0.554,0.0791,0.14,0.14,0,0,0.119,0.263,0.0667,0,0.118,1 +0.333,0.562,0.0873,0.14,0.14,0,0,0.384,0,0.85,0,0.0788,-0.217 +0.667,0.588,0.196,0.233,0.233,0,0,0.309,0,0,0,0.118,1 +0.667,0.614,0.24,0.242,0.242,0,0,0.488,0,0,0,0.45,1 +1,0.653,0.474,0.377,0.377,0,0,0.78,0,0,0,0.0545,1 +1,0.64,0.664,0.461,0.461,0,0,0.612,0,0,0,0,1 +1,0.615,0.82,0.59,0.59,0,0,0.37,0,0,0,0,1 +1,0.563,0.523,0.496,0.496,0,0,0.864,0,0,0,0,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.865,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0,0.303,1 +0.667,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.0631,-1 +0.667,0.554,0.0475,0.16,0.16,0,0,0,0,0,0,0,-0.45 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0.0138,0.0702,0,0,0.0788,0 +0.333,0.554,0.0595,0.15,0.15,0,0,0.665,0.193,0.217,0,0.118,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0.419,0,0,0.233,0.0788,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.473,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0,-0.45 +0.333,0.575,0.106,0.141,0.141,0,0,0,0,0,0,0.236,-1 +1,0.64,0.352,0.338,0.338,0,0,0,0,0,0,0.0394,1 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0,0,1 +0.667,0.614,0.448,0.324,0.324,0,0,0,0,0,0,0,1 +0.667,0.597,0.552,0.41,0.41,0,0,0,0,0,0,0.295,1 +1,0.563,0.777,0.72,0.72,0,0,0,0,0,0,0.132,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0.332,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.528,0.0452,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.528,0.0286,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.528,0.0211,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.274,1 +1,0.528,0.0226,0.0763,0.0763,0,0,0,0,0,0,0.326,1 +1,0.537,0.0302,0.135,0.135,0,0,0,0,0,0,0.414,1 +1,0.549,0.0444,0.162,0.162,0,0,0,0,0,0.233,0.248,1 +1,0.546,0.113,0.27,0.27,0,0,0,0,0,0,0.233,1 +1,0.546,0.148,0.258,0.258,0,0,0,0,0,0,0.275,1 +1,0.538,0.253,0.351,0.351,0,0,0,0,0,0,0.122,1 +0.667,0.546,0.191,0.24,0.24,0,0,0,0,0,0,0,1 +0.667,0.546,0.205,0.232,0.232,0,0,0,0,0,0,0.0788,1 +0.667,0.546,0.241,0.23,0.23,0,0,0,0,0,0,0.197,-0.3 +0.333,0.554,0.146,0.14,0.14,0,0,0,0,0,0.15,0.236,-0.0333 +0.667,0.563,0.301,0.23,0.23,0,0,0,0,0,0.317,0.0788,-0.25 +1,0.602,0.465,0.324,0.324,0,0,0,0,0,0,0.197,1 +1,0.64,0.481,0.338,0.338,0,0,0,0,0,0,0.0788,1 +1,0.653,0.567,0.377,0.377,0,0,0,0,0,0,0,1 +1,0.64,0.745,0.461,0.461,0,0,0,0,0,0,0,1 +1,0.615,0.876,0.59,0.59,0,0,0,0,0,0,0,1 +1,0.563,0.808,0.72,0.72,0,0,0,0,0,0,0.197,1 +1,0.529,0.346,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.503,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0907,1 +1,0.549,0.0444,0.162,0.162,0.492,0.65,0,0,0,0,0.491,1 +1,0.546,0.113,0.27,0.27,0.333,0.483,0,0,0,0,0.497,1 +0.667,0.546,0.148,0.258,0.258,0,0,0,0,0,0,0,-0.617 +0.333,0.554,0.0964,0.15,0.15,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.105,0.145,0.145,0,0,0,0,0,0,0.158,0 +0.667,0.546,0.205,0.232,0.232,0,0,0,0,0,0,0.0788,-0.367 +0.667,0.546,0.241,0.23,0.23,0,0,0,0,0,0,0.0788,-0.25 +0.667,0.546,0.274,0.23,0.23,0,0,0,0,0,0,0.0788,1 +0.667,0.562,0.16,0.14,0.14,0,0,0,0,0,0.4,0.118,1 +1,0.602,0.465,0.324,0.324,0,0,0,0,0,0.0667,0.118,1 +1,0.64,0.481,0.338,0.338,0,0,0,0,0,0,0,1 +1,0.653,0.567,0.377,0.377,0,0,0,0,0,0,0.344,1 +1,0.64,0.745,0.461,0.461,0,0,0,0,0,0,0.0961,1 +1,0.597,0.59,0.41,0.41,0,0,0,0,0,0,0.475,1 +1,0.563,0.545,0.496,0.496,0,0,0,0,0,0,0.0818,1 +1,0.529,0.346,0.386,0.386,0,0,0,0,0,0,0.199,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.186,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.528,0.0158,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.442,1 +0.667,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0.315,-0.5 +0.667,0.546,0.103,0.25,0.25,0,0,0,0,0,0,0.236,-0.5 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.158,-0.3 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.236,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.0788,0 +0.667,0.563,0.159,0.23,0.23,0,0,0,0,0,0,0.118,-0.8 +1,0.602,0.287,0.324,0.324,0,0,0,0,0,0.233,0,-0.217 +0.667,0.614,0.24,0.242,0.242,0,0,0,0,0,0,0.255,-0.217 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0,0.32,1 +1,0.64,0.664,0.461,0.461,0,0,0,0,0,0,0.0788,1 +0.667,0.597,0.552,0.41,0.41,0,0,0,0,0,0,0,1 +0.667,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0.14,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.152,1 +1,0.528,0.0189,0.0499,0.0499,0,0,0,0,0,0,0.392,1 +1,0.495,0.0324,0.103,0.103,0,0,0,0,0,0,0.217,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0,0.0634,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.133 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0.617,0.118,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.433,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0.158,0 +0.333,0.575,0.106,0.141,0.141,0,0,0,0,0,0.0667,0.0788,-0.883 +0.667,0.614,0.24,0.242,0.242,0,0,0,0,0,0.167,0,-0.75 +1,0.653,0.474,0.377,0.377,0.379,0.45,0,0,0,0,0.276,1 +1,0.64,0.664,0.461,0.461,0.469,0,0,0,0,0,0,1 +1,0.579,0.284,0.23,0.23,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.3 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.283 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0896,1 +1,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0.381,1 +1,0.549,0.0407,0.162,0.162,0,0,0,0,0,0,0.335,1 +0.667,0.554,0.0475,0.16,0.16,0,0,0,0,0,0.567,0.402,-0.5 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0.367,0.0394,-0.917 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0.276,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.236,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0.333,0.575,0.106,0.141,0.141,0,0,0,0,0,0,0,-0.167 +0.333,0.588,0.128,0.146,0.146,0,0,0,0,0,0.317,0,-1 +0.667,0.623,0.321,0.268,0.268,0,0,0,0,0,0.383,0.499,-0.25 +1,0.64,0.664,0.461,0.461,0,0,0,0,0,0,0.284,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.0351,1 +1,0.563,0.777,0.72,0.72,0,0,0,0,0,0,0.151,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0.158,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.115,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.306,-0.0833 +0.667,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.401,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0711,-0.583 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.817,0.114,-0.5 +0.667,0.546,0.12,0.232,0.232,0,0,0,0,0,0.35,0.158,-0.5 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.0788,-0.233 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.315,0 +0.667,0.563,0.159,0.23,0.23,0,0,0,0,0,0,0.118,0 +0.333,0.575,0.106,0.141,0.141,0,0,0,0,0,0,0.158,-0.217 +0.333,0.588,0.128,0.146,0.146,0,0,0,0,0,0.233,0.118,-0.5 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0,0.416,1 +1,0.64,0.664,0.461,0.461,0.201,0.0667,0,0,0,0,0.457,1 +0.667,0.597,0.552,0.41,0.41,0.637,1,0,0,0,0,0,1 +0.667,0.563,0.523,0.496,0.496,0,0.983,0,0,0,0,0.242,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.0841,0.0702,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.497,0.193,0.45,0,0.236,1 +1,0.528,0.0241,0.0763,0.0763,0,0,0.304,0,0,0,0.158,1 +1,0.537,0.0324,0.135,0.135,0,0,0.216,0,0,0,0.264,1 +1,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.291,-0.75 +0.667,0.554,0.0475,0.16,0.16,0,0,0,0,0,0,0.156,-0.267 +0.667,0.546,0.0926,0.258,0.258,0,0,0,0,0,0,0.214,0 +0.667,0.546,0.103,0.25,0.25,0,0,0,0,0,0,0.102,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.0788,-0.767 +0.333,0.554,0.0791,0.14,0.14,0,0,0.133,0.263,0.567,0,0.197,-0.25 +0.667,0.563,0.159,0.23,0.23,0,0,0,0,0.35,0,0.0788,1 +1,0.602,0.287,0.324,0.324,0,0,0,0,0,0.233,0.197,1 +1,0.64,0.352,0.338,0.338,0,0,0,0,0,0,0.158,1 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0,0.108,1 +1,0.64,0.664,0.461,0.461,0,0,0,0,0,0,0.336,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.0394,1 +1,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0.0975,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.4,0,1 +1,0.546,0.113,0.27,0.27,0,0,0.237,0.158,0,0.533,0.0394,1 +1,0.546,0.148,0.258,0.258,0,0,0.651,0.386,0.45,0,0.118,1 +0.667,0.546,0.175,0.25,0.25,0,0,0.317,0,0,0,0,1 +0.667,0.546,0.191,0.24,0.24,0,0,0.317,0,0,0,0.0788,1 +0.667,0.546,0.205,0.232,0.232,0.723,0.9,0,0,0,0,0.551,-0.15 +0.333,0.554,0.129,0.14,0.14,0.693,0.233,0,0,0,0,0.197,-0.15 +0.667,0.546,0.274,0.23,0.23,0.497,0,0.462,0.263,0.15,0,0.276,1 +0.667,0.563,0.301,0.23,0.23,0,0,0.563,0,0.0667,0,0.197,1 +1,0.602,0.465,0.324,0.324,0,0,0.312,0,0,0,0,1 +1,0.64,0.481,0.338,0.338,0,0,0,0,0,0,0,1 +1,0.653,0.567,0.377,0.377,0,0,0,0,0,0,0.249,1 +1,0.64,0.745,0.461,0.461,0,0,0,0,0,0,0.108,1 +0.667,0.597,0.59,0.41,0.41,0,0,0,0,0,0,0.128,1 +1,0.563,0.808,0.72,0.72,0,0,0,0,0,0,0,1 +1,0.529,0.346,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.503,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.528,0.0452,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.528,0.0286,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.528,0.0211,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.528,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.237,1 +1,0.546,0.148,0.258,0.258,0,0,0,0,0,0.233,0.256,1 +1,0.538,0.253,0.351,0.351,0,0,0,0,0,0,0.236,1 +0.667,0.546,0.191,0.24,0.24,0,0,0,0,0,0.15,0.236,-0.183 +0.333,0.554,0.111,0.141,0.141,0,0,0,0,0,1,0.236,-0.167 +1,0.538,0.352,0.32,0.32,0,0,0.546,0.263,0.45,0.0167,0,1 +1,0.538,0.402,0.32,0.32,0,0,0.437,0,0,0,0.118,1 +1,0.563,0.443,0.321,0.321,0,0,0.159,0,0,0,0.118,1 +1,0.602,0.465,0.324,0.324,0,0,0,0,0,0.233,0,1 +1,0.64,0.481,0.338,0.338,0,0,0,0,0,0,0.276,1 +1,0.653,0.567,0.377,0.377,0,0,0,0,0,0,0,1 +0.667,0.614,0.503,0.324,0.324,0,0,0,0,0,0,0,-0.583 +0.667,0.597,0.59,0.41,0.41,0,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0.273,0,0,0,0,0,0,0.0788,0 +0.667,0.545,0.182,0.218,0.218,0,0,0,0,0,0,0,-0.583 +1,0.532,0.0896,0.116,0.116,0,0,0,0,0,0,0.118,1 +1,0.528,0.0384,0.0743,0.0743,0,0,0,0,0,0,0.0394,1 +1,0.528,0.0241,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.528,0.0174,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.528,0.0158,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.528,0.0189,0.0499,0.0499,0,0,0,0,0,0,0.0788,-0.25 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.263,-1 +0.667,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0.195,-0.717 +0.667,0.537,0.0655,0.274,0.274,0,0,0,0,0,0.317,0.254,0 +0.333,0.554,0.0475,0.16,0.16,0,0,0,0,0,1,0,0 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0.317,0.0394,0 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.197,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.7 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.236,-0.25 +0.667,0.614,0.448,0.324,0.324,0,0,0,0,0,0,0,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0,1 +1,0.562,0.269,0.273,0.273,0,0,0,0,0,0,0.0788,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0.711,1 +0.667,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.224,1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.45 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.276,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.276,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.45 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.623,0.321,0.268,0.268,0.19,0.317,0,0,0,0,0.197,1 +0.667,0.614,0.448,0.324,0.324,0.592,0.133,0,0,0,0,0.475,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.279,1 +1,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0954,1 +1,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0.237,1 +1,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.747,1 +1,0.538,0.111,0.381,0.381,0,0,0,0,0,0,0.338,1 +0.667,0.546,0.0926,0.258,0.258,0,0,0,0,0,0,0.222,-0.5 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0.236,-0.45 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.158,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.118,0 +0.333,0.562,0.0873,0.14,0.14,0,0,0,0,0,0.233,0.118,-0.933 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0.0788,1 +1,0.64,0.352,0.338,0.338,0.143,0.0667,0,0,0,0,0.0394,1 +1,0.623,0.321,0.268,0.268,0.639,0.85,0,0,0,0,0.0788,1 +1,0.64,0.664,0.461,0.461,0.604,0,0,0,0,0,0.0394,1 +1,0.615,0.82,0.59,0.59,0.682,0,0,0,0,0,0.0394,1 +1,0.563,0.777,0.72,0.72,0.658,0,0,0,0,0,0.0743,1 +1,0.545,0.167,0.218,0.218,0.201,0,0,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.403,1 +1,0.528,0.0189,0.0499,0.0499,0,0,0,0,0,0,0.25,1 +1,0.495,0.0324,0.103,0.103,0,0,0,0,0,0,0.364,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0,0.296,-0.75 +0.667,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.214,-0.85 +0.333,0.554,0.0475,0.16,0.16,0,0,0,0,0,0,0.427,0 +0.333,0.554,0.0542,0.154,0.154,0.312,0.317,0,0,0,0,0.0788,0 +0.333,0.554,0.0595,0.15,0.15,0.253,0.133,0.518,0.263,0.567,0,0.0788,0 +0.667,0.546,0.114,0.24,0.24,0,0,0.65,0,0.35,0,0,0 +0.667,0.546,0.12,0.232,0.232,0,0,0.621,0,0,0.233,0.236,0 +0.667,0.546,0.135,0.23,0.23,0,0,0.83,0,0,0,0,0 +0.667,0.546,0.142,0.23,0.23,0,0,0.199,0,0,0,0.0788,0 +0.667,0.563,0.159,0.23,0.23,0,0,0,0,0,0,0,-0.35 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0,-1 +0.667,0.614,0.24,0.242,0.242,0.237,0.217,0,0,0,0,0.175,-0.25 +1,0.653,0.474,0.377,0.377,1,0,0,0,0,0,0.41,1 +1,0.64,0.664,0.461,0.461,0.435,0,0,0,0,0.233,0.101,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.185,1 +1,0.563,0.523,0.496,0.496,0,0,0,0,0,0,0.118,1 +1,0.529,0.318,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.495,0.0218,0.0504,0.0504,0,0,0,0,0,0,0.37,1 +0.667,0.528,0.0241,0.0763,0.0763,0,0,0,0,0,0,0.549,1 +0.667,0.537,0.0324,0.135,0.135,0,0,0,0,0,0,0.0394,-0.3 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.283 +0.667,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.411,-0.183 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0.158,-0.433 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.118,-0.25 +1,0.563,0.23,0.321,0.321,0,0,0,0,0,0,0.236,1 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0.317,0.315,1 +0.667,0.614,0.24,0.242,0.242,0,0,0,0,0,0.383,0,-0.15 +0.667,0.623,0.321,0.268,0.268,0,0,0,0,0,0.0667,0,1 +0.667,0.614,0.448,0.324,0.324,0,0,0,0,0,0.867,0,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0,1 +1,0.563,0.777,0.72,0.72,0,0,0,0,0,0,0,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.528,0.0204,0.0499,0.0499,0,0,0,0,0,0.233,0.0394,1 +1,0.495,0.0271,0.103,0.103,0,0,0,0,0,0,0.0788,1 +1,0.512,0.0422,0.22,0.22,0,0,0,0,0,0,0.158,1 +0.667,0.549,0.0444,0.162,0.162,0,0,0,0,0,0.233,0,1 +1,0.554,0.0655,0.16,0.16,0,0,0,0,0,0,0,1 +0.667,0.554,0.0828,0.154,0.154,0,0,0,0,0,0,0.0394,1 +0.667,0.546,0.175,0.25,0.25,0,0,0,0,0,0,0.245,1 +0.333,0.554,0.105,0.145,0.145,0,0,0,0,0,0,0.0951,-0.3 +0.333,0.554,0.111,0.141,0.141,0,0,0,0,0,0,0.569,-0.283 +0.333,0.554,0.129,0.14,0.14,0,0,0,0,0,0,0.322,1 +0.333,0.554,0.146,0.14,0.14,0.283,0.4,0,0,0,0,0,1 +0.333,0.562,0.16,0.14,0.14,0.571,0.05,0,0,0,0,0.394,1 +0.333,0.575,0.167,0.141,0.141,0.579,0,0,0,0,0.233,0.0788,1 +0.667,0.614,0.327,0.242,0.242,0.55,0.45,0,0,0,0,0.315,1 +1,0.653,0.567,0.377,0.377,0.206,0,0,0,0,0,0,1 +0.667,0.614,0.503,0.324,0.324,0.677,0.45,0,0,0,0,0,1 +0.667,0.597,0.59,0.41,0.41,0,0,0,0,0,0,0,1 +1,0.563,0.808,0.72,0.72,0,0,0,0,0,0,0,1 +1,0.512,0.51,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.474,0.233,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.528,0.0452,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.301,1 +1,0.512,0.0422,0.22,0.22,0,0,0,0,0,0,0.318,1 +1,0.537,0.0708,0.274,0.274,0,0,0,0,0,0,0.118,1 +1,0.546,0.113,0.27,0.27,0,0,0.56,0.263,0.4,0.233,0.118,1 +1,0.538,0.212,0.362,0.362,0,0,0.318,0,0.283,0,0,1 +1,0.538,0.253,0.351,0.351,0,0,0.485,0,0,0,0.118,1 +1,0.538,0.278,0.335,0.335,0,0,0.534,0,0,0,0,1 +1,0.538,0.298,0.324,0.324,0,0,0.313,0,0,0,0.315,1 +1,0.538,0.352,0.32,0.32,0,0,0.466,0,0,0,0.0788,1 +1,0.538,0.402,0.32,0.32,0,0,0.0963,0,0,0,0.28,1 +0.667,0.563,0.301,0.23,0.23,0,0,0,0,0,0,0.0788,1 +0.667,0.588,0.316,0.233,0.233,0,0,0,0,0,0,0,1 +1,0.64,0.481,0.338,0.338,0,0,0,0,0,0.233,0.158,1 +1,0.653,0.567,0.377,0.377,0,0,0,0,0,0,0.0788,1 +1,0.64,0.745,0.461,0.461,0,0,0,0,0,0,0.0394,1 +1,0.615,0.876,0.59,0.59,0,0,0,0,0,0,0,1 +1,0.563,0.808,0.72,0.72,0,0,0,0,0,0,0,1 +0.667,0.529,0.346,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.503,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.528,0.0384,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.528,0.0241,0.0763,0.0763,0,0,0,0,0,0,0.156,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0,0.564,1 +1,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.462,-0.75 +0.667,0.546,0.079,0.27,0.27,0,0,0,0,0,0,0.563,-0.667 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0.161,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0678,0.141,0.141,0,0,0,0,0,0,0.276,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0.14,0,0,0,0,0,0,0.308,0 +0.333,0.562,0.0873,0.14,0.14,0.419,0.45,0,0,0,0,0.365,-0.417 +0.333,0.575,0.106,0.141,0.141,0.592,0,0,0,0,0,0.431,-1 +1,0.64,0.352,0.338,0.338,0.494,0,0,0,0,0.317,0.276,1 +1,0.653,0.474,0.377,0.377,0,0,0,0,0,0.85,0,1 +1,0.64,0.664,0.461,0.461,0,0,0.26,0.263,0.0667,0,0,1 +1,0.615,0.82,0.59,0.59,0,0,0.523,0,0.15,0,0.0394,1 +1,0.563,0.523,0.496,0.496,0,0,0.303,0,0,0,0,1 +1,0.545,0.167,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.532,0.0783,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.133 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.263,1 +1,0.528,0.0241,0.0763,0.0763,0,0,0,0,0,0,0.346,1 +1,0.512,0.0489,0.22,0.22,0,0,0,0,0,0,0.265,1 +0.667,0.537,0.0655,0.274,0.274,0,0,0,0,0,0,0.219,1 +0.667,0.546,0.079,0.27,0.27,0,0,0,0,0,0,0,-0.75 +0.333,0.554,0.0542,0.154,0.154,0,0,0,0,0,0,0.118,-0.633 +0.333,0.554,0.0595,0.15,0.15,0,0,0,0,0,0,0.315,0 +0.333,0.554,0.0648,0.145,0.145,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0.14,0,0,0,0,0,0.0667,0.0788,0 +0.667,0.546,0.142,0.23,0.23,0,0,0,0,0,0.167,0.0394,0 +0.667,0.563,0.159,0.23,0.23,0,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0.233,0,0,0,0,0,0,0,-0.633 +0.667,0.614,0.24,0.242,0.242,0,0,0,0,0,0.0667,0.263,-0.75 +1,0.653,0.474,0.377,0.377,0.695,0.45,0,0,0,0.633,0.118,1 +1,0.64,0.664,0.461,0.461,0.089,0,0,0,0,0,0.0394,1 +1,0.615,0.82,0.59,0.59,0,0,0,0,0,0,0.14,1 +1,0.563,0.777,0.72,0.72,0,0,0.356,0.263,0.317,0,0.0394,1 +1,0.529,0.318,0.386,0.386,0,0,0.699,0,0.133,0,0.0394,1 +1,0.503,0.141,0.183,0.183,0,0,0.427,0,0,0,0.0394,1 +1,0.495,0.059,0.099,0.099,0,0,0.558,0,0,0,0,1 +1,0.528,0.0236,0.0578,0.0578,0,0,0.564,0,0,0,0.118,1 +1,0.528,0.0171,0.0495,0.0495,0,0,0.691,0,0,0,0.118,1 +1,0.528,0.0157,0.0495,0.0495,0,0,0.485,0,0,0,0.433,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.241,1 +0.667,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.0394,-0.5 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0,-1 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.197,-0.317 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.315,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0.233,0,0 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0.252,0,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0.169,0,0,0,0,0,0,0,-0.8 +0.333,0.588,0.224,0.206,0.206,0,0,0,0,0,0,0,-1 +0.667,0.597,0.532,0.462,0.462,0,0,0,0,0,0,0.444,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0.314,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0,0.262,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.537,0.0316,0.136,0.136,0,0,0,0,0,0.233,0.622,1 +0.667,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.153,1 +0.667,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0.481,1 +0.667,0.546,0.0894,0.263,0.263,0,0,0,0,0,0,0.569,1 +0.667,0.546,0.0996,0.256,0.256,0,0,0,0,0,0,0.447,1 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.456,1 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.256,1 +0.667,0.546,0.13,0.235,0.235,0,0,0,0,0,0,0.226,1 +0.667,0.546,0.137,0.235,0.235,0,0,0,0,0,0,0.376,1 +0.667,0.563,0.153,0.236,0.236,0,0,0,0,0,0,0.0788,-0.333 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.276,0 +0.667,0.614,0.232,0.252,0.252,0,0,0,0,0,0.0667,0,-0.333 +0.667,0.623,0.31,0.289,0.289,0.361,0.45,0,0,0,0.167,0.0394,1 +0.667,0.614,0.432,0.362,0.362,0.258,0,0,0,0,0,0.142,1 +0.667,0.597,0.532,0.462,0.462,0,0,0,0,0,0,0.214,1 +1,0.563,0.504,0.542,0.542,0,0,0,0,0,0,0.0907,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0.233,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.276,1 +1,0.528,0.0236,0.0768,0.0768,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0,1 +0.667,0.549,0.0396,0.163,0.163,0,0,0,0,0,0.15,0.558,-0.25 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.0392,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.05 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.236,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.55 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.435,-0.75 +0.667,0.614,0.232,0.252,0.252,0,0,0,0,0,0,0.368,1 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0,0.191,-0.15 +0.667,0.614,0.432,0.362,0.362,0,0,0,0,0,0,0.346,1 +1,0.615,0.79,0.668,0.668,0.309,0.317,0,0,0,0,0.483,1 +1,0.563,0.749,0.788,0.788,0.353,0.133,0,0,0,0,0,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0,0,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.546,0.142,0.263,0.263,0,0,0.154,0.263,0.0667,0,0.118,1 +1,0.546,0.169,0.256,0.256,0,0,0.318,0,0.383,0,0.197,1 +0.667,0.554,0.101,0.147,0.147,0,0,0.44,0,0,0,0,1 +0.667,0.554,0.108,0.143,0.143,0,0,0.278,0,0,0,0.158,1 +0.667,0.554,0.125,0.142,0.142,0,0,0.44,0,0,0,0.0788,1 +0.667,0.554,0.141,0.142,0.142,0,0,0.468,0,0,0,0.0394,-0.5 +0.333,0.562,0.154,0.143,0.143,0,0,0.471,0,0,0,0.0788,-0.117 +0.333,0.575,0.162,0.144,0.144,0,0,0.176,0,0,0,0.154,0 +0.333,0.588,0.167,0.151,0.151,0,0,0,0,0,0.233,0.307,0 +0.667,0.623,0.37,0.289,0.289,0.243,0.317,0,0,0,0,0.197,-0.617 +1,0.64,0.718,0.518,0.518,0.803,0.6,0,0,0,0,0.0394,1 +1,0.597,0.569,0.462,0.462,0.602,0,0,0,0,0,0.0788,1 +1,0.563,0.525,0.542,0.542,0,0,0,0,0,0,0,1 +1,0.529,0.334,0.397,0.397,0,0,0,0,0,0,0.236,1 +1,0.532,0.0868,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0791,1 +1,0.528,0.0201,0.05,0.05,0,0,0,0,0,0,0.195,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +0.667,0.554,0.0803,0.156,0.156,0,0,0,0,0,0.317,0.0394,1 +0.667,0.546,0.169,0.256,0.256,0,0,0,0,0,0.15,0.236,1 +0.667,0.546,0.184,0.245,0.245,0,0,0,0,0,0,0.118,1 +0.667,0.546,0.198,0.237,0.237,0,0,0,0,0,0,0,1 +0.667,0.546,0.232,0.235,0.235,0,0,0,0,0,0,0.118,1 +0.667,0.546,0.264,0.235,0.235,0,0,0,0,0,0,0.0394,1 +0.667,0.563,0.29,0.236,0.236,0,0,0,0,0,0,0.433,1 +1,0.602,0.448,0.334,0.334,0,0,0,0,0,0,0.0788,1 +1,0.64,0.464,0.353,0.353,0,0,0,0,0,0,0.0394,1 +1,0.653,0.546,0.408,0.408,0,0,0,0,0,0,0.412,1 +1,0.64,0.718,0.518,0.518,0,0,0,0,0,0,0,1 +1,0.615,0.844,0.668,0.668,0,0,0,0,0,0.233,0,1 +1,0.563,0.779,0.788,0.788,0,0,0,0,0,0,0,1 +1,0.512,0.492,0.571,0.571,0,0,0.263,0.263,0.0667,0,0.337,1 +1,0.503,0.155,0.183,0.183,0,0,0.456,0,0.383,0,0.139,1 +1,0.495,0.059,0.099,0.099,0,0,0.3,0,0,0,0,1 +1,0.528,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0788,1 +1,0.528,0.0171,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.528,0.0157,0.0495,0.0495,0,0,0,0,0,0,0.362,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.037,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.314,1 +1,0.512,0.0474,0.222,0.222,0,0,0,0,0,0,0.465,1 +1,0.525,0.087,0.39,0.39,0.246,0.317,0,0,0,0,0.0394,-0.5 +0.333,0.554,0.0461,0.162,0.162,0.253,0.133,0,0,0,0,0.118,-0.233 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.149,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.294,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.217 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0.0667,0.0788,-0.75 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0.167,0.354,-0.05 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0.567,0.0788,-0.283 +0.667,0.563,0.153,0.236,0.236,0,0,0,0,0,0.15,0.0394,1 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0.233,0.118,-0.283 +0.667,0.614,0.232,0.252,0.252,0.613,0.45,0,0,0,0.467,0,1 +1,0.653,0.457,0.408,0.408,0,0,0,0,0,0,0.0394,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0,0,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0.29,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0.351,1 +1,0.512,0.453,0.571,0.571,0,0,0,0,0,0,0,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.077,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.717 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.236,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.158,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.276,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.0788,-0.95 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.411,-0.75 +1,0.64,0.339,0.353,0.353,0.33,0.317,0,0,0,0.0667,0.197,1 +1,0.653,0.457,0.408,0.408,0.246,0.6,0,0,0,1,0,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0.133,0.195,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0.262,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0.259,1 +1,0.512,0.453,0.571,0.571,0,0,0,0,0,0,0.0809,1 +1,0.503,0.136,0.183,0.183,0,0,0,0,0,0,0.0788,1 +1,0.528,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.528,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.537,0.0316,0.136,0.136,0,0,0,0,0,0,0.312,1 +1,0.549,0.0396,0.163,0.163,0,0,0,0,0,0,0.796,1 +1,0.538,0.107,0.387,0.387,0,0,0,0,0,0,0.183,1 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.0394,-1 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.158,-0.133 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0.233,0.0788,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.118,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.0394,-0.367 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0,-0.75 +0.333,0.588,0.124,0.151,0.151,0,0,0,0,0,0,0.0394,1 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0,0.0788,1 +0.667,0.614,0.432,0.362,0.362,0,0,0,0,0,0,0.12,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0.14,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0,1 +1,0.512,0.453,0.571,0.571,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.313,1 +1,0.512,0.0474,0.222,0.222,0,0,0,0,0,0,0.578,1 +1,0.525,0.087,0.39,0.39,0,0,0,0,0,0,0.344,1 +0.667,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0.23,1 +0.667,0.546,0.0894,0.263,0.263,0,0,0,0,0,0,0,1 +0.667,0.546,0.0996,0.256,0.256,0,0,0,0,0,0,0.118,-0.75 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.0394,-0.3 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.236,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.158,0 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0,-0.55 +0.333,0.588,0.124,0.151,0.151,0,0,0,0,0,0,0.118,-0.5 +0.333,0.592,0.163,0.169,0.169,0,0,0,0,0,0,0,-0.25 +0.333,0.588,0.224,0.206,0.206,0,0,0,0,0,0,0.207,-0.0833 +0.333,0.579,0.274,0.256,0.256,0,0,0,0,0,0,0,-0.317 +0.667,0.563,0.504,0.542,0.542,0,0,0,0,0,0,0.232,1 +1,0.512,0.453,0.571,0.571,0,0,0,0,0,0,0,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0.288,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.0788,1 +1,0.528,0.0186,0.05,0.05,0,0,0,0,0,0.15,0.208,1 +1,0.495,0.0314,0.104,0.104,0,0,0,0,0,0,0.411,1 +1,0.487,0.0631,0.308,0.308,0,0,0,0,0,0,0.445,1 +1,0.525,0.087,0.39,0.39,0,0,0,0,0,0,0.266,-0.75 +0.667,0.546,0.0764,0.274,0.274,0.49,0.217,0,0,0,0.233,0.725,-0.7 +0.667,0.546,0.0894,0.263,0.263,0.171,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.236,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.197,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0,-0.2 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.236,-1 +0.667,0.614,0.232,0.252,0.252,0,0,0,0,0,0.15,0,-0.25 +1,0.653,0.457,0.408,0.408,0,0,0,0,0,0,0,1 +1,0.64,0.64,0.518,0.518,0.702,0.683,0,0,0,0,0,1 +1,0.615,0.79,0.668,0.668,0.089,0,0,0,0,0,0,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0.158,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.549,0.0433,0.163,0.163,0,0,0,0,0,0,0.357,1 +1,0.554,0.0636,0.162,0.162,0,0,0,0,0,0,0.269,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.427,1 +0.667,0.546,0.184,0.245,0.245,0,0,0,0,0,0,0.158,-0.25 +0.333,0.554,0.108,0.143,0.143,0,0,0,0,0,0,0.0394,-0.2 +0.333,0.554,0.125,0.142,0.142,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.141,0.142,0.142,0,0,0,0,0,0,0.236,-0.433 +0.667,0.563,0.29,0.236,0.236,0,0,0,0,0,0,0.0394,1 +0.667,0.588,0.305,0.239,0.239,0,0,0,0,0,0,0,-0.25 +0.333,0.588,0.167,0.151,0.151,0,0,0.0489,0.0702,0,0,0.118,-0.25 +1,0.653,0.546,0.408,0.408,0,0,0.369,0.193,0.217,0,0.0394,1 +1,0.64,0.718,0.518,0.518,0,0,0.41,0,0,0.467,0.118,1 +1,0.615,0.844,0.668,0.668,0,0,0.612,0,0,0,0,1 +1,0.563,0.779,0.788,0.788,0,0,0.0352,0,0,0,0.108,1 +1,0.512,0.492,0.571,0.571,0,0,0,0,0,0,0.509,1 +1,0.503,0.155,0.183,0.183,0,0,0,0,0,0,0.285,1 +1,0.528,0.044,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.554,0.0803,0.156,0.156,0,0,0,0,0,0,0.262,1 +1,0.546,0.169,0.256,0.256,0,0,0,0,0,0,0.582,1 +1,0.546,0.184,0.245,0.245,0,0,0,0,0,0,0.412,1 +0.667,0.546,0.198,0.237,0.237,0.333,0.567,0,0,0,0.467,0.0394,1 +0.667,0.546,0.232,0.235,0.235,0.622,0.583,0,0,0,0,0.0788,1 +0.667,0.546,0.264,0.235,0.235,0.572,0,0,0,0,0,0.315,1 +0.667,0.563,0.29,0.236,0.236,0.579,0,0,0,0,0,0.0394,1 +0.667,0.588,0.305,0.239,0.239,0.63,0,0,0,0,0,0.158,1 +1,0.64,0.464,0.353,0.353,0.588,0,0,0,0,0,0.118,-0.25 +0.667,0.623,0.37,0.289,0.289,0.581,0,0,0,0,0,0.0394,-0.183 +0.667,0.614,0.485,0.362,0.362,0.579,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.462,0.38,0,0,0,0,0,0,-0.433 +1,0.563,0.779,0.788,0.788,0,0,0,0,0,0,0.0715,1 +1,0.529,0.334,0.397,0.397,0,0,0,0,0,0,0.334,1 +1,0.503,0.155,0.183,0.183,0,0,0,0,0,0,0.253,1 +1,0.495,0.059,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.528,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.451,1 +1,0.537,0.0316,0.136,0.136,0,0,0,0,0,0,0,1 +0.667,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.0788,-0.75 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.0788,-0.45 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0.233,0.118,-0.7 +0.667,0.563,0.153,0.236,0.236,0,0,0,0,0,0,0.0788,-0.5 +1,0.602,0.276,0.334,0.334,0,0,0,0,0,0,0.0788,1 +1,0.64,0.339,0.353,0.353,0,0,0,0,0,0,0,1 +1,0.653,0.457,0.408,0.408,0.23,0.317,0,0,0,0,0.118,1 +1,0.64,0.64,0.518,0.518,0.483,0.133,0,0,0,0,0.0788,1 +1,0.615,0.79,0.668,0.668,0.614,0,0,0,0,0,0.118,1 +1,0.563,0.749,0.788,0.788,0.639,0,0,0,0,0,0,1 +1,0.512,0.453,0.571,0.571,0.667,0,0,0,0,0,0,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.528,0.0186,0.05,0.05,0,0,0,0,0,0,0.539,1 +0.667,0.495,0.0314,0.104,0.104,0,0,0,0,0,0,0.882,1 +0.667,0.512,0.0474,0.222,0.222,0,0,0.142,0.263,0.217,0,0.431,1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.191,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.383 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.315,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.158,-0.867 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.0394,-0.5 +0.667,0.614,0.232,0.252,0.252,0.251,0.0667,0,0,0,0.317,0.0788,1 +1,0.623,0.31,0.289,0.289,0.714,0.15,0,0,0,0.15,0.0394,1 +1,0.64,0.64,0.518,0.518,0.696,0,0,0,0,0,0,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0,1 +1,0.563,0.504,0.542,0.542,0,0,0,0,0,0,0.196,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0,0.149,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.528,0.0374,0.0743,0.0743,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.25 +0.333,0.549,0.0396,0.163,0.163,0,0,0,0,0,0.717,0.0394,-1 +0.667,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0,-0.317 +0.667,0.546,0.0894,0.263,0.263,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.65,0.394,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.276,0 +0.333,0.554,0.0766,0.142,0.142,0.541,0.217,0,0,0,0,0.197,0 +0.333,0.562,0.0846,0.143,0.143,0.698,0,0,0,0,0,0,-0.05 +0.333,0.575,0.103,0.144,0.144,0.445,0,0,0,0,0,0.0788,-1 +0.667,0.614,0.232,0.252,0.252,0.155,0.0667,0,0,0,0,0.236,-0.5 +1,0.653,0.457,0.408,0.408,0.716,0.85,0,0,0,0,0,1 +1,0.64,0.64,0.518,0.518,0.709,0,0,0,0,0,0.322,1 +1,0.615,0.79,0.668,0.668,0.685,0,0,0,0,0,0,1 +1,0.563,0.504,0.542,0.542,0.602,0,0,0,0,0,0.2,1 +1,0.545,0.161,0.223,0.223,0,0,0,0,0,0,0.485,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0.224,1 +1,0.528,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.167,1 +1,0.537,0.0316,0.136,0.136,0,0,0,0,0,0,0.195,1 +1,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.803,1 +1,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0.212,-0.5 +0.667,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.401,-0.417 +0.667,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.347,0 +0.667,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.197,-0.15 +0.667,0.546,0.137,0.235,0.235,0,0,0,0,0,0,0.201,-0.75 +1,0.563,0.222,0.329,0.329,0,0,0,0,0,0,0.407,1 +1,0.602,0.276,0.334,0.334,0,0,0,0,0,0,0.0394,1 +0.667,0.614,0.232,0.252,0.252,0,0,0,0,0,0.233,0.158,1 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0,0.0788,1 +0.667,0.614,0.432,0.362,0.362,0,0,0,0,0,0,0.0788,1 +0.667,0.597,0.532,0.462,0.462,0,0,0,0,0,0,0,-0.15 +0.333,0.562,0.26,0.296,0.296,0,0,0,0,0,0,0,-0.15 +1,0.512,0.453,0.571,0.571,0,0,0,0,0,0,0.346,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.115,1 +1,0.528,0.0236,0.0768,0.0768,0,0,0,0,0,0,0.351,1 +1,0.512,0.0474,0.222,0.222,0,0,0,0,0,0,0.281,1 +1,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.183,1 +1,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0.0788,-0.5 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.378,-0.0833 +0.667,0.546,0.0996,0.256,0.256,0,0,0,0,0,0.233,0.317,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.0394,-0.0667 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.375,-0.5 +0.667,0.546,0.13,0.235,0.235,0,0,0,0,0,0,0.264,1 +0.667,0.546,0.137,0.235,0.235,0,0,0,0,0,0,0.0788,1 +0.667,0.563,0.153,0.236,0.236,0,0,0,0,0,0,0.276,1 +0.667,0.588,0.19,0.239,0.239,0,0,0.101,0.0702,0,0,0,1 +1,0.64,0.339,0.353,0.353,0.407,0.567,0.549,0.193,0.45,0.233,0.0394,1 +1,0.653,0.457,0.408,0.408,0.702,0.35,0.11,0,0,0,0,1 +1,0.64,0.64,0.518,0.518,0.138,0,0,0,0,0,0,1 +1,0.615,0.79,0.668,0.668,0.504,0.45,0,0,0,0,0.197,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0,1 +1,0.545,0.161,0.223,0.223,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +0.667,0.546,0.198,0.237,0.237,0,0,0,0,0,0,0.0788,1 +0.667,0.546,0.232,0.235,0.235,0.768,0.45,0,0,0,0,0.197,1 +0.667,0.546,0.264,0.235,0.235,0.147,0,0,0,0,0,0.118,1 +0.667,0.563,0.29,0.236,0.236,0,0,0,0,0,0,0.0394,1 +0.667,0.588,0.305,0.239,0.239,0,0,0,0,0,0,0.512,1 +0.667,0.614,0.315,0.252,0.252,0,0,0,0,0,0,0.0394,1 +1,0.653,0.546,0.408,0.408,0,0,0,0,0,0.233,0.0788,1 +1,0.64,0.718,0.518,0.518,0,0,0,0,0,0,0.0678,1 +1,0.615,0.844,0.668,0.668,0,0,0,0,0,0,0.118,1 +1,0.563,0.779,0.788,0.788,0,0,0,0,0,0,0,1 +1,0.512,0.492,0.571,0.571,0,0,0,0,0,0,0.234,1 +1,0.474,0.224,0.249,0.249,0,0,0,0,0,0,0.244,1 +1,0.495,0.0699,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.528,0.028,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.817,0.194,1 +1,0.546,0.142,0.263,0.263,0,0,0,0,0,0.133,0.374,1 +1,0.546,0.169,0.256,0.256,0,0,0,0,0,0.233,0.118,1 +0.667,0.546,0.184,0.245,0.245,0.44,0.567,0,0,0,0,0.197,1 +0.667,0.546,0.198,0.237,0.237,0.677,0.35,0,0,0,0,0.151,1 +1,0.538,0.339,0.328,0.328,0,0,0,0,0,0,0.233,1 +0.667,0.546,0.264,0.235,0.235,0,0,0,0,0,0,0.354,1 +0.667,0.563,0.29,0.236,0.236,0.316,0.317,0,0,0,0,0,1 +1,0.602,0.448,0.334,0.334,0.729,0.133,0,0,0,0,0.42,-0.25 +0.333,0.588,0.167,0.151,0.151,0.611,0,0.333,0.263,0.45,0,0.159,-0.05 +0.667,0.623,0.37,0.289,0.289,0,0,0.584,0,0,0,0,-0.283 +1,0.64,0.718,0.518,0.518,0,0,0.48,0,0,0,0,1 +1,0.615,0.844,0.668,0.668,0,0,0,0,0,0,0.102,1 +1,0.563,0.779,0.788,0.788,0,0,0,0,0,0,0.141,1 +1,0.512,0.492,0.571,0.571,0,0,0,0,0,0,0,1 +1,0.532,0.0868,0.116,0.116,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.125,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.883 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.425,0 +0.667,0.549,0.0396,0.163,0.163,0,0,0,0,0,0,0.183,0 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.158,0 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.276,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.0394,-0.883 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.569,-1 +0.333,0.588,0.124,0.151,0.151,0,0,0,0,0,0.317,0.38,1 +1,0.653,0.457,0.408,0.408,0,0,0,0,0,0.15,0.245,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0,0.461,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0.06,1 +0.667,0.563,0.504,0.542,0.542,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.108,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.484,1 +0.667,0.512,0.0474,0.222,0.222,0,0,0.145,0.0702,0,0,0.177,-1 +0.667,0.537,0.0633,0.277,0.277,0.387,0.217,0.651,0.193,0.667,0,0,-0.75 +0.667,0.546,0.0764,0.274,0.274,0.485,0,0.388,0,0,0,0.0394,0 +0.667,0.546,0.0894,0.263,0.263,0.141,0,0.44,0,0,0,0.0788,0 +0.667,0.546,0.0996,0.256,0.256,0,0,0.694,0,0,0,0.0394,0 +0.667,0.546,0.11,0.245,0.245,0,0,0.59,0,0,0,0.0788,0 +0.667,0.546,0.116,0.237,0.237,0,0,0.674,0,0,0,0.354,0 +0.333,0.554,0.073,0.142,0.142,0,0,0.193,0,0,0,0.315,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,0 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.0788,-0.733 +0.333,0.588,0.124,0.151,0.151,0,0,0,0,0,0.233,0.0788,-1 +1,0.653,0.457,0.408,0.408,0,0,0,0,0,0,0,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0,0.0788,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0,1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.528,0.0186,0.05,0.05,0,0,0,0,0,0,0.0394,1 +1,0.528,0.0236,0.0768,0.0768,0,0,0,0,0,0,0.461,1 +1,0.487,0.0631,0.308,0.308,0,0,0,0,0,0,0.323,1 +0.667,0.537,0.0633,0.277,0.277,0,0,0,0,0,0.233,0.236,1 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.0539,-0.15 +0.667,0.546,0.0894,0.263,0.263,0,0,0,0,0,0,0.253,1 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.567,1 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.055,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0.596,0.86,0,0,0.276,1 +0.667,0.554,0.073,0.142,0.142,0,0,0.318,0.193,0.667,0,0.0394,1 +0.667,0.554,0.0766,0.142,0.142,0,0,0.436,0,0,0,0.236,1 +0.667,0.562,0.0846,0.143,0.143,0,0,0.567,0,0,0,0.118,1 +0.667,0.588,0.19,0.239,0.239,0,0,0.659,0,0,0,0.236,1 +0.667,0.614,0.232,0.252,0.252,0,0,0.48,0,0,0,0.177,1 +0.667,0.623,0.31,0.289,0.289,0,0,0.312,0,0,0,0,1 +0.667,0.614,0.432,0.362,0.362,0,0,0,0,0,0,0,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0,1 +1,0.562,0.26,0.296,0.296,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0,-1 +0.667,0.528,0.0236,0.0768,0.0768,0,0,0,0,0,0,0.304,-0.45 +0.667,0.537,0.0316,0.136,0.136,0,0,0,0,0,0,0.0788,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0394,0 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.158,0 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.312,0 +0.667,0.546,0.11,0.245,0.245,0,0,0,0,0,0,0.318,0 +0.667,0.546,0.116,0.237,0.237,0,0,0,0,0,0,0.207,-0.45 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0,-1 +0.667,0.546,0.137,0.235,0.235,0,0,0,0,0,0,0.0788,1 +0.667,0.563,0.153,0.236,0.236,0,0,0,0,0,0,0.0394,1 +0.667,0.588,0.19,0.239,0.239,0,0,0,0,0,0,0.118,1 +0.667,0.614,0.232,0.252,0.252,0.164,0.0667,0,0,0,0,0,-0.25 +0.333,0.592,0.163,0.169,0.169,0.354,0.383,0,0,0,0,0,-0.367 +0.667,0.614,0.432,0.362,0.362,0.645,0.45,0,0,0,0,0.0394,0 +0.667,0.597,0.532,0.462,0.462,0.318,0,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0.296,0,0,0,0,0,0.567,0,-0.617 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0.15,0.0788,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.155,1 +1,0.528,0.0186,0.05,0.05,0,0,0,0,0,0,0.121,1 +1,0.495,0.0314,0.104,0.104,0,0,0,0,0,0.317,0.338,1 +1,0.512,0.0474,0.222,0.222,0,0,0,0,0,0.633,0.44,1 +0.667,0.549,0.0396,0.163,0.163,0,0,0,0,0,0,0.0394,-1 +0.667,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.118,-0.5 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.158,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0.667,0.546,0.13,0.235,0.235,0,0,0,0,0,0,0.315,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.0394,-0.233 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.0394,-1 +0.333,0.588,0.124,0.151,0.151,0,0,0,0,0,0,0.118,-0.25 +1,0.653,0.457,0.408,0.408,0,0,0,0,0,0,0.0785,1 +1,0.64,0.64,0.518,0.518,0.173,0.0667,0,0,0,0.567,0.348,1 +1,0.615,0.79,0.668,0.668,0.791,0.383,0,0,0,0.15,0,1 +1,0.563,0.504,0.542,0.542,0.724,0,0,0,0,0,0,1 +1,0.529,0.307,0.397,0.397,0.59,0,0,0,0,0,0,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.528,0.044,0.0743,0.0743,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.528,0.0201,0.05,0.05,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0.298,0.317,0,0,0,0,0,1 +1,0.554,0.0636,0.162,0.162,0.243,1,0,0,0,0,0.126,-0.333 +0.667,0.554,0.0803,0.156,0.156,0,0.767,0,0,0,0,0.649,0 +0.667,0.546,0.169,0.256,0.256,0,0,0,0,0,0.317,0.0394,-0.317 +1,0.538,0.268,0.343,0.343,0,0,0,0,0,0.4,0,1 +0.333,0.554,0.108,0.143,0.143,0,0,0,0,0,0,0.158,1 +0.333,0.554,0.125,0.142,0.142,0,0,0,0,0,0,0.0788,1 +0.333,0.554,0.141,0.142,0.142,0,0,0,0,0,0,0.236,1 +0.333,0.562,0.154,0.143,0.143,0,0,0,0,0,0.0667,0.118,-0.917 +0.333,0.575,0.162,0.144,0.144,0,0,0,0,0,0.167,0.394,0 +0.667,0.614,0.315,0.252,0.252,0,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.667,0.614,0.485,0.362,0.362,0,0,0,0,0,0,0.0788,0 +0.667,0.597,0.569,0.462,0.462,0,0,0,0,0,0,0.157,-0.65 +0.333,0.562,0.272,0.296,0.296,0,0,0,0,0,0,0.385,-0.25 +0.667,0.529,0.334,0.397,0.397,0,0,0,0,0,0,0.133,1 +1,0.503,0.155,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.528,0.0222,0.0768,0.0768,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.24,1 +0.667,0.546,0.142,0.263,0.263,0,0,0,0,0,0,0.253,1 +0.667,0.546,0.169,0.256,0.256,0,0,0,0,0,0,0.412,1 +0.667,0.546,0.184,0.245,0.245,0,0,0,0,0,0,0.348,1 +0.333,0.554,0.108,0.143,0.143,0,0,0,0,0,0,0.0788,1 +0.333,0.554,0.125,0.142,0.142,0,0,0,0,0,0,0,1 +0.333,0.554,0.141,0.142,0.142,0,0,0,0,0,0,0.197,1 +0.667,0.563,0.29,0.236,0.236,0,0,0,0,0,0,0.158,1 +0.333,0.575,0.162,0.144,0.144,0,0,0,0,0,0,0.0788,1 +0.333,0.588,0.167,0.151,0.151,0,0,0,0,0,0,0,1 +0.667,0.623,0.37,0.289,0.289,0,0,0,0,0,0,0,1 +0.667,0.614,0.485,0.362,0.362,0,0,0,0,0,0,0,1 +0.667,0.597,0.569,0.462,0.462,0,0,0,0,0,0,0.0394,1 +0.667,0.563,0.525,0.542,0.542,0,0,0,0,0,0.233,0,1 +0.667,0.545,0.176,0.223,0.223,0,0,0,0,0,0,0.117,1 +0.667,0.532,0.0868,0.116,0.116,0,0,0,0,0,0,0.0896,1 +0.667,0.528,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +0.667,0.528,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0394,1 +0.667,0.528,0.0171,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +0.667,0.528,0.0157,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.33,1 +1,0.512,0.0474,0.222,0.222,0,0,0,0,0,0,0.274,1 +1,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.337,1 +0.667,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.0568,-0.25 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.883 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0,0,0,0,0.158,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.0788,0 +0.333,0.554,0.0766,0.142,0.142,0,0,0,0,0,0,0.236,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.158,-0.617 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0.817,0.27,-0.5 +1,0.64,0.339,0.353,0.353,0,0,0,0,0,0.133,0.267,1 +1,0.653,0.457,0.408,0.408,0,0,0,0,0,0,0.153,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0,0.134,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.528,0.0236,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.528,0.0171,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.528,0.0157,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.152,1 +1,0.528,0.0236,0.0768,0.0768,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.333,0.549,0.0396,0.163,0.163,0,0,0,0,0,0,0.353,-1 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0,0.377,-0.6 +0.667,0.546,0.0894,0.263,0.263,0,0,0,0,0,0.233,0.242,0 +0.667,0.546,0.0996,0.256,0.256,0,0,0,0,0,0,0.272,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0.233,0.0394,0 +0.333,0.554,0.0657,0.143,0.143,0.148,0.0667,0,0,0,0,0.0788,0 +0.333,0.554,0.073,0.142,0.142,0.635,1,0,0,0,0,0.0788,0 +0.333,0.554,0.0766,0.142,0.142,0,0.55,0,0,0,0,0.0788,0 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.0394,0 +0.333,0.575,0.103,0.144,0.144,0,0,0,0,0,0,0.13,-0.583 +0.333,0.588,0.124,0.151,0.151,0,0,0,0,0,0.0667,0.133,-1 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0.167,0.152,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0,0.118,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0,1 +1,0.563,0.504,0.542,0.542,0,0,0,0,0,0,0.131,1 +1,0.545,0.161,0.223,0.223,0,0,0,0,0,0,0.119,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0702,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.467 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0.162,0,0,0,0,0,0.233,0.0788,0 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0.118,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0.515,0.263,0.567,0,0.0394,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0.674,0,1,0,0.158,0 +0.333,0.554,0.0657,0.143,0.143,0,0,0.19,0,0.0167,0,0.69,0 +0.333,0.554,0.073,0.142,0.142,0,0,0,0,0,0,0.155,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,0 +0.667,0.563,0.153,0.236,0.236,0,0,0,0,0,0,0.197,0 +0.667,0.588,0.19,0.239,0.239,0,0,0,0,0,0.817,0.0788,0 +0.667,0.614,0.232,0.252,0.252,0,0,0,0,0,0.383,0.0394,0 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0,0.0394,-0.467 +0.333,0.588,0.224,0.206,0.206,0,0,0,0,0,0.233,0.0788,-1 +0.333,0.579,0.274,0.256,0.256,0,0,0,0,0,0,0.208,-1 +1,0.563,0.749,0.788,0.788,0,0,0,0,0,0,0.0671,1 +1,0.545,0.161,0.223,0.223,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.128,0.0702,0,0,0.204,1 +1,0.512,0.0474,0.222,0.222,0,0,0.604,0.193,0.667,0,0.366,1 +1,0.525,0.087,0.39,0.39,0,0,0,0,0,0,0.461,1 +0.667,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0.117,-0.617 +0.333,0.554,0.0526,0.156,0.156,0,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0.153,0,0,0,0,0,0,0.197,0 +0.333,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0.0394,-0.367 +0.333,0.554,0.0657,0.143,0.143,0,0,0.168,0.263,0.0667,0.817,0.0394,-0.25 +0.667,0.546,0.13,0.235,0.235,0,0,0.517,0,0.15,0.133,0.0394,1 +0.667,0.546,0.137,0.235,0.235,0,0,0.532,0,0,0,0.197,1 +0.667,0.563,0.153,0.236,0.236,0,0,0.327,0,0,0,0.158,1 +1,0.602,0.276,0.334,0.334,0,0,0.529,0,0,0.0667,0,1 +1,0.64,0.339,0.353,0.353,0,0,0.11,0,0,1,0.0733,1 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0.367,0.638,1 +1,0.64,0.64,0.518,0.518,0.157,0.0667,0,0,0,0,0.616,1 +1,0.597,0.532,0.462,0.462,0.586,0.15,0,0,0,0,0,1 +1,0.563,0.749,0.788,0.788,0.717,0,0,0,0,0,0.452,1 +1,0.529,0.307,0.397,0.397,0,0,0,0,0,0,0,1 +1,0.532,0.0759,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.528,0.0374,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.528,0.0236,0.0578,0.0578,0,0,0,0,0,0,0.0788,1 +1,0.528,0.0171,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.528,0.0186,0.05,0.05,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.777,1 +0.667,0.537,0.0633,0.277,0.277,0,0,0,0,0,0,0.166,1 +0.667,0.546,0.0764,0.274,0.274,0,0,0,0,0,0,0.287,1 +0.667,0.546,0.0894,0.263,0.263,0,0,0,0,0,0,0.155,1 +0.667,0.546,0.0996,0.256,0.256,0,0,0,0,0,0,0.25,1 +0.667,0.554,0.0628,0.147,0.147,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.05 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.433,-0.283 +0.333,0.562,0.0846,0.143,0.143,0,0,0,0,0,0,0.604,-0.25 +0.667,0.588,0.19,0.239,0.239,0.709,0.45,0,0,0,0,0.158,1 +0.667,0.614,0.232,0.252,0.252,0.0785,0,0,0,0,0.233,0.118,1 +0.667,0.623,0.31,0.289,0.289,0,0,0,0,0,0,0,1 +1,0.64,0.64,0.518,0.518,0,0,0,0,0,0,0,1 +1,0.615,0.79,0.668,0.668,0,0,0,0,0,0,0.0394,1 +1,0.563,0.504,0.542,0.542,0,0,0,0,0,0,0.693,1 +1,0.545,0.161,0.223,0.223,0,0,0,0,0,0,0.0726,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.529,0.0203,0.0503,0.0503,0,0,0,0,0,0,0.0394,1 +1,0.529,0.0226,0.0781,0.0781,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.113,1 +1,0.548,0.113,0.286,0.286,0,0,0,0,0,0.483,0.433,1 +1,0.542,0.212,0.392,0.392,0,0,0,0,0,0.233,0.272,1 +1,0.542,0.252,0.381,0.381,0,0,0,0,0,0,0.187,1 +1,0.542,0.277,0.364,0.364,0,0,0,0,0,0,0.0394,1 +0.667,0.548,0.204,0.251,0.251,0.265,0.233,0,0,0,0,0.0788,1 +0.667,0.548,0.24,0.249,0.249,0.728,0.467,0,0,0,0.233,0.0788,1 +0.667,0.548,0.273,0.249,0.249,0,0,0,0,0,0,0,1 +0.667,0.566,0.3,0.251,0.251,0,0,0,0,0,0,0.118,1 +0.667,0.591,0.315,0.259,0.259,0,0,0,0,0,0.233,0.197,1 +0.667,0.617,0.326,0.286,0.286,0,0,0,0,0,0.25,0.583,1 +1,0.658,0.565,0.501,0.501,0,0,0,0,0,0,0.219,1 +1,0.645,0.743,0.656,0.656,0,0,0,0,0,0,0.115,1 +1,0.619,0.873,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.568,0.806,0.851,0.851,0,0,0,0,0,0,0.273,1 +1,0.516,0.509,0.561,0.561,0,0,0,0,0,0,0.0982,1 +1,0.477,0.232,0.249,0.249,0,0,0,0,0,0,0.156,1 +1,0.497,0.0721,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.529,0.0286,0.0578,0.0578,0,0,0,0,0,0,0.118,1 +1,0.529,0.0211,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.529,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.118,1 +1,0.555,0.0654,0.168,0.168,0,0,0,0,0,0,0.205,1 +1,0.548,0.147,0.278,0.278,0,0,0,0,0,0,0,1 +0.667,0.555,0.0961,0.16,0.16,0,0,0,0,0,0,0.473,1 +0.667,0.548,0.191,0.259,0.259,0,0,0,0,0,0,0,1 +0.667,0.548,0.204,0.251,0.251,0,0,0,0,0,0,0,1 +0.667,0.548,0.24,0.249,0.249,0,0,0.0398,0.246,0,0,0.118,1 +0.667,0.548,0.273,0.249,0.249,0,0,0.719,0.281,0.733,0,0.0394,1 +0.667,0.564,0.159,0.15,0.15,0,0,0.55,0,0.183,0.483,0.0394,1 +0.667,0.591,0.315,0.259,0.259,0,0,0.778,0,0,0,0.118,1 +1,0.645,0.479,0.404,0.404,0,0,0.54,0,0,0,0.236,1 +1,0.658,0.565,0.501,0.501,0,0,0.208,0,0,0,0,1 +1,0.645,0.743,0.656,0.656,0,0,0,0,0,0,0.187,1 +1,0.619,0.873,0.806,0.806,0,0,0,0,0,0,0.118,1 +1,0.568,0.806,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.531,0.345,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.505,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.497,0.0608,0.099,0.099,0,0,0,0,0,0,0.0788,1 +1,0.529,0.0241,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.529,0.0173,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.25,1 +1,0.514,0.0488,0.228,0.228,0,0,0,0,0,0,0.286,1 +1,0.529,0.09,0.402,0.402,0,0,0,0,0,0,0.243,1 +0.333,0.555,0.0473,0.168,0.168,0,0,0,0,0,0,0.118,1 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0,-1 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.0394,-0.2 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0.233,0.118,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0.158,0 +0.333,0.576,0.106,0.154,0.154,0,0,0,0,0,0,0.239,-0.95 +0.333,0.589,0.128,0.168,0.168,0,0,0,0,0,0,0.274,-0.25 +0.667,0.626,0.32,0.351,0.351,0,0,0,0,0,0,0.212,1 +0.667,0.617,0.446,0.454,0.454,0,0,0,0,0,0,0,1 +0.667,0.6,0.55,0.554,0.554,0.323,0.317,0,0,0,0,0,1 +1,0.568,0.774,0.851,0.851,0.503,0.617,0,0,0,0,0,1 +1,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0.181,1 +1,0.538,0.0323,0.139,0.139,0.71,0.467,0,0,0,0.167,0.171,1 +0.667,0.551,0.0406,0.167,0.167,0.293,0,0,0,0,0,0.244,1 +0.667,0.555,0.0473,0.168,0.168,0,0,0,0,0,0,0.229,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.0788,-0.233 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.197,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.274,0 +0.667,0.548,0.142,0.249,0.249,0,0,0,0,0,0,0.305,0 +0.667,0.566,0.158,0.251,0.251,0,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0,0.0394,-0.733 +0.333,0.589,0.128,0.168,0.168,0,0,0,0,0,0.233,0.215,-0.5 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0,0.158,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0,1 +1,0.6,0.55,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.564,0.269,0.317,0.317,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.839,1 +1,0.529,0.0158,0.0495,0.0495,0,0,0,0,0,0,0.228,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0817,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.473,1 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.499,1 +1,0.54,0.0653,0.284,0.284,0,0,0,0,0,0,0.852,1 +1,0.548,0.0788,0.286,0.286,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.517 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.236,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0.0667,0.236,-0.517 +0.667,0.566,0.158,0.251,0.251,0,0,0,0,0,0.167,0.276,-0.5 +1,0.606,0.286,0.363,0.363,0,0,0,0,0,0,0,1 +0.667,0.617,0.239,0.286,0.286,0,0,0,0,0,0.567,0.0788,-0.217 +0.667,0.626,0.32,0.351,0.351,0,0,0,0,0,0.15,0,-0.217 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.151,1 +1,0.529,0.0241,0.0781,0.0781,0,0,0,0,0,0,0.322,1 +1,0.49,0.0653,0.317,0.317,0,0,0,0,0,0,0.313,1 +0.667,0.54,0.0653,0.284,0.284,0,0,0,0,0,0,0.315,-0.75 +0.333,0.555,0.0473,0.168,0.168,0,0,0,0,0,0,0.0394,-0.567 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0.0138,0.0702,0,0,0.118,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0.723,0.193,0.217,0,0,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0.699,0,0,0,0.0394,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0.622,0,0,0,0.276,-0.05 +0.333,0.564,0.0871,0.15,0.15,0.358,0.317,0,0,0,0,0.354,-1 +0.333,0.576,0.106,0.154,0.154,0.768,0.15,0,0,0,0,0,-0.25 +0.667,0.617,0.239,0.286,0.286,0.564,0,0,0,0,0.233,0,1 +1,0.658,0.473,0.501,0.501,0.635,0,0,0,0,0,0,1 +1,0.645,0.662,0.656,0.656,0.667,0,0,0,0,0,0.0394,1 +1,0.619,0.817,0.806,0.806,0.108,0,0,0,0,0,0.0394,1 +1,0.568,0.774,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0.236,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.169,1 +1,0.529,0.0188,0.0503,0.0503,0,0,0,0,0,0,0.3,1 +1,0.529,0.0241,0.0781,0.0781,0,0,0,0,0,0.483,0.336,1 +1,0.514,0.0488,0.228,0.228,0,0,0,0,0,0,0.713,1 +1,0.529,0.09,0.402,0.402,0,0,0,0,0,0,0.798,1 +1,0.542,0.11,0.404,0.404,0,0,0,0,0,0.233,0.445,1 +0.667,0.548,0.0923,0.278,0.278,0,0,0,0,0,0,0.183,-0.583 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0.0667,0.276,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0.9,0.0394,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.236,-0.567 +0.667,0.555,0.0751,0.149,0.149,0,0,0,0,0,0.0667,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.167,0,1 +0.667,0.566,0.158,0.251,0.251,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0,0.0394,1 +0.667,0.617,0.239,0.286,0.286,0,0,0,0,0,0,0.0788,1 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0,0,-0.25 +0.667,0.617,0.446,0.454,0.454,0,0,0,0,0,0.0667,0.418,-0.0833 +0.667,0.6,0.55,0.554,0.554,0,0,0,0,0,0.167,0,-0.317 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.514,1 +1,0.529,0.0203,0.0503,0.0503,0,0,0,0,0,0,0.532,1 +1,0.529,0.0226,0.0781,0.0781,0,0,0,0,0,0,0.289,1 +1,0.538,0.0301,0.139,0.139,0,0,0,0,0,0,0.2,1 +1,0.551,0.0444,0.167,0.167,0,0,0,0,0,0.233,0.185,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +0.667,0.548,0.147,0.278,0.278,0,0,0,0,0,0.233,0.0788,1 +1,0.542,0.252,0.381,0.381,0,0,0,0,0,0,0,1 +0.667,0.548,0.191,0.259,0.259,0,0,0,0,0,0.233,0.0394,1 +0.667,0.548,0.204,0.251,0.251,0,0,0,0,0,0,0.66,1 +1,0.542,0.351,0.349,0.349,0,0,0,0,0,0,0.265,1 +1,0.542,0.401,0.349,0.349,0,0,0,0,0,0.483,0.0733,1 +1,0.568,0.441,0.351,0.351,0,0,0,0,0,0,0.312,1 +1,0.606,0.464,0.363,0.363,0,0,0,0,0,0,0.427,1 +0.667,0.617,0.326,0.286,0.286,0,0,0,0,0,0,0.279,1 +0.667,0.626,0.383,0.351,0.351,0,0,0,0,0,0,0.191,1 +0.667,0.617,0.501,0.454,0.454,0,0,0.229,0.263,0.217,0,0.13,1 +0.667,0.6,0.588,0.554,0.554,0,0,0.497,0,0,0,0,1 +1,0.566,0.543,0.584,0.584,0,0,0,0,0,0,0.12,1 +1,0.531,0.345,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.24,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.236,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.263,1 +1,0.555,0.0654,0.168,0.168,0,0,0,0,0,0,0.11,1 +1,0.555,0.0826,0.164,0.164,0,0,0,0,0,0.233,0.316,1 +1,0.548,0.174,0.27,0.27,0,0,0,0,0,0,0.214,1 +1,0.542,0.277,0.364,0.364,0,0,0,0,0,0,0.591,1 +1,0.542,0.297,0.352,0.352,0.64,0.467,0,0,0,0.233,0.162,1 +0.667,0.548,0.24,0.249,0.249,0.15,0,0,0,0,0,0.0394,1 +0.667,0.548,0.273,0.249,0.249,0,0,0,0,0,0,0.29,1 +1,0.568,0.441,0.351,0.351,0,0,0,0,0,0,0.197,1 +1,0.606,0.464,0.363,0.363,0,0,0,0,0,0,0.118,1 +1,0.645,0.479,0.404,0.404,0,0,0,0,0,0,0.118,1 +1,0.658,0.565,0.501,0.501,0,0,0,0,0,0,0.118,1 +1,0.645,0.743,0.656,0.656,0,0,0,0,0,0,0,1 +1,0.619,0.873,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.568,0.806,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.531,0.345,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.505,0.161,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.529,0.0188,0.0503,0.0503,0,0,0,0,0,0,0.0797,-0.25 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.296,-1 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.258,-0.167 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.424,0 +0.333,0.555,0.0473,0.168,0.168,0,0,0,0,0,0.233,0.401,0 +0.667,0.548,0.0923,0.278,0.278,0,0,0,0,0,0,0.349,0 +0.333,0.555,0.0593,0.16,0.16,0.654,0.467,0,0,0,0,0.276,0 +0.333,0.555,0.0646,0.154,0.154,0.564,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.15,0.283,0,0,0,0,0,0.197,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.118,-0.917 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0,-0.5 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0.233,0.0394,1 +0.333,0.576,0.106,0.154,0.154,0,0,0.0657,0.0702,0,0,0.276,1 +1,0.645,0.351,0.404,0.404,0.264,0.317,0.645,0.193,0.817,0,0.0788,1 +1,0.658,0.473,0.501,0.501,0.623,0.15,0.398,0,0.333,0,0,1 +0.667,0.617,0.446,0.454,0.454,0,0,0,0,0,0,0.112,1 +0.667,0.6,0.55,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.568,0.774,0.851,0.851,0,0,0,0,0,0,0.21,1 +1,0.516,0.468,0.561,0.561,0,0,0,0,0,0,0.112,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.529,0.0241,0.0781,0.0781,0,0,0,0,0,0,0.457,1 +1,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.157,-0.25 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.358,-0.8 +0.667,0.548,0.0788,0.286,0.286,0,0,0,0,0,0.483,0.477,0 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.236,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0,-0.05 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.0394,-1 +0.667,0.548,0.142,0.249,0.249,0,0,0,0,0,0,0.394,1 +0.667,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0.207,1 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0,0.178,1 +0.667,0.617,0.239,0.286,0.286,0,0,0,0,0,0,0.23,1 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0,0.118,1 +0.667,0.617,0.446,0.454,0.454,0,0,0,0,0,0,0,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.568,0.774,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.344,1 +1,0.538,0.0323,0.139,0.139,0,0,0.333,0.333,0,0,0.158,1 +1,0.54,0.0653,0.284,0.284,0,0,0.732,0.737,0.217,0,0,-0.75 +0.667,0.555,0.0473,0.168,0.168,0,0,0.58,0,0,0,0.158,-0.933 +0.667,0.548,0.0923,0.278,0.278,0,0,0.277,0,0,0,0.0788,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.197,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0.202,0.0667,0,0,0,0,0.208,0 +0.667,0.617,0.239,0.286,0.286,0.494,1,0,0,0,0,0.418,-0.917 +0.667,0.626,0.32,0.351,0.351,0,0.1,0,0,0,0,0.29,-0.75 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0.184,-0.15 +0.667,0.6,0.55,0.554,0.554,0,0,0,0,0,0.233,0.422,-0.133 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0.209,1 +1,0.531,0.317,0.391,0.391,0.408,0.467,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0.133,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.517 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0.463,0.263,0.217,0,0.354,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0.295,0.263,0.0667,0,0.0788,-0.5 +0.667,0.548,0.119,0.251,0.251,0,0,0.428,0,0.15,0,0.197,1 +0.667,0.548,0.134,0.249,0.249,0,0,0.352,0,0,0,0.197,1 +0.667,0.548,0.142,0.249,0.249,0,0,0.761,0,0,0,0.276,1 +0.667,0.566,0.158,0.251,0.251,0,0,0.801,0,0,0.233,0.276,1 +1,0.606,0.286,0.363,0.363,0,0,0.766,0,0,0.483,0.0788,1 +1,0.645,0.351,0.404,0.404,0,0,0.554,0,0,0,0.0394,1 +1,0.658,0.473,0.501,0.501,0,0,0.216,0,0,0,0,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0.114,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0.421,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.26,1 +1,0.529,0.0241,0.0781,0.0781,0,0,0,0,0,0,0.498,1 +1,0.514,0.0488,0.228,0.228,0,0,0,0,0,0,0.491,1 +1,0.54,0.0653,0.284,0.284,0,0,0,0,0,0,0.442,1 +0.667,0.555,0.0473,0.168,0.168,0.216,0.0667,0,0,0,0.233,0.56,1 +0.667,0.548,0.0923,0.278,0.278,0.639,0.867,0,0,0,0,0,1 +0.667,0.548,0.103,0.27,0.27,0.716,0,0,0,0,0,0.0394,1 +0.667,0.548,0.113,0.259,0.259,0.437,0,0,0,0,0,0.197,-0.25 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0,-0.367 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0,-0.617 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0,0.0788,1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.483,0.158,-0.217 +0.333,0.594,0.168,0.2,0.2,0,0,0,0,0,0,0.0788,-0.217 +0.667,0.617,0.446,0.454,0.454,0,0,0,0,0,0,0.0796,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0.119,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0.153,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.349,1 +1,0.538,0.0301,0.139,0.139,0,0,0,0,0,0.483,0.118,1 +1,0.551,0.0444,0.167,0.167,0,0,0,0,0,0,0.118,1 +1,0.555,0.0654,0.168,0.168,0,0,0,0,0,0,0,1 +1,0.555,0.0826,0.164,0.164,0,0,0,0,0,0,0.368,1 +1,0.542,0.252,0.381,0.381,0,0,0,0,0,0,0.389,1 +1,0.542,0.277,0.364,0.364,0,0,0,0,0,0,0,1 +0.667,0.548,0.204,0.251,0.251,0,0,0,0,0,0,0.291,1 +0.667,0.548,0.24,0.249,0.249,0,0,0,0,0,0,0.479,1 +0.667,0.548,0.273,0.249,0.249,0,0,0,0,0,0,0.303,1 +0.667,0.566,0.3,0.251,0.251,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.315,0.259,0.259,0,0,0,0,0,0,0,1 +0.667,0.617,0.326,0.286,0.286,0,0,0,0,0,0,0,1 +1,0.658,0.565,0.501,0.501,0,0,0,0,0,0,0.0394,1 +1,0.645,0.743,0.656,0.656,0,0,0.18,0.526,0.233,0,0.0788,1 +1,0.619,0.873,0.806,0.806,0,0,0.317,0,0.217,0,0,1 +1,0.568,0.806,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.516,0.509,0.561,0.561,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.529,0.0226,0.0781,0.0781,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.22,1 +0.667,0.551,0.0444,0.167,0.167,0,0,0,0,0,0,0.47,1 +1,0.555,0.0654,0.168,0.168,0,0,0,0,0,0,0.249,1 +1,0.555,0.0826,0.164,0.164,0,0,0,0,0,0,0,1 +1,0.555,0.0961,0.16,0.16,0,0,0,0,0,0,0.236,1 +1,0.555,0.104,0.154,0.154,0,0,0,0,0,0.233,0.0394,1 +0.667,0.555,0.111,0.15,0.15,0,0,0,0,0,0,0.0394,1 +0.667,0.555,0.129,0.149,0.149,0,0,0,0,0,0,0.118,1 +0.667,0.555,0.146,0.149,0.149,0,0,0,0,0,0,0.0394,1 +0.667,0.564,0.159,0.15,0.15,0,0,0,0,0,0,0.383,1 +0.667,0.576,0.167,0.154,0.154,0,0,0,0,0,0,0.15,1 +0.667,0.589,0.172,0.168,0.168,0.515,0.733,0,0,0,0,0.0788,1 +0.667,0.594,0.2,0.2,0.2,0.674,0.433,0,0,0,0,0.0394,1 +0.667,0.589,0.26,0.252,0.252,0.176,0,0.324,0.526,0.233,0,0.0394,1 +1,0.6,0.588,0.554,0.554,0,0,0.414,0,1,0,0,1 +0.667,0.566,0.543,0.584,0.584,0,0,0,0,0.367,0,0.0788,1 +1,0.531,0.345,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +0.667,0.529,0.0188,0.0503,0.0503,0,0,0,0,0,0,0.0394,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,-0.717 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.118,0 +0.333,0.551,0.0406,0.167,0.167,0,0,0,0,0,0,0.135,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.165,0 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.236,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.0394,-0.95 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0.3,0.0788,-0.75 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0.167,0,1 +0.667,0.617,0.239,0.286,0.286,0.22,0.0667,0,0,0,0,0,1 +0.333,0.594,0.168,0.2,0.2,0.59,0.167,0,0,0,0,0.0394,1 +0.333,0.589,0.231,0.252,0.252,0,0,0,0,0,0,0,1 +0.333,0.581,0.283,0.302,0.302,0,0,0,0,0,0,0.0688,1 +0.667,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0.268,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0.163,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.653,1 +1,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.23,1 +1,0.551,0.0406,0.167,0.167,0,0,0,0,0,0,0.773,1 +1,0.542,0.11,0.404,0.404,0,0,0,0,0,0,0.358,1 +1,0.542,0.131,0.392,0.392,0,0,0,0,0,0,0.143,1 +0.667,0.548,0.103,0.27,0.27,0.302,0.317,0,0,0,0,0.444,-0.75 +0.667,0.548,0.113,0.259,0.259,0.752,0.15,0,0,0,0,0.238,-0.233 +0.667,0.548,0.119,0.251,0.251,0.384,0,0.162,0.263,0.217,0,0.236,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0.233,0.0394,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0.0394,0 +0.333,0.576,0.106,0.154,0.154,0,0,0,0,0,0,0.0788,-0.967 +1,0.645,0.351,0.404,0.404,0,0,0,0,0,0,0.0788,1 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0,0.128,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0.247,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.564,0.269,0.317,0.317,0,0,0,0,0,0,0,1 +1,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.382,1 +1,0.529,0.0188,0.0503,0.0503,0,0,0,0,0,0,0.433,1 +1,0.529,0.0241,0.0781,0.0781,0,0,0.11,0.0702,0,0.317,0.236,-0.25 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0.193,0.45,0.167,0.305,-1 +0.333,0.551,0.0406,0.167,0.167,0,0,0,0,0,0,0.331,-0.317 +0.333,0.555,0.0473,0.168,0.168,0,0,0,0,0,0,0.255,0 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0.0881,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.301,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.418,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.184,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.0788,-0.05 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0.233,0.154,-1 +0.333,0.576,0.106,0.154,0.154,0,0,0,0,0,0,0.217,-0.5 +0.667,0.617,0.239,0.286,0.286,0.59,0.467,0,0,0,0,0.0394,1 +1,0.658,0.473,0.501,0.501,0.688,0,0,0,0,0,0,1 +1,0.645,0.662,0.656,0.656,0.621,0,0,0,0,0,0,1 +1,0.619,0.817,0.806,0.806,0.639,0,0,0,0,0,0.164,1 +1,0.564,0.269,0.317,0.317,0.347,0,0,0,0,0,0.123,1 +1,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.569,1 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.12,1 +0.667,0.551,0.0406,0.167,0.167,0,0,0,0,0,0,0.0803,1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0971,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.0788,-0.383 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.65,0.197,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.0788,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0.276,0 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0,0.0394,-0.883 +0.667,0.617,0.239,0.286,0.286,0,0,0.534,0.526,0.217,0,0.118,-0.5 +1,0.658,0.473,0.501,0.501,0.119,0.0667,0,0,0,0,0.0394,1 +1,0.645,0.662,0.656,0.656,0.682,0.4,0,0,0,0,0.0788,1 +1,0.619,0.817,0.806,0.806,0.304,0,0,0,0,0,0,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0.0394,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.262,1 +1,0.529,0.0188,0.0503,0.0503,0,0,0,0,0,0,0.162,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.817,0.0788,-1 +0.667,0.538,0.0323,0.139,0.139,0.171,0.0667,0,0,0,0.383,0.236,-0.567 +0.333,0.551,0.0406,0.167,0.167,0.658,0.4,0,0,0,0,0.0788,0 +0.333,0.555,0.0473,0.168,0.168,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0.236,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.276,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.197,-0.8 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0.817,0.0788,-0.75 +1,0.606,0.286,0.363,0.363,0,0,0,0,0,0.15,0.118,1 +1,0.645,0.351,0.404,0.404,0,0,0.373,0.263,0.317,0,0.0788,1 +1,0.658,0.473,0.501,0.501,0,0,0.524,0,1,0,0,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0.75,0,0,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.568,0.774,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.529,0.0203,0.0503,0.0503,0,0,0,0,0,0,0.197,1 +1,0.529,0.0226,0.0781,0.0781,0,0,0,0,0,0,0.0788,1 +1,0.538,0.0301,0.139,0.139,0,0,0,0,0,0,0.149,1 +1,0.551,0.0444,0.167,0.167,0,0,0,0,0,0,0.301,1 +1,0.548,0.113,0.286,0.286,0,0,0,0,0,0.483,0.275,1 +1,0.542,0.212,0.392,0.392,0,0,0,0,0,0,0.257,1 +0.667,0.548,0.174,0.27,0.27,0,0,0,0,0,0,0.195,1 +0.667,0.548,0.191,0.259,0.259,0,0,0,0,0,0,0.433,1 +0.333,0.555,0.111,0.15,0.15,0,0,0,0,0,0.233,0.0788,1 +0.333,0.555,0.129,0.149,0.149,0,0,0,0,0,0.483,0,1 +0.333,0.555,0.146,0.149,0.149,0,0,0,0,0,0,0,1 +1,0.568,0.441,0.351,0.351,0,0,0,0,0,0,0.458,1 +0.667,0.591,0.315,0.259,0.259,0,0,0,0,0,0,0.0973,1 +0.333,0.589,0.172,0.168,0.168,0,0,0,0,0,0.233,0.0394,-0.217 +0.667,0.626,0.383,0.351,0.351,0,0,0,0,0,0.233,0,1 +1,0.645,0.743,0.656,0.656,0.373,0.467,0,0,0,0.233,0.163,1 +1,0.619,0.873,0.806,0.806,0.555,0,0,0,0,0,0.175,1 +1,0.568,0.806,0.851,0.851,0.314,0,0.388,0.263,0.217,0,0,1 +1,0.531,0.345,0.391,0.391,0,0,0.425,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0.274,0,0,0,0,1 +1,0.529,0.0451,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.529,0.0286,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.529,0.0211,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.529,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.149,1 +1,0.54,0.0706,0.284,0.284,0,0,0,0,0,0,0.291,1 +1,0.548,0.113,0.286,0.286,0.726,0.467,0,0,0,0,0.197,1 +1,0.548,0.147,0.278,0.278,0,0,0,0,0,0,0.197,1 +0.667,0.555,0.0961,0.16,0.16,0,0,0,0,0,0.233,0.0788,1 +0.667,0.555,0.104,0.154,0.154,0,0,0,0,0,0,0,-0.217 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.298,0 +0.667,0.548,0.24,0.249,0.249,0,0,0.5,0.263,0.733,0,0.315,-0.217 +1,0.542,0.401,0.349,0.349,0,0,0.396,0,0.183,0,0,1 +1,0.568,0.441,0.351,0.351,0,0,0,0,0,0,0.0394,1 +1,0.606,0.464,0.363,0.363,0,0,0,0,0,0.233,0.197,1 +1,0.645,0.479,0.404,0.404,0,0,0,0,0,0,0,1 +1,0.658,0.565,0.501,0.501,0.503,0.467,0,0,0,0,0.158,-0.75 +0.667,0.617,0.501,0.454,0.454,0,0,0,0,0,0,0,-0.667 +0.667,0.6,0.588,0.554,0.554,0,0,0,0,0,0,0.0394,0 +0.667,0.564,0.281,0.317,0.317,0,0,0,0,0,0,0.0394,0 +0.667,0.546,0.182,0.22,0.22,0,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.417 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.268,-1 +1,0.529,0.0188,0.0503,0.0503,0,0,0,0,0,0,0.118,1 +1,0.497,0.0323,0.107,0.107,0,0,0,0,0,0,0.118,1 +0.667,0.538,0.0323,0.139,0.139,0,0,0.199,0.263,0.0667,0.483,0.118,-0.0667 +0.333,0.551,0.0406,0.167,0.167,0,0,0.46,0,0.15,0,0,-1 +0.333,0.555,0.0473,0.168,0.168,0,0,0.642,0,0,0,0.0788,-0.417 +0.333,0.555,0.0541,0.164,0.164,0,0,0.821,0,0,0,0.0788,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0.0657,0,0,0,0.0394,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.197,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0.278,-0.667 +0.333,0.576,0.106,0.154,0.154,0,0,0,0,0,0,0.567,-0.75 +0.667,0.617,0.239,0.286,0.286,0,0,0,0,0,0.0667,0.316,1 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0.9,0.118,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +0.667,0.546,0.167,0.22,0.22,0,0,0,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.483,0.197,1 +0.667,0.514,0.0488,0.228,0.228,0,0,0,0,0,0,0,-1 +0.667,0.54,0.0653,0.284,0.284,0,0,0.59,0.263,0.317,0,0.236,-0.317 +0.667,0.548,0.0788,0.286,0.286,0,0,0.476,0,0.133,0,0.0394,0 +0.667,0.548,0.0923,0.278,0.278,0,0,0.489,0,0,0,0.158,0 +0.667,0.548,0.103,0.27,0.27,0,0,0.11,0,0,0,0.0394,0 +0.333,0.555,0.0646,0.154,0.154,0.183,0.0667,0,0,0,0,0.236,0 +0.333,0.555,0.0676,0.15,0.15,0.752,0.167,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.149,0.565,0,0,0,0,0,0.0788,-0.3 +0.333,0.555,0.0789,0.149,0.149,0.36,0,0,0,0,0.567,0.158,-1 +0.667,0.566,0.158,0.251,0.251,0,0,0,0,0,0.4,0.0788,1 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0,0.0788,1 +0.667,0.617,0.239,0.286,0.286,0,0,0.317,0.263,0.217,0,0,1 +1,0.658,0.473,0.501,0.501,0,0,0.662,0,0,0,0,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0,0,1 +0.667,0.6,0.55,0.554,0.554,0,0,0,0,0,0,0.116,1 +1,0.568,0.774,0.851,0.851,0,0,0,0,0,0,0.118,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.9,0.118,1 +1,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.487,1 +1,0.529,0.09,0.402,0.402,0,0,0,0,0,0,0.446,1 +0.667,0.548,0.0788,0.286,0.286,0,0,0,0,0,0,0.195,-1 +0.667,0.548,0.0923,0.278,0.278,0,0,0,0,0,0,0.329,-0.383 +0.667,0.548,0.103,0.27,0.27,0,0,0,0,0,0,0.158,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0.0788,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0.233,0.0394,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0,0,0,0,0.197,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.154,0.173,0.0667,0,0,0,0,0.0799,-0.867 +0.667,0.617,0.239,0.286,0.286,0.386,0.633,0,0,0,0,0.617,-0.5 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0,0.099,1 +1,0.645,0.662,0.656,0.656,0,0,0,0,0,0.233,0,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.233,0.228,1 +1,0.497,0.0323,0.107,0.107,0,0,0,0,0,0,0.148,1 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0.424,1 +0.667,0.551,0.0406,0.167,0.167,0,0,0,0,0,0,0,1 +0.333,0.555,0.0473,0.168,0.168,0,0,0,0,0,0,0.216,-1 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0.796,-0.483 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.119,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.181,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0751,0.149,0.149,0,0,0,0,0,0,0.158,0 +0.333,0.555,0.0789,0.149,0.149,0,0,0.216,0.263,0.317,0,0.0788,0 +0.333,0.564,0.0871,0.15,0.15,0,0,0.151,0,0.6,0,0.0394,0 +0.333,0.576,0.106,0.154,0.154,0,0,0.313,0,0,0,0.205,-0.233 +0.667,0.617,0.239,0.286,0.286,0,0,0.628,0,0,0,0.488,-1 +0.667,0.626,0.32,0.351,0.351,0,0,0.384,0,0,0,0.347,-0.25 +1,0.645,0.662,0.656,0.656,0,0,0.294,0,0,0,0.124,1 +1,0.619,0.817,0.806,0.806,0,0,0,0,0,0,0.135,1 +1,0.566,0.521,0.584,0.584,0,0,0,0,0,0,0,1 +1,0.531,0.317,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.558,1 +1,0.529,0.0241,0.0781,0.0781,0,0,0,0,0,0,0.448,1 +0.667,0.538,0.0323,0.139,0.139,0,0,0,0,0,0,0,1 +0.667,0.551,0.0406,0.167,0.167,0,0,0,0,0,0,0,-0.75 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.6 +0.333,0.555,0.0541,0.164,0.164,0,0,0,0,0,0,0.0394,0 +0.333,0.555,0.0593,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.555,0.0646,0.154,0.154,0,0,0,0,0,0,0.354,0 +0.333,0.555,0.0676,0.15,0.15,0,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0.249,0,0,0,0,0,0,0.236,0 +0.667,0.548,0.142,0.249,0.249,0,0,0,0,0,0,0.236,0 +0.667,0.566,0.158,0.251,0.251,0,0,0,0,0,0.0667,0.118,-0.833 +0.667,0.591,0.196,0.259,0.259,0,0,0,0,0,0.167,0,-0.5 +1,0.645,0.351,0.404,0.404,0,0,0,0,0,0,0,1 +1,0.658,0.473,0.501,0.501,0,0,0,0,0,0,0.0394,1 +1,0.645,0.662,0.656,0.656,0,0,0.286,0.263,0.217,0,0,1 +1,0.619,0.817,0.806,0.806,0.38,0.467,0.541,0,0,0,0,1 +1,0.568,0.774,0.851,0.851,0.105,0,0.524,0,0,0,0,1 +1,0.531,0.317,0.391,0.391,0,0,0.384,0,0,0,0,1 +1,0.533,0.0781,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.233,0.0788,1 +1,0.542,0.16,0.404,0.404,0,0,0.274,0.263,0.483,0,0.0394,1 +1,0.542,0.212,0.392,0.392,0,0,0.509,0,0.433,0,0.0788,1 +1,0.542,0.252,0.381,0.381,0,0,0.428,0,0,0,0.0788,1 +1,0.542,0.277,0.364,0.364,0,0,0.404,0,0,0,0.197,1 +0.667,0.548,0.204,0.251,0.251,0,0,0.465,0,0,0,0.118,1 +0.667,0.548,0.24,0.249,0.249,0,0,0.576,0,0,0,0.0788,1 +0.667,0.548,0.273,0.249,0.249,0,0,0.534,0,0,0,0.197,1 +0.667,0.566,0.3,0.251,0.251,0,0,0.555,0,0,0,0,1 +0.667,0.591,0.315,0.259,0.259,0,0,0.391,0,0,0,0,1 +0.667,0.617,0.326,0.286,0.286,0,0,0.572,0,0,0,0.27,1 +1,0.658,0.565,0.501,0.501,0,0,0,0,0,0,0.236,1 +1,0.645,0.743,0.656,0.656,0,0,0,0,0,0,0,1 +1,0.619,0.873,0.806,0.806,0,0,0,0,0,0,0,1 +1,0.568,0.806,0.851,0.851,0,0,0,0,0,0,0,1 +1,0.531,0.345,0.391,0.391,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.126,1 +1,0.555,0.0654,0.168,0.168,0,0,0,0,0,0.233,0.433,1 +0.667,0.555,0.0826,0.164,0.164,0,0,0,0,0,0.733,0,1 +0.667,0.555,0.0961,0.16,0.16,0,0,0,0,0,0,0,1 +0.667,0.555,0.104,0.154,0.154,0.585,0.233,0,0,0,0,0,1 +1,0.542,0.297,0.352,0.352,0,0,0,0,0,0,0.0788,1 +0.667,0.548,0.24,0.249,0.249,0,0,0,0,0,0,0.315,1 +0.667,0.548,0.273,0.249,0.249,0,0,0,0,0,0,0.453,1 +1,0.568,0.441,0.351,0.351,0,0,0,0,0,0,0.413,1 +1,0.606,0.464,0.363,0.363,0.64,0.467,0,0,0,0.233,0.255,1 +1,0.645,0.479,0.404,0.404,0.6,0,0,0,0,0,0.0394,1 +1,0.626,0.383,0.351,0.351,0.668,0,0,0,0,0,0.0394,1 +1,0.617,0.501,0.454,0.454,0.675,0,0.211,0.263,0.233,0,0.315,1 +1,0.619,0.873,0.806,0.806,0.26,0,0,0,0.683,0,0,1 +1,0.568,0.806,0.851,0.851,0,0,0,0,0,0,0.0394,1 +1,0.516,0.509,0.561,0.561,0,0,0,0,0,0,0,1 +1,0.533,0.0894,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.74,1 +1,0.558,0.0289,0.11,0.11,0,0,0,0,0,0,0.338,1 +0.667,0.57,0.0296,0.143,0.143,0,0,0,0,0,0,0.0788,-1 +0.333,0.585,0.0368,0.172,0.172,0,0,0,0,0,0.25,0.0788,-0.717 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0.208,0.0667,0,0,0,0.25,0.0394,0 +0.333,0.601,0.0774,0.162,0.162,0.253,0.417,0,0,0,0,0.315,0 +0.333,0.616,0.0938,0.172,0.172,0,0,0,0,0,0,0,-0.95 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0.567,0.0394,-0.75 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,1,0.282,1 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,1,0.118,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,1,0.0788,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,1,0,1 +1,0.599,0.278,0.356,0.356,0,0,0,0,0,0.7,0,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0178,0.0506,0.0506,0,0,0,0,0,0,0.197,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0,0.46,1 +0.667,0.578,0.0433,0.236,0.236,0,0,0,0,0,0,0.109,1 +0.333,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0.294,-1 +0.333,0.591,0.0427,0.175,0.175,0,0,0.119,0.0702,0,0,0.116,-0.2 +0.333,0.591,0.0486,0.174,0.174,0,0,0.388,0.175,0.233,0,0.0788,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0.313,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.0394,-0.95 +0.667,0.64,0.139,0.274,0.274,0,0,0,0,0,0,0.236,-0.25 +1,0.726,0.25,0.417,0.417,0,0,0,0,0,0.25,0,1 +1,0.772,0.307,0.501,0.501,0.614,0.483,0,0,0,0,0.381,1 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0.317,1 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,0,0.306,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,0,0,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.19,1 +1,0.57,0.0296,0.143,0.143,0,0,0,0,0,0,0.117,1 +1,0.633,0.0786,0.417,0.417,0,0,0,0,0,0,0.379,-0.25 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.0394,-1 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.197,-0.167 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.394,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.236,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0.317,0.236,0 +0.333,0.616,0.0938,0.172,0.172,0,0,0,0,0,0.183,0,-0.9 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0,-0.5 +1,0.712,0.28,0.453,0.453,0,0,0,0,0,0,0.0394,1 +1,0.702,0.39,0.569,0.569,0,0,0,0,0,0,0.186,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.165,1 +1,0.64,0.456,0.564,0.564,0,0,0,0,0,0,0,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.214,1 +1,0.56,0.0178,0.0506,0.0506,0,0,0,0,0,0,0.133,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.181,1 +0.667,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0.218,1 +0.667,0.62,0.0695,0.301,0.301,0,0,0,0,0,0,0.418,1 +0.667,0.62,0.0813,0.299,0.299,0,0,0,0,0,0,0.16,1 +0.667,0.62,0.0905,0.291,0.291,0,0,0,0,0,0,0.119,-0.25 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0.567,0.315,-0.55 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0.183,0.0394,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0.274,0,0,0,0,0,0.0667,0.0788,-0.55 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0.683,0.158,-0.25 +1,0.772,0.307,0.501,0.501,0,0,0,0,0,0,0.0394,1 +1,0.788,0.413,0.655,0.655,0.274,0.0667,0,0,0,0,0,1 +1,0.772,0.578,0.829,0.829,0.408,0.167,0,0,0,0,0,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.115,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,0,0.118,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.353,1 +1,0.633,0.0786,0.417,0.417,0,0,0,0,0,0,0.532,-0.5 +0.667,0.62,0.0695,0.301,0.301,0,0,0,0,0,0,0.555,-0.817 +0.667,0.62,0.0813,0.299,0.299,0,0,0,0,0,0,0.303,0 +0.667,0.62,0.0905,0.291,0.291,0,0,0,0,0,0,0.269,0 +0.667,0.62,0.0996,0.279,0.279,0,0,0,0,0,0,0.243,0 +0.667,0.62,0.105,0.271,0.271,0,0,0,0,0,0,0.235,0 +0.667,0.62,0.118,0.269,0.269,0,0,0,0,0,0,0.158,0 +0.667,0.62,0.125,0.269,0.269,0,0,0,0,0,0,0.0394,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.276,-0.8 +0.667,0.616,0.0938,0.172,0.172,0,0,0,0,0,0,0.158,-0.5 +1,0.702,0.21,0.35,0.35,0,0,0,0,0,0.317,0.0788,1 +1,0.712,0.28,0.453,0.453,0,0,0,0,0,0.683,0,1 +1,0.702,0.39,0.569,0.569,0,0,0,0,0,0,0.0394,1 +1,0.681,0.481,0.62,0.62,0,0,0,0,0,0.25,0,1 +1,0.64,0.456,0.564,0.564,0,0,0,0,0,0,0.168,1 +1,0.599,0.278,0.356,0.356,0,0,0,0,0,0,0.111,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0213,0.0798,0.0798,0,0,0,0,0,0,0,1 +1,0.57,0.0278,0.143,0.143,0,0,0,0,0,0,0.118,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.5,0.0788,1 +0.667,0.591,0.0586,0.175,0.175,0,0,0,0,0,0,0,1 +0.667,0.591,0.0737,0.174,0.174,0.244,0.233,0,0,0,0,0,1 +0.667,0.591,0.0855,0.17,0.17,0.524,0,0,0,0,0,0.17,1 +0.667,0.591,0.0927,0.164,0.164,0,0,0,0,0,0,0.422,1 +0.667,0.591,0.0986,0.16,0.16,0,0,0,0,0,0,0.394,1 +0.667,0.591,0.114,0.159,0.159,0,0,0,0,0,0,0.389,1 +0.667,0.591,0.129,0.159,0.159,0,0,0,0,0,0,0.31,1 +0.667,0.601,0.14,0.162,0.162,0,0,0,0,0,0,0.533,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.2 +0.333,0.637,0.177,0.251,0.251,0,0,0,0,0,0,0.118,0 +0.333,0.632,0.228,0.309,0.309,0,0,0,0,0,0.75,0,0 +0.667,0.681,0.514,0.62,0.62,0,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0.564,0,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0.203,0,0,0,0,0,0,0.0788,0 +0.333,0.565,0.0796,0.116,0.116,0,0,0,0,0,0,0,-0.95 +0.667,0.558,0.0637,0.099,0.099,0,0,0,0,0,0,0,-0.25 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.439,1 +1,0.57,0.0278,0.143,0.143,0,0,0,0,0,0,0.215,1 +1,0.585,0.0403,0.172,0.172,0,0,0,0,0,0,0.106,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.591,0.0737,0.174,0.174,0,0,0,0,0,0,0.158,1 +0.667,0.591,0.0855,0.17,0.17,0.506,0.233,0,0,0,0,0.197,1 +0.667,0.62,0.167,0.279,0.279,0.682,0,0,0,0,0,0.0788,1 +0.667,0.62,0.179,0.271,0.271,0.275,0,0.229,0.246,0.333,0,0.118,1 +0.667,0.62,0.21,0.269,0.269,0,0,0.422,0,0.133,0,0.0788,1 +0.667,0.62,0.239,0.269,0.269,0,0,0.656,0,0,0,0.197,1 +0.667,0.64,0.263,0.274,0.274,0,0,0.318,0,0,0.25,0.197,1 +0.667,0.671,0.276,0.294,0.294,0,0,0,0,0,0,0,1 +0.667,0.702,0.285,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.788,0.493,0.655,0.655,0,0,0,0,0,0,0.21,1 +1,0.772,0.649,0.829,0.829,0,0,0,0,0,0,0.121,1 +1,0.741,0.763,0.905,0.905,0,0,0,0,0,0,0.303,1 +1,0.679,0.704,0.821,0.821,0,0,0,0,0,0,0.0788,1 +1,0.618,0.444,0.51,0.51,0,0,0,0,0,0,0.227,1 +1,0.568,0.141,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.56,0.0348,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0.171,0.0667,0,0,0,0.25,0.227,1 +1,0.578,0.0433,0.236,0.236,0.442,0.417,0.716,0.737,0.117,0.317,0.171,1 +1,0.633,0.0786,0.417,0.417,0,0,0.52,0,0.117,0.433,0.276,1 +0.667,0.62,0.0695,0.301,0.301,0,0,0,0,0,0.75,0.0788,1 +0.667,0.62,0.0813,0.299,0.299,0,0,0,0,0,0,0.0788,1 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0.25,0,-0.333 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0.0667,0.158,-0.0667 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0.933,0.236,-0.25 +0.667,0.62,0.118,0.269,0.269,0,0,0,0,0,0.25,0.118,1 +0.667,0.62,0.125,0.269,0.269,0,0,0,0,0,0,0.276,1 +0.667,0.64,0.139,0.274,0.274,0,0,0.913,0.246,0.583,0,0.197,1 +0.667,0.671,0.172,0.294,0.294,0,0,0.265,0,0.6,0.25,0.128,1 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0.255,1 +0.667,0.712,0.28,0.453,0.453,0,0,0,0,0,0,0.301,1 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,0,0.231,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,0,0.0394,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0,1 +1,0.57,0.0296,0.143,0.143,0,0,0.246,0.246,0.0833,0,0.286,1 +1,0.585,0.0368,0.172,0.172,0,0,0.622,0,0.15,0,0.242,1 +1,0.649,0.0963,0.427,0.427,0,0,0.0214,0,0,0,0.454,1 +0.667,0.62,0.0813,0.299,0.299,0,0,0,0,0,0,0.29,1 +0.667,0.62,0.0905,0.291,0.291,0,0,0,0,0,0,0.303,1 +0.667,0.62,0.0996,0.279,0.279,0,0,0,0,0,0,0.25,-0.25 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.0394,-0.667 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.158,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.0788,0 +0.333,0.616,0.0938,0.172,0.172,0,0,0,0,0,0,0.158,0 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0,-0.9 +0.667,0.637,0.148,0.251,0.251,0.384,0.233,0,0,0,0,0,1 +1,0.772,0.578,0.829,0.829,0.7,0,0,0,0,0,0.0394,1 +1,0.681,0.481,0.62,0.62,0.447,0,0,0,0,0,0,1 +1,0.601,0.236,0.307,0.307,0,0,0,0,0,0,0.0394,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.286,1 +1,0.578,0.0433,0.236,0.236,0,0,0,0,0,0,0.585,1 +0.667,0.609,0.0577,0.295,0.295,0,0,0,0,0,0,0.553,1 +0.667,0.62,0.0695,0.301,0.301,0,0,0,0,0,0,0.284,-0.75 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0,-0.233 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.236,-0.967 +0.667,0.64,0.139,0.274,0.274,0,0,0,0,0,0,0.236,1 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0,0,1 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0.265,1 +0.667,0.712,0.28,0.453,0.453,0,0,0.0795,0.246,0.333,0,0.34,1 +0.667,0.702,0.39,0.569,0.569,0,0,0,0,0.617,0,0.627,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.131,1 +1,0.64,0.456,0.564,0.564,0,0,0,0,0,0,0,-0.0667 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.212,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0,0.192,1 +0.667,0.578,0.0433,0.236,0.236,0,0,0,0,0,0,0.36,-0.767 +0.667,0.609,0.0577,0.295,0.295,0,0,0,0,0,0,0.419,0 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.269,0 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.512,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0.317,0.25,-0.517 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0.433,0.118,-0.25 +0.667,0.62,0.105,0.271,0.271,0,0,0,0,0,0,0.0788,1 +0.667,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.0788,-0.75 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.304,-0.0167 +0.667,0.64,0.139,0.274,0.274,0,0,0,0,0,0,0.464,0 +0.667,0.671,0.172,0.294,0.294,0.335,0.317,0,0,0,0,0.468,0 +0.667,0.702,0.21,0.35,0.35,0.545,0.167,0,0,0,0,0.112,-0.25 +0.667,0.712,0.28,0.453,0.453,0.133,0,0,0,0,0,0.171,-0.5 +1,0.772,0.578,0.829,0.829,0.67,0.233,0,0,0,0,0.283,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.0564,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0348,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.56,0.0224,0.0578,0.0578,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0165,0.0495,0.0495,0,0,0,0,0,0.25,0.312,1 +1,0.56,0.0152,0.0495,0.0495,0,0,0,0,0,0,0.0978,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.167 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.415,0 +0.667,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0.285,0 +0.667,0.62,0.0695,0.301,0.301,0,0,0,0,0,0,0.158,0 +0.667,0.62,0.0813,0.299,0.299,0,0,0,0,0,0,0.139,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0.317,0,-0.15 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,1,0.333,-1 +0.667,0.591,0.0604,0.16,0.16,0,0,0,0,0,0.933,0,-0.5 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.233 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0.567,0.197,0 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0.433,0.0788,-0.233 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0.118,-0.5 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0,1 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,0,0.144,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.479,1 +1,0.601,0.236,0.307,0.307,0,0,0,0,0,0,0,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.189,1 +1,0.585,0.0403,0.172,0.172,0,0,0,0,0,0,0.304,1 +1,0.591,0.0586,0.175,0.175,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.317,0,1 +0.667,0.591,0.0855,0.17,0.17,0,0,0,0,0,1,0.118,1 +0.667,0.62,0.167,0.279,0.279,0,0,0,0,0,1,0,1 +0.667,0.62,0.179,0.271,0.271,0,0,0,0,0,0.433,0,1 +0.667,0.62,0.21,0.269,0.269,0,0,0,0,0,0,0.0394,1 +0.667,0.62,0.239,0.269,0.269,0,0,0,0,0,0,0.118,1 +0.667,0.64,0.263,0.274,0.274,0,0,0,0,0,0,0.394,1 +0.667,0.671,0.276,0.294,0.294,0,0,0,0,0,0,0.197,1 +0.667,0.702,0.285,0.35,0.35,0,0,0,0,0,0,0.197,1 +0.667,0.712,0.335,0.453,0.453,0,0,0,0,0,0,0.0788,1 +0.667,0.702,0.438,0.569,0.569,0,0,0,0,0,0,0.0394,1 +1,0.741,0.763,0.905,0.905,0,0,0.648,0.246,0.233,0,0,1 +1,0.679,0.704,0.821,0.821,0,0,0.625,0,0,0,0.442,1 +1,0.599,0.302,0.356,0.356,0,0,0.537,0,0,0,0.0394,1 +1,0.568,0.141,0.183,0.183,0,0,0.624,0,0,0,0.215,1 +1,0.558,0.0637,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.56,0.0213,0.0798,0.0798,0,0,0,0,0,0,0.118,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.585,0.0403,0.172,0.172,0,0,0,0,0,0,0,1 +1,0.591,0.0586,0.175,0.175,0,0,0,0,0,0,0.276,1 +1,0.591,0.0737,0.174,0.174,0,0,0,0,0,0,0,1 +1,0.591,0.0855,0.17,0.17,0,0,0,0,0,0,0.158,1 +1,0.591,0.0927,0.164,0.164,0,0,0,0,0,0,0.0394,1 +0.667,0.591,0.0986,0.16,0.16,0,0,0,0,0,0.0667,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.683,0.236,1 +0.667,0.591,0.129,0.159,0.159,0,0,0,0,0,0,0.236,1 +0.667,0.601,0.14,0.162,0.162,0,0,0,0,0,0,0.315,1 +0.667,0.671,0.276,0.294,0.294,0,0,0,0,0,0,0.0734,1 +0.667,0.702,0.285,0.35,0.35,0,0,0,0,0,0,0.308,1 +1,0.788,0.493,0.655,0.655,0,0,0,0,0,0,0.531,1 +0.667,0.702,0.438,0.569,0.569,0,0,0,0,0,0,0,1 +0.667,0.681,0.514,0.62,0.62,0,0,0,0,0,0,0,1 +0.667,0.64,0.475,0.564,0.564,0,0,0,0,0,0,0.0394,1 +1,0.599,0.302,0.356,0.356,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.241,1 +1,0.56,0.0178,0.0506,0.0506,0,0,0,0,0,0,0.212,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0,0.19,1 +0.667,0.578,0.0433,0.236,0.236,0,0,0,0,0,0,0.147,-0.617 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.117 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.337,-0.5 +0.667,0.62,0.0996,0.279,0.279,0,0,0,0,0,0,0.348,1 +0.667,0.62,0.105,0.271,0.271,0,0,0.428,0.246,0.233,0,0,-0.75 +0.333,0.591,0.0669,0.159,0.159,0,0,0.596,0,0,0,0.118,-0.0833 +0.333,0.591,0.0702,0.159,0.159,0,0,0.583,0,0,0,0.0788,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0.488,0,0,0,0.0394,0 +0.333,0.616,0.0938,0.172,0.172,0,0,0.827,0,0,0,0.197,0 +0.333,0.632,0.113,0.2,0.2,0.635,0.483,0,0,0,0,0.197,-0.833 +1,0.788,0.413,0.655,0.655,0.651,0,0,0,0,0,0.0394,1 +1,0.772,0.578,0.829,0.829,0.232,0,0.225,0.246,0.233,0,0.207,1 +1,0.741,0.713,0.905,0.905,0,0,0.145,0,0,0,0.2,1 +1,0.601,0.236,0.307,0.307,0,0,0,0,0,0,0,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.0394,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0.683,0.166,-0.5 +0.667,0.57,0.0296,0.143,0.143,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.327,-0.25 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.146,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.164,0.687,0.483,0,0,0,0,0.276,0 +0.333,0.591,0.0604,0.16,0.16,0.231,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.0394,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.276,-0.233 +0.333,0.616,0.0938,0.172,0.172,0,0,0,0,0,0,0.197,-1 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0.75,0,-0.5 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0.0394,1 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,0,0.181,1 +1,0.741,0.713,0.905,0.905,0,0,0.757,0.246,0.583,0,0.383,1 +1,0.679,0.676,0.821,0.821,0,0,0.813,0,0.367,0,0,1 +1,0.58,0.147,0.203,0.203,0,0,0.291,0,0,0,0.101,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0.233,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.17,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0.0667,0.379,1 +0.667,0.578,0.0433,0.236,0.236,0,0,0,0,0,0.683,0.0788,-0.25 +0.333,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0,-1 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.276,-0.417 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.236,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.0667,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.193,0.246,0.0833,0.183,0.0394,0 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0.15,0,0.0788,-0.417 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0.543,-1 +0.667,0.712,0.28,0.453,0.453,0,0,0,0,0,0,0.412,-0.25 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,0,0.281,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.347,1 +1,0.64,0.456,0.564,0.564,0,0,0,0,0,0,0.415,1 +1,0.599,0.278,0.356,0.356,0,0,0,0,0,0,0,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.192,-1 +0.667,0.558,0.0289,0.11,0.11,0,0,0,0,0,0,0.158,-0.783 +0.333,0.57,0.0296,0.143,0.143,0,0,0,0,0,0,0.0788,0 +0.333,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0.25,0,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0.0795,0.0702,0,0,0.0788,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0.775,0.175,0.233,0,0.158,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0.538,0,0,0,0.0788,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0.263,0,0,0,0.0788,-0.517 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.0394,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,-0.25 +0.333,0.632,0.113,0.2,0.2,0,0,0,0,0,0,0.118,1 +0.333,0.637,0.148,0.251,0.251,0.25,0.317,0,0,0,0,0.459,1 +1,0.772,0.578,0.829,0.829,0.583,0.167,0,0,0,0,0,1 +1,0.741,0.713,0.905,0.905,0.654,0,0,0,0,0,0.158,1 +1,0.679,0.676,0.821,0.821,0.297,0,0,0,0,0,0,1 +1,0.599,0.278,0.356,0.356,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0.275,1 +1,0.587,0.057,0.33,0.33,0,0,0,0,0,0.183,0.622,1 +1,0.633,0.0786,0.417,0.417,0,0,0,0,0,0,0.296,1 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.632,-1 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.0394,-0.0167 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.373,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.299,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.315,-0.0167 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0.317,0.0394,-1 +1,0.64,0.139,0.274,0.274,0,0,0,0,0,0.183,0.197,1 +1,0.726,0.25,0.417,0.417,0,0,0,0,0,0.25,0.161,1 +1,0.772,0.307,0.501,0.501,0,0,0,0,0,0,0.0394,1 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0,1 +1,0.772,0.578,0.829,0.829,0.677,0.233,0,0,0,0,0,1 +1,0.741,0.713,0.905,0.905,0.536,0,0,0,0,0,0.162,1 +1,0.64,0.456,0.564,0.564,0.839,0,0,0,0,0,0.0177,1 +1,0.58,0.147,0.203,0.203,0.67,0,0,0,0,0,0,1 +1,0.565,0.0695,0.116,0.116,0.59,0,0,0,0,0,0,1 +1,0.56,0.0409,0.0743,0.0743,0.438,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.25,0.38,1 +1,0.57,0.0278,0.143,0.143,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.25,0,1 +0.333,0.591,0.0855,0.17,0.17,0,0,0,0,0,0,0.276,1 +0.333,0.591,0.0927,0.164,0.164,0,0,0,0,0,0,0.0394,1 +0.333,0.591,0.0986,0.16,0.16,0,0,0,0,0,0,0.0394,1 +0.333,0.591,0.114,0.159,0.159,0,0,0,0,0,0,0.0394,1 +0.333,0.591,0.129,0.159,0.159,0,0,0,0,0,0,0.0394,1 +0.667,0.64,0.263,0.274,0.274,0,0,0,0,0,0,0.0394,1 +0.667,0.671,0.276,0.294,0.294,0,0,0,0,0,0,0.158,1 +0.667,0.702,0.285,0.35,0.35,0,0,0,0,0,0,0.197,1 +1,0.788,0.493,0.655,0.655,0,0,0.361,0.246,0.0833,0.25,0.0788,1 +1,0.772,0.649,0.829,0.829,0,0,0.612,0,0.15,0,0,1 +1,0.741,0.763,0.905,0.905,0,0,0.326,0,0,0,0.197,1 +1,0.679,0.704,0.821,0.821,0,0,0.609,0,0,0,0,1 +1,0.618,0.444,0.51,0.51,0,0,0.555,0,0,0.25,0,1 +1,0.571,0.202,0.249,0.249,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0409,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.558,0.0205,0.0518,0.0518,0,0,0,0,0,0,0.0788,1 +0.667,0.56,0.0213,0.0798,0.0798,0,0,0,0,0,0,0.0788,1 +0.667,0.57,0.0278,0.143,0.143,0,0,0,0,0,0,0.0394,1 +0.667,0.585,0.0403,0.172,0.172,0.215,0.317,0,0,0,0,0.0788,1 +0.667,0.62,0.0991,0.301,0.301,0.709,0.167,0,0,0,0,0,1 +0.667,0.62,0.129,0.299,0.299,0,0,0,0,0,0,0.0394,1 +0.667,0.62,0.153,0.291,0.291,0,0,0,0,0,0,0.0788,1 +0.333,0.591,0.0927,0.164,0.164,0,0,0,0,0,0,0,1 +0.333,0.591,0.0986,0.16,0.16,0,0,0,0,0,0,0.0788,1 +0.667,0.62,0.21,0.269,0.269,0,0,0.586,0.246,0.583,0,0.158,1 +1,0.649,0.35,0.379,0.379,0,0,0.251,0,0.117,0,0.0788,1 +0.667,0.64,0.263,0.274,0.274,0,0,0,0,0,0,0.118,1 +0.333,0.616,0.147,0.172,0.172,0,0,0,0,0,0,0,-0.617 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0.0495,0,0,0.0963,0.0702,0,0,0,0 +0,0.562,0.0181,0.0495,0.0495,0,0,0.468,0.175,0.233,0,0,-0.117 +0.333,0.621,0.266,0.335,0.335,0,0,0.106,0,0,0,0.0394,-0.5 +1,0.679,0.704,0.821,0.821,0,0,0,0,0,0,0,1 +1,0.599,0.302,0.356,0.356,0,0,0,0,0,0,0,1 +1,0.568,0.141,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.56,0.0348,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.327,1 +1,0.57,0.0296,0.143,0.143,0,0,0,0,0,0,0.34,-0.25 +0.667,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0.197,-1 +0.667,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.345,-0.133 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.0806,0 +0.667,0.62,0.0905,0.291,0.291,0,0,0,0,0,0,0.0788,0 +0.667,0.62,0.0996,0.279,0.279,0,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.0394,-0.117 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.199,-1 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0.25,0.18,-0.25 +1,0.772,0.307,0.501,0.501,0,0,0,0,0,0.25,0,1 +1,0.788,0.413,0.655,0.655,0.673,0.817,0,0,0,0,0.0394,1 +1,0.772,0.578,0.829,0.829,0.566,0.4,0,0,0,0,0,1 +1,0.741,0.713,0.905,0.905,0.55,0,0,0,0,0,0.0788,1 +1,0.64,0.456,0.564,0.564,0,0,0,0,0,0,0,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.342,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0,0.202,1 +1,0.57,0.0296,0.143,0.143,0,0,0,0,0,0,0.216,1 +1,0.609,0.0577,0.295,0.295,0,0,0,0,0,0,0.253,-0.5 +0.667,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.0394,-1 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.118,-0.217 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0.0667,0.158,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0.183,0.0394,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.197,0 +0.667,0.64,0.139,0.274,0.274,0,0,0,0,0,0,0.0394,0 +0.333,0.616,0.0938,0.172,0.172,0,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0.2,0,0,0,0,0,0.25,0.0808,-0.45 +0.667,0.712,0.28,0.453,0.453,0,0,0,0,0,0,0.205,-1 +0.667,0.702,0.39,0.569,0.569,0,0,0,0,0,0,0.0788,-0.25 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.0394,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,0,0.161,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0.139,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.147,-1 +0.333,0.562,0.0159,0.0495,0.0495,0.534,0.483,0,0,0,0.317,0.354,-0.6 +0.333,0.591,0.0427,0.175,0.175,0.113,0,0,0,0,0.433,0.0788,0 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.0788,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.0394,-0.583 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0,0.119,-1 +1,0.772,0.307,0.501,0.501,0.105,0.0667,0,0,0,0.5,0.0394,1 +1,0.788,0.413,0.655,0.655,0.375,0.417,0,0,0,0,0.158,1 +0.667,0.702,0.39,0.569,0.569,0,0,0,0,0,0,0.236,1 +0.667,0.681,0.481,0.62,0.62,0,0,0,0,0,0,0,1 +0.667,0.601,0.236,0.307,0.307,0,0,0,0,0,0,0.0394,1 +0.667,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.0826,0.246,0.0833,0,0.0394,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0.491,0,0.15,0,0.455,1 +1,0.578,0.0433,0.236,0.236,0,0,0.746,0,0,0,0.137,-0.25 +0.667,0.585,0.0368,0.172,0.172,0,0,0.625,0,0,0,0.158,-1 +0.667,0.591,0.0427,0.175,0.175,0,0,0.488,0,0,0,0.158,-0.0333 +0.667,0.62,0.0813,0.299,0.299,0,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.288,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.361,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0.511,0 +0.333,0.591,0.0702,0.159,0.159,0,0,0,0,0,0,0.236,-0.767 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.0394,-0.5 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0.25,0,1 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0,1 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0,1 +1,0.772,0.578,0.829,0.829,0,0,0.502,0.246,0.233,0,0.0394,1 +1,0.681,0.481,0.62,0.62,0,0,0.535,0,0,0,0.184,1 +1,0.64,0.456,0.564,0.564,0,0,0.586,0,0,0,0.201,1 +1,0.58,0.147,0.203,0.203,0,0,0.0917,0,0,0,0.0394,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.56,0.0348,0.0743,0.0743,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0224,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.56,0.0178,0.0506,0.0506,0,0,0,0,0,0,0.0394,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0,0.269,1 +1,0.57,0.0296,0.143,0.143,0,0,0,0,0,0.25,0.316,1 +1,0.633,0.0786,0.417,0.417,0,0,0,0,0,0,0.0394,1 +1,0.649,0.0963,0.427,0.427,0,0,0,0,0,0,0.0788,-0.25 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0,-0.767 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.433,0 +0.667,0.62,0.118,0.269,0.269,0,0,0,0,0,0,0.0788,0 +0.667,0.62,0.125,0.269,0.269,0,0,0,0,0,0,0.0788,-0.267 +0.667,0.64,0.139,0.274,0.274,0,0,0,0,0,0,0.0788,-0.75 +1,0.726,0.25,0.417,0.417,0,0,0,0,0,0.25,0.118,-0.183 +0.667,0.702,0.21,0.35,0.35,0,0,0,0,0,0,0.158,-0.167 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0.0394,1 +1,0.772,0.578,0.829,0.829,0,0,0,0,0,0,0,1 +1,0.741,0.713,0.905,0.905,0.157,0.0667,0,0,0,0,0,1 +1,0.679,0.676,0.821,0.821,0.602,0.917,0,0,0,0,0.2,1 +1,0.618,0.409,0.51,0.51,0.627,0,0,0,0,0,0,1 +1,0.568,0.123,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0193,0.0506,0.0506,0,0,0,0,0,0,0.158,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.453,1 +1,0.585,0.0403,0.172,0.172,0,0,0,0,0,0,0.287,1 +1,0.591,0.0586,0.175,0.175,0,0,0,0,0,0,0.385,1 +1,0.62,0.129,0.299,0.299,0,0,0,0,0,0,0.115,1 +0.667,0.62,0.153,0.291,0.291,0,0,0,0,0,0,0.489,1 +0.667,0.62,0.167,0.279,0.279,0,0,0,0,0,0,0.206,1 +0.667,0.62,0.179,0.271,0.271,0,0,0,0,0,0,0.0394,-0.25 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.25,0.0394,-0.15 +0.333,0.591,0.129,0.159,0.159,0,0,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0.162,0,0,0,0,0,0,0.118,-0.4 +1,0.726,0.405,0.417,0.417,0,0,0,0,0,0,0.118,1 +1,0.772,0.419,0.501,0.501,0,0,0.428,0.246,0.233,0,0,-0.15 +0.667,0.712,0.335,0.453,0.453,0,0,0.488,0,0,0,0.118,-0.15 +0.667,0.702,0.438,0.569,0.569,0,0,0.413,0,0,0,0.158,-0.733 +0.667,0.681,0.514,0.62,0.62,0,0,0,0,0,0,0.0788,0 +0.667,0.64,0.475,0.564,0.564,0,0,0,0,0,0,0.0394,0 +0.667,0.599,0.302,0.356,0.356,0,0,0,0,0,0,0.205,0 +0.667,0.565,0.0796,0.116,0.116,0,0,0,0,0,0,0,-0.717 +1,0.56,0.0409,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.56,0.0193,0.0506,0.0506,0,0,0,0,0,0,0.0788,1 +1,0.56,0.0213,0.0798,0.0798,0,0,0,0,0,0,0.105,1 +1,0.57,0.0278,0.143,0.143,0,0,0,0,0,0,0.328,1 +1,0.585,0.0403,0.172,0.172,0,0,0,0,0,0,0.236,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +0.667,0.591,0.0855,0.17,0.17,0,0,0,0,0,0,0.158,1 +0.667,0.591,0.0927,0.164,0.164,0,0,0,0,0,0,0.554,1 +0.667,0.62,0.179,0.271,0.271,0,0,0,0,0,0,0,1 +0.667,0.591,0.114,0.159,0.159,0,0,0,0,0,0,0.0394,-0.217 +1,0.62,0.239,0.269,0.269,0,0,0.329,0.246,0.583,0,0.0788,1 +1,0.679,0.385,0.387,0.387,0,0,0.752,0,0.367,0,0.158,1 +1,0.726,0.405,0.417,0.417,0,0,0.742,0,0,0,0.118,1 +1,0.772,0.419,0.501,0.501,0,0,0,0,0,0,0,1 +1,0.788,0.493,0.655,0.655,0.447,0.567,0,0,0,0,0.0788,1 +1,0.772,0.649,0.829,0.829,0.284,1,0.373,0.86,0,0,0.0788,1 +1,0.741,0.763,0.905,0.905,0,0.15,0.398,0.632,0.233,0,0.0394,1 +1,0.679,0.704,0.821,0.821,0,0,0.555,0,0,0,0.0788,1 +1,0.618,0.444,0.51,0.51,0,0,0.657,0,0,0,0.0788,1 +1,0.568,0.141,0.183,0.183,0,0,0.352,0,0,0,0,1 +1,0.56,0.0348,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.483,1 +1,0.56,0.0224,0.0798,0.0798,0,0,0,0,0,0.0667,0.313,1 +0.667,0.57,0.0296,0.143,0.143,0,0,0,0,0,0.183,0.0394,1 +0.667,0.585,0.0368,0.172,0.172,0,0,0,0,0,0,0,1 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.133 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.158,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-0.367 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.297,-0.75 +0.667,0.671,0.172,0.294,0.294,0,0,0,0,0,0.25,0.387,-0.133 +1,0.772,0.307,0.501,0.501,0,0,0,0,0,0,0.276,1 +1,0.788,0.413,0.655,0.655,0,0,0,0,0,0,0.118,1 +0.667,0.702,0.39,0.569,0.569,0,0,0,0,0,0,0.131,1 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.155,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,0,0,1 +1,0.599,0.278,0.356,0.356,0,0,0,0,0,0,0.308,1 +1,0.565,0.0695,0.116,0.116,0,0,0,0,0,0,0.137,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.171,1 +1,0.56,0.0178,0.0506,0.0506,0,0,0,0,0,0,0.309,1 +1,0.558,0.0289,0.11,0.11,0,0,0,0,0,0,0.117,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.733 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.283,0 +0.333,0.591,0.0427,0.175,0.175,0,0,0,0,0,0,0.394,0 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.112,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.107,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.233 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.241,-1 +0.667,0.62,0.125,0.269,0.269,0,0,0,0,0,0,1,-0.183 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0.25,0.118,-0.183 +0.667,0.671,0.172,0.294,0.294,0,0,0.388,0.246,0.233,0,0.0394,1 +0.667,0.702,0.21,0.35,0.35,0,0,0.635,0,0,0,0.0788,1 +0.667,0.712,0.28,0.453,0.453,0,0,0,0,0,0,0.0788,1 +0.667,0.702,0.39,0.569,0.569,0,0,0,0,0,0,0.313,-0.217 +1,0.741,0.713,0.905,0.905,0,0,0,0,0,0,0.129,1 +1,0.679,0.676,0.821,0.821,0,0,0,0,0,0,0.0788,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0.242,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.57,0.0296,0.143,0.143,0.454,0.483,0,0,0,0,0.0394,1 +0.667,0.585,0.0368,0.172,0.172,0.534,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.25,0,-0.883 +0.333,0.591,0.0486,0.174,0.174,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0532,0.17,0.17,0,0,0,0,0,0,0.0394,0 +0.333,0.591,0.0577,0.164,0.164,0,0,0,0,0,0,0.197,0 +0.333,0.591,0.0604,0.16,0.16,0,0,0,0,0,0,0.118,0 +0.333,0.591,0.0669,0.159,0.159,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.236,0 +0.333,0.601,0.0774,0.162,0.162,0,0,0,0,0,0,0.158,-0.383 +0.333,0.616,0.0938,0.172,0.172,0,0,0,0,0,0,0.0394,-1 +1,0.772,0.307,0.501,0.501,0,0,0,0,0,0,0,1 +1,0.788,0.413,0.655,0.655,0.145,0.0667,0,0,0,0,0,1 +0.667,0.702,0.39,0.569,0.569,0.628,1,0,0,0,0,0,-0.25 +0.667,0.681,0.481,0.62,0.62,0,0.9,0,0,0,0,0.0788,-0.25 +1,0.601,0.236,0.307,0.307,0,0,0,0,0,0,0.0815,1 +1,0.58,0.147,0.203,0.203,0,0,0,0,0,0,0.296,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.234,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.188,1 +1,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.198,1 +1,0.608,0.0573,0.305,0.305,0,0,0,0,0,0,0.788,1 +1,0.618,0.069,0.318,0.318,0,0,0.405,0.246,0.25,0,0.398,1 +1,0.647,0.113,0.456,0.456,0,0,0.401,0,0,0,0.465,-0.25 +0.667,0.618,0.0898,0.312,0.312,0,0,0.211,0,0,0,0,-0.85 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.138,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.434,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0394,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.315,0 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.0394,-0.833 +0.333,0.631,0.112,0.301,0.301,0,0,0,0,0,0,0.118,-0.25 +0.667,0.711,0.278,0.647,0.647,0,0,0,0,0,0.183,0.0394,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0.35,0,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.201,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0.225,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0.521,0.246,0.25,0,0.312,1 +1,0.631,0.078,0.433,0.433,0,0,0.11,0,0,0.267,0.508,1 +0.667,0.618,0.069,0.318,0.318,0,0,0,0,0,0,0.255,1 +0.667,0.618,0.0807,0.321,0.321,0,0,0,0,0,0,0.703,1 +0.667,0.618,0.0898,0.312,0.312,0,0,0,0,0,0,0.22,1 +0.667,0.618,0.0989,0.3,0.3,0,0,0,0,0,0,0.268,1 +0.667,0.618,0.104,0.292,0.292,0,0,0,0,0,0,0.118,1 +0.667,0.618,0.117,0.289,0.289,0,0,0,0,0,0.267,0.422,-0.767 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0788,0 +0.667,0.639,0.138,0.338,0.338,0,0,0,0,0,0,0.0394,0 +0.667,0.67,0.17,0.425,0.425,0,0,0,0,0,0,0.0788,0 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0,0,-0.5 +0.667,0.711,0.278,0.647,0.647,0.422,0.433,0,0,0,0,0.137,-0.25 +1,0.77,0.573,0.919,0.919,0.522,0.6,0,0,0,0,0.241,1 +1,0.739,0.708,0.747,0.747,0.654,0,0,0,0,0,0.2,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0.496,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0.0992,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +0.667,0.585,0.04,0.177,0.177,0,0,0,0,0,0,0.0394,1 +0.667,0.59,0.0582,0.184,0.184,0,0,0,0,0,0,0,1 +0.667,0.59,0.0732,0.185,0.185,0,0,0,0,0,0,0.118,1 +0.667,0.59,0.0849,0.181,0.181,0,0,0,0,0,0,0,1 +0.667,0.59,0.092,0.175,0.175,0,0,0,0,0,0.267,0.356,1 +0.667,0.618,0.178,0.292,0.292,0,0,0,0,0,0,0.473,1 +0.333,0.59,0.113,0.169,0.169,0,0,0,0,0,0,0.188,1 +0.333,0.59,0.128,0.173,0.173,0,0,0,0,0,0,0.175,1 +0.667,0.639,0.261,0.338,0.338,0,0,0,0,0,0,0.0788,1 +0.667,0.67,0.274,0.425,0.425,0,0,0,0,0,0,0.315,1 +0.667,0.7,0.283,0.553,0.553,0,0,0,0,0,0,0.0394,1 +1,0.785,0.489,0.946,0.946,0,0,0,0,0,0,0,1 +1,0.77,0.643,0.919,0.919,0,0,0,0,0,0,0,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0.197,1 +1,0.616,0.441,0.493,0.493,0,0,0,0,0,0,0,1 +1,0.57,0.201,0.249,0.249,0,0,0,0,0,0,0,1 +1,0.559,0.0407,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.267,0.118,1 +0.667,0.618,0.128,0.321,0.321,0,0,0.33,0.246,0.583,0.267,0,1 +0.667,0.618,0.152,0.312,0.312,0,0,0.433,0.0702,0.45,0,0.118,1 +0.667,0.618,0.166,0.3,0.3,0,0,0.858,0.175,0.833,0,0.118,1 +0.667,0.618,0.178,0.292,0.292,0,0,0.255,0,0.2,0,0.197,1 +0.667,0.618,0.209,0.289,0.289,0,0,0,0,0,0.817,0.158,1 +0.667,0.59,0.128,0.173,0.173,0,0,0,0,0,0.267,0.155,1 +0.667,0.6,0.139,0.194,0.194,0,0,0,0,0,0,0.117,1 +0.667,0.67,0.274,0.425,0.425,0,0,0,0,0,0,0.0394,1 +0.667,0.7,0.283,0.553,0.553,0,0,0,0,0,0,0.154,1 +0.667,0.711,0.332,0.647,0.647,0.117,0.0667,0,0,0,0,0.166,-0.25 +0.667,0.7,0.435,0.629,0.629,0.422,0.45,0,0,0,0.267,0.0394,-0.0167 +0.667,0.68,0.51,0.515,0.515,0,0,0,0,0,0,0,-0.25 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0.311,1 +1,0.598,0.3,0.345,0.345,0,0,0,0,0,0,0.142,1 +1,0.567,0.14,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0.439,1 +1,0.559,0.0223,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.559,0.0164,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.559,0.0151,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0.286,0.719,0,0,0.276,1 +1,0.577,0.043,0.245,0.245,0,0,0.635,0.772,0.25,0.433,0.0394,1 +1,0.608,0.0573,0.305,0.305,0,0,0,0,0,0.383,0.558,-0.5 +0.667,0.59,0.0424,0.184,0.184,0,0,0,0,0,0.267,0.203,-0.617 +0.667,0.618,0.0807,0.321,0.321,0,0,0,0,0,0,0.339,0 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0.193,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.578,-0.867 +0.333,0.6,0.0769,0.194,0.194,0,0,0.115,0.193,0,0,0.223,-0.25 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0.0526,0.25,0.817,0.184,1 +1,0.77,0.304,0.804,0.804,0.426,0.433,0,0,0,0,0,1 +1,0.785,0.409,0.946,0.946,0.105,0.617,0,0,0,0,0.0815,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0,1 +1,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0,1 +1,0.6,0.234,0.222,0.222,0,0,0,0,0,0,0,1 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.202,1 +1,0.559,0.0177,0.051,0.051,0,0,0,0,0,0,0.0688,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.412,-0.383 +0.667,0.585,0.0366,0.177,0.177,0,0,0,0,0,0,0.127,0 +0.333,0.59,0.0424,0.184,0.184,0,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0.464,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0.267,0,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.0788,-0.883 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.551,-0.5 +0.667,0.639,0.138,0.338,0.338,0,0,0,0,0,0,0.0394,1 +0.667,0.67,0.17,0.425,0.425,0,0,0,0,0,0,0.0788,1 +0.333,0.631,0.112,0.301,0.301,0,0,0,0,0,0,0,1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0.0394,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.0394,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.126,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.104,1 +1,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.403,1 +0.667,0.585,0.0366,0.177,0.177,0,0,0,0,0,0,0.0788,-0.5 +0.333,0.59,0.0424,0.184,0.184,0,0,0,0,0,0,0.276,-0.883 +0.333,0.59,0.0483,0.185,0.185,0.351,0.517,0,0,0,0,0.284,0 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0.307,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0394,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0.267,0.197,-0.367 +0.667,0.67,0.17,0.425,0.425,0,0,0,0,0,0,0.0394,-1 +0.667,0.7,0.208,0.553,0.553,0.501,0.933,0,0,0,0,0.197,1 +0.667,0.711,0.278,0.647,0.647,0.119,0.3,0,0,0,0,0.243,1 +1,0.77,0.573,0.919,0.919,0.585,0.333,0,0,0,0,0.261,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.441,1 +1,0.6,0.234,0.222,0.222,0,0,0,0,0,0,0,1 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0.151,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.282,-0.217 +1,0.585,0.0366,0.177,0.177,0,0,0,0,0,0,0.0915,-0.25 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-1 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0.0788,-0.167 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0.267,0.197,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.158,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0.33,0.246,0.2,0,0,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0.586,0,0.567,0,0.276,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0.433,0,0,0,0.276,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0.661,0,0,0,0.0394,0 +0.333,0.616,0.0931,0.237,0.237,0,0,0.726,0,0,0.267,0.0788,-0.917 +0.667,0.7,0.208,0.553,0.553,0,0,0.55,0,0,0,0.0394,-0.5 +1,0.785,0.409,0.946,0.946,0.171,0.183,0.734,0,0,0,0.118,1 +1,0.77,0.573,0.919,0.919,0.377,0.333,0.0917,0,0,0,0.0394,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.202,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.148,-0.183 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.433 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.562,0.0159,0.0495,0.0495,0.119,0.183,0,0,0,0.267,0.0788,-0.45 +0.667,0.59,0.0424,0.184,0.184,0.572,1,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0.185,0,0.133,0,0,0,0,0.158,0 +0.667,0.618,0.0898,0.312,0.312,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.433,0.0394,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0.383,0.158,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.366,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.204,-0.2 +0.667,0.616,0.0931,0.237,0.237,0,0,0,0,0,0.683,0,-1 +0.667,0.7,0.208,0.553,0.553,0.517,0.25,0,0,0,1,0.118,-0.5 +1,0.785,0.409,0.946,0.946,0.0663,0,0,0,0,0.783,0,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.541,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0.0821,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.483,1 +1,0.577,0.0372,0.245,0.245,0,0,0,0,0,0,0.118,1 +1,0.608,0.0619,0.305,0.305,0,0,0,0,0,0,0.352,1 +0.333,0.59,0.0582,0.184,0.184,0,0,0,0,0,0,0.326,1 +0.333,0.59,0.0732,0.185,0.185,0,0,0,0,0,0.267,0.0394,1 +0.333,0.59,0.0849,0.181,0.181,0,0,0.202,0.0702,0,0,0.0394,1 +0.333,0.59,0.092,0.175,0.175,0,0,0.434,0.175,0.517,0,0.0394,1 +0.667,0.618,0.178,0.292,0.292,0,0,0.532,0,0,0,0.197,1 +0.667,0.618,0.209,0.289,0.289,0,0,0.45,0,0,0,0.158,1 +0.667,0.618,0.237,0.297,0.297,0,0,0.482,0,0,0,0.236,1 +0.667,0.6,0.139,0.194,0.194,0,0,0,0,0,0,0.158,1 +0.667,0.616,0.146,0.237,0.237,0,0,0,0,0,0.267,0.0394,1 +1,0.7,0.283,0.553,0.553,0,0,0,0,0,0,0,1 +1,0.785,0.489,0.946,0.946,0,0,0,0,0,0,0.0394,1 +1,0.77,0.643,0.919,0.919,0,0,0,0,0,0,0,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.598,0.3,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.564,0.079,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.559,0.0407,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.27,1 +1,0.59,0.0732,0.185,0.185,0,0,0,0,0,0,0.201,1 +0.667,0.618,0.152,0.312,0.312,0,0,0,0,0,0,0.315,1 +0.667,0.618,0.166,0.3,0.3,0,0,0,0,0,0,0.0394,1 +0.667,0.618,0.178,0.292,0.292,0,0,0,0,0,0,0.276,1 +0.667,0.618,0.209,0.289,0.289,0,0,0,0,0,0,0.494,1 +0.667,0.618,0.237,0.297,0.297,0,0,0,0,0,0,0.156,1 +0.667,0.639,0.261,0.338,0.338,0.161,0.0667,0,0,0,0,0.204,1 +0.667,0.67,0.274,0.425,0.425,0.777,0.45,0,0,0,0,0.0838,1 +1,0.7,0.283,0.553,0.553,0.612,0,0,0,0,0.267,0.158,1 +1,0.785,0.489,0.946,0.946,0.217,0,0,0,0,0,0.315,1 +0.667,0.7,0.435,0.629,0.629,0,0,0,0,0,0,0.0394,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0.248,1 +1,0.598,0.3,0.345,0.345,0,0,0,0,0,0,0.18,1 +1,0.564,0.079,0.116,0.116,0,0,0,0,0,0,0.0757,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0.311,1 +1,0.559,0.0223,0.0578,0.0578,0,0,0,0,0,0,0.337,1 +1,0.559,0.0164,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.529,1 +1,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.35,1 +0.667,0.585,0.0366,0.177,0.177,0,0,0,0,0,0.267,0.17,1 +1,0.59,0.0424,0.184,0.184,0,0,0,0,0,0,0.304,-0.25 +0.667,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0.0394,-0.95 +0.667,0.618,0.0898,0.312,0.312,0,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0.3,0.164,0.183,0,0,0,0,0.288,0 +0.667,0.618,0.104,0.292,0.292,0.627,0.867,0,0,0,0,0.204,0 +0.667,0.618,0.117,0.289,0.289,0.115,0,0,0,0,0,0.158,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.236,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0.267,0.118,-0.2 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.158,-1 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0,0,1 +0.667,0.711,0.278,0.647,0.647,0.628,0.517,0,0,0,0,0.0788,1 +1,0.77,0.573,0.919,0.919,0.134,0,0,0,0,0,0,1 +1,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0,1 +1,0.6,0.234,0.222,0.222,0,0,0,0,0,0,0,1 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0757,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.577,0.043,0.245,0.245,0,0,0.234,0.246,0.2,0.267,0,1 +1,0.631,0.078,0.433,0.433,0,0,0.602,0,0.317,0,0.118,1 +0.333,0.59,0.0424,0.184,0.184,0,0,0,0,0,0,0.552,1 +0.667,0.618,0.0807,0.321,0.321,0,0,0,0,0,0,0.0788,1 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0,-1 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.236,-0.0167 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.473,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0394,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.0788,-0.0167 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0.267,0.276,-1 +1,0.77,0.304,0.804,0.804,0,0,0,0,0,0,0.141,1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0,-0.333 +0.667,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0.0971,0 +0.667,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0,-0.317 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0.132,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.342,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0.332,1 +0.667,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.433,0.118,-0.633 +0.333,0.59,0.0424,0.184,0.184,0,0,0,0,0,0.933,0.0788,0 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,-0.867 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.334,-0.25 +0.667,0.639,0.138,0.338,0.338,0,0,0,0,0,0.533,0.236,1 +1,0.724,0.248,0.612,0.612,0,0,0,0,0,0.267,0.158,1 +1,0.77,0.304,0.804,0.804,0,0,0,0,0,0,0,1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.125,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.214,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0.379,1 +1,0.616,0.405,0.493,0.493,0,0,0,0,0,0,0,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +1,0.559,0.0177,0.051,0.051,0,0,0,0,0,0,0,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0.221,1 +0.667,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0,-0.25 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.2 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0.267,0.197,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.197,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0788,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.158,-0.7 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.0788,-0.75 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0,0,1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0.0788,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.0948,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.276,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.567,0.122,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.433,0.236,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0.1,0.0985,1 +1,0.577,0.043,0.245,0.245,0,0,0,0,0,0,0.57,1 +1,0.631,0.078,0.433,0.433,0,0,0,0,0,0,0.0991,1 +0.667,0.618,0.069,0.318,0.318,0,0,0,0,0,0,0.0394,-0.75 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0,-0.75 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.158,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.0394,0 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0.267,0.473,0 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0,0.158,-0.983 +0.667,0.711,0.278,0.647,0.647,0,0,0,0,0,0,0.182,-0.5 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0.291,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0.118,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.317,0.0394,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.217,0.578,1 +1,0.59,0.0582,0.184,0.184,0,0,0,0,0,0,0.527,1 +1,0.618,0.128,0.321,0.321,0,0,0,0,0,0,0.129,1 +1,0.618,0.152,0.312,0.312,0,0,0,0,0,0,0.154,1 +1,0.618,0.166,0.3,0.3,0,0,0,0,0,0.817,0,1 +0.667,0.59,0.0979,0.171,0.171,0,0,0,0,0,0.267,0,1 +1,0.618,0.209,0.289,0.289,0,0,0,0,0,0,0.158,1 +1,0.647,0.347,0.421,0.421,0.323,0.517,0,0,0,0,0.118,1 +1,0.677,0.382,0.482,0.482,0.293,0,0,0,0,0,0.197,1 +1,0.724,0.402,0.612,0.612,0,0,0,0,0,0,0.0394,1 +1,0.77,0.415,0.804,0.804,0.187,0.0667,0,0,0,0,0,1 +1,0.785,0.489,0.946,0.946,0.56,0.183,0,0,0,0,0.0788,1 +1,0.77,0.643,0.919,0.919,0.757,0,0,0,0,0,0,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0.0394,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.616,0.441,0.493,0.493,0,0,0,0,0,0,0,1 +1,0.564,0.079,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.559,0.0407,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.23,1 +1,0.569,0.0277,0.147,0.147,0,0,0,0,0,0,0.699,1 +1,0.585,0.04,0.177,0.177,0,0,0,0,0,0.817,0.286,1 +1,0.618,0.0983,0.318,0.318,0,0,0,0,0,0.55,0,1 +1,0.647,0.183,0.456,0.456,0,0,0,0,0,0,0,1 +0.667,0.618,0.152,0.312,0.312,0,0,0,0,0,0,0.315,1 +0.667,0.618,0.166,0.3,0.3,0,0,0,0,0,0,0.158,1 +0.333,0.59,0.0979,0.171,0.171,0,0,0,0,0,0,0.0394,1 +0.333,0.59,0.113,0.169,0.169,0,0,0,0,0,0.267,0,1 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.133 +1,0.677,0.382,0.482,0.482,0,0,0,0,0,0,0.118,1 +1,0.724,0.402,0.612,0.612,0,0,0,0,0,0,0.0788,1 +1,0.77,0.415,0.804,0.804,0.295,0.317,0,0,0,0,0.118,1 +1,0.785,0.489,0.946,0.946,0.257,0.2,0,0,0,0,0,1 +1,0.7,0.435,0.629,0.629,0,0,0,0,0,0,0,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.616,0.441,0.493,0.493,0.283,0.783,0,0,0,0,0,1 +1,0.564,0.079,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.429,1 +1,0.585,0.0565,0.342,0.342,0,0,0,0,0,0,0.354,1 +0.667,0.608,0.0573,0.305,0.305,0,0,0,0,0,0,0.401,1 +0.667,0.618,0.069,0.318,0.318,0,0,0,0,0,0,0.248,-0.5 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0.197,-0.883 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0.433,0,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0.1,0.0788,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.236,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.383,0 +0.667,0.67,0.17,0.425,0.425,0,0,0,0,0,0.267,0.259,-0.383 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0,0.158,-1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0.522,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.118,1 +0.667,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0,1 +0.667,0.639,0.452,0.394,0.394,0,0,0.303,0.246,0.2,0,0.279,1 +0.667,0.598,0.276,0.345,0.345,0,0,0.206,0,0.05,0,0.107,1 +0.667,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0.0394,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.559,0.0223,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0.183,0.456,1 +1,0.577,0.043,0.245,0.245,0,0,0,0,0,0.35,0.237,1 +1,0.608,0.0573,0.305,0.305,0,0,0,0,0,0,0.229,1 +1,0.647,0.0955,0.452,0.452,0,0,0,0,0,0,0.242,-0.25 +0.667,0.618,0.0807,0.321,0.321,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.0167 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.433,0.0394,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0.63,0.246,0.25,0.383,0.315,0 +0.667,0.67,0.17,0.425,0.425,0,0,0.7,0,0,0,0.382,-0.767 +0.667,0.7,0.208,0.553,0.553,0,0,0.402,0,0,0.433,0.0394,-0.5 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0.383,0.118,1 +1,0.77,0.573,0.919,0.919,0,0,0.11,0.193,0,0,0.118,1 +1,0.739,0.708,0.747,0.747,0,0,0.52,0.0526,0.25,0,0.121,1 +1,0.677,0.671,0.566,0.566,0,0,0.552,0,0,0,0,1 +1,0.598,0.276,0.345,0.345,0,0,0.502,0,0,0,0.0788,1 +1,0.564,0.0691,0.116,0.116,0,0,0.422,0,0,0,0,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.625,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0.285,1 +1,0.577,0.043,0.245,0.245,0,0,0,0,0,0,0.0383,-0.25 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.333,0.59,0.0424,0.184,0.184,0,0,0,0,0,0,0,-0.317 +0.333,0.59,0.0483,0.185,0.185,0.503,0.683,0,0,0,0,0.118,0 +0.333,0.59,0.0528,0.181,0.181,0.145,0.367,0,0,0,0,0.61,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.146,0 +0.667,0.618,0.104,0.292,0.292,0,0,0,0,0,0,0.452,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0788,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.0788,-0.05 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.17,-1 +0.333,0.631,0.112,0.301,0.301,0,0,0,0,0,0.533,0.258,-0.5 +0.333,0.636,0.147,0.348,0.348,0,0,0,0,0,0,0.0394,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.0788,1 +1,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0.236,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0.0394,1 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.286,1 +0.667,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0.224,1 +0.667,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.184,1 +0.667,0.608,0.0573,0.305,0.305,0,0,0,0,0,0,0.363,-0.25 +0.667,0.618,0.069,0.318,0.318,0,0,0,0,0,0,0,-0.367 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.433,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.0788,-0.617 +0.667,0.618,0.104,0.292,0.292,0,0,0,0,0,0,0.236,1 +0.667,0.618,0.117,0.289,0.289,0,0,0,0,0,0,0.212,1 +0.667,0.618,0.124,0.297,0.297,0,0,0,0,0,0,0.158,1 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.0394,-0.4 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.236,0 +0.667,0.631,0.112,0.301,0.301,0,0,0,0,0,0,0.118,-0.4 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0.362,1 +0.667,0.7,0.387,0.629,0.629,0,0,0,0,0,0,0.0394,1 +0.667,0.621,0.246,0.282,0.282,0,0,0,0,0,0,0,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0.23,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0.092,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.559,0.0177,0.051,0.051,0,0,0,0,0,0,0,-0.75 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.263,-1 +0.667,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0,-0.0333 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.243,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0.311,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.611,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.16,-0.267 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.205,-1 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.518,-0.5 +1,0.77,0.304,0.804,0.804,0,0,0,0,0,0,0.236,1 +0.667,0.711,0.278,0.647,0.647,0,0,0,0,0,0.683,0,1 +0.667,0.7,0.387,0.629,0.629,0.569,0.517,0,0,0,0.4,0.0788,1 +0.667,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0.258,1 +0.667,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0.12,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0.128,1 +1,0.559,0.0407,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.213,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.541,1 +1,0.618,0.0983,0.318,0.318,0,0,0,0,0,0,0.26,1 +0.667,0.59,0.0732,0.185,0.185,0,0,0,0,0,0,0,1 +0.333,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.158,1 +1,0.618,0.166,0.3,0.3,0,0,0,0,0,0,0,1 +0.333,0.59,0.0979,0.171,0.171,0,0,0,0,0,0,0.236,-0.217 +0.333,0.59,0.113,0.169,0.169,0,0,0,0,0,0,0,-0.217 +0.667,0.618,0.237,0.297,0.297,0,0,0,0,0,0,0.118,1 +0.667,0.639,0.261,0.338,0.338,0,0,0,0,0,0,0.0788,1 +0.667,0.616,0.146,0.237,0.237,0,0,0,0,0,0.267,0.0394,1 +1,0.77,0.415,0.804,0.804,0.421,0.317,0,0,0,0.267,0.0394,1 +1,0.785,0.489,0.946,0.946,0.319,0.467,0,0,0,0,0,1 +1,0.77,0.643,0.919,0.919,0,0,0,0,0,0,0,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.598,0.3,0.345,0.345,0,0,0,0,0,0,0.0788,1 +1,0.567,0.14,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.559,0.0407,0.0743,0.0743,0,0,0,0,0,0,0.175,1 +1,0.559,0.0264,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +0.667,0.59,0.0732,0.185,0.185,0,0,0.326,0.246,0.0833,0,0.0394,1 +0.667,0.618,0.152,0.312,0.312,0,0,0.876,0,0.683,0,0,1 +0.667,0.618,0.166,0.3,0.3,0,0,0.405,0,0,0,0.0788,1 +0.667,0.618,0.178,0.292,0.292,0,0,0,0,0,0,0.118,1 +0.667,0.618,0.209,0.289,0.289,0,0,0,0,0,0,0,1 +1,0.618,0.237,0.297,0.297,0,0,0,0,0,0,0.354,1 +1,0.639,0.261,0.338,0.338,0,0,0,0,0,0,0.75,1 +1,0.67,0.274,0.425,0.425,0,0,0,0,0,0,0.27,1 +1,0.7,0.283,0.553,0.553,0,0,0,0,0,0,0.313,1 +1,0.711,0.332,0.647,0.647,0,0,0,0,0,0,0.0788,1 +0.667,0.7,0.435,0.629,0.629,0,0,0,0,0,0.267,0.142,1 +1,0.739,0.756,0.747,0.747,0,0,0,0,0,0,0.215,1 +1,0.677,0.698,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.616,0.441,0.493,0.493,0,0,0,0,0,0,0,1 +1,0.567,0.14,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.276,1 +1,0.559,0.0177,0.051,0.051,0,0,0,0,0,0,0.0788,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.193,1 +1,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.0671,-0.25 +0.667,0.585,0.0366,0.177,0.177,0,0,0,0,0,0,0.0394,-1 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.1 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.276,0 +0.667,0.59,0.0697,0.173,0.173,0,0,0,0,0,0.533,0.118,-0.333 +0.667,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.0788,-1 +1,0.724,0.248,0.612,0.612,0,0,0,0,0,0.183,0.34,1 +1,0.77,0.304,0.804,0.804,0,0,0,0,0,0.0833,0.0394,1 +0.667,0.711,0.278,0.647,0.647,0,0,0,0,0,0.267,0,-0.0833 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.0394,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.162,1 +1,0.639,0.452,0.394,0.394,0,0,0,0,0,0,0.208,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0.0781,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.304,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0.728,1 +1,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0,-0.75 +0.667,0.585,0.0366,0.177,0.177,0.358,0.433,0,0,0,0,0.0394,-0.883 +0.333,0.59,0.0424,0.184,0.184,0.415,0.0833,0,0,0,0,0.0394,0 +0.333,0.59,0.0483,0.185,0.185,0.415,0.433,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.181,0.197,0.0833,0,0,0,0,0.0394,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.0788,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.197,0 +0.667,0.618,0.124,0.297,0.297,0,0,0,0,0,0,0.0788,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.0788,-0.133 +0.333,0.616,0.0931,0.237,0.237,0.421,0.433,0,0,0,0,0,-1 +0.333,0.631,0.112,0.301,0.301,0.126,0.0833,0,0,0,0,0.668,-0.5 +0.667,0.711,0.278,0.647,0.647,0,0,0,0,0,0,0.311,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0.185,1 +1,0.739,0.708,0.747,0.747,0,0,0,0,0,0,0.185,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.559,0.0177,0.051,0.051,0,0,0,0,0,0,0.236,1 +1,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0.318,1 +1,0.585,0.0565,0.342,0.342,0,0,0.219,0.246,0.45,0,0.564,1 +1,0.631,0.078,0.433,0.433,0,0,0.255,0,0.317,0,0.458,-0.25 +0.333,0.59,0.0424,0.184,0.184,0,0,0.615,0,0,0,0.236,-1 +0.333,0.59,0.0483,0.185,0.185,0,0,0.735,0,0,0,0,-0.0167 +0.333,0.59,0.0528,0.181,0.181,0,0,0.419,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0.00917,0,0,0,0.0394,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0.158,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0.0394,0 +0.333,0.6,0.0769,0.194,0.194,0,0,0,0,0,0,0.118,-0.767 +0.333,0.616,0.0931,0.237,0.237,0.578,0.517,0,0,0,0.267,0,-0.5 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0,0,1 +0.667,0.711,0.278,0.647,0.647,0,0,0,0,0,0,0.239,1 +0.667,0.7,0.387,0.629,0.629,0.651,0.517,0,0,0,0,0.15,1 +1,0.739,0.708,0.747,0.747,0.773,0,0,0,0,0,0.0394,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0.0394,1 +1,0.58,0.146,0.197,0.197,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-1 +0.667,0.559,0.0223,0.0816,0.0816,0,0,0,0,0,0,0,-0.667 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0.118,0 +0.333,0.59,0.0528,0.181,0.181,0,0,0,0,0,0.267,0.315,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0.171,0,0,0,0,0,0,0.0394,0 +0.333,0.59,0.0665,0.169,0.169,0,0,0,0,0,0,0.0394,-0.167 +0.333,0.59,0.0697,0.173,0.173,0,0,0,0,0,0,0,-1 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.5 +0.333,0.616,0.0931,0.237,0.237,0,0,0,0,0,0,0.158,1 +0.667,0.7,0.208,0.553,0.553,0,0,0,0,0,0.267,0.197,1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0,1 +1,0.77,0.573,0.919,0.919,0.78,0.933,0,0,0,0,0,1 +1,0.739,0.708,0.747,0.747,0.661,0.117,0,0,0,0,0.0788,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0.173,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0.0394,1 +1,0.567,0.122,0.183,0.183,0,0,0,0,0,0,0.0394,1 +1,0.559,0.0346,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.188,1 +0.667,0.569,0.0294,0.147,0.147,0,0,0,0,0,0,0.283,1 +0.667,0.608,0.0573,0.305,0.305,0,0,0,0,0,0,0.0765,1 +0.667,0.618,0.069,0.318,0.318,0,0,0,0,0,0,0.0394,-0.75 +0.333,0.59,0.0483,0.185,0.185,0,0,0,0,0,0,0,-0.167 +0.333,0.59,0.0528,0.181,0.181,0.618,0.25,0,0,0,0,0.0394,0 +0.333,0.59,0.0574,0.175,0.175,0,0,0,0,0,0,0.127,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.4 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.276,-0.5 +0.667,0.639,0.138,0.338,0.338,0,0,0,0,0,0,0.118,-0.15 +0.667,0.67,0.17,0.425,0.425,0,0,0,0,0,0.433,0.0394,-0.133 +1,0.77,0.304,0.804,0.804,0,0,0,0,0,0.1,0,1 +1,0.785,0.409,0.946,0.946,0,0,0,0,0,0,0.0394,1 +1,0.77,0.573,0.919,0.919,0,0,0,0,0,0,0,1 +0.667,0.68,0.477,0.515,0.515,0,0,0,0,0,0,0.0394,1 +1,0.677,0.671,0.566,0.566,0,0,0,0,0,0,0.344,1 +1,0.598,0.276,0.345,0.345,0,0,0,0,0,0,0.0992,1 +1,0.564,0.0691,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.64,0.049,0.181,0.181,0,0,0,0,0,0,0.0873,1 +1,0.732,0.128,0.33,0.33,0,0,0,0,0,0,0.361,1 +1,0.732,0.168,0.337,0.337,0,0,0,0,0,0,0.222,1 +1,0.818,0.289,0.468,0.468,0,0,0,0,0,0,0.439,1 +0.333,0.647,0.118,0.183,0.183,0,0,0,0,0,0.267,0.0394,1 +0.333,0.647,0.125,0.178,0.178,0,0,0,0,0,0,0.118,1 +0.333,0.647,0.146,0.177,0.177,0,0,0,0,0,0,0.118,1 +0.333,0.647,0.165,0.182,0.182,0,0,0,0,0,0,0.118,1 +0.333,0.66,0.18,0.204,0.204,0,0,0,0,0,0,0.158,1 +0.333,0.679,0.189,0.253,0.253,0,0,0,0,0,0,0.394,1 +1,0.973,0.549,0.869,0.869,0,0,0,0,0,0,0.236,1 +1,0.993,0.647,1,1,0,0,0,0,0,0,0.0394,1 +1,0.973,0.851,0.933,0.933,0,0,0,0,0,0,0.0394,1 +1,0.81,0.673,0.504,0.504,0,0,0,0,0,0,0,1 +1,0.758,0.621,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.667,0.183,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.654,0.0816,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.654,0.0438,0.066,0.066,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.647,0.0731,0.19,0.19,0,0,0,0,0,0,0.197,1 +1,0.732,0.168,0.337,0.337,0,0,0,0,0,0,0,1 +1,0.732,0.198,0.328,0.328,0,0,0,0,0,0,0,1 +1,0.732,0.217,0.316,0.316,0,0,0,0,0,0,0.158,1 +0.667,0.732,0.233,0.307,0.307,0,0,0,0,0,0,0.0788,1 +0.667,0.732,0.274,0.305,0.305,0,0,0,0,0,0,0.225,1 +0.667,0.732,0.312,0.314,0.314,0,0,0,0,0,0,0.419,1 +0.667,0.758,0.343,0.359,0.359,0,0,0,0,0,0,0.333,1 +1,0.915,0.531,0.661,0.661,0,0,0,0,0,0,0.268,1 +1,0.836,0.372,0.596,0.596,0,0,0,0,0,0,0.154,1 +1,0.849,0.437,0.683,0.683,0,0,0,0,0,0,0.727,1 +1,0.836,0.573,0.638,0.638,0,0,0,0,0,0,0.366,1 +1,0.81,0.673,0.504,0.504,0,0,0,0,0,0,0,1 +1,0.857,0.923,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0.317,0,1 +1,0.667,0.183,0.183,0.183,0,0,0,0,0,0.233,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.836,1 +1,0.719,0.074,0.313,0.313,0,0,0,0,0,0,0.284,-0.5 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,-0.667 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.655,-0.667 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.197,-0.5 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0.0667,0.197,1 +0.333,0.699,0.145,0.323,0.323,0,0,0,0,0,0.483,0.253,1 +1,0.993,0.541,1,1,0,0,0,0,0,0,0.361,1 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.197,1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0.0394,1 +0.667,0.758,0.596,0.386,0.386,0,0,0,0,0,0.817,0.0788,1 +1,0.634,0.189,0.196,0.196,0.459,0.267,0,0,0,0.583,0,1 +1,0.614,0.0879,0.116,0.116,0.871,0,0,0,0,0,0,1 +1,0.608,0.0424,0.0743,0.0743,0.44,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.267,0.118,1 +1,0.608,0.0166,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.218,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0.267,0.236,1 +0.667,0.732,0.0895,0.33,0.33,0,0,0,0,0,0,0.0788,-0.25 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.0394,-0.8 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0.55,0.0788,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.158,-0.05 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.0788,-1 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0,0.158,1 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,0,0,1 +0.667,0.849,0.366,0.683,0.683,0.506,0.317,0,0,0,0,0.147,1 +0.667,0.836,0.51,0.638,0.638,0.574,1,0,0,0,0,0,1 +1,0.934,0.936,0.732,0.732,0.548,0.317,0,0,0,0,0,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0.0788,1 +1,0.706,0.363,0.342,0.342,0,0,0,0,0,0,0.283,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.608,0.0166,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.176,1 +0.667,0.621,0.0355,0.15,0.15,0,0,0,0,0,0,0,1 +0.667,0.64,0.0449,0.181,0.181,0.483,0.533,0,0,0,0,0.159,1 +0.667,0.647,0.0527,0.19,0.19,0.476,0,0,0,0,0,0.31,1 +0.667,0.732,0.105,0.337,0.337,0,0,0,0,0,0.267,0.222,1 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0.197,-0.833 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.158,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0788,-0.0833 +0.333,0.66,0.0982,0.204,0.204,0.344,0.317,0,0,0,0,0.118,-0.75 +0.667,0.797,0.224,0.457,0.457,0.218,0.217,0,0,0,0.317,0.0394,1 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,0.233,0,-0.333 +0.667,0.849,0.366,0.683,0.683,0,0,0,0,0,0,0.354,-0.0667 +0.667,0.836,0.51,0.638,0.638,0,0,0,0,0,0,0.197,-0.25 +1,0.934,0.936,0.732,0.732,0,0,0,0,0,0,0.461,1 +1,0.857,0.887,0.554,0.554,0,0,0,0,0,0,0.136,1 +1,0.706,0.363,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.413,1 +1,0.621,0.0355,0.15,0.15,0,0,0,0,0,0,0.69,1 +1,0.798,0.103,0.444,0.444,0,0,0,0,0,0,0.247,-0.25 +0.667,0.732,0.0895,0.33,0.33,0,0,0,0,0,0,0.185,-0.95 +0.667,0.732,0.105,0.337,0.337,0,0,0,0,0,0,0.636,0 +0.667,0.732,0.117,0.328,0.328,0,0,0,0,0,0,0.296,0 +0.667,0.732,0.129,0.316,0.316,0,0,0,0,0,0,0.124,0 +0.667,0.732,0.136,0.307,0.307,0,0,0,0,0,0.267,0,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0394,-0.2 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.0788,-1 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0,0.0788,1 +0.667,0.836,0.273,0.596,0.596,0.353,0.317,0,0,0,0,0.0394,1 +0.667,0.849,0.366,0.683,0.683,0.461,0.217,0,0,0,0,0,1 +0.667,0.836,0.51,0.638,0.638,0,0,0.558,0.246,0.267,0,0.0788,1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0,1 +1,0.857,0.887,0.554,0.554,0,0,0,0,0,0,0.357,1 +1,0.706,0.363,0.342,0.342,0,0,0,0,0,0,0.187,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0.141,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0.321,1 +1,0.608,0.026,0.0578,0.0578,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.185,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0.157,-0.5 +0.667,0.621,0.0355,0.15,0.15,0,0,0,0,0,0,0.413,-1 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0,0,-0.383 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.301,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.128,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.233,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.326,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.774,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.221,0 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.918,-0.383 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,0,0.614,-1 +0.667,0.849,0.366,0.683,0.683,0,0,0,0,0,0,0.419,-0.5 +1,0.973,0.758,0.933,0.933,0,0,0.0612,0.0702,0,0,0.458,1 +1,0.934,0.936,0.732,0.732,0,0,0.506,0.175,0.267,0,0.0394,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.262,1 +1,0.64,0.049,0.181,0.181,0,0,0,0,0,0,0.349,1 +1,0.647,0.0731,0.19,0.19,0,0,0,0,0,0,0.0788,1 +1,0.647,0.0928,0.193,0.193,0,0,0.358,0.246,0.333,0,0,1 +1,0.647,0.108,0.189,0.189,0,0,0,0,0.217,0.0667,0.381,1 +1,0.818,0.317,0.449,0.449,0,0,0,0,0,0.2,0.0939,1 +1,0.818,0.34,0.436,0.436,0,0,0,0,0,0,0.321,1 +1,0.818,0.402,0.432,0.432,0,0,0,0,0,0,0.496,1 +0.667,0.732,0.312,0.314,0.314,0,0,0,0,0,0,0.431,1 +0.333,0.66,0.18,0.204,0.204,0,0,0,0,0,0,0.0394,1 +0.333,0.679,0.189,0.253,0.253,0,0,0,0,0,0,0.118,-0.8 +0.333,0.699,0.195,0.323,0.323,0,0,0,0,0,0.317,0,0 +0.333,0.705,0.228,0.366,0.366,0,0,0,0,0,0.233,0.197,0 +0.667,0.836,0.573,0.638,0.638,0,0,0,0,0,0,0.0394,0 +0.667,0.81,0.673,0.504,0.504,0,0,0,0,0,0,0,-0.3 +0.333,0.66,0.32,0.218,0.218,0,0,0,0,0,0,0,-0.5 +0.667,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0.0806,1 +0.667,0.667,0.183,0.183,0.183,0,0,0,0,0,0,0.23,1 +0.667,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0.207,1 +0.667,0.608,0.031,0.0578,0.0578,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.356,1 +1,0.621,0.0327,0.15,0.15,0,0,0,0,0,0,0.103,1 +1,0.64,0.049,0.181,0.181,0,0,0,0,0,0,0.179,1 +1,0.647,0.0731,0.19,0.19,0,0,0,0,0,0,0.356,1 +1,0.647,0.0928,0.193,0.193,0,0,0,0,0,0,0.0394,1 +1,0.732,0.198,0.328,0.328,0,0,0,0,0,0,0.157,1 +0.667,0.732,0.217,0.316,0.316,0,0,0,0,0,0,0.206,1 +0.667,0.732,0.233,0.307,0.307,0,0,0,0,0,0,0.491,1 +1,0.818,0.402,0.432,0.432,0,0,0,0,0,0,0.0394,1 +1,0.818,0.459,0.446,0.446,0,0,0,0,0,0,0.0788,1 +0.667,0.758,0.343,0.359,0.359,0,0,0,0,0,0,0.474,1 +0.667,0.797,0.36,0.457,0.457,0,0,0,0,0,0,0.473,1 +0.667,0.836,0.372,0.596,0.596,0,0,0,0,0,0,0.19,1 +1,0.993,0.647,1,1,0,0,0,0,0,0,0.493,1 +1,0.973,0.851,0.933,0.933,0,0,0,0,0,0,0.106,1 +1,0.81,0.673,0.504,0.504,0,0,0,0,0,0,0,1 +1,0.758,0.621,0.386,0.386,0,0,0,0,0,0,0.385,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0.0359,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0.281,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0.0798,1 +1,0.608,0.026,0.0578,0.0578,0,0,0,0,0,0,0.11,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.846,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0.503,1 +1,0.68,0.0551,0.251,0.251,0,0,0,0,0,0,0.382,-0.333 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0,0.375,0 +0.667,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.287,-0.317 +1,0.732,0.105,0.337,0.337,0,0,0,0,0,0,0.31,1 +0.667,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0.207,1 +0.667,0.732,0.129,0.316,0.316,0,0,0,0,0,0,0.384,1 +0.667,0.732,0.136,0.307,0.307,0,0,0,0,0,0,0.191,1 +0.667,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.118,1 +0.667,0.732,0.162,0.314,0.314,0,0,0,0,0,0,0.0394,1 +0.667,0.758,0.181,0.359,0.359,0,0,0,0,0,0,0.115,1 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0.267,0.194,1 +1,0.973,0.402,0.869,0.869,0,0,0,0,0,0,0,1 +1,0.993,0.541,1,1,0,0,0,0,0,0.55,0,1 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.0394,1 +1,0.934,0.936,0.732,0.732,0,0,0,0,0,0,0,1 +1,0.857,0.887,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.706,0.363,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0.0394,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.831,1 +1,0.74,0.0747,0.351,0.351,0,0,0,0,0,0.267,0.372,1 +1,0.798,0.103,0.444,0.444,0,0,0,0,0,0,0.118,1 +0.667,0.732,0.0895,0.33,0.33,0,0,0.0214,0.0702,0,0,0.0788,1 +0.667,0.732,0.105,0.337,0.337,0,0,1,0.965,0.0833,0,0,1 +0.333,0.647,0.0664,0.189,0.189,0,0,0.124,0,1,0,0.118,1 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0.3,0,0,1 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0,-0.733 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.276,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.419,-0.467 +0.333,0.699,0.145,0.323,0.323,0,0,0,0,0,0,0.43,-0.25 +0.667,0.849,0.366,0.683,0.683,0,0,0,0,0,0,0.569,1 +1,0.973,0.758,0.933,0.933,0,0,0.414,0.246,0.267,0,0,1 +1,0.934,0.936,0.732,0.732,0,0,0.633,0,0,0,0,1 +1,0.857,0.887,0.554,0.554,0,0,0.24,0,0,0,0,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.25,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0.0948,-0.25 +0.333,0.562,0.0159,0.0495,0.0495,0.295,0.317,0,0,0,0,0.0394,-1 +0.333,0.64,0.0449,0.181,0.181,0.295,0.217,0,0,0,0.267,0,-0.0667 +0.333,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.236,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0.55,0.236,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.0394,-0.55 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0,-0.75 +0.667,0.758,0.181,0.359,0.359,0,0,0,0,0,0,0.0394,1 +0.667,0.797,0.224,0.457,0.457,0.223,0.317,0,0,0,0.0667,0,1 +1,0.973,0.402,0.869,0.869,0.407,0.767,0,0,0,0.2,0.0394,1 +1,0.993,0.541,1,1,0,0,0,0,0,0,0.0394,1 +0.667,0.836,0.51,0.638,0.638,0,0,0,0,0,0,0,1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0.118,1 +0.667,0.758,0.596,0.386,0.386,0,0,0.489,0.246,0.267,0,0,1 +1,0.706,0.363,0.342,0.342,0,0,0.424,0,0,0,0,1 +1,0.667,0.16,0.183,0.183,0,0,0.356,0,0,0,0,1 +1,0.654,0.0689,0.099,0.099,0,0,0.398,0,0,0,0.0394,1 +1,0.654,0.0362,0.066,0.066,0,0,0.584,0,0,0,0,1 +1,0.654,0.0208,0.0495,0.0495,0,0,0.295,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.621,0.0355,0.15,0.15,0,0,0,0,0,0,0.338,1 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0,0.111,-0.0667 +0.667,0.732,0.0895,0.33,0.33,0,0,0,0,0,0,0,-0.75 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.0394,-0.267 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.315,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.276,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.224,-0.767 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0.0667,0.0394,-0.25 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0.2,0.0788,1 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,0,0,1 +1,0.993,0.541,1,1,0,0,0,0,0,0.0667,0,1 +1,0.973,0.758,0.933,0.933,0.642,0.817,0,0,0,0.483,0.197,1 +1,0.934,0.936,0.732,0.732,0.297,0.55,0,0,0,0,0.0788,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0.0394,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0728,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.577,1 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0,0.694,1 +0.667,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.149,1 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.0788,-0.55 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.118,-0.533 +0.667,0.647,0.0845,0.177,0.177,0,0,0,0,0,0.55,0.0394,1 +0.667,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0394,1 +0.667,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.158,1 +0.667,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.0394,1 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,0,0.241,1 +1,0.993,0.541,1,1,0,0,0,0,0,0,0.118,1 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.308,1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0.295,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.205,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,1 +0.667,0.647,0.0928,0.193,0.193,0,0,0,0,0,0,0.0788,1 +0.667,0.647,0.108,0.189,0.189,0,0,0,0,0,0,0.158,1 +0.667,0.647,0.118,0.183,0.183,0,0,0,0,0,0,0.0788,1 +0.667,0.647,0.125,0.178,0.178,0,0,0,0,0,0,0.158,1 +0.667,0.732,0.274,0.305,0.305,0,0,0,0,0,0,0.0394,1 +1,0.818,0.459,0.446,0.446,0.394,0.317,0,0,0,0,0.158,1 +1,0.857,0.505,0.513,0.513,0.627,0.217,0,0,0,0.0667,0.158,1 +1,0.915,0.531,0.661,0.661,0.679,0,0,0,0,0.767,0.118,1 +1,0.973,0.549,0.869,0.869,0,0,0,0,0,0,0.241,1 +1,0.993,0.647,1,1,0,0,0,0,0,0,0.247,1 +1,0.973,0.851,0.933,0.933,0,0,0,0,0,0,0,1 +1,0.934,1,0.732,0.732,0,0,0,0,0,0,0,1 +1,0.857,0.923,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.779,0.582,0.488,0.488,0,0,0,0,0,0,0.325,-0.25 +0.667,0.667,0.183,0.183,0.183,0,0,0,0,0,0,0.0394,-0.15 +0.667,0.608,0.0499,0.0743,0.0743,0,0,0,0,0,0,0.292,0 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.0788,-0.4 +1,0.608,0.0224,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.608,0.019,0.0495,0.0495,0,0,0,0,0,0,0.118,1 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.883 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.11,0 +0.667,0.647,0.0731,0.19,0.19,0,0,0,0,0,0.267,0.56,0 +0.667,0.732,0.168,0.337,0.337,0,0,0,0,0,0,0.0675,-0.867 +1,0.818,0.289,0.468,0.468,0,0,0,0,0,0,0.213,1 +0.333,0.647,0.118,0.183,0.183,0,0,0,0,0,0,0.0394,1 +0.333,0.647,0.125,0.178,0.178,0,0,0,0,0,0,0.357,1 +0.667,0.732,0.274,0.305,0.305,0,0,0,0,0,0,0.566,1 +0.667,0.732,0.312,0.314,0.314,0,0,0,0,0,0,0.303,1 +1,0.857,0.505,0.513,0.513,0,0,0,0,0,0,0.158,1 +0.667,0.797,0.36,0.457,0.457,0,0,0,0,0,0,0.158,1 +0.667,0.836,0.372,0.596,0.596,0,0,0.0489,0.0702,0,0,0.111,1 +0.667,0.849,0.437,0.683,0.683,0,0,0.598,0.175,0.267,0,0,1 +0.667,0.836,0.573,0.638,0.638,0,0,0,0,0,0.267,0,1 +0.667,0.81,0.673,0.504,0.504,0.653,0.533,0.317,0.246,0.333,0,0,1 +1,0.857,0.923,0.554,0.554,0.131,0,0.572,0,0.483,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0.503,0,0,0,0.2,1 +1,0.667,0.183,0.183,0.183,0,0,0.115,0,0,0,0.35,1 +1,0.654,0.0689,0.099,0.099,0,0,0,0,0,0,0.13,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.195,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0,0.365,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0.189,1 +1,0.68,0.0551,0.251,0.251,0,0,0,0,0,0,0.14,1 +0.667,0.719,0.074,0.313,0.313,0,0,0,0,0,0.267,0.115,-1 +0.333,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.341,-0.85 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.213,0 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.236,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.0788,0 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0.0667,0.158,0 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,1,0.118,-0.1 +0.667,0.849,0.366,0.683,0.683,0.513,0.533,0,0,0,0.05,0,-1 +0.667,0.836,0.51,0.638,0.638,0.382,0,0,0,0,0,0.182,-0.75 +1,0.934,0.936,0.732,0.732,0,0,0,0,0,0,0.119,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0.267,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.26,-0.25 +0.667,0.719,0.074,0.313,0.313,0,0,0,0,0,0,0.0898,-0.983 +0.667,0.732,0.0895,0.33,0.33,0,0,0,0,0,0,0.0788,0 +0.667,0.732,0.105,0.337,0.337,0,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0.281,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.0596,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0,-0.983 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.315,-0.25 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0.267,0.0759,1 +1,0.973,0.402,0.869,0.869,0,0,0.295,0.246,0.267,0,0.427,-0.15 +0.667,0.849,0.366,0.683,0.683,0,0,0.68,0,0,0,0.515,-0.133 +0.667,0.836,0.51,0.638,0.638,0,0,0.19,0,0,0,0.253,1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0.226,1 +0.667,0.66,0.306,0.218,0.218,0,0,0,0,0,0,0.0394,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.267,0.306,1 +1,0.68,0.0551,0.251,0.251,0,0,0,0,0,0,0.148,1 +1,0.798,0.103,0.444,0.444,0.309,0.267,0,0,0,0,0.522,1 +1,0.818,0.126,0.47,0.47,0.396,0,0.22,0.246,0.333,0,0.331,1 +1,0.818,0.149,0.481,0.481,0,0,0.335,0,0.217,0,0.46,1 +1,0.818,0.168,0.468,0.468,0,0,0.451,0,0,0,0.278,1 +0.667,0.732,0.129,0.316,0.316,0,0,0.55,0,0,0,0.158,1 +0.667,0.732,0.136,0.307,0.307,0,0,0,0,0,0,0.197,-0.183 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.118,-0.183 +1,0.818,0.235,0.446,0.446,0,0,0,0,0,0,0.0788,1 +1,0.857,0.263,0.513,0.513,0,0,0,0,0,0,0.0394,1 +1,0.915,0.327,0.661,0.661,0.532,0.817,0,0,0,0.0667,0.118,-0.333 +0.667,0.836,0.273,0.596,0.596,0.162,0,0,0,0,1,0,0 +0.667,0.849,0.366,0.683,0.683,0,0,0,0,0,0.9,0.0788,-0.317 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.0394,1 +1,0.934,0.936,0.732,0.732,0,0,0,0,0,0,0,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.706,0.363,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.667,0.16,0.183,0.183,0,0,0,0,0,0,0.118,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0.208,1 +1,0.608,0.026,0.0578,0.0578,0,0,0,0,0,0,0.163,1 +1,0.608,0.0183,0.0495,0.0495,0,0,0,0,0,0,0.293,1 +1,0.608,0.0166,0.0495,0.0495,0,0,0,0,0,0,0.259,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.418,1 +0.667,0.621,0.0355,0.15,0.15,0,0,0,0,0,0,0.161,1 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0,0.0578,-0.75 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0394,-1 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.0394,-0.133 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0.11,0.0702,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.0495,0,0,0.887,0.175,0.55,0,0.0394,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0.359,0,0,0,0.197,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.118,0 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.0394,0 +0.333,0.699,0.145,0.323,0.323,0,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.683,0,0,0,0,0,0,0,-0.633 +0.667,0.836,0.51,0.638,0.638,0,0,0,0,0,0,0.416,-1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0.0394,-0.25 +1,0.66,0.306,0.218,0.218,0,0,0,0,0,0,0,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.608,0.026,0.0578,0.0578,0,0,0,0,0,0,0.0394,1 +1,0.608,0.0183,0.0495,0.0495,0,0,0,0,0,0,0.373,1 +1,0.608,0.0166,0.0495,0.0495,0,0,0,0,0,0,0.0394,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.211,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.129,-0.5 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.115,-1 +0.667,0.64,0.0449,0.181,0.181,0,0,0,0,0,0,0.0394,-0.317 +0.333,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.0788,0 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.197,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0.317,0,0 +0.333,0.647,0.0759,0.178,0.178,0.176,0.0667,0,0,0,0.233,0.0394,0 +0.333,0.647,0.0845,0.177,0.177,0.743,0.467,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.158,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.118,-0.817 +0.667,0.836,0.273,0.596,0.596,0,0,0,0,0,0.317,0.276,-1 +1,0.993,0.541,1,1,0,0,0,0,0,0.233,0.348,1 +0.667,0.836,0.51,0.638,0.638,0,0,0,0,0,0,0.0723,-0.0667 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0,-0.15 +0.667,0.758,0.596,0.386,0.386,0,0,0,0,0,0.267,0.0394,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,-0.0667 +1,0.608,0.0224,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.152,1 +1,0.64,0.049,0.181,0.181,0,0,0,0,0,0,0.247,1 +1,0.732,0.128,0.33,0.33,0,0,0,0,0,0,0.346,1 +1,0.818,0.242,0.481,0.481,0,0,0,0,0,0,0.55,1 +0.667,0.732,0.198,0.328,0.328,0,0,0,0,0,0,0.118,-0.25 +0.333,0.647,0.118,0.183,0.183,0,0,0,0,0,0,0.0394,-0.117 +0.333,0.647,0.125,0.178,0.178,0,0,0,0,0,0,0.0394,-0.117 +0.333,0.647,0.146,0.177,0.177,0,0,0,0,0,0,0.197,-0.25 +0.667,0.732,0.312,0.314,0.314,0,0,0,0,0,0,0.315,1 +0.667,0.758,0.343,0.359,0.359,0,0,0,0,0,0,0,1 +0.667,0.797,0.36,0.457,0.457,0,0,0,0,0,0.267,0.197,1 +1,0.973,0.549,0.869,0.869,0,0,0,0,0,0,0.0394,1 +1,0.993,0.647,1,1,0,0,0,0,0,0,0.29,1 +1,0.973,0.851,0.933,0.933,0,0,0,0,0,0,0.473,1 +1,0.934,1,0.732,0.732,0,0,0,0,0,0,0.572,1 +1,0.857,0.923,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.667,0.183,0.183,0.183,0,0,0,0,0,0,0.0394,1 +1,0.654,0.0816,0.099,0.099,0,0,0,0,0,0,0,1 +1,0.608,0.031,0.0578,0.0578,0,0,0,0,0,0,0,1 +1,0.608,0.0224,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.621,0.0327,0.15,0.15,0,0,0,0,0,0.567,0.197,1 +1,0.64,0.049,0.181,0.181,0,0,0,0,0,0.55,0.175,1 +1,0.647,0.0731,0.19,0.19,0,0,0,0,0,0,0.393,1 +0.667,0.647,0.0928,0.193,0.193,0,0,0,0,0,0.567,0.0394,1 +0.667,0.732,0.198,0.328,0.328,0,0,0,0,0,0.267,0.0394,1 +0.667,0.732,0.217,0.316,0.316,0,0,0,0,0,0,0.135,1 +0.333,0.647,0.125,0.178,0.178,0,0,0,0,0,0,0.272,-0.183 +0.333,0.647,0.146,0.177,0.177,0,0,0,0,0,0,0.394,-0.183 +0.667,0.732,0.312,0.314,0.314,0,0,0.338,0.246,0.333,0.267,0.0394,1 +1,0.857,0.505,0.513,0.513,0,0,0.106,0,0.483,0,0.354,1 +1,0.915,0.531,0.661,0.661,0,0,0,0,0,0.0667,0.197,1 +1,0.836,0.372,0.596,0.596,0,0,0,0,0,0.483,0,1 +1,0.849,0.437,0.683,0.683,0,0,0,0,0,0,0.0788,1 +1,0.836,0.573,0.638,0.638,0,0,0,0,0,0,0,1 +1,0.81,0.673,0.504,0.504,0,0,0,0,0,0,0,1 +1,0.758,0.621,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.155,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.272,-0.25 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.0788,-1 +0.667,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.411,-0.317 +0.667,0.732,0.105,0.337,0.337,0,0,0,0,0,0,0.22,0 +0.667,0.732,0.117,0.328,0.328,0,0,0,0,0,0,0.158,0 +0.667,0.732,0.129,0.316,0.316,0,0,0,0,0,0,0.118,0 +0.667,0.732,0.136,0.307,0.307,0,0,0,0,0,0,0.0788,0 +0.667,0.732,0.153,0.305,0.305,0,0,0,0,0,0,0.363,0 +0.667,0.732,0.162,0.314,0.314,0,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.197,-0.05 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.0394,-1 +0.333,0.699,0.145,0.323,0.323,0,0,0.393,0.246,0.333,0,0.487,-0.5 +1,0.993,0.541,1,1,0,0,0,0,0.767,0,0.542,1 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.199,1 +1,0.934,0.936,0.732,0.732,0,0,0,0,0,0,0,1 +1,0.66,0.306,0.218,0.218,0,0,0,0,0,0,0.236,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.387,1 +1,0.68,0.0551,0.251,0.251,0,0,0,0,0,0,0.227,-0.25 +0.667,0.719,0.074,0.313,0.313,0,0,0,0,0,0,0.174,-0.183 +0.333,0.647,0.0527,0.19,0.19,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.0394,-0.433 +0.667,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0,1 +0.667,0.647,0.0724,0.183,0.183,0,0,0.0963,0.0702,0,0,0.236,1 +0.667,0.647,0.0759,0.178,0.178,0,0,0.31,0.175,0.817,0,0.0788,1 +0.333,0.647,0.0845,0.177,0.177,0,0,0.0352,0,0,0.0667,0.276,-0.983 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0.767,0.118,0 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.0394,0 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0.323,0,0,0,0,0,0.267,0,0 +0.667,0.849,0.366,0.683,0.683,0,0,0,0,0,0,0,-0.233 +0.667,0.836,0.51,0.638,0.638,0.106,0.0667,0,0,0,0,0.0788,-0.75 +1,0.934,0.936,0.732,0.732,0.665,0.75,0,0,0,0.267,0,1 +1,0.857,0.887,0.554,0.554,0.623,0,0,0,0,0,0.368,1 +1,0.779,0.536,0.488,0.488,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.141,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.252,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0.266,1 +1,0.68,0.0551,0.251,0.251,0,0,0,0,0,0.55,0.322,1 +1,0.719,0.074,0.313,0.313,0,0,0,0,0,0,0.387,1 +1,0.818,0.126,0.47,0.47,0,0,0,0,0,0,0.279,1 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.06,-0.9 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0.267,0.0788,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.197,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0,0,0,0,0.0394,-0.65 +0.333,0.66,0.0982,0.204,0.204,0,0,0,0,0,0,0.315,-0.25 +0.667,0.797,0.224,0.457,0.457,0,0,0,0,0,0,0.0394,-0.117 +0.333,0.699,0.145,0.323,0.323,0,0,0,0,0,0.267,0.157,-0.117 +1,0.993,0.541,1,1,0,0,0,0,0,0,0,1 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0,1 +1,0.934,0.936,0.732,0.732,0,0,0.352,0.86,0,0,0.0394,1 +1,0.857,0.887,0.554,0.554,0,0,0.145,0.175,0.55,0,0,1 +1,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +0.667,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.197,1 +1,0.608,0.026,0.0829,0.0829,0,0,0,0,0,0,0.358,1 +1,0.68,0.0551,0.251,0.251,0,0,0,0,0,0.267,0.331,1 +1,0.798,0.103,0.444,0.444,0,0,0,0,0,0,0.161,1 +0.667,0.732,0.0895,0.33,0.33,0,0,0,0,0,0,0.118,-0.95 +0.333,0.647,0.0604,0.193,0.193,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.0664,0.189,0.189,0,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0.183,0,0,0,0,0,0,0.158,0 +0.333,0.647,0.0759,0.178,0.178,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.0845,0.177,0.177,0,0,0.541,0.246,0.267,0,0,-0.433 +0.333,0.647,0.0888,0.182,0.182,0,0,0.683,0,0,0,0.293,-0.5 +0.667,0.758,0.181,0.359,0.359,0,0,0.246,0,0,0,0.0788,-0.15 +0.333,0.679,0.12,0.253,0.253,0,0,0.817,0,0,0,0.158,-0.133 +1,0.973,0.402,0.869,0.869,0,0,0.287,0,0,0,0.53,1 +1,0.993,0.541,1,1,0,0,0,0,0,0,0.515,-0.15 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.0913,1 +0.667,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0.297,1 +0.667,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0.302,1 +0.667,0.634,0.189,0.196,0.196,0,0,0,0,0,0,0.0787,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.608,0.02,0.0513,0.0513,0,0,0,0,0,0,0.0788,1 +1,0.608,0.026,0.0829,0.0829,0,0,0.102,0.246,0.0833,0.317,0.157,1 +1,0.68,0.0551,0.251,0.251,0,0,0.479,0,1,0.233,0.222,1 +1,0.798,0.103,0.444,0.444,0.103,0.0667,0.356,0,1,0,0,1 +1,0.818,0.126,0.47,0.47,0.714,0.2,0.656,0,0.4,0,0.276,1 +1,0.818,0.149,0.481,0.481,0.0925,0,0.476,0,0,0,0.309,1 +1,0.818,0.168,0.468,0.468,0,0,0.694,0,0,0,0.21,1 +0.667,0.732,0.129,0.316,0.316,0,0,0.194,0,0,0,0.0394,-0.617 +0.667,0.732,0.136,0.307,0.307,0,0,0.624,0,0,0,0.0394,0 +0.667,0.732,0.153,0.305,0.305,0,0,0.502,0,0,0,0.158,0 +0.333,0.647,0.0888,0.182,0.182,0,0,0.485,0,0,0,0.118,-0.367 +0.333,0.66,0.0982,0.204,0.204,0,0,0.408,0,0,0,0,-0.25 +0.667,0.797,0.224,0.457,0.457,0,0,0.55,0,0,0,0.197,1 +0.667,0.836,0.273,0.596,0.596,0,0,0.22,0,0,0,0.223,1 +0.667,0.705,0.191,0.366,0.366,0,0,0,0,0,0,0.0394,1 +0.667,0.699,0.263,0.344,0.344,0,0,0,0,0,0,0,1 +0.667,0.686,0.322,0.277,0.277,0,0,0,0,0,0,0,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0.211,1 +1,0.706,0.363,0.342,0.342,0,0,0,0,0,0,0.304,1 +1,0.614,0.0879,0.116,0.116,0,0,0,0,0,0,0.158,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0.267,0.0394,1 +1,0.621,0.0327,0.15,0.15,0,0,0,0,0,0,0,1 +1,0.64,0.049,0.181,0.181,0,0,0,0,0,0,0.0394,1 +1,0.647,0.0731,0.19,0.19,0,0,0,0,0,0.267,0.274,1 +1,0.732,0.168,0.337,0.337,0,0,0,0,0,0,0.553,1 +1,0.732,0.198,0.328,0.328,0,0,0,0,0,0,0.219,1 +1,0.732,0.217,0.316,0.316,0,0,0,0,0,0,0.0794,1 +0.667,0.732,0.233,0.307,0.307,0,0,0,0,0,0,0.197,-0.617 +0.333,0.647,0.146,0.177,0.177,0,0,0,0,0,0,0.0394,0 +0.333,0.647,0.165,0.182,0.182,0,0,0,0,0,0,0.0394,0 +0.333,0.66,0.18,0.204,0.204,0,0,0,0,0,0.267,0.197,-0.367 +0.667,0.797,0.36,0.457,0.457,0,0,0.372,0.246,0.55,0,0.118,-0.25 +1,0.973,0.549,0.869,0.869,0,0,0.211,0,0,0,0.158,1 +1,0.993,0.647,1,1,0,0,0,0,0,0,0.0788,1 +1,0.973,0.851,0.933,0.933,0,0,0,0,0,0,0.0788,1 +1,0.934,1,0.732,0.732,0,0,0,0,0,0,0,1 +1,0.857,0.923,0.554,0.554,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0.0394,1 +1,0.614,0.101,0.116,0.116,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.647,0.0731,0.19,0.19,0,0,0,0,0,0.267,0,-0.5 +0.667,0.732,0.168,0.337,0.337,0,0,0,0,0,0,0.118,-0.0833 +0.333,0.647,0.108,0.189,0.189,0,0,0,0,0,0,0.118,0 +0.333,0.647,0.118,0.183,0.183,0,0,0,0,0,0,0.0788,-0.0667 +0,0.562,0.0181,0.0495,0.0495,0,0,0,0,0,0,0.41,-0.5 +0.667,0.732,0.274,0.305,0.305,0,0,0,0,0,0,0.287,1 +0.667,0.732,0.312,0.314,0.314,0,0,0,0,0,0,0.494,-0.75 +0.333,0.66,0.18,0.204,0.204,0,0,0,0,0,0,0,-0.1 +0.667,0.797,0.36,0.457,0.457,0,0,0,0,0,0,0.0788,0 +0.667,0.836,0.372,0.596,0.596,0,0,0,0,0,0,0.0394,0 +0.667,0.849,0.437,0.683,0.683,0,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0.638,0,0,0,0,0,0,0.0788,-0.833 +1,0.934,1,0.732,0.732,0,0,0,0,0,0,0.158,1 +1,0.758,0.621,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.706,0.394,0.342,0.342,0,0,0,0,0,0,0,1 +1,0.667,0.183,0.183,0.183,0,0,0,0,0,0,0,1 +1,0.608,0.0424,0.0743,0.0743,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0.131,1 +1,0.74,0.0747,0.351,0.351,0.538,0.533,0,0,0,0,0.522,1 +1,0.798,0.103,0.444,0.444,0,0,0,0,0,0.267,0.157,-0.217 +0.667,0.732,0.0895,0.33,0.33,0,0,0,0,0,0,0,1 +0.667,0.732,0.105,0.337,0.337,0,0,0,0,0,0,0.0788,1 +0.667,0.732,0.117,0.328,0.328,0.159,0.0667,0,0,0,0.267,0,1 +0.667,0.732,0.129,0.316,0.316,0.429,1,0,0,0,0.55,0.0394,1 +0.667,0.732,0.136,0.307,0.307,0,0.3,0,0,0,0,0.354,1 +0.667,0.732,0.153,0.305,0.305,0,0,0,0,0,0,0,1 +0.667,0.732,0.162,0.314,0.314,0,0,0,0,0,0,0.0788,1 +0.667,0.758,0.181,0.359,0.359,0,0,0,0,0,0,0.197,-0.4 +0.333,0.679,0.12,0.253,0.253,0,0,0,0,0,0,0.197,0 +0.333,0.699,0.145,0.323,0.323,0,0,0,0,0,0,0.14,-0.383 +1,0.993,0.541,1,1,0,0,0,0,0,0,0.116,1 +1,0.973,0.758,0.933,0.933,0,0,0,0,0,0,0.325,1 +1,0.81,0.629,0.504,0.504,0,0,0,0,0,0,0,1 +1,0.758,0.596,0.386,0.386,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 +1,0.562,0.0159,0.0495,0.0495,0,0,0,0,0,0,0,1 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit.csv new file mode 100644 index 0000000000..4167cb8838 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.567,0 +1,0.608,0.026,0.0833,0,0,0,0,0.717,0.519 +1,0.68,0.0551,0.253,0,0,0,0,0,0.197 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.0394 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.197 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.236 +0.333,0.647,0.0759,0.181,0.588,0.267,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +0.333,0.66,0.0982,0.196,0,0,0,0,0.317,0.0394 +0.667,0.797,0.224,0.418,0,0,0,0,0.967,0.158 +1,0.973,0.402,0.798,0.103,0.0667,0,0,0,0.276 +1,0.993,0.541,0.979,0.44,0.467,0,0,0,0.0788 +1,0.973,0.758,0.991,0.487,0.533,0,0,0,0.0394 +1,0.934,0.936,0.823,0.475,0,0,0,0,0.0788 +1,0.857,0.887,0.621,0.482,0,0,0,0,0.197 +1,0.706,0.363,0.374,0,0,0,0,0,0.303 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.158 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.15 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.234 +1,0.608,0.026,0.0833,0,0,0,0,0,0.695 +1,0.68,0.0551,0.253,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.134 +0.333,0.647,0.0527,0.192,0.461,0.533,0,0,0,0.0394 +0.333,0.647,0.0604,0.196,0.14,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.25,0.158 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.236 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.118 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.407 +1,0.973,0.402,0.798,0,0,0,0,0.25,0.0203 +1,0.993,0.541,0.979,0,0,0,0,0,0.236 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +1,0.608,0.02,0.0513,0,0,0,0,0,0.408 +1,0.608,0.026,0.0833,0,0,0,0,0,0.691 +1,0.68,0.0551,0.253,0,0,0,0,0.317,0.25 +1,0.798,0.103,0.449,0,0,0,0,0.183,0.177 +1,0.818,0.126,0.477,0,0,0,0,0,0.199 +1,0.818,0.149,0.49,0,0,0,0,0,0.198 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.271 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.214 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.581 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.556 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0,0,0,0,0.817,0.354 +1,0.915,0.327,0.602,0,0,0,0,0.217,0.118 +1,0.973,0.402,0.798,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0.567,0.192 +1,0.973,0.758,0.991,0,0,0,0,0.2,0.0788 +1,0.934,0.936,0.823,0,0,0,0,0,0.277 +1,0.857,0.887,0.621,0,0,0,0,0,0.0809 +1,0.706,0.363,0.374,0,0,0,0,0,0.159 +1,0.667,0.16,0.183,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.25,0.476 +1,0.608,0.02,0.0513,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0758 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.329 +1,0.64,0.0449,0.183,0,0,0,0,0,0.231 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.25 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.118 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.236 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.315 +0.333,0.66,0.0982,0.196,0,0,0,0,0.25,0.158 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0394 +1,0.973,0.402,0.798,0,0,0,0,0,0.0394 +1,0.993,0.541,0.979,0,0,0,0,0,0.118 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.354 +1,0.934,0.936,0.823,0,0,0,0,0,0.184 +1,0.857,0.887,0.621,0,0,0,0,0,0.108 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.159 +1,0.608,0.02,0.0513,0,0,0,0,0.317,0.396 +0.667,0.608,0.026,0.0833,0,0,0,0,0.45,0.389 +1,0.68,0.0551,0.253,0,0,0,0,0.317,0.236 +1,0.719,0.074,0.316,0,0,0,0,0.45,0.199 +1,0.732,0.0895,0.334,0.693,0.267,0,0,0,0.0944 +1,0.818,0.149,0.49,0.271,0,0,0,0,0.859 +1,0.818,0.168,0.477,0,0,0,0,0,0.37 +1,0.818,0.186,0.458,0,0,0,0,0,0.601 +1,0.818,0.196,0.445,0,0,0,0,0,0.152 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0788 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.196,0.515,0.533,0,0,0,0 +0.667,0.797,0.224,0.418,0.476,0,0,0,0.25,0.118 +0.667,0.836,0.273,0.548,0.799,0.317,0,0,0,0.118 +1,0.993,0.541,0.979,0.729,0.217,0,0,0,0.374 +0.667,0.699,0.263,0.363,0.398,0.533,0,0,0,0.0799 +1,0.81,0.629,0.565,0.201,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0788 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.298 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0.303 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0.107 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.195 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.142 +0.667,0.732,0.233,0.313,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.0788 +0.333,0.647,0.165,0.182,0,0,0,0,0.233,0.315 +0.333,0.66,0.18,0.196,0,0,0,0,0.0167,0.0788 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.0394 +0.667,0.836,0.372,0.548,0,0,0,0,0,0.0788 +1,0.993,0.647,0.979,0,0,0,0,0,0.0394 +1,0.973,0.851,0.991,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0.158 +1,0.758,0.621,0.43,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0.312 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.621,0.0327,0.151,0,0,0,0,0,0.103 +0.667,0.64,0.049,0.183,0,0,0,0,0,0.202 +1,0.647,0.0731,0.192,0,0,0,0,0,0.484 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.0394 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.0394 +0.333,0.647,0.118,0.186,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0.25,0.276 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.197 +1,0.818,0.459,0.448,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.433 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.0788 +1,0.973,0.549,0.798,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.0788 +1,0.836,0.573,0.677,0,0,0,0,0,0.0394 +1,0.934,1,0.823,0,0,0,0,0,0.255 +1,0.857,0.923,0.621,0,0,0,0,0,0.019 +1,0.779,0.582,0.536,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.0985 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.567,0 +1,0.74,0.0747,0.355,0,0,0,0,0.533,0.0394 +0.667,0.719,0.074,0.316,0,0,0,0,0.183,0.118 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.197 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.315 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0788 +0.333,0.647,0.0888,0.182,0,0,0,0,0.0667,0.336 +0.667,0.758,0.181,0.343,0,0,0,0,0.183,0.384 +0.667,0.797,0.224,0.418,0,0,0,0,0.0667,0.0394 +0.667,0.836,0.273,0.548,0,0,0,0,0.183,0.416 +1,0.849,0.366,0.669,0,0,0,0,0,0.184 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.0394 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0.192 +1,0.614,0.0879,0.116,0,0,0,0,0,0.118 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.125 +1,0.608,0.02,0.0513,0,0,0,0,0,0.156 +1,0.608,0.026,0.0833,0,0,0,0,0.317,0.283 +1,0.68,0.0551,0.253,0,0,0,0,0.2,0.202 +0.667,0.64,0.0449,0.183,0,0,0,0,0.25,0.0788 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.158 +0.333,0.647,0.0604,0.196,0,0,0.274,0.246,0,0.276 +0.333,0.647,0.0664,0.192,0,0,0.56,0,0,0.236 +0.333,0.647,0.0724,0.186,0,0,0.382,0,0,0.0788 +0.333,0.647,0.0759,0.181,0,0,0.627,0,0,0.118 +0.333,0.647,0.0845,0.18,0,0,0.5,0,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0.818,0,0,0.118 +0.333,0.66,0.0982,0.196,0,0,0.274,0,0,0.158 +0.667,0.797,0.224,0.418,0,0,0.239,0,0,0.0788 +0.667,0.836,0.273,0.548,0,0,0.853,0,0,0.118 +0.667,0.849,0.366,0.669,0,0,0.595,0,0,0 +1,0.973,0.758,0.991,0,0,0.457,0,0,0.217 +1,0.934,0.936,0.823,0,0,0.454,0,0,0 +1,0.857,0.887,0.621,0,0,0.278,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.119 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0199 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.394 +0.333,0.647,0.0604,0.196,0,0,0.197,0.246,0,0.0788 +0.333,0.647,0.0664,0.192,0,0,0.454,0,0,0.158 +0.333,0.647,0.0724,0.186,0,0,0.494,0,0,0.197 +0.333,0.647,0.0759,0.181,0,0,0.537,0,0.567,0.0788 +0.667,0.732,0.153,0.311,0,0,0.508,0,0.2,0 +0.667,0.732,0.162,0.315,0,0,0.145,0,0,0.0394 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.33,0.246,0,0.197 +0.667,0.836,0.273,0.548,0,0,0.485,0,0,0 +1,0.993,0.541,0.979,0,0,0.33,0,0,0.197 +0.667,0.836,0.51,0.677,0,0,0.543,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.466,0,0,0 +1,0.857,0.887,0.621,0,0,0.55,0,0,0 +1,0.706,0.363,0.374,0,0,0.407,0,0,0.0394 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.309 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.21 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0.0667,0.197 +0.333,0.647,0.0888,0.182,0,0,0,0,0.7,0.118 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.315 +1,0.915,0.327,0.602,0,0,0,0,0,0.118 +1,0.973,0.402,0.798,0,0,0,0,0.0667,0.236 +1,0.993,0.541,0.979,0,0,0,0,0.183,0 +1,0.973,0.758,0.991,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.517,0.671 +1,0.68,0.0551,0.253,0,0,0,0,0,0.349 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0,0,0.365,0.246,0,0.118 +0.333,0.679,0.12,0.234,0,0,0.417,0,0.0667,0.118 +0.333,0.699,0.145,0.299,0,0,0,0,0.183,0.0788 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.197 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0.25,0.12 +1,0.857,0.887,0.621,0,0,0,0,0,0.235 +0.667,0.634,0.189,0.212,0,0,0,0,0,0.574 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.0948 +1,0.608,0.0241,0.0833,0,0,0,0,0,0.0394 +1,0.68,0.0473,0.253,0,0,0,0,0,0.197 +1,0.719,0.0799,0.316,0.26,0.233,0,0,0,0.314 +1,0.818,0.183,0.477,0.736,0.3,0,0,0.733,0 +0.667,0.732,0.168,0.343,0.227,0,0,0,0.3,0.0394 +0.667,0.732,0.198,0.334,0,0,0,0,0.25,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.197 +0.333,0.647,0.125,0.181,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.0788 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.0394 +0.667,0.758,0.343,0.343,0,0,0.239,0.246,0,0.158 +1,0.915,0.531,0.602,0,0,0,0,0,0.0394 +1,0.973,0.549,0.798,0,0,0,0,0,0.0394 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.118 +0.667,0.836,0.573,0.677,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0.147 +0.667,0.758,0.621,0.43,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0.146 +0.667,0.64,0.049,0.183,0,0,0,0,0,0.197 +1,0.732,0.128,0.334,0,0,0,0,0,0.33 +1,0.732,0.168,0.343,0,0,0,0,0,0.59 +1,0.732,0.198,0.334,0,0,0,0,0,0.277 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.295 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.523 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.236 +0.667,0.732,0.312,0.315,0,0,0,0,0.233,0.0788 +1,0.758,0.343,0.343,0,0,0,0,0.283,0.0394 +1,0.915,0.531,0.602,0,0,0,0,0,0.276 +1,0.973,0.549,0.798,0,0,0,0,0,0.236 +0.667,0.849,0.437,0.669,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.188 +1,0.608,0.02,0.0513,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.217 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.241 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.236 +0.333,0.647,0.0527,0.192,0,0,0,0,0.25,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.586,0.246,0,0.0788 +0.333,0.647,0.0724,0.186,0,0,0.376,0,0,0.118 +0.333,0.647,0.0759,0.181,0,0,0.365,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.229,0,0.25,0.0394 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.197 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.849,0.366,0.669,0.675,0.533,0,0,0,0.236 +0.667,0.836,0.51,0.677,0.581,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.698,0.8,0,0,0,0.118 +0.667,0.66,0.306,0.24,0.419,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.719,0.074,0.316,0,0,0,0,0,0.236 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0788 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0788 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.315 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.276 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.299,0.403,0.533,0,0,0,0.248 +1,0.993,0.541,0.979,0.192,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.0788 +0.667,0.66,0.306,0.24,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0.0788 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.132 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.713 +0.667,0.719,0.074,0.316,0,0,0,0,0.25,0.277 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.0394 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.158 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.213 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.333 +0.667,0.732,0.153,0.311,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.396,0.533,0,0,0,0.251 +0.667,0.797,0.224,0.418,0.476,0,0,0,0,0.354 +0.667,0.836,0.273,0.548,0,0,0,0,0.25,0.0394 +1,0.993,0.541,0.979,0.393,0.567,0,0,0,0.0788 +1,0.836,0.51,0.677,0.436,0.233,0,0,0,0.0788 +0.667,0.686,0.322,0.307,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.621,0.0355,0.151,0,0,0,0,0,0.121 +1,0.64,0.0449,0.183,0,0,0,0,0,0.29 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.0992 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.467 +1,0.818,0.168,0.477,0,0,0,0,0,0.514 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.231 +0.667,0.732,0.136,0.313,0,0,0,0,0.25,0.118 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.517,0.158 +0.333,0.679,0.12,0.234,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.0394 +1,0.993,0.541,0.979,0,0,0,0,0,0.118 +1,0.973,0.758,0.991,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0.166 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.551 +1,0.68,0.0551,0.253,0,0,0,0,0,0.337 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0.101,0.0702,0,0.0394 +0.333,0.647,0.0724,0.186,0,0,0.462,0.175,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.236 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.158 +0.667,0.797,0.224,0.418,0,0,0,0,0.0667,0.182 +0.667,0.836,0.273,0.548,0,0,0,0,0.45,0.118 +1,0.993,0.541,0.979,0,0,0,0,0,0.235 +1,0.973,0.758,0.991,0,0,0,0,0,0.0788 +1,0.934,0.936,0.823,0,0,0,0,0,0.196 +1,0.857,0.887,0.621,0,0,0,0,0,0.395 +1,0.706,0.363,0.374,0,0,0,0,0,0.0774 +1,0.667,0.16,0.183,0,0,0,0,0,0.119 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.382 +1,0.64,0.049,0.183,0,0,0,0,0.233,0.194 +1,0.732,0.128,0.334,0,0,0,0,0.283,0.0394 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.236 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.0394 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.0788 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.0788 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.158 +0.667,0.732,0.312,0.315,0,0,0,0,0.25,0.236 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.118 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.594 +1,0.973,0.549,0.798,0,0,0,0,0,0.0788 +0.667,0.705,0.228,0.359,0,0,0,0,0,0.0394 +0.667,0.699,0.296,0.363,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.364 +0.667,0.66,0.32,0.24,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.149 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.168 +1,0.64,0.049,0.183,0,0,0,0,0,0.488 +1,0.732,0.128,0.334,0,0,0,0,0,0.896 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.318 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.211 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.319 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.262 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.748 +1,0.818,0.459,0.448,0,0,0.344,0.246,0,0.0788 +1,0.857,0.505,0.49,0,0,0,0,0.767,0 +1,0.915,0.531,0.602,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0.459,0.246,0,0 +1,0.993,0.647,0.979,0,0,0.375,0,0,0 +1,0.973,0.851,0.991,0,0,0.524,0,0,0 +1,0.934,1,0.823,0,0,0.939,0,0,0 +1,0.857,0.923,0.621,0,0,0.992,0,0,0 +1,0.779,0.582,0.536,0,0,0.379,0,0,0 +1,0.72,0.265,0.249,0,0,0.246,0,0,0 +1,0.701,0.0954,0.124,0,0,0.286,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.42 +1,0.608,0.026,0.0833,0,0,0.401,0.246,0,0.194 +0.667,0.621,0.0355,0.151,0,0,0.581,0,0,0.0394 +0.667,0.64,0.0449,0.183,0,0,0.58,0,0,0.0788 +0.667,0.647,0.0527,0.192,0,0,0.0795,0,0,0.158 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.0788 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0788 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.276 +0.333,0.679,0.12,0.234,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0.517,0 +1,0.993,0.541,0.979,0.424,0.567,0,0,0,0.118 +1,0.973,0.758,0.991,0.511,1,0,0,0,0 +1,0.934,0.936,0.823,0.366,0.317,0,0,0,0.192 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0352,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.257 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.304 +1,0.818,0.126,0.477,0,0,0,0,0,0.318 +1,0.818,0.149,0.49,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.312 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.152 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.158 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.18 +0.333,0.699,0.145,0.299,0,0,0.414,0.246,0,0.0394 +0.667,0.849,0.366,0.669,0,0,0.3,0,0.25,0.368 +0.667,0.836,0.51,0.677,0,0,0.388,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0.0852 +1,0.634,0.189,0.212,0,0,0,0,0,0.173 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.517,0.0394 +1,0.621,0.0355,0.151,0,0,0,0,0,0.15 +1,0.719,0.074,0.316,0,0,0,0,0,0.326 +1,0.732,0.0895,0.334,0,0,0,0,0,0.414 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.391 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.244 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.163 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0.314 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0.226 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0394 +0.333,0.679,0.12,0.234,0,0,0,0,0.25,0.197 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.593 +1,0.993,0.541,0.979,0,0,0,0,0,0.0394 +0.667,0.699,0.263,0.363,0.356,0.317,0,0,0,0.177 +1,0.934,0.936,0.823,0.522,0.217,0,0,0,0.0777 +1,0.857,0.887,0.621,0,0,0,0,0,0.0394 +1,0.634,0.189,0.212,0,0,0,0,0,0.0394 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0746 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.237 +1,0.608,0.026,0.0833,0,0,0,0,0,0.328 +1,0.68,0.0551,0.253,0,0,0,0,0,0.541 +1,0.798,0.103,0.449,0,0,0,0,0,0.367 +1,0.818,0.126,0.477,0,0,0,0,0,0.392 +1,0.818,0.149,0.49,0,0,0.387,0.246,0,0.345 +1,0.818,0.168,0.477,0,0,0.44,0,0,0.107 +1,0.818,0.186,0.458,0,0,0,0,0,0.804 +1,0.818,0.196,0.445,0,0,0,0,0,0.205 +0.667,0.732,0.153,0.311,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0788 +0.333,0.679,0.12,0.234,0,0,0,0,0.25,0.158 +1,0.973,0.402,0.798,0,0,0,0,0,0.118 +1,0.993,0.541,0.979,0,0,0,0,0,0.0394 +1,0.973,0.758,0.991,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0.207 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.251 +1,0.608,0.026,0.0833,0,0,0,0,0,0.521 +1,0.68,0.0551,0.253,0,0,0,0,0,0.634 +1,0.719,0.074,0.316,0,0,0,0,0,0.0788 +0.667,0.647,0.0527,0.192,0,0,0,0,0.25,0.0394 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.0788 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0.0394 +0.667,0.679,0.12,0.234,0,0,0,0,0.0667,0.158 +0.667,0.699,0.145,0.299,0,0,0,0,0.967,0 +1,0.849,0.366,0.669,0,0,0,0,0,0.231 +1,0.836,0.51,0.677,0,0,0,0,0,0.266 +1,0.934,0.936,0.823,0,0,0,0,0,0.0394 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.136,0.246,0,0.197 +1,0.64,0.049,0.183,0,0,0.387,0,0,0.158 +1,0.647,0.0731,0.192,0,0,0,0,0.25,0.312 +1,0.732,0.168,0.343,0,0,0,0,0,0.0788 +1,0.732,0.198,0.334,0.558,0.983,0,0,0,0 +1,0.732,0.217,0.322,0,0.9,0,0,0,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0.118 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.0788 +0.667,0.647,0.165,0.182,0,0,0,0,0,0.274 +1,0.857,0.505,0.49,0,0,0,0,0.25,0.157 +1,0.915,0.531,0.602,0,0,0,0,0,0.118 +1,0.973,0.549,0.798,0,0,0,0,0,0.307 +1,0.993,0.647,0.979,0,0,0,0,0,0.381 +1,0.973,0.851,0.991,0,0,0,0,0,0.416 +1,0.934,1,0.823,0,0,0,0,0,0.0948 +1,0.857,0.923,0.621,0,0,0,0,0,0.0788 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0.0788 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0.118 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.162 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0.28 +0.667,0.647,0.108,0.192,0,0,0,0,0,0.335 +0.667,0.647,0.118,0.186,0,0,0.251,0.246,0,0.473 +0.667,0.732,0.233,0.313,0,0,0.518,0.263,0,0.283 +1,0.818,0.402,0.441,0,0,0.387,0,0,0.484 +0.667,0.732,0.312,0.315,0,0,0.537,0,0,0.289 +0.667,0.758,0.343,0.343,0,0,0.437,0,0.25,0.0788 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.276 +0.333,0.699,0.195,0.299,0,0,0,0,0,0.315 +0.333,0.705,0.228,0.359,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0.167 +1,0.614,0.101,0.116,0,0,0,0,0,0.0971 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0.0788 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.338 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.249 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.229 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.118 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0788 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.276 +1,0.934,0.936,0.823,0,0,0,0,0,0.0845 +1,0.857,0.887,0.621,0,0,0,0,0,0.351 +1,0.706,0.363,0.374,0,0,0,0,0,0.0799 +1,0.614,0.0879,0.116,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.236 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.254 +1,0.608,0.02,0.0513,0,0,0,0,0.0667,0.523 +1,0.608,0.026,0.0833,0,0,0,0,1,0.098 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.733,0.458 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.627 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.415 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.182 +0.667,0.732,0.117,0.334,0,0,0,0,0.0667,0.314 +0.333,0.647,0.0724,0.186,0,0,0,0,0.183,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0.155,0.0667,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0.644,0.467,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0788 +1,0.973,0.402,0.798,0,0,0,0,0,0.158 +1,0.993,0.541,0.979,0,0,0,0,0,0.351 +1,0.973,0.758,0.991,0,0,0,0,0,0.0394 +1,0.81,0.629,0.565,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.608,0.026,0.0833,0,0,0,0,0,0.191 +1,0.68,0.0551,0.253,0.41,0.533,0.11,0.246,0.0667,0.12 +0.667,0.719,0.074,0.316,0.675,0.533,0,0,0.183,0.0788 +0.667,0.732,0.0895,0.334,0.729,0,0,0,0,0.0788 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0.717,0.533,0,0,0,0.0788 +0.333,0.647,0.0845,0.18,0.0803,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +0.333,0.705,0.191,0.359,0,0,0,0,0,0.0394 +0.333,0.699,0.263,0.363,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0.106 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.25 +1,0.61,0.0259,0.0829,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.195 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.212 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.163 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.415 +0.667,0.649,0.066,0.189,0,0,0,0,0,0.246 +0.667,0.736,0.128,0.316,0,0,0,0,0.25,0.301 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.156 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.118 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.158 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0394 +0.333,0.701,0.144,0.258,0,0,0,0,0.0167,0.236 +0.667,0.854,0.364,0.595,0,0,0,0,0.233,0.218 +0.667,0.841,0.507,0.67,0.0707,0.0167,0,0,0,0.165 +1,0.941,0.929,0.913,0.394,0.5,0,0,0,0.385 +1,0.762,0.592,0.501,0,0,0,0,0,0.107 +1,0.636,0.188,0.246,0,0,0,0,0,0.347 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.116 +1,0.61,0.02,0.0513,0,0,0,0,0,0.373 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.25,0.354 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0394 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0788 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.118 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0788 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0788 +1,0.98,0.399,0.674,0.0977,0.0167,0,0,0,0.0788 +0.667,0.854,0.364,0.595,0.389,0.5,0,0,0,0.0394 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.0788 +0.333,0.688,0.32,0.337,0,0,0,0,0,0.167 +0.667,0.762,0.592,0.501,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.482,0.526,0,0 +1,0.616,0.0874,0.116,0,0,0.392,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0.22,0.263,0,0.0394 +1,0.658,0.0299,0.116,0,0,0.194,0,0,0.118 +1,0.684,0.047,0.251,0,0,0,0,0,0.227 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0.253 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0.118 +0.667,0.649,0.125,0.178,0,0,0,0,0,0.219 +0.667,0.649,0.145,0.177,0.63,0.517,0,0,0,0.118 +0.333,0.649,0.164,0.178,0,0,0,0,0.25,0.276 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.0394 +0.667,0.802,0.358,0.367,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0.0788 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.0788 +0.667,0.841,0.569,0.67,0,0,0,0,0,0.226 +1,0.941,0.993,0.913,0,0,0,0,0,0.157 +1,0.863,0.916,0.727,0,0,0,0,0,0.188 +1,0.784,0.578,0.638,0,0,0,0,0,0.114 +1,0.725,0.264,0.249,0,0,0,0,0,0.375 +1,0.706,0.113,0.124,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0.118 +1,0.649,0.0727,0.19,0,0,0,0,0,0.166 +1,0.649,0.0923,0.193,0,0,0,0,0,0.299 +0.667,0.649,0.108,0.189,0,0,0,0,0,0.0409 +0.667,0.736,0.216,0.316,0,0,0,0,0,0.0394 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.0788 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.473 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.197 +0.333,0.662,0.179,0.186,0,0,0,0,0.2,0.0394 +0.667,0.802,0.358,0.367,0,0,0,0,0.3,0.276 +0.667,0.841,0.369,0.466,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0.118 +1,0.863,0.916,0.727,0,0,0,0,0,0.128 +1,0.784,0.578,0.638,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0.0394 +1,0.658,0.036,0.066,0,0,0,0,0,0.236 +1,0.61,0.0183,0.0495,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0.216 +1,0.61,0.02,0.0513,0,0,0,0,0,0.14 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.78 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.221 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.36 +0.667,0.736,0.0889,0.33,0,0,0.419,0.263,0,0.271 +0.667,0.736,0.104,0.337,0,0,0.48,0,0,0 +0.333,0.649,0.066,0.189,0,0,0.382,0,0,0.0394 +0.333,0.649,0.072,0.183,0,0,0.369,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.405,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.613,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0.428,0,0,0.0394 +0.333,0.662,0.0976,0.186,0,0,0.474,0,0,0.0788 +0.667,0.802,0.222,0.367,0,0,0.492,0,0,0.0394 +1,0.98,0.399,0.674,0,0,0.346,0,0,0.158 +1,1,0.537,0.868,0,0,0.055,0,0.0167,0.117 +1,0.98,0.752,0.98,0,0,0,0,0.233,0.0394 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0.274 +1,0.616,0.0874,0.116,0,0,0,0,0,0.137 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.447 +1,0.745,0.0742,0.351,0,0,0,0,0,0.344 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.473 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.739 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.374 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.276 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.119 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.118 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0394 +0.333,0.649,0.0882,0.178,0,0,0,0,0.25,0.118 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.197 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.236 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.0394 +1,1,0.537,0.868,0,0,0,0,0,0.0394 +1,0.98,0.752,0.98,0,0,0,0,0,0.0788 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0.0726 +1,0.636,0.188,0.246,0,0,0,0,0,0.0896 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.61,0.02,0.0513,0,0,0,0,0,0.205 +1,0.658,0.036,0.116,0,0,0,0,0,0.679 +1,0.745,0.0742,0.351,0,0,0,0,0,0.195 +0.667,0.723,0.0735,0.313,0,0,0.592,0.263,0,0.194 +0.667,0.736,0.0889,0.33,0,0,0.613,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.593,0,0,0.276 +0.667,0.736,0.116,0.328,0,0,0.472,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.118 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.118 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.268 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.118 +0.333,0.682,0.119,0.208,0.0576,0.0167,0,0,0,0.0394 +0.333,0.701,0.144,0.258,0.541,1,0,0,0,0.451 +0.667,0.854,0.364,0.595,0.723,0.567,0,0,0,0.49 +0.667,0.841,0.507,0.67,0.131,0,0,0,0,0.0869 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.276 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0196 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.207 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.64 +1,0.745,0.0742,0.351,0,0,0,0,0.25,0.526 +1,0.804,0.102,0.444,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0.337,0.25,0,0,0,0 +0.333,0.649,0.0601,0.193,0.667,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.363,0,0,0,0,0.0988 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.706 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.182 +0.333,0.649,0.0839,0.177,0,0,0.0528,0.0175,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0.45,0.246,0,0.0394 +0.333,0.662,0.0976,0.186,0,0,0.55,0,0.0167,0.394 +0.667,0.802,0.222,0.367,0,0,0.59,0,0.233,0.118 +1,0.98,0.399,0.674,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.0394 +1,0.98,0.752,0.98,0,0,0,0,0,0.322 +1,0.815,0.625,0.625,0,0,0,0,0,0.143 +1,0.762,0.592,0.501,0,0,0,0,0,0.595 +1,0.71,0.36,0.442,0,0,0,0,0,0.279 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.562 +1,0.623,0.0353,0.15,0,0,0,0,0,0.187 +1,0.642,0.0447,0.181,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.0394 +0.667,0.649,0.066,0.189,0,0,0,0,0,0.118 +1,0.649,0.072,0.183,0,0,0,0,0,0.197 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.863,0.261,0.458,0,0,0,0,0,0.0394 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.118 +0.333,0.701,0.144,0.258,0,0,0,0,0.25,0.358 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.594 +1,0.98,0.752,0.98,0,0,0,0,0,0.283 +1,0.941,0.929,0.913,0,0,0,0,0,0.2 +1,0.863,0.88,0.727,0,0,0,0,0,0.0519 +1,0.636,0.188,0.246,0,0,0,0,0,0.0163 +1,0.616,0.0874,0.116,0,0,0,0,0,0.161 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.551,0.517,0,0,0,0.197 +1,0.649,0.0923,0.193,0.236,0,0,0,0.45,0.263 +1,0.824,0.287,0.468,0,0,0,0,0.567,0.427 +0.667,0.736,0.216,0.316,0,0,0,0,0,0.0998 +1,0.824,0.338,0.436,0,0,0,0,0,0.158 +0.667,0.736,0.272,0.305,0.702,0.25,0,0,0,0.236 +0.333,0.649,0.164,0.178,0.52,0,0,0,0,0.158 +0.333,0.662,0.179,0.186,0.148,0,0.488,0.263,0.25,0.118 +1,0.922,0.527,0.526,0,0,0.477,0,0,0.118 +1,0.98,0.545,0.674,0,0,0.15,0,0,0.352 +1,1,0.642,0.868,0,0,0,0,0,0.0788 +0.667,0.841,0.569,0.67,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0.0971 +0.667,0.762,0.617,0.501,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0.697,0.263,0,0.232 +1,0.671,0.182,0.183,0,0,0,0,0,0.0963 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.642,0.0488,0.181,0,0,0,0,0,0.384 +1,0.736,0.127,0.33,0,0,0,0,0,0.335 +1,0.736,0.166,0.337,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0.474,0.263,0,0.0788 +0.667,0.649,0.117,0.183,0,0,0.572,0,0,0.197 +0.667,0.736,0.231,0.307,0,0,0.791,0,0,0.0788 +0.667,0.736,0.272,0.305,0,0,0.427,0,0,0.0788 +0.667,0.736,0.31,0.307,0,0,0.404,0,0,0.0394 +0.333,0.662,0.179,0.186,0,0,0.476,0,0,0.433 +0.333,0.682,0.188,0.208,0,0,0.521,0,0,0.118 +1,0.841,0.369,0.466,0,0,0.563,0,0,0 +1,0.854,0.434,0.595,0,0,0.517,0,0,0 +1,0.98,0.845,0.98,0,0,0.514,0,0,0.118 +1,0.815,0.668,0.625,0,0,0,0,0,0.0394 +1,0.762,0.617,0.501,0,0,0,0,0,0.0394 +1,0.71,0.392,0.442,0,0,0,0,0,0.0788 +1,0.616,0.1,0.116,0,0,0,0,0,0.115 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0.0167,0.224 +1,0.61,0.0183,0.0495,0,0,0,0,0.233,0.0788 +1,0.61,0.0165,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.105 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.193 +1,0.623,0.0353,0.15,0,0,0,0,0,0.159 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.236 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.118 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0394 +0.333,0.649,0.0882,0.178,0,0,0,0,0.517,0.118 +0.667,0.762,0.179,0.322,0,0,0,0,0.25,0.0788 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.158 +0.667,0.841,0.271,0.466,0,0,0,0,0.25,0 +0.667,0.854,0.364,0.595,0,0,0.119,0.263,0.0167,0.268 +0.667,0.841,0.507,0.67,0,0,0,0,0.233,0.118 +1,0.941,0.929,0.913,0,0,0,0,0,0.118 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.125 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.229 +1,0.61,0.02,0.0513,0,0,0,0,0,0.114 +1,0.658,0.036,0.116,0,0,0,0,0,0.331 +1,0.684,0.0548,0.251,0,0,0,0,0,0.528 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.0394 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.158 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0518 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.251 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.315 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.623,0.0353,0.15,0,0,0.393,0.263,1,0 +0.667,0.642,0.0447,0.181,0,0,0.546,0,1,0.565 +0.667,0.736,0.0889,0.33,0,0,0.453,0,0.283,0.102 +0.667,0.736,0.104,0.337,0,0,0.436,0,0,0.0788 +0.333,0.649,0.066,0.189,0,0,0.261,0,0,0.118 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.276 +0.333,0.682,0.119,0.208,0,0,0,0,0.25,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.254 +1,1,0.537,0.868,0,0,0,0,0,0.199 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0.0969,0.0167,0,0,0,0.276 +0.333,0.649,0.0601,0.193,0.874,0.5,0,0,0,0 +0.333,0.649,0.066,0.189,0.0759,0,0,0,0,0.158 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0394 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0,0.562,0.0159,0.0495,0,0,0,0,0.25,0.158 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.482 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0394 +1,0.98,0.399,0.674,0,0,0,0,0.0167,0.0394 +1,1,0.537,0.868,0,0,0,0,0.483,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.0394 +1,0.815,0.625,0.625,0,0,0,0,0,0.128 +1,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0573,0.0175,0.5,0.0394 +1,0.61,0.0183,0.0495,0,0,0.732,0.246,0,0.0788 +1,0.61,0.0165,0.0495,0,0,0.0841,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0.0186 +1,0.562,0.0159,0.0495,0,0,0,0,0.75,0.361 +1,0.804,0.102,0.444,0,0,0.309,0.263,0,0.15 +1,0.824,0.125,0.47,0,0,0.515,0,0,0.34 +0.667,0.736,0.104,0.337,0,0,0.674,0,0,0.439 +0.667,0.736,0.116,0.328,0,0,0.726,0,0,0.0788 +0.333,0.649,0.072,0.183,0,0,0.661,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.55,0,0,0.158 +0.333,0.649,0.0839,0.177,0,0,0.0482,0,0.25,0.0394 +0.333,0.562,0.0159,0.0495,0.0803,0.0167,0,0,0,0.158 +0.667,0.662,0.0976,0.186,0.236,0.767,0,0,0,0.197 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.118 +0.667,0.701,0.144,0.258,0,0,0,0,0.25,0 +1,0.854,0.364,0.595,0,0,0,0,0,0 +1,0.841,0.507,0.67,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0.25,0.359 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4 +1,0.736,0.127,0.33,0,0,0,0,0,0.118 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0.0394 +1,0.736,0.197,0.328,0.461,0.45,0.202,0.211,0,0 +1,0.736,0.216,0.316,0,0.0667,0.497,0.842,0,0.0394 +0.667,0.649,0.125,0.178,0,0,0.546,0,0.2,0.118 +0.667,0.649,0.145,0.177,0,0,0.272,0,0.05,0.0394 +0.667,0.736,0.31,0.307,0,0,0.836,0,0,0.158 +0.667,0.762,0.34,0.322,0,0,0.419,0,0,0.0394 +0.667,0.802,0.358,0.367,0,0,0.963,0,0,0.0788 +0.667,0.841,0.369,0.466,0,0,0.346,0,0,0.236 +1,1,0.642,0.868,0.353,0.45,0.599,0,0,0.0788 +1,0.98,0.845,0.98,0.717,0.6,0.549,0,0,0 +1,0.941,0.993,0.913,0.176,0,0.352,0,0,0 +1,0.863,0.916,0.727,0,0,0.433,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.211 +1,0.736,0.127,0.33,0,0,0,0,0,0.205 +1,0.736,0.166,0.337,0,0,0,0,0,0 +1,0.824,0.287,0.468,0,0,0.512,0.263,0,0 +1,0.824,0.315,0.449,0,0,0.376,0,0,0.276 +1,0.736,0.231,0.307,0,0,0.202,0,0,0.354 +1,0.736,0.272,0.305,0,0,0,0,0.25,0.0788 +1,0.736,0.31,0.307,0,0,0,0,0,0.0788 +1,0.762,0.34,0.322,0,0,0,0,0,0.118 +1,0.802,0.358,0.367,0,0,0,0,0,0.0788 +1,0.98,0.545,0.674,0,0,0,0,0,0.586 +1,1,0.642,0.868,0.827,0.783,0,0,0,0.164 +1,0.98,0.845,0.98,0.49,0,0,0,0,0.503 +1,0.941,0.993,0.913,0,0,0,0,0,0.125 +1,0.863,0.916,0.727,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0.0394 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.372 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.287 +1,0.684,0.0548,0.251,0,0,0,0,0,0.665 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.287 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.0394 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0394 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0788 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0394 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.118 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.0979 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.455 +1,0.98,0.752,0.98,0,0,0,0,0,0.0788 +1,0.941,0.929,0.913,0,0,0,0,0,0.311 +1,0.762,0.592,0.501,0,0,0,0,0,0.0388 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.481 +1,0.61,0.02,0.0513,0,0,0,0,0,0.424 +1,0.658,0.036,0.116,0,0,0,0,0,0.311 +0.667,0.684,0.0548,0.251,0,0,0,0,0.267,0.329 +0.667,0.723,0.0735,0.313,0,0,0,0,0.233,0.0394 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.201 +0.333,0.649,0.0601,0.193,0,0,0.404,0.263,0,0.223 +0.333,0.649,0.066,0.189,0,0,0.455,0,0,0.197 +0.333,0.649,0.072,0.183,0,0,0.505,0,0,0.197 +0.333,0.649,0.0754,0.178,0,0,0.317,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0.358,0,0,0.197 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.118 +0.333,0.662,0.0976,0.186,0,0,0,0,0.25,0.315 +1,0.922,0.325,0.526,0,0,0,0,0,0.0394 +1,0.98,0.399,0.674,0,0,0,0,0,0.0394 +1,1,0.537,0.868,0,0,0,0,0,0.118 +1,0.98,0.752,0.98,0,0,0,0,0,0.153 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0917,0.263,0.25,0.167 +1,0.745,0.0742,0.351,0,0,0.055,0.0175,0,0.221 +0.667,0.723,0.0735,0.313,0,0,0.795,0.246,0,0 +0.333,0.649,0.0524,0.19,0,0,0.31,0,0,0.158 +0.333,0.649,0.0601,0.193,0,0,0.486,0,0,0.236 +0.333,0.649,0.066,0.189,0,0,0.408,0,0,0.0788 +0.333,0.649,0.072,0.183,0,0,0.518,0,0,0.0394 +0.333,0.649,0.0754,0.178,0,0,0.554,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0.829,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0.554,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0.537,0,0,0.197 +0.667,0.802,0.222,0.367,0,0,0,0,0.25,0.0788 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.0394 +0.667,0.854,0.364,0.595,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.0394 +1,0.863,0.88,0.727,0,0,0,0,0,0.254 +1,0.71,0.36,0.442,0,0,0,0,0,0.108 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.61,0.02,0.0513,0,0,0,0,0,0.605 +1,0.61,0.0259,0.0829,0,0,0,0,0.5,0.346 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.118 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.118 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0.118 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0.0394 +0.667,0.682,0.119,0.208,0,0,0,0,0.25,0.426 +1,0.98,0.399,0.674,0,0,0,0,0,0.197 +1,1,0.537,0.868,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.0394 +1,0.863,0.88,0.727,0,0,0,0,0.267,0.222 +1,0.784,0.532,0.638,0,0,0,0,0.5,0.0923 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.61,0.02,0.0513,0,0,0,0,0,0.142 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.116 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.259 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.276 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.197 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.0788 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.118 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.118 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.708,0.19,0.322,0,0,0,0,0,0.197 +0.667,0.701,0.261,0.36,0,0,0,0,0.25,0.118 +0.667,0.688,0.32,0.337,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0.0394 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.61,0.0189,0.0495,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0.0788 +1,0.61,0.024,0.0829,0,0,0,0,0.25,0 +1,0.684,0.047,0.251,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.254 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.729 +0.667,0.736,0.216,0.316,0,0,0,0,0,0.573 +0.667,0.736,0.231,0.307,0,0,0,0,0,0.352 +0.667,0.736,0.272,0.305,0,0,0,0,0,0.394 +0.667,0.736,0.31,0.307,0,0,0,0,0,0.388 +1,0.863,0.502,0.458,0,0,0,0,0,0.197 +0.667,0.802,0.358,0.367,0,0,0.291,0.474,0.25,0.118 +0.667,0.841,0.369,0.466,0,0,0.291,0.316,0,0.0788 +1,1,0.642,0.868,0,0,0.335,0.263,0,0 +1,0.98,0.845,0.98,0,0,0.48,0,0,0 +1,0.941,0.993,0.913,0,0,0.463,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0.09 +1,0.784,0.578,0.638,0,0,0,0,0,0.124 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.61,0.0215,0.0513,0,0,0,0,0,0.0394 +1,0.61,0.024,0.0829,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0.354 +0.667,0.649,0.108,0.189,0,0,0,0,0,0.172 +0.667,0.649,0.117,0.183,0,0,0,0,0,0.0394 +0.667,0.649,0.125,0.178,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0.0788 +1,0.824,0.456,0.435,0,0,0,0,0,0.236 +1,0.863,0.502,0.458,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0.0394 +1,0.98,0.545,0.674,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0.3,0.211,0,0 +0.667,0.841,0.569,0.67,0,0,0,0.0526,0,0.354 +0.667,0.815,0.668,0.625,0,0,0,0,0,0.16 +1,0.863,0.916,0.727,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.276 +1,0.61,0.02,0.0513,0,0,0,0,0.0167,0.288 +1,0.706,0.0461,0.15,0,0,0,0,0.75,0.277 +1,0.745,0.0742,0.351,0,0,0,0,0,0.546 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.146 +0.667,0.736,0.0889,0.33,0,0,0,0,0.25,0.118 +0.667,0.736,0.104,0.337,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.02 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.435 +0.667,0.736,0.135,0.307,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.276 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.139 +0.667,0.802,0.222,0.367,0,0,0,0,0.5,0 +1,0.98,0.399,0.674,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0.33,0.263,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.336 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.198 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.25,0.423 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.0788 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.197 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.0596 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.354 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.167 +0.667,0.649,0.072,0.183,0,0,0,0,0,0.0788 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0.315 +0.333,0.649,0.0839,0.177,0,0,0,0,0.5,0.0788 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0.0167,0.0394 +0.333,0.682,0.119,0.208,0,0,0,0,0.233,0 +1,0.98,0.399,0.674,0,0,0,0,0,0 +1,1,0.537,0.868,0.424,0.517,0,0,0,0 +1,0.98,0.752,0.98,0.658,0.533,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0.5,0 +1,0.863,0.88,0.727,0.401,0.517,0,0,0,0 +1,0.636,0.188,0.246,0.518,0.267,0,0,0,0 +1,0.616,0.0874,0.116,0.356,0,0,0,0,0 +1,0.61,0.0421,0.0743,0.208,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.0394 +1,0.61,0.0165,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.019 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.517,0.363 +0.667,0.723,0.0735,0.313,0,0,0,0,0.233,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.0788 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0394 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.118 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.0394 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.118 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0394 +0.667,0.736,0.161,0.307,0.227,0.267,0,0,0,0.0394 +0.333,0.662,0.0976,0.186,0.258,0.25,0,0,0,0.158 +0.333,0.682,0.119,0.208,0,0,0,0,0.25,0.158 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.0788 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.0394 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.0788 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.133,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.56,0.0186,0.051,0,0,0,0,0,0.474 +1,0.559,0.0314,0.114,0,0,0,0,0.233,0.227 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.24 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.257 +0.667,0.621,0.0764,0.318,0,0,0.338,0.246,0,0.0394 +0.333,0.591,0.0527,0.185,0,0,0.567,0,0,0.118 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.197 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.158 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0,0,0,0,0.483,0.0394 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.158 +0.667,0.704,0.232,0.395,0.48,0.567,0,0,0,0.0394 +0.667,0.714,0.31,0.507,0.665,0.7,0,0,0,0.354 +0.667,0.704,0.432,0.613,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.0765 +1,0.682,0.749,0.807,0,0,0,0,0,0.0956 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0898 +1,0.58,0.0474,0.245,0,0,0,0,0,0.186 +1,0.611,0.0634,0.305,0,0,0,0,0,0.227 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.344 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.158 +0.333,0.591,0.0629,0.175,0,0,0,0,0.233,0.118 +0.333,0.591,0.0658,0.171,0.616,0.817,0,0,0,0.0394 +0.333,0.591,0.073,0.169,0,0.45,0,0,0,0.479 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.118 +0.667,0.704,0.232,0.395,0,0,0,0,0.233,0.154 +1,0.79,0.457,0.736,0,0,0,0,0,0.203 +1,0.774,0.64,0.895,0,0,0,0,0,0.224 +1,0.744,0.791,0.928,0,0,0,0,0,0.289 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.317 +0.667,0.581,0.162,0.2,0,0,0,0,0,0.464 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0391 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.307 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.307 +1,0.56,0.0208,0.0495,0,0,0,0,0,0.422 +1,0.56,0.0179,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.586,0.0433,0.177,0,0,0,0,0,0.158 +1,0.621,0.109,0.318,0,0,0,0,0,0.294 +1,0.621,0.143,0.321,0,0,0,0,0,0.236 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0.0788 +0.333,0.591,0.101,0.175,0,0,0,0,0,0.0394 +0.333,0.591,0.108,0.171,0.607,0.5,0.11,0.158,0,0.407 +1,0.651,0.34,0.409,0.108,0,0.141,0.351,0.483,0.639 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.118 +0.667,0.642,0.291,0.298,0,0,0,0,0.15,0.197 +0.667,0.673,0.305,0.326,0.319,0.4,0,0,0.0833,0.0394 +0.667,0.704,0.315,0.395,0.29,0.1,0.128,0.158,0,0.0788 +0.667,0.714,0.371,0.507,0.702,0.5,0,0.0877,0,0 +1,0.774,0.719,0.895,0.599,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0.412,0.65,0,0,0,0 +1,0.62,0.492,0.5,0.709,0.617,0,0,0,0.158 +1,0.569,0.156,0.183,0.365,0,0,0,0,0.118 +1,0.56,0.044,0.0743,0.59,0,0,0,0,0.176 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.417 +1,0.586,0.0433,0.177,0,0,0,0,0,0.373 +1,0.591,0.0636,0.184,0,0,0,0,0,0.29 +1,0.591,0.0803,0.185,0,0,0,0,0,0.0788 +1,0.591,0.0934,0.181,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0.274,0.246,0.65,0.276 +0.667,0.591,0.108,0.171,0,0,0.164,0,0.317,0.197 +0.667,0.591,0.125,0.169,0,0,0.436,0,0,0.118 +0.667,0.621,0.265,0.29,0,0,0.303,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.158 +0.333,0.617,0.162,0.188,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0.158 +0.333,0.622,0.294,0.342,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.272,0.246,0,0.0394 +0.667,0.6,0.334,0.35,0,0,0.344,0,0,0 +1,0.573,0.224,0.249,0.124,0,0.136,0,0,0 +1,0.558,0.0806,0.124,0,0,0.494,0,0,0.0394 +1,0.559,0.0314,0.066,0,0,0.407,0,0,0.0394 +1,0.56,0.0171,0.0495,0,0,0.404,0,0,0.118 +1,0.56,0.0157,0.0495,0,0,0.427,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0.233,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.119 +0.667,0.621,0.0895,0.321,0.698,0.5,0,0,0,0.409 +0.667,0.621,0.0997,0.312,0.29,0,0,0,0,0.283 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.467 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.354 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0788 +0.333,0.591,0.0767,0.17,0,0,0.503,0.246,0,0.0394 +0.667,0.642,0.153,0.298,0,0,0.37,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.164,0,0.233,0.0394 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0394 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0394 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.118 +0.667,0.683,0.532,0.635,0.398,0.25,0,0,0,0 +0.667,0.642,0.505,0.555,0.649,0,0,0,0,0 +1,0.6,0.307,0.35,0.644,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0788 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.315 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.299 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.648 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.119 +0.333,0.591,0.0527,0.185,0,0,0.106,0.0702,0,0.118 +0,0.562,0.0159,0.0495,0,0,0.534,0.175,0,0 +0.333,0.591,0.0629,0.175,0,0,0.735,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.388,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.592,0,0,0.0394 +0.333,0.591,0.0767,0.17,0,0,0.771,0,0,0.0788 +0.333,0.602,0.0846,0.174,0,0,0.771,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.735,0,0,0.0394 +1,0.774,0.34,0.567,0.206,0.317,0.251,0,0,0.118 +1,0.79,0.457,0.736,0.581,0.183,0.523,0,0,0.0394 +1,0.774,0.64,0.895,0.651,0,0.529,0,0,0 +1,0.744,0.791,0.928,0.672,0,0,0,0,0 +1,0.642,0.505,0.555,0.511,0,0,0,0,0 +1,0.581,0.162,0.2,0.693,0,0,0,0,0 +1,0.565,0.0759,0.116,0.248,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0.233,0.0788 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0394 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.0948 +0.667,0.611,0.0634,0.305,0,0,0,0,0.317,0.602 +0.667,0.621,0.0764,0.318,0,0,0,0,0.167,0.342 +0.333,0.591,0.0527,0.185,0.696,0.817,0,0,0,0 +0.333,0.591,0.0578,0.181,0.168,0.717,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0,0,0.233,0.118 +0.333,0.591,0.0658,0.171,0.127,0.0667,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0.682,0.433,0,0,0,0.354 +0.333,0.591,0.0767,0.17,0.611,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0.677,0,0,0,0.0667,0.0788 +0.333,0.617,0.103,0.188,0.0995,0,0.0917,0.0702,0.167,0.0788 +0.667,0.704,0.232,0.395,0,0,0.497,0.175,0,0.0394 +0.667,0.714,0.31,0.507,0,0,0.532,0,0,0.0788 +1,0.774,0.64,0.895,0,0,0.479,0,0,0 +1,0.744,0.791,0.928,0,0,0.373,0,0,0 +1,0.682,0.749,0.807,0,0,0.22,0,0,0.174 +1,0.581,0.162,0.2,0,0,0,0,0,0.196 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.214 +1,0.571,0.0316,0.147,0,0,0,0,0,0.292 +1,0.586,0.0396,0.177,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.317,0.0788 +0.667,0.591,0.0527,0.185,0,0,0,0,0.167,0.0394 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.236 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0.0788 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.197 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.236 +0.667,0.617,0.103,0.188,0,0,0,0,0,0.158 +0.667,0.633,0.124,0.222,0,0,0,0,0.0667,0.316 +1,0.79,0.457,0.736,0,0,0,0,0.417,0.118 +1,0.774,0.64,0.895,0,0,0,0,0.233,0.34 +1,0.744,0.791,0.928,0,0,0,0,0,0.355 +1,0.682,0.749,0.807,0,0,0,0,0,0.336 +1,0.62,0.453,0.5,0,0,0,0,0,0.183 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0394 +1,0.58,0.0474,0.245,0,0,0,0,0,0.236 +1,0.611,0.0634,0.305,0,0,0,0,0,0.0788 +1,0.621,0.0764,0.318,0.147,0.0667,0,0,0,0.0788 +1,0.621,0.0895,0.321,0.723,0.433,0,0,0,0.263 +1,0.651,0.142,0.443,0.618,0,0,0,0,0.24 +0.333,0.591,0.0629,0.175,0.661,0,0,0,0,0.0936 +0.333,0.591,0.0658,0.171,0.25,0,0,0,0,0.315 +0.333,0.591,0.073,0.169,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0788 +0.333,0.602,0.0846,0.174,0.26,0.25,0,0,0,0.0394 +1,0.673,0.19,0.326,0.475,0,0,0,0.233,0.0788 +1,0.774,0.34,0.567,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0.233,0.237 +1,0.642,0.505,0.555,0,0,0,0,0,0.0711 +1,0.6,0.307,0.35,0,0,0,0,0,0.132 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.65,0 +1,0.571,0.0295,0.147,0,0,0,0,0.0667,0.0394 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0.0788 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0.234 +0.667,0.591,0.0803,0.185,0,0,0,0,0.15,0.194 +0.333,0.591,0.0934,0.181,0,0,0,0,0.0833,0.0788 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.142 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.176 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.587 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.724 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.0788 +0.667,0.673,0.305,0.326,0,0,0,0,0.15,0.236 +0.667,0.704,0.315,0.395,0,0,0,0,0.0833,0.236 +0.667,0.714,0.371,0.507,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0.154 +1,0.62,0.492,0.5,0,0,0,0,0,0.295 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.364 +1,0.56,0.0223,0.0816,0,0,0,0,0.233,0.138 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.236 +1,0.586,0.0433,0.177,0,0,0,0,0.65,0 +1,0.621,0.109,0.318,0,0,0,0,1,0.276 +0.667,0.591,0.0803,0.185,0,0,0,0,0.3,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0.124 +0.667,0.621,0.198,0.292,0,0,0,0,0.233,0.919 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.302 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.345 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.0394 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.0394 +1,0.774,0.464,0.567,0,0,0.176,0.158,0,0.118 +1,0.79,0.547,0.736,0,0,0.524,0.0877,0,0 +1,0.774,0.719,0.895,0,0,0.346,0,0,0.118 +1,0.744,0.845,0.928,0,0,0.529,0,0,0 +1,0.682,0.78,0.807,0,0,0.291,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0.237 +1,0.569,0.156,0.183,0,0,0,0,0,0.154 +1,0.559,0.059,0.099,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.667,0.571,0.0316,0.147,0.297,0.317,0,0,0.817,0 +0.667,0.611,0.0634,0.305,0.515,0.95,0,0,1,0.333 +0.333,0.591,0.0462,0.184,0,0,0,0,1,0.191 +0.333,0.591,0.0527,0.185,0,0,0,0,1,0.0394 +0.333,0.591,0.0578,0.181,0,0,0,0,0.317,0.0394 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0788 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.327 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.197 +0.333,0.591,0.0767,0.17,0,0,0,0,0.233,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0394 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0394 +1,0.774,0.64,0.895,0.403,0.5,0,0,0,0.343 +1,0.744,0.791,0.928,0.518,0,0,0,0,0.36 +1,0.682,0.749,0.807,0,0,0,0,0,0.211 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.308 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0671 +1,0.589,0.0632,0.342,0,0,0,0,0,0.386 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.118 +0.333,0.591,0.0462,0.184,0.667,0.5,0,0,0,0.0788 +0.333,0.591,0.0527,0.185,0.754,0,0,0,0,0.197 +0.333,0.591,0.0578,0.181,0.761,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.106,0,0,0,0,0.158 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0,0,0,0,0.233,0.236 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.158 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.231 +1,0.79,0.457,0.736,0.126,0.0667,0,0,0,0.793 +1,0.774,0.64,0.895,0.513,0.183,0.239,0.246,0,0.158 +1,0.744,0.791,0.928,0,0,0.557,0,0,0 +1,0.602,0.26,0.302,0,0,0.462,0,0,0 +1,0.581,0.162,0.2,0,0,0.255,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.347 +1,0.589,0.0632,0.342,0,0,0,0,0,0.182 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0.153 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.158 +0.333,0.591,0.0578,0.181,0,0,0,0,0.317,0.276 +0.333,0.591,0.0629,0.175,0,0,0,0,0.9,0.158 +0.333,0.591,0.0658,0.171,0.237,0.317,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0.731,0.183,0.211,0.246,0,0.118 +0.333,0.591,0.0767,0.17,0.286,0,0.726,0,0,0.118 +0.333,0.602,0.0846,0.174,0,0,0.489,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.482 +1,0.704,0.232,0.395,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0.29,0.25,0,0,0,0.153 +1,0.774,0.64,0.895,0.942,0,0,0,0,0.118 +1,0.744,0.791,0.928,0.543,0,0.323,0.246,0,0.126 +1,0.682,0.749,0.807,0,0,0.106,0,0,0.398 +1,0.6,0.307,0.35,0,0,0,0,0,0.249 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.33 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0394 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0893 +1,0.571,0.0316,0.147,0,0,0,0,0,0.206 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0.158 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.181,0,0,0.106,0.0702,0,0.158 +0.333,0.591,0.0629,0.175,0,0,0.515,0.175,0,0.118 +0.667,0.621,0.116,0.292,0,0,0.176,0,0,0.0788 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.262 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.817,0.197 +0.667,0.617,0.103,0.188,0,0,0,0,1,0.118 +0.667,0.633,0.124,0.222,0,0,0,0,1,0.0707 +0.333,0.638,0.163,0.278,0,0,0,0,1,0.0353 +1,0.774,0.64,0.895,0,0,0,0,1,0.118 +1,0.744,0.791,0.928,0,0,0,0,0.3,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.136 +1,0.571,0.0316,0.147,0,0,0,0,0,0.23 +1,0.586,0.0396,0.177,0,0,0,0,0.717,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.394 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.118 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.197 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.473 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0.742,0.817,0,0,0,0.276 +0.333,0.633,0.124,0.222,0.461,0.2,0,0,0,0.174 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.384 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.164,0.0667,0,0,0,0 +1,0.642,0.505,0.555,0.625,0.433,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +1,0.591,0.0636,0.184,0,0,0,0,0,0.197 +1,0.591,0.0803,0.185,0,0,0,0,0,0.0394 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0.0394 +0.667,0.591,0.101,0.175,0,0,0,0,0,0.354 +0.667,0.591,0.108,0.171,0,0,0,0,0,0.158 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.236 +0.667,0.591,0.141,0.17,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.118 +0.667,0.673,0.305,0.326,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0.374 +1,0.714,0.371,0.507,0,0,0,0,0.233,0.0788 +1,0.774,0.719,0.895,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0 +0.333,0.591,0.0803,0.185,0,0,0,0,0,0.197 +0.667,0.621,0.169,0.312,0.792,0.5,0,0,0,0.158 +0.333,0.591,0.101,0.175,0.346,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.158 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.158 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.197 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.118 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.0394 +1,0.774,0.464,0.567,0,0,0,0,0,0.475 +1,0.79,0.547,0.736,0,0,0,0,0.233,0.522 +0.667,0.633,0.252,0.331,0,0,0,0,0,0.0394 +0.667,0.622,0.294,0.342,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0788 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.074 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.441 +1,0.586,0.0396,0.177,0,0,0,0,0,0.17 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.452 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0.0667,0.277 +0.333,0.591,0.0658,0.171,0,0,0,0,0.167,0.118 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.315 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.197 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0788 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0.635,0.246,0,0.0394 +1,0.79,0.457,0.736,0.679,0.25,0.593,0,0,0.118 +1,0.774,0.64,0.895,0.518,0,0.101,0,0,0.375 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.419 +1,0.571,0.0316,0.147,0,0,0,0,0,0.151 +0.667,0.586,0.0396,0.177,0,0,0,0,0.233,0.392 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.207 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.295 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.0394 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0394 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0,0,0,0,0.233,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.0788 +1,0.774,0.34,0.567,0,0,0,0,0,0.236 +1,0.79,0.457,0.736,0,0,0,0,0,0.236 +0.667,0.704,0.432,0.613,0.15,0.0667,0,0,0,0 +1,0.744,0.791,0.928,0.808,0.433,0,0,0,0 +1,0.642,0.505,0.555,0.18,0,0,0,0,0.187 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.313 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.58,0.0474,0.245,0,0,0,0,0,0.239 +1,0.611,0.0634,0.305,0,0,0,0,0.817,0.157 +0.667,0.621,0.0764,0.318,0,0,0,0,0.15,0.596 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.197 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.276 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.197 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.236 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.208 +1,0.774,0.34,0.567,0,0,0,0,0,0.155 +1,0.79,0.457,0.736,0,0,0,0,0,0.118 +1,0.774,0.64,0.895,0,0,0,0,0,0.118 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.354 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0.308 +1,0.635,0.0871,0.433,0,0,0,0,0,0.538 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.197 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0.554,0.246,0,0.118 +0.333,0.591,0.0658,0.171,0,0,0.563,0,0,0.276 +0.333,0.591,0.073,0.169,0,0,0.382,0,0,0.0788 +0.333,0.591,0.0767,0.17,0,0,0.61,0,0,0.315 +0.333,0.602,0.0846,0.174,0,0,0,0,0.233,0.0394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0.233,0.158 +1,0.79,0.457,0.736,0,0,0,0,0,0.0394 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.442 +1,0.611,0.0634,0.305,0,0,0,0,0.233,0.185 +0.667,0.591,0.0462,0.184,0,0,0.216,0.246,0,0.65 +0.667,0.621,0.0895,0.321,0,0,0.365,0,0,0.464 +0.667,0.621,0.0997,0.312,0,0,0.471,0,0,0.605 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0924 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.638 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.358 +0.667,0.621,0.137,0.29,0,0,0.00917,0.0702,0.233,0.234 +0.667,0.642,0.153,0.298,0,0,0.375,0.175,0,0.0394 +1,0.728,0.277,0.464,0,0,0.234,0,0,0.197 +1,0.774,0.34,0.567,0,0,0.424,0,0,0.0394 +1,0.79,0.457,0.736,0,0,0.636,0,0,0.231 +1,0.774,0.64,0.895,0,0,0.0214,0,0,0.0394 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.467 +1,0.56,0.0223,0.0816,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.483,0.0394 +1,0.621,0.185,0.3,0,0,0,0,0,0.156 +1,0.651,0.288,0.413,0,0,0,0,0,0.332 +1,0.651,0.34,0.409,0,0,0,0,0,0.487 +1,0.651,0.388,0.41,0,0,0,0,0.233,0.445 +1,0.682,0.427,0.422,0,0,0,0,0,0.389 +1,0.728,0.449,0.464,0,0,0,0,0,0.272 +1,0.774,0.464,0.567,0,0,0,0,0,0.118 +1,0.79,0.547,0.736,0,0,0,0,0,0.0788 +1,0.774,0.719,0.895,0,0,0,0,0,0.113 +1,0.744,0.845,0.928,0,0,0,0,0,0.175 +1,0.682,0.78,0.807,0,0,0,0,0,0.19 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0.0394 +1,0.559,0.0177,0.0495,0,0,0,0,0,0.197 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +1,0.591,0.0636,0.184,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.219 +1,0.651,0.244,0.443,0,0,0,0,0,0.166 +1,0.651,0.268,0.426,0,0,0,0,0.233,0.24 +1,0.651,0.288,0.413,0,0,0,0,0,0.197 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.118 +0.667,0.621,0.265,0.29,0,0,0.197,0.246,0,0.224 +0.667,0.642,0.291,0.298,0,0,0.564,0,0,0.588 +0.667,0.673,0.305,0.326,0,0,0.318,0,0,0.249 +0.667,0.704,0.315,0.395,0,0,0.569,0,0,0.197 +0.333,0.638,0.194,0.278,0,0,0.679,0,0,0.114 +0.667,0.704,0.485,0.613,0,0,0.372,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.206 +1,0.56,0.0236,0.0816,0,0,0,0,0.317,0.352 +1,0.589,0.0632,0.342,0,0,0,0,0.167,0.452 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.244 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.21 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.451 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.716 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.216 +0.333,0.591,0.0658,0.171,0,0,0,0,0.233,0.79 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.115 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0394 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.0394 +0.667,0.704,0.232,0.395,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0.0788 +1,0.774,0.64,0.895,0,0,0,0,0,0.0788 +1,0.744,0.791,0.928,0.36,0.567,0,0,0,0.0788 +1,0.642,0.505,0.555,0.41,0.2,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0.0706 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0671 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.33 +1,0.58,0.0474,0.245,0,0,0,0,0,0.152 +1,0.635,0.0871,0.433,0,0,0.502,0.246,0,0.214 +0.667,0.621,0.0764,0.318,0,0,0.358,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.849,0,0,0.0788 +0.667,0.621,0.0997,0.312,0,0,0.676,0,0,0.451 +0.667,0.621,0.11,0.3,0,0,0.41,0,0,0.0394 +0.333,0.591,0.0658,0.171,0,0,0.593,0,0,0.236 +0.333,0.591,0.073,0.169,0,0,0.353,0,0,0.118 +0.333,0.591,0.0767,0.17,0,0,0.618,0,0,0.197 +0.667,0.642,0.153,0.298,0,0,0.514,0,0,0.158 +0.667,0.673,0.19,0.326,0,0,0.509,0,0.0667,0.0394 +0.667,0.704,0.232,0.395,0,0,0.633,0,0.167,0.158 +1,0.79,0.457,0.736,0,0,0.474,0,0,0.0394 +1,0.774,0.64,0.895,0,0,0,0,0,0.182 +1,0.744,0.791,0.928,0,0,0,0,0,0.167 +1,0.682,0.749,0.807,0,0,0,0,0,0.291 +1,0.581,0.162,0.2,0,0,0,0,0,0.236 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0358 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.373 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.361 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.197 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.315 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.158 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0.0667,0.276 +0.667,0.673,0.19,0.326,0,0,0,0,0.167,0.354 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.118 +1,0.79,0.457,0.736,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.597,0.817,0,0,0,0 +1,0.744,0.791,0.928,0.239,0.45,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.17 +1,0.559,0.0213,0.0525,0,0,0,0,0,0.251 +1,0.559,0.0314,0.114,0,0,0,0,0.317,0.529 +1,0.58,0.0474,0.245,0,0,0,0,0.65,0.506 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.247 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.0995 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0788 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0394 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0788 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0394 +0.333,0.617,0.103,0.188,0,0,0,0,0.0667,0.158 +0.667,0.704,0.232,0.395,0.387,0.5,0,0,0.167,0.0394 +0.667,0.714,0.31,0.507,0.644,0,0,0,0,0.303 +1,0.774,0.64,0.895,0.839,0,0,0,0,0 +1,0.683,0.532,0.635,0.653,0,0,0,0,0.0394 +1,0.642,0.505,0.555,0.567,0,0,0,0,0.214 +1,0.581,0.162,0.2,0,0,0,0,0,0.0855 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.0788 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.317,0.0788 +0.333,0.591,0.0658,0.171,0,0,0,0,0.167,0.394 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.158 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.276 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.158 +0.333,0.633,0.124,0.222,0,0,0,0,0.233,0.0394 +1,0.79,0.457,0.736,0,0,0,0,0,0.0788 +0.667,0.704,0.432,0.613,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0.233,0 +1,0.642,0.505,0.555,0,0,0,0,0,0.118 +1,0.6,0.307,0.35,0,0,0,0,0,0.0394 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0796 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.326 +1,0.621,0.109,0.318,0,0,0,0,0,0.202 +1,0.621,0.143,0.321,0,0,0,0,0,0.176 +0.667,0.621,0.169,0.312,0,0,0,0,0,0.363 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.593 +1,0.651,0.288,0.413,0,0,0,0,0,0.118 +1,0.621,0.233,0.289,0,0,0,0,0,0.0394 +1,0.621,0.265,0.29,0,0,0,0,0.717,0.118 +1,0.602,0.154,0.174,0,0,0,0,0,0.197 +1,0.617,0.162,0.188,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0.197 +1,0.714,0.371,0.507,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0.461 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0.119 +1,0.557,0.0705,0.099,0,0,0,0,0,0.106 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.245 +1,0.585,0.0436,0.172,0,0,0,0,0,0.405 +1,0.59,0.0641,0.175,0,0,0,0,0,0.14 +1,0.619,0.144,0.299,0,0,0,0,0.233,0.196 +1,0.648,0.246,0.411,0,0,0,0,0,0.0788 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.182 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.271 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.354 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.118 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.0788 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.184 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.36 +0.667,0.712,0.374,0.339,0,0,0,0,0,0.0788 +0.333,0.631,0.254,0.239,0,0,0,0,0,0.0788 +0.333,0.621,0.296,0.294,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0.27 +1,0.568,0.157,0.183,0,0,0,0,0,0.0957 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0667,0 +1,0.562,0.0159,0.0495,0,0,0,0,1,0.118 +1,0.578,0.0478,0.236,0,0,0,0,0.817,0.475 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.267 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.28 +0.333,0.59,0.0582,0.17,0.267,0.317,0,0,0,0 +0.333,0.59,0.0633,0.164,0.653,0.917,0,0,0,0 +0.333,0.59,0.0662,0.16,0.382,0.567,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0.724,0.667,0,0,0,0.0788 +0.333,0.59,0.0772,0.159,0.68,0,0,0,0,0.236 +0.667,0.64,0.155,0.269,0.537,0,0,0,0,0.236 +1,0.671,0.191,0.274,0.672,0,0,0,0.0667,0.158 +1,0.701,0.234,0.291,0.131,0,0,0,0.867,0 +1,0.712,0.313,0.339,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.0394 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0.0757 +1,0.599,0.31,0.415,0,0,0,0,0,0.113 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.465 +1,0.578,0.0478,0.236,0,0,0,0,0,0.65 +1,0.633,0.0879,0.417,0,0,0,0,0,0.147 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.229 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.464 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.24 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.276 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.298 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.293 +0.667,0.64,0.155,0.269,0,0,0,0,0.317,0.803 +0.333,0.616,0.104,0.162,0,0,0,0,0.617,0.0394 +0.333,0.631,0.125,0.17,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0.255 +1,0.771,0.646,0.619,0,0,0,0,0,0.158 +1,0.741,0.797,0.783,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.553 +1,0.578,0.0478,0.236,0,0,0,0,0,0.172 +1,0.633,0.0879,0.417,0,0,0,0,0,0.0394 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.118 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.158 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.236 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.158 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.118 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.163 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.266 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.231 +1,0.787,0.461,0.484,0,0,0,0,0,0.0788 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0.0788 +1,0.599,0.31,0.415,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.187 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.25 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.492 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.543 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.191 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.151 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.305 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.158 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0788 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.315 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.315 +0.333,0.637,0.164,0.194,0,0,0,0,0.0667,0.182 +0.667,0.701,0.436,0.429,0,0,0,0,0.167,0.118 +1,0.741,0.797,0.783,0,0,0,0,0,0.0917 +1,0.679,0.756,0.88,0,0,0,0,0,0.0978 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.194 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.145 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.391 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.272 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.206 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.197 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.158 +0.333,0.601,0.0853,0.159,0,0,0,0,0.233,0.236 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.236 +1,0.771,0.343,0.412,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.569,0.233,0,0,0,0.199 +1,0.771,0.646,0.619,0.482,0,0,0,0.233,0.307 +1,0.741,0.797,0.783,0,0,0,0,0,0.221 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +1,0.56,0.0179,0.0495,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0.217,0.123,0,0.118 +1,0.619,0.144,0.299,0,0,0.612,0.14,0,0.197 +1,0.619,0.17,0.291,0,0,0.39,0,0,0.0394 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.597,0.483,0.22,0.263,0,0.433 +1,0.619,0.234,0.269,0,0,0.529,0,0,0.0394 +1,0.619,0.267,0.268,0,0,0.323,0,0,0.0394 +1,0.64,0.293,0.269,0,0,0,0,0,0.118 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.118 +1,0.771,0.468,0.412,0.347,0.367,0,0,0,0.118 +1,0.787,0.551,0.484,0.658,0.867,0,0,0,0.25 +1,0.771,0.725,0.619,0.781,0,0,0,0,0.319 +1,0.741,0.852,0.783,0.055,0,0,0,0,0.0394 +1,0.679,0.786,0.88,0,0,0,0,0,0.0394 +1,0.599,0.337,0.415,0,0,0,0,0,0.2 +1,0.565,0.0875,0.116,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.359 +1,0.59,0.0641,0.175,0,0,0,0,0,0.158 +1,0.619,0.144,0.299,0,0,0,0,0,0.249 +1,0.619,0.17,0.291,0,0,0,0,0,0.432 +0.667,0.59,0.102,0.164,0,0,0,0,0.117,0.197 +0.667,0.59,0.109,0.16,0,0,0,0,0.117,0 +1,0.619,0.234,0.269,0,0,0,0,0,0.3 +0.667,0.59,0.142,0.159,0,0,0,0,0,0.315 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.257 +0.333,0.616,0.163,0.162,0,0,0,0,0.117,0.499 +0.667,0.701,0.318,0.291,0,0,0,0,0.117,0.276 +1,0.787,0.551,0.484,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0.0394 +1,0.568,0.157,0.183,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.0788 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.296 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.075 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.143 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.287 +1,0.57,0.0318,0.143,0,0,0,0,0,0.135 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.0394 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.0394 +0.333,0.59,0.053,0.174,0,0,0,0,0.233,0.0394 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0788 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.197 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0394 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.197 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.197 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.118 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0757 +1,0.771,0.343,0.412,0,0,0,0,0.467,0.33 +1,0.787,0.461,0.484,0,0,0,0,0,0.2 +1,0.771,0.646,0.619,0.143,0.0667,0,0,0,0.551 +1,0.741,0.797,0.783,0.766,0.417,0.379,0.263,0,0.465 +1,0.679,0.756,0.88,0.754,0,0,0,0,0 +1,0.599,0.31,0.415,0.211,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.206 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.313 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.56 +1,0.578,0.0478,0.236,0,0,0,0,0,0.302 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.197 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.0348 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.158 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.197 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0.233,0.274 +0.667,0.616,0.104,0.162,0,0,0,0,0.233,0.0394 +1,0.701,0.234,0.291,0,0,0,0,0,0.0788 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0394 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0.0701 +1,0.58,0.163,0.232,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.21 +1,0.578,0.0478,0.236,0,0,0,0,0,0.371 +1,0.609,0.0639,0.295,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.168 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.385 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0.0913 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0.254 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0.0788 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0.289 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.118 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0788 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.19 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.401 +1,0.787,0.461,0.484,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.118 +1,0.741,0.797,0.783,0,0,0,0,0,0.0394 +1,0.601,0.262,0.326,0,0,0,0,0,0.158 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.291 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.428 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.0394 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.158 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.236 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.527,0.483,0,0,0,0.0788 +0.667,0.671,0.191,0.274,0.277,0,0,0,0,0.0394 +0.333,0.631,0.125,0.17,0.435,0.483,0,0,0,0 +0.667,0.712,0.313,0.339,0.319,0,0,0,0.317,0.116 +1,0.771,0.646,0.619,0,0,0,0,0.15,0.15 +1,0.741,0.797,0.783,0,0,0,0,0,0.17 +1,0.64,0.509,0.603,0,0,0,0,0,0.0394 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0394 +1,0.557,0.0214,0.0518,0,0,0,0,0,0.0788 +1,0.557,0.0316,0.11,0,0,0,0,0,0.289 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0.233 +0.667,0.609,0.0639,0.295,0,0,0,0,0.233,0.235 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.281 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.0394 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.118 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.197 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.473 +0.667,0.64,0.155,0.269,0,0,0,0,0.233,0.315 +0.667,0.671,0.191,0.274,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0.233,0.158 +1,0.787,0.461,0.484,0,0,0,0,0,0.118 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0.0825 +1,0.64,0.509,0.603,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0.0394 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.562 +0.667,0.585,0.0436,0.172,0,0,0,0,0.117,0.29 +0.667,0.59,0.0641,0.175,0.229,0.367,0,0,0.117,0.0394 +0.667,0.619,0.144,0.299,0.805,0.117,0,0,0,0.118 +0.667,0.619,0.17,0.291,0.571,0,0,0,0,0.315 +0.333,0.59,0.102,0.164,0.616,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.368,0,0,0,0,0.197 +0.667,0.619,0.234,0.269,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.118 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.0394 +0.667,0.671,0.308,0.274,0,0,0,0,0.233,0.118 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.197 +1,0.787,0.551,0.484,0,0,0,0,0,0.158 +1,0.771,0.725,0.619,0,0,0,0,0,0.0394 +1,0.741,0.852,0.783,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.585,0.0436,0.172,0,0,0,0,0,0.268 +1,0.59,0.0641,0.175,0,0,0,0,0.117,0.158 +1,0.648,0.206,0.424,0.168,0.117,0,0,0.35,0 +1,0.648,0.246,0.411,0.684,0.867,0,0,0,0 +0.333,0.59,0.102,0.164,0.154,0,0,0,0,0.118 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.0788 +0.333,0.59,0.126,0.159,0.297,0.367,0,0,0,0.315 +0.333,0.59,0.142,0.159,0.635,0.117,0,0,0,0.118 +0.667,0.64,0.293,0.269,0.48,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0.367,0 +1,0.787,0.551,0.484,0,0,0,0,0.1,0.0788 +1,0.771,0.725,0.619,0,0,0,0,0,0.0788 +1,0.741,0.852,0.783,0,0,0,0,0.233,0 +1,0.679,0.786,0.88,0,0,0,0,0,0.198 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.0394 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.0788 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.197 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0788 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0788 +0.667,0.631,0.125,0.17,0,0,0.407,0.263,0,0.0788 +1,0.712,0.313,0.339,0,0,0.459,0,0,0.0788 +1,0.701,0.436,0.429,0,0,0.728,0,0,0 +1,0.681,0.537,0.538,0,0,0.11,0,0.233,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0.0394 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.0788 +1,0.56,0.0172,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.127 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.0804 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0788 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.276 +0.333,0.59,0.0582,0.17,0,0,0.0887,0.0702,0,0 +0.333,0.59,0.0633,0.164,0,0,0.665,0.193,0,0.0788 +0.333,0.59,0.0662,0.16,0,0,0.136,0,0.233,0.0394 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.315 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.153 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.31 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.436 +0.667,0.631,0.125,0.17,0,0,0,0,0,0.236 +1,0.712,0.313,0.339,0,0,0,0,0,0.0394 +1,0.701,0.436,0.429,0,0,0,0,0,0 +1,0.681,0.537,0.538,0.64,0.483,0,0,0,0.118 +1,0.64,0.509,0.603,0.255,0,0,0,0,0.0394 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.167 +1,0.56,0.0238,0.0798,0,0,0,0,0.817,0.175 +1,0.578,0.0478,0.236,0,0,0,0,0.117,0.244 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.118 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.199,0.233,0,0,0,0 +0.333,0.59,0.0582,0.17,0.595,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0.317,0.0788 +0.667,0.619,0.117,0.271,0,0,0,0,0.15,0.158 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.276 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.158 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.118 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.158 +0.333,0.631,0.125,0.17,0,0,0.0443,0.0702,0,0 +0,0.562,0.0159,0.0495,0,0,0.528,0.193,0,0.0788 +0.667,0.701,0.436,0.429,0,0,0.755,0,0,0.0788 +1,0.741,0.797,0.783,0,0,0.503,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0667,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.4,0.315 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.317,0.229 +1,0.578,0.0478,0.236,0,0,0,0,0.617,0.148 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.0994 +0.667,0.619,0.077,0.301,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.0394 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.664 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0788 +0.333,0.631,0.125,0.17,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.347,0.483,0,0,0.233,0.315 +1,0.771,0.646,0.619,0,0,0,0,0,0.394 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0.0784 +1,0.58,0.163,0.232,0,0,0,0,0,0.255 +1,0.565,0.0765,0.116,0,0,0,0,0,0.0879 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.36 +1,0.578,0.0478,0.236,0,0,0,0,0,0.301 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.341 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0788 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.197 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.667,0.701,0.234,0.291,0.709,0.483,0,0,0,0.0788 +1,0.787,0.461,0.484,0.762,0,0,0,0,0.0394 +1,0.771,0.646,0.619,0.586,0,0,0,0,0.0394 +1,0.741,0.797,0.783,0.689,0,0,0,0,0.327 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0.118 +1,0.59,0.0809,0.174,0,0,0,0,0,0.221 +1,0.648,0.246,0.411,0,0,0,0,0,0.118 +0.667,0.619,0.186,0.279,0,0,0,0,0.367,0 +1,0.619,0.199,0.271,0,0,0,0,0.1,0.0394 +0.667,0.59,0.126,0.159,0,0,0,0,0,0.276 +0.667,0.59,0.142,0.159,0,0,0,0,0,0.276 +0.667,0.601,0.156,0.159,0,0,0,0,0,0.197 +0.667,0.671,0.308,0.274,0,0,0,0,0.367,0.317 +0.667,0.701,0.318,0.291,0,0,0,0,0.1,0.675 +1,0.787,0.551,0.484,0,0,0,0,0,0.22 +1,0.771,0.725,0.619,0,0,0,0,0,0.0927 +1,0.741,0.852,0.783,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0.119 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0.0788 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.365 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0.0788 +1,0.619,0.186,0.279,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.0394 +0.667,0.59,0.126,0.159,0,0,0,0,0,0.236 +0.667,0.59,0.142,0.159,0,0,0,0,0,0.197 +0.667,0.601,0.156,0.159,0,0,0,0,0,0.0788 +1,0.725,0.452,0.386,0,0,0,0,0,0.158 +0.667,0.701,0.318,0.291,0,0,0,0,0.233,0.0788 +1,0.787,0.551,0.484,0.487,0.233,0,0,0,0 +1,0.771,0.725,0.619,0.497,0,0,0,0,0 +1,0.741,0.852,0.783,0.604,0,0,0,0,0.118 +1,0.679,0.786,0.88,0.602,0,0,0,0,0 +1,0.599,0.337,0.415,0.611,0,0,0,0,0 +1,0.568,0.157,0.183,0.525,0,0,0,0,0.18 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.437,0.544,0.233,0.168 +1,0.633,0.0879,0.417,0,0,0.45,0,0,0.0578 +1,0.648,0.108,0.427,0,0,0.335,0,0,0.158 +1,0.648,0.127,0.424,0,0,0.563,0,0,0 +1,0.648,0.143,0.411,0,0,0.604,0,0.233,0.118 +0.667,0.619,0.111,0.279,0.309,0.317,0.673,0,0,0.118 +0.667,0.619,0.117,0.271,0.241,0.167,0,0,0,0.354 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.276 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0394 +0.333,0.616,0.104,0.162,0,0,0.0214,0.0702,0.317,0.0788 +0.333,0.631,0.125,0.17,0,0,0.382,0.474,1,0.158 +1,0.787,0.461,0.484,0.377,0.483,0.347,0,0.333,0 +1,0.771,0.646,0.619,0.583,0,0.45,0,0,0 +1,0.741,0.797,0.783,0.895,0,0.633,0,0,0.172 +1,0.64,0.509,0.603,0,0,0,0,0,0.208 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.0394 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.118 +1,0.57,0.0318,0.143,0,0,0,0,0,0.669 +1,0.633,0.0879,0.417,0,0,0,0,0,0.163 +0.667,0.619,0.077,0.301,0,0,0.0657,0.263,0,0.646 +0.333,0.59,0.053,0.174,0,0,0.538,0,0,0.0788 +0.333,0.59,0.0582,0.17,0,0,0.203,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0394 +0.333,0.59,0.0662,0.16,0,0,0,0,0.817,0.276 +0.667,0.619,0.131,0.269,0,0,0,0,0.117,0.0788 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.158 +0.667,0.64,0.155,0.269,0,0,0.563,0.263,0,0.0394 +0.667,0.671,0.191,0.274,0,0,0.347,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.309 +1,0.787,0.461,0.484,0,0,0,0,0,0.12 +1,0.771,0.646,0.619,0,0,0,0,0.233,0.307 +1,0.741,0.797,0.783,0.707,0.483,0,0,0,0.184 +1,0.64,0.509,0.603,0,0,0,0,0,0.146 +1,0.599,0.31,0.415,0,0,0,0,0,0.525 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.56,0.0157,0.0495,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.093 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.135 +1,0.578,0.0478,0.236,0,0,0,0,0,0.471 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.62 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.158 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0788 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0788 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.315 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0.131,0.263,0,0.197 +0.333,0.616,0.104,0.162,0,0,0,0,0.233,0.0394 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.118 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0.118 +1,0.601,0.262,0.326,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.348 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.502 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.208 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.391 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.118 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0394 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.197 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0.233,0.0394 +0.667,0.701,0.234,0.291,0.379,0.233,0,0,0,0 +0.667,0.712,0.313,0.339,0.468,0,0,0,0.467,0.0394 +1,0.771,0.646,0.619,0.534,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.0394 +0.667,0.64,0.509,0.603,0,0,0.382,0.263,0,0 +0.667,0.599,0.31,0.415,0,0,0.462,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.207 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.513 +1,0.57,0.0318,0.143,0,0,0,0,0,0.693 +1,0.609,0.0639,0.295,0,0,0,0,0,0.169 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0788 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.138 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.143 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.667,0.601,0.0853,0.159,0,0,0,0,0.233,0.0788 +0.667,0.671,0.191,0.274,0,0,0,0,0,0 +1,0.771,0.343,0.412,0.314,0.317,0,0,0,0 +1,0.787,0.461,0.484,0.248,0.917,0.28,0.263,0,0 +1,0.771,0.646,0.619,0,0,0.309,0,0,0.0394 +1,0.741,0.797,0.783,0,0,0,0,0,0.118 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0.1 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0.236 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0.0788 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.197 +0.667,0.59,0.0809,0.174,0.703,0.233,0,0,0,0.236 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0.0788 +0.667,0.59,0.102,0.164,0.777,0.483,0,0,0,0 +0.667,0.59,0.109,0.16,0.715,0,0,0,0,0.197 +0.667,0.619,0.234,0.269,0.0637,0,0,0,0.233,0.236 +0.667,0.619,0.267,0.268,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.371 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.195 +0,0.562,0.0181,0.0495,0,0,0,0,0.233,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0.0788 +1,0.771,0.725,0.619,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0.139 +1,0.679,0.786,0.88,0,0,0,0,0,0.45 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.111 +1,0.619,0.144,0.299,0,0,0,0,0,0.284 +1,0.648,0.246,0.411,0,0,0,0,0,0.196 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.466 +0.667,0.619,0.199,0.271,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0.467,0.197 +1,0.648,0.391,0.378,0,0,0,0,0,0.158 +0.667,0.601,0.156,0.159,0,0,0,0,0,0.0394 +0.667,0.616,0.163,0.162,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0.0394 +0.667,0.637,0.196,0.194,0,0,0,0,0,0.276 +0.667,0.631,0.254,0.239,0,0,0,0,0,0.0788 +1,0.681,0.574,0.538,0,0,0.476,0.263,0,0.0394 +1,0.64,0.53,0.603,0,0,0.251,0,0,0.388 +1,0.617,0.496,0.597,0,0,0,0,0.367,0.139 +1,0.568,0.157,0.183,0,0,0,0,0.333,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.0394 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.236 +1,0.56,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.385 +1,0.578,0.0478,0.236,0,0,0,0,0,0.26 +0.667,0.585,0.0399,0.172,0,0,0,0,0.233,0.158 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.0788 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.118 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.236 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0788 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.317,0.0394 +0.667,0.712,0.313,0.339,0,0,0,0,0.15,0.0394 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0.428,0.317,0,0,0,0.0394 +1,0.64,0.509,0.603,0.314,0.167,0,0,0,0.118 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.119 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.473 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.366 +1,0.635,0.0871,0.402,0,0,0,0,0,0.215 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.318 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.345 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.111 +0.333,0.591,0.0629,0.154,0,0,0,0,0.317,0.236 +0.333,0.591,0.0658,0.15,0,0,0,0,0.15,0.315 +0.333,0.591,0.073,0.149,0,0,0.269,0.333,0,0.276 +0.333,0.591,0.0767,0.149,0,0,0.385,0.193,0.233,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.347 +1,0.728,0.277,0.353,0,0,0,0,0.233,0 +1,0.774,0.34,0.371,0,0,0,0,0,0.0394 +1,0.79,0.457,0.42,0,0,0,0,0,0.141 +0.667,0.704,0.432,0.365,0,0,0.18,0.263,0,0.297 +1,0.683,0.532,0.464,0,0,0.164,0,0,0.258 +1,0.642,0.505,0.549,0,0,0,0,0,0.0903 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.204 +1,0.58,0.0474,0.228,0,0,0,0,0,0.464 +1,0.611,0.0634,0.284,0,0,0,0,0,0.324 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.356 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.241 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.518 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.3 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0.317,0.197 +1,0.774,0.34,0.371,0,0,0,0,0.633,0.315 +1,0.79,0.457,0.42,0,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0,0,0,0,0,0.0394 +1,0.744,0.791,0.671,0,0,0,0,0,0.158 +1,0.642,0.505,0.549,0,0,0,0,0,0.0995 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.154 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.188 +1,0.58,0.0474,0.228,0,0,0,0,0,0.707 +1,0.635,0.0871,0.402,0,0,0,0,0,0.37 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.118 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.673,0.19,0.252,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0.467,0.354 +1,0.714,0.31,0.296,0,0,0,0,0,0.116 +1,0.704,0.432,0.365,0.455,0.567,0,0,0,0.537 +1,0.683,0.532,0.464,0.3,0.65,0,0,0,0.0394 +1,0.602,0.26,0.299,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.328 +1,0.586,0.0396,0.167,0,0,0,0,0,0.214 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.38 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.132 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0788 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0.373,0.317,0,0,0,0.276 +0.333,0.591,0.0767,0.149,0.283,0.167,0,0,0,0.118 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0788 +0.667,0.673,0.19,0.252,0,0,0,0,0.467,0.0788 +1,0.774,0.34,0.371,0.314,0.317,0,0,0,0.158 +1,0.79,0.457,0.42,0.538,0.167,0,0,0,0.0394 +1,0.774,0.64,0.523,0.663,0,0,0,0,0.11 +1,0.744,0.791,0.671,0.476,0,0,0,0,0.241 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0.165 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.45 +1,0.56,0.0208,0.0495,0,0,0,0,0,0.0394 +1,0.56,0.0179,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.29,0.317,0,0,0,0.223 +0.667,0.621,0.143,0.278,0.347,0.4,0,0,0,0.294 +1,0.651,0.244,0.381,0,0,0,0,0,0.678 +1,0.651,0.268,0.364,0,0,0,0,0,0.159 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.147 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.158 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.197 +0.667,0.642,0.291,0.249,0,0,0,0,0.567,0.0788 +0.667,0.673,0.305,0.252,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,1,0.0788 +1,0.79,0.547,0.42,0,0,0,0,1,0.21 +1,0.774,0.719,0.523,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0.483,0.0394 +1,0.642,0.526,0.549,0,0,0,0,0,0.296 +1,0.6,0.334,0.405,0,0,0,0,0,0.0788 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.232 +1,0.56,0.0223,0.0781,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.486 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0.299 +0.333,0.591,0.0934,0.16,0,0,0.11,0.333,0,0.233 +0.667,0.621,0.185,0.259,0,0,0.428,0.193,0,0.315 +0.333,0.591,0.108,0.15,0,0,0.502,0,0,0.236 +0.667,0.591,0.125,0.149,0,0,0.15,0,0,0.118 +0.667,0.591,0.141,0.149,0.12,0.0667,0,0,0,0.207 +0.667,0.602,0.154,0.149,0.717,0.65,0,0,0,0.155 +0.667,0.673,0.305,0.252,0,0,0.0306,0.0702,0.317,0.445 +0.667,0.704,0.315,0.264,0,0,0.0183,1,0.633,0.628 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.0788 +0.667,0.704,0.485,0.365,0,0,0,0,0,0.0394 +0.667,0.683,0.57,0.464,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.233,0.0767 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0.075 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.349 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.108 +1,0.56,0.0236,0.0781,0,0,0,0,0.0667,0.44 +0.667,0.58,0.0474,0.228,0,0,0,0,0.4,0.249 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.216 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.118 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.0394 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0394 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.273 +0,0.562,0.0159,0.0495,0,0,0.272,0.263,0,0.269 +0.333,0.602,0.0846,0.149,0,0,0.295,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0.233,0.0394 +0.333,0.633,0.124,0.157,0,0,0,0,0.233,0.197 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0776 +1,0.774,0.64,0.523,0,0,0,0,0,0.433 +1,0.744,0.791,0.671,0,0,0,0,0,0.109 +1,0.642,0.505,0.549,0,0,0,0,0,0.152 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.141 +1,0.58,0.0474,0.228,0,0,0,0,0,0.406 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.717,0.0788 +0.333,0.591,0.0658,0.15,0,0,0,0,0.233,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.394 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.158 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0394 +0.667,0.617,0.103,0.151,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0.324 +1,0.79,0.457,0.42,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0.0788 +1,0.744,0.791,0.671,0.738,0.233,0,0,0,0 +1,0.682,0.749,0.799,0.497,0.0667,0,0,0,0.299 +1,0.6,0.307,0.405,0.616,0.167,0,0,0.567,0.197 +1,0.569,0.136,0.183,0.237,0,0,0,0.633,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.148 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.196 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.268 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0539 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.318 +1,0.559,0.0314,0.107,0,0,0,0,0,0.277 +0.333,0.571,0.0316,0.139,0.103,0.0667,0,0,0,0 +0.333,0.586,0.0396,0.167,0.625,1,0,0,0,0 +0.333,0.591,0.0462,0.168,0.565,0.15,0,0,0,0.156 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.254 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.205 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.158 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.197 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.315 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.23 +0.667,0.642,0.153,0.249,0,0,0,0,0.0667,0.409 +0.333,0.617,0.103,0.151,0,0,0,0,0.167,0.0788 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.197 +1,0.79,0.457,0.42,0,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0,0,0.11,0.263,0,0 +1,0.744,0.791,0.671,0,0,0.511,0,0,0.0394 +1,0.682,0.749,0.799,0,0,0.379,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.307 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.51 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.0394 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.158 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0.233,0.197 +0.667,0.621,0.116,0.251,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0.0667,0.354 +0.333,0.602,0.0846,0.149,0,0,0,0,0.167,0.0788 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.475 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.236 +1,0.79,0.457,0.42,0,0,0,0,0.233,0.118 +1,0.774,0.64,0.523,0,0,0,0,0,0.386 +1,0.683,0.532,0.464,0,0,0,0,0,0.168 +1,0.602,0.26,0.299,0,0,0,0,0,0.234 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.187 +1,0.56,0.0186,0.0503,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.505 +1,0.589,0.0632,0.317,0,0,0,0,0.233,0.781 +1,0.635,0.0871,0.402,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.474 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.0578 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.118 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.118 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.158 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.0394 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.236 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0394 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.118 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.383 +1,0.602,0.26,0.299,0,0,0,0,0,0.0199 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0798 +1,0.591,0.0636,0.168,0,0,0,0,0,0.0788 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0.315 +1,0.621,0.169,0.27,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0.317,0.0788 +0.333,0.591,0.108,0.15,0,0,0,0,0.4,0.0788 +0.667,0.591,0.125,0.149,0,0,0,0,0,0.158 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.118 +0.667,0.642,0.291,0.249,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.236 +1,0.774,0.464,0.371,0,0,0,0,0,0.0394 +0.667,0.714,0.371,0.296,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.0394 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.073 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.133 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.457 +1,0.58,0.0409,0.228,0,0,0,0,0,0.255 +1,0.611,0.0685,0.284,0,0,0,0,0.233,0.477 +1,0.621,0.109,0.286,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0.243,0.317,0,0,0,0.0788 +0.333,0.591,0.0934,0.16,0.525,0.167,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0.356,0.263,0,0.0788 +0.667,0.621,0.198,0.251,0,0,0.67,0,0,0.357 +0.333,0.591,0.125,0.149,0,0,0.404,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.705,0,0,0.0788 +0.667,0.642,0.291,0.249,0,0,0.63,0,0.467,0.394 +0.667,0.673,0.305,0.252,0,0,0.459,0,0,0.118 +0.667,0.704,0.315,0.264,0,0,0.639,0,0,0.0788 +0.333,0.638,0.194,0.173,0.246,0.317,0.243,0,0,0 +0.667,0.704,0.485,0.365,0.408,0.167,0,0,0,0.0394 +1,0.744,0.845,0.671,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.158 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.197 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.16,0,0,0,0,0.317,0 +0.667,0.621,0.11,0.259,0,0,0,0,0.633,0 +0.667,0.621,0.116,0.251,0,0,0.101,0.0702,0,0.118 +0.667,0.621,0.13,0.249,0,0,0.414,0.193,0,0.433 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0788 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.118 +0.333,0.617,0.103,0.151,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0.467,0.221 +1,0.79,0.457,0.42,0,0,0,0,0,0.322 +1,0.774,0.64,0.523,0,0,0,0,0,0.346 +1,0.744,0.791,0.671,0,0,0,0,0,0.0968 +1,0.602,0.26,0.299,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.506,0.263,0,0.197 +1,0.56,0.0157,0.0495,0,0,0.476,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.302 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0954 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.17 +1,0.621,0.0895,0.278,0,0,0,0,0,0.194 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.449 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.485 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.283 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.527 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.118 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0.0667,0 +0.333,0.633,0.124,0.157,0,0,0,0,0.167,0.354 +1,0.79,0.457,0.42,0.449,0.483,0,0,0,0.0788 +1,0.774,0.64,0.523,0.478,0,0,0,0,0.136 +1,0.744,0.791,0.671,0.729,0,0,0,0.233,0.466 +1,0.642,0.505,0.549,0.466,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0.0394 +1,0.569,0.136,0.183,0,0,0,0,0,0.0719 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0539 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.317,0.325 +1,0.58,0.0474,0.228,0,0,0,0,0.15,0.131 +1,0.635,0.0871,0.402,0,0,0,0,0,0.0394 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0394 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.426 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.168 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.667,0.673,0.19,0.252,0,0,0,0,0.467,0.0788 +0.667,0.704,0.232,0.264,0,0,0,0,0.467,0.0788 +1,0.79,0.457,0.42,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.683,0.532,0.464,0.522,0.817,0,0,0,0.0394 +1,0.642,0.505,0.549,0.672,0.4,0,0,0,0.104 +1,0.581,0.162,0.227,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.259 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.236 +0.667,0.611,0.0634,0.284,0,0,0,0,0.817,0.0788 +0.333,0.591,0.0462,0.168,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,1,0.236 +0.333,0.591,0.0578,0.16,0,0,0,0,1,0.236 +0.333,0.591,0.0629,0.154,0,0,0,0,0.0333,0.118 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.617,0.103,0.151,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.0394 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0.0925,0.0667,0,0,0.717,0.0394 +1,0.744,0.791,0.671,0.621,0.417,0,0,0,0 +1,0.682,0.749,0.799,0.571,0,0,0,0,0.133 +1,0.6,0.307,0.405,0,0,0,0,0,0.213 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.197 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.219 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.154 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.365 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.176 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.163 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.118 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.118 +0.333,0.633,0.124,0.157,0,0,0,0,0.233,0.0394 +0.667,0.714,0.31,0.296,0.461,0.567,0,0,0,0.0394 +1,0.774,0.64,0.523,0.7,0.15,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0.125 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.289 +1,0.591,0.0636,0.168,0,0,0,0,0,0.248 +1,0.621,0.143,0.278,0,0,0,0,0,0.393 +1,0.621,0.169,0.27,0,0,0,0,0,0.177 +1,0.651,0.268,0.364,0,0,0,0,0,0.236 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.278 +1,0.651,0.34,0.349,0,0,0,0,0,0.397 +1,0.651,0.388,0.348,0,0,0,0,0,0.236 +1,0.682,0.427,0.349,0,0,0.427,0.263,0.233,0.158 +1,0.728,0.449,0.353,0,0,0.446,0,0,0.0788 +1,0.774,0.464,0.371,0,0,0.907,0,0,0.0394 +1,0.79,0.547,0.42,0,0,0.497,0,0,0.0394 +1,0.774,0.719,0.523,0,0,0.486,0,0,0.0788 +1,0.744,0.845,0.671,0,0,0.407,0,0.0667,0 +1,0.682,0.78,0.799,0,0,0,0,0.167,0 +1,0.6,0.334,0.405,0,0,0,0,0,0.108 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0667,0.526 +1,0.591,0.0636,0.168,0,0,0,0,0.167,0.0394 +1,0.591,0.0803,0.164,0,0,0,0,0,0.118 +1,0.621,0.169,0.27,0,0,0,0,0,0.0394 +0.667,0.591,0.101,0.154,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.0788 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.236 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.276 +0.333,0.602,0.154,0.149,0,0,0,0,0.233,0.158 +0.667,0.673,0.305,0.252,0.11,0.0667,0.00459,0.263,0,0.236 +1,0.774,0.464,0.371,0.45,0.167,0,0,0,0.0788 +1,0.79,0.547,0.42,0,0,0,0,0,0.0788 +0.667,0.704,0.485,0.365,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0.233,0.0719 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0.0394 +1,0.559,0.0314,0.066,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.118 +1,0.571,0.0316,0.139,0,0,0,0,0,0.0788 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.236 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.362 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.316 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.155 +0.333,0.591,0.073,0.149,0,0,0,0,0.467,0.296 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0788 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.276 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.158 +1,0.79,0.457,0.42,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0.315 +1,0.6,0.307,0.405,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.293 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.221 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0.475 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.231 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.236 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.158 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0394 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.158 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.315 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.582 +0.667,0.714,0.31,0.296,0,0,0,0,0.467,0.0202 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0.0394 +1,0.602,0.26,0.299,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.104 +1,0.559,0.0314,0.107,0,0,0,0,0,0.276 +1,0.589,0.0632,0.317,0,0,0,0,0.233,0.604 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.0913 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.311 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.248 +0.667,0.621,0.0997,0.27,0,0,0,0,0.0667,0.283 +0.667,0.621,0.11,0.259,0,0,0,0,0.4,0.265 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.118 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.158 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.0667,0 +0.333,0.633,0.124,0.157,0,0,0,0,0.167,0.158 +1,0.79,0.457,0.42,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0.0394 +1,0.744,0.791,0.671,0,0,0,0,0,0.0632 +1,0.682,0.749,0.799,0,0,0,0,0,0.298 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0562 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.217 +0.667,0.571,0.0316,0.139,0,0,0.19,0.263,0.717,0.166 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.585 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.297 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.115 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.118 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0394 +0.667,0.673,0.19,0.252,0,0,0,0,0.0667,0.268 +1,0.774,0.34,0.371,0,0,0,0,0.167,0.0394 +1,0.79,0.457,0.42,0,0,0,0,0,0.118 +1,0.774,0.64,0.523,0,0,0,0,0,0.0788 +1,0.744,0.791,0.671,0,0,0,0,0,0.214 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.315 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.142 +1,0.559,0.0213,0.0511,0,0,0,0,0,0.216 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0.474 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.273 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.0394 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.236 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0788 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0.118 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0.0667,0.0394 +1,0.6,0.307,0.405,0,0,0,0,0.167,0.0873 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0573 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.171 +1,0.586,0.0433,0.167,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +0.667,0.591,0.0934,0.16,0,0,0,0,0.567,0.0788 +0.667,0.591,0.101,0.154,0,0,0,0,0.383,0.197 +0.667,0.591,0.108,0.15,0,0,0,0,0,0.197 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.158 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.0394 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.315 +0.667,0.617,0.162,0.151,0,0,0,0,0,0.621 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.417 +0.667,0.714,0.371,0.296,0,0,0,0,0.233,0.197 +0.667,0.704,0.485,0.365,0,0,0,0,0,0.222 +0.667,0.683,0.57,0.464,0,0,0,0,0,0.166 +1,0.682,0.78,0.799,0,0,0,0,0,0.126 +1,0.62,0.492,0.582,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.396,0.317,0,0,0,0 +1,0.562,0.0181,0.0495,0.527,0.167,0,0,0,0.118 +1,0.586,0.0433,0.167,0,0,0,0,0.317,0 +1,0.591,0.0636,0.168,0,0,0.557,0.263,0.15,0.0394 +0.667,0.621,0.143,0.278,0,0,0.252,0,0,0.0788 +0.667,0.621,0.169,0.27,0,0,0.265,0,0,0.0394 +0.667,0.621,0.185,0.259,0,0,0.167,0,0,0.158 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.118 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.197 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.0394 +0.667,0.602,0.154,0.149,0,0,0,0,0.233,0.276 +0.667,0.617,0.162,0.151,0,0,0,0,0,0.315 +1,0.774,0.464,0.371,0,0,0,0,0,0.0788 +1,0.79,0.547,0.42,0.349,0.483,0,0,0,0 +1,0.774,0.719,0.523,0.297,0,0,0,0,0.0394 +1,0.744,0.845,0.671,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0.115 +1,0.6,0.334,0.405,0,0,0,0,0,0.111 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.192 +1,0.571,0.0316,0.139,0,0,0,0,0,0.348 +0.667,0.586,0.0396,0.167,0.791,0.483,0.101,0.0702,0,0.147 +0.667,0.621,0.0764,0.286,0.0855,0,0.312,0.193,0,0.242 +0.333,0.591,0.0527,0.164,0,0,0.453,0,0,0.0394 +0.333,0.591,0.0578,0.16,0,0,0.592,0,0,0.0788 +0.333,0.591,0.0629,0.154,0,0,0.309,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.326,0,0,0.118 +0.333,0.591,0.073,0.149,0,0,0.42,0,0,0.158 +0.333,0.591,0.0767,0.149,0,0,0.586,0,0,0.276 +0.333,0.602,0.0846,0.149,0,0,0.0214,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0.0667,0 +0.667,0.704,0.232,0.264,0,0,0,0,0.167,0.118 +1,0.79,0.457,0.42,0,0,0,0,0,0.0788 +1,0.774,0.64,0.523,0,0,0,0,0,0.0788 +1,0.744,0.791,0.671,0,0,0,0,0,0.0394 +1,0.682,0.749,0.799,0,0,0,0,0,0.251 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.316 +1,0.58,0.0474,0.228,0,0,0,0,0,0.398 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.162 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.591,0.0527,0.164,0,0,0.145,0.333,0,0 +0.333,0.591,0.0578,0.16,0,0,0.255,0.737,0,0.158 +0.667,0.621,0.11,0.259,0,0,0.379,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.424,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0.531,0,0,0.236 +0.333,0.591,0.0767,0.149,0,0,0.277,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0.0489,0.333,0,0.0394 +0.667,0.673,0.19,0.252,0,0,0,0.456,0.233,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.398 +1,0.79,0.457,0.42,0,0,0.41,0.263,0,0.543 +1,0.774,0.64,0.523,0,0,0.101,0,0,0.0394 +1,0.744,0.791,0.671,0,0,0,0,0,0.0394 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.169 +1,0.58,0.0474,0.228,0,0,0,0,0,0.227 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.259 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.158 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.354 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0788 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0788 +0.333,0.617,0.103,0.151,0,0,0,0,0.0667,0.354 +0.333,0.633,0.124,0.157,0,0,0,0,0.167,0.0394 +1,0.79,0.457,0.42,0,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0,0,0,0,0,0.136 +1,0.744,0.791,0.671,0,0,0,0,0.233,0 +1,0.682,0.749,0.799,0.328,0.317,0,0,0,0.139 +1,0.62,0.453,0.582,0.44,0.4,0,0,0,0.0742 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0.0557 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.23 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0.235 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.218 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.163 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.206 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.142 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.504 +0.667,0.704,0.232,0.264,0,0,0,0,0.233,0.385 +1,0.79,0.457,0.42,0,0,0,0,0,0.154 +1,0.774,0.64,0.523,0,0,0,0,0,0.502 +1,0.744,0.791,0.671,0,0,0,0,0,0.355 +1,0.682,0.749,0.799,0,0,0,0,0,0.231 +1,0.6,0.307,0.405,0,0,0,0,0,0.0394 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0394 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.242 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.248 +1,0.54,0.0653,0.277,0,0,0,0,0,0.364 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.289 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.512 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0394 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.118 +1,0.658,0.473,0.384,0,0,0,0,0,0.118 +1,0.645,0.662,0.467,0,0,0,0,0,0.0394 +1,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.538,0.0301,0.136,0,0,0,0,0,0.118 +1,0.54,0.0706,0.277,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0.0667,0 +0.667,0.548,0.147,0.263,0,0,0,0,0.167,0.0788 +0.667,0.548,0.174,0.256,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0.118 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.0394 +0.667,0.548,0.24,0.235,0,0,0,0,0,0.158 +0.667,0.548,0.273,0.235,0,0,0,0,0.233,0.315 +0.667,0.566,0.3,0.235,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0.197,0.263,0,0.315 +1,0.617,0.326,0.247,0,0,0.414,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0.156 +1,0.645,0.743,0.467,0,0,0,0,0,0.0788 +0.667,0.6,0.588,0.413,0,0,0,0,0,0.0801 +1,0.568,0.806,0.726,0,0,0,0,0,0.16 +0.667,0.531,0.345,0.388,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0.118 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0.118 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +1,0.538,0.0301,0.136,0,0,0,0,0,0.158 +1,0.551,0.0444,0.163,0,0,0,0,0,0.158 +1,0.555,0.0654,0.162,0,0,0,0,0,0.158 +1,0.548,0.147,0.263,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0.0788 +1,0.548,0.191,0.245,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0.0394 +1,0.548,0.24,0.235,0,0,0,0,0.233,0.276 +1,0.542,0.401,0.327,0,0,0,0,0,0.587 +1,0.568,0.441,0.328,0,0,0,0,0,0.147 +1,0.606,0.464,0.332,0,0,0,0,0,0.0394 +1,0.645,0.479,0.345,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0.0813 +1,0.645,0.743,0.467,0,0,0,0,0.233,0.0407 +1,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0.639,0.467,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.529,0.0188,0.05,0,0,0,0,0,0.197 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.142 +1,0.514,0.0488,0.222,0,0,0,0,0,0.165 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.0394 +0.667,0.555,0.0473,0.162,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.354 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0394 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.315 +0.667,0.617,0.239,0.247,0.642,0.467,0,0,0,0.315 +0.667,0.626,0.32,0.273,0.649,0.467,0,0,0,0 +1,0.645,0.662,0.467,0.627,0,0,0,0,0.0788 +1,0.619,0.817,0.595,0.129,0,0,0,0,0.118 +1,0.566,0.521,0.501,0,0,0,0,0,0.307 +1,0.531,0.317,0.388,0,0,0,0,0,0.177 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +1,0.529,0.0241,0.0768,0,0,0,0,0.467,0.164 +1,0.514,0.0488,0.222,0,0,0.644,0.263,0.233,0.158 +0.667,0.54,0.0653,0.277,0,0,0.323,0,0,0.0788 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.118 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0394 +0.667,0.591,0.196,0.238,0,0,0,0,0.233,0.0788 +1,0.645,0.351,0.345,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0.0394 +1,0.617,0.446,0.328,0,0,0,0,0.317,0.0394 +1,0.619,0.817,0.595,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0.8,0.502 +1,0.546,0.167,0.219,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.172 +1,0.529,0.0188,0.05,0,0,0,0,0,0.351 +0.667,0.529,0.0241,0.0768,0,0,0,0,0,0.0788 +1,0.514,0.0488,0.222,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0.233,0.303 +0.667,0.548,0.0788,0.274,0.627,0.7,0,0,0,0 +0.333,0.555,0.0541,0.156,0.692,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0.298,0,0,0,0,0.197 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.118 +0.333,0.555,0.0751,0.142,0,0,0.0887,0.263,0,0 +0.667,0.555,0.0789,0.142,0,0,0.242,0,0,0.0394 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0.118 +0.667,0.576,0.106,0.144,0,0,0,0,0.317,0.197 +1,0.645,0.351,0.345,0,0,0,0,0.383,0 +0.667,0.594,0.168,0.161,0,0,0,0,0,0.0788 +1,0.617,0.446,0.328,0,0,0,0,0,0.0394 +0.667,0.581,0.283,0.231,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.325 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.197 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.537 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.375 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0394 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.0788 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.118 +0.667,0.566,0.158,0.235,0,0,0,0,0.233,0.118 +1,0.606,0.286,0.332,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.0394 +1,0.658,0.473,0.384,0,0,0,0,0,0.0788 +1,0.645,0.662,0.467,0,0,0,0,0,0.196 +1,0.619,0.817,0.595,0,0,0,0,0,0.221 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.258 +1,0.529,0.0188,0.05,0,0,0,0,0,0.16 +1,0.529,0.0241,0.0768,0,0,0.0489,0.0702,0,0.337 +0.667,0.538,0.0323,0.136,0.541,0.467,0,0.193,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0.317,0 +0.333,0.555,0.0473,0.162,0,0,0,0,1,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,1,0.136 +0.667,0.548,0.103,0.256,0,0,0,0,0.983,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.0394 +0.333,0.555,0.0676,0.143,0.428,0.467,0,0,0,0.0394 +0.667,0.548,0.134,0.235,0.162,0,0,0,0,0.315 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.591 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0788 +0.667,0.591,0.196,0.238,0,0,0,0,0.467,0 +1,0.645,0.351,0.345,0,0,0,0,0,0.0394 +1,0.658,0.473,0.384,0,0,0.026,0.0702,0,0.0394 +1,0.645,0.662,0.467,0,0,0.593,0.193,0,0.0394 +1,0.619,0.817,0.595,0,0,0.682,0,0,0 +1,0.568,0.774,0.726,0,0,0.498,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0.0738 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0554 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.26 +1,0.538,0.0301,0.136,0,0,0,0,0,0.397 +1,0.54,0.0706,0.277,0,0,0,0,0,0.542 +1,0.548,0.113,0.274,0,0,0,0,0.233,0.421 +1,0.542,0.212,0.37,0,0,0,0,0,0.378 +1,0.542,0.252,0.359,0,0,0,0,0,0.331 +1,0.542,0.277,0.343,0,0,0,0,0,0.282 +1,0.542,0.297,0.331,0,0,0,0,0,0.191 +0.667,0.548,0.24,0.235,0,0,0,0,0,0.513 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.693 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.0788 +0.333,0.576,0.167,0.144,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +0.667,0.594,0.2,0.161,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0.492,0.263,0.233,0.158 +1,0.619,0.873,0.595,0,0,0,0,0,0.118 +1,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0.0443,0.0702,0.233,0.0788 +1,0.548,0.147,0.263,0,0,0.781,0.193,0,0.118 +1,0.542,0.252,0.359,0,0,0.365,0,0,0.197 +1,0.542,0.277,0.343,0,0,0.645,0,0,0.0788 +1,0.542,0.297,0.331,0,0,0.451,0,0,0.118 +1,0.542,0.351,0.328,0,0,0.243,0,0,0.0394 +1,0.542,0.401,0.327,0,0,0.177,0,0,0.0394 +1,0.568,0.441,0.328,0,0,0,0,0,0.0394 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.0394 +1,0.645,0.479,0.345,0,0,0,0,0,0.118 +1,0.658,0.565,0.384,0,0,0,0,0.0667,0.0394 +1,0.645,0.743,0.467,0,0,0,0,0.867,0.197 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.158 +1,0.529,0.0241,0.0768,0,0,0.304,0.263,0,0.236 +1,0.538,0.0323,0.136,0,0,0.424,0,0,0.236 +1,0.54,0.0653,0.277,0,0,0.433,0,0,0.345 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.17 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.334 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.551 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.217 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.281 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0816 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0802 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0.0788 +0.667,0.576,0.106,0.144,0,0,0,0,0,0.0788 +1,0.617,0.239,0.247,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0.0788 +1,0.617,0.446,0.328,0,0,0,0,0,0.0394 +1,0.6,0.55,0.413,0,0,0,0,0,0.0394 +1,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.231 +1,0.529,0.0188,0.05,0,0,0,0,0,0.431 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.197 +1,0.538,0.0323,0.136,0,0,0,0,0,0.111 +0.667,0.562,0.0159,0.0495,0,0,0.335,0.263,0,0.163 +0.667,0.548,0.0788,0.274,0,0,0.581,0,0,0.236 +0.667,0.548,0.0923,0.263,0,0,0.44,0,0,0.236 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0394 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.197 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.158 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0394 +0.667,0.591,0.196,0.238,0,0,0,0,0.233,0.123 +1,0.645,0.351,0.345,0.164,0.0667,0,0,0,0.173 +1,0.658,0.473,0.384,0.164,0.4,0,0,0.317,0.307 +1,0.645,0.662,0.467,0,0,0,0,0.617,0.171 +1,0.619,0.817,0.595,0,0,0,0,0,0.285 +0.667,0.564,0.269,0.275,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.216 +1,0.538,0.0323,0.136,0,0,0,0,0,0.373 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.0391 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.276 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0788 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0.233,0.236 +0.667,0.617,0.239,0.247,0.396,0.467,0,0,0,0.0788 +0.667,0.626,0.32,0.273,0.284,0,0,0,0.233,0.0788 +1,0.645,0.662,0.467,0,0,0,0,0,0.118 +1,0.619,0.817,0.595,0,0,0,0,0,0.0754 +1,0.568,0.774,0.726,0,0,0,0,0,0.516 +1,0.516,0.468,0.557,0,0,0,0,0,0.292 +1,0.533,0.0781,0.116,0,0,0,0,0,0.242 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.567,0.194 +1,0.514,0.0488,0.222,0,0,0,0,0.617,0.274 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0.122 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.253 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.281 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.118 +0.667,0.548,0.119,0.237,0,0,0.0183,0.0702,0,0.118 +0.667,0.548,0.134,0.235,0,0,0.65,0.456,0,0.118 +0.667,0.548,0.142,0.235,0,0,0.573,0,0.233,0.378 +1,0.568,0.23,0.328,0,0,0.754,0,0,0.0394 +1,0.606,0.286,0.332,0,0,0,0,0,0.394 +0.667,0.589,0.128,0.148,0,0,0,0,0.233,0.197 +1,0.626,0.32,0.273,0.12,0.0667,0,0,0,0.0788 +1,0.617,0.446,0.328,0.401,0.4,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0.233,0.0778 +1,0.566,0.521,0.501,0,0,0,0,0,0.272 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0394 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.124 +0.667,0.548,0.0788,0.274,0,0,0.529,0.263,0,0.16 +0.333,0.555,0.0541,0.156,0,0,0.431,0,0,0.433 +0.333,0.555,0.0593,0.153,0,0,0.511,0,0,0.315 +0.333,0.555,0.0646,0.147,0,0,0.491,0,0,0.0788 +0.333,0.555,0.0676,0.143,0,0,0.462,0,0,0.118 +0.333,0.555,0.0751,0.142,0,0,0.422,0,0,0.197 +0.333,0.555,0.0789,0.142,0,0,0.32,0,0,0.153 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.274 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0788 +1,0.645,0.351,0.345,0,0,0,0,0,0.0788 +1,0.658,0.473,0.384,0,0,0,0,0,0.198 +1,0.645,0.662,0.467,0,0,0,0,0,0.3 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.176 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.529,0.0226,0.0768,0,0,0,0,0.233,0.0788 +1,0.538,0.0301,0.136,0,0,0,0,0,0.197 +1,0.551,0.0444,0.163,0,0,0,0,0,0.197 +1,0.555,0.0654,0.162,0,0,0.131,0.263,0.233,0.275 +1,0.555,0.0826,0.156,0,0,0.0917,0,0,0.345 +1,0.542,0.252,0.359,0,0,0,0,0,0.314 +1,0.542,0.277,0.343,0,0,0,0,0,0.445 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.272 +0.667,0.548,0.24,0.235,0.283,0.233,0,0,0,0.0788 +0.667,0.548,0.273,0.235,0.613,0,0,0,0,0.0394 +0.667,0.566,0.3,0.235,0.386,0,0,0,0.567,0.118 +0.667,0.591,0.315,0.238,0,0,0,0,0.133,0 +1,0.617,0.326,0.247,0,0,0,0,0,0.0394 +1,0.626,0.383,0.273,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.568,0.806,0.726,0.37,0.467,0,0,0,0 +1,0.516,0.509,0.557,0.558,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.551,0.0444,0.163,0,0,0,0,0,0.197 +1,0.555,0.0654,0.162,0,0,0,0,0,0.118 +1,0.548,0.147,0.263,0,0,0,0,0.233,0.0394 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0.315 +1,0.548,0.191,0.245,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0.0788 +0.667,0.555,0.129,0.142,0,0,0,0,0,0.118 +0.667,0.555,0.146,0.142,0,0,0,0,0.0667,0.0394 +0.333,0.564,0.159,0.142,0,0,0,0,0.167,0.0394 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.276 +0.333,0.589,0.172,0.148,0,0,0,0,0,0.315 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.158 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.0394 +1,0.619,0.873,0.595,0,0,0,0,0,0.197 +1,0.566,0.543,0.501,0,0,0,0,0,0.128 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0.159 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.491 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0788 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.0394 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.0788 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.175 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.171 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0788 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.315 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.236 +0.333,0.576,0.106,0.144,0,0,0,0,0.317,0.158 +0.667,0.617,0.239,0.247,0,0,0,0,0.383,0.0788 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.197 +1,0.645,0.662,0.467,0.433,0.233,0,0,0,0.0802 +0.667,0.6,0.55,0.413,0.23,0,0,0,0,0.221 +1,0.568,0.774,0.726,0,0,0,0,0,0.235 +1,0.531,0.317,0.388,0,0,0,0,0,0.145 +1,0.533,0.0781,0.116,0,0,0,0,0,0.118 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0394 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.189 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.456 +1,0.529,0.0241,0.0768,0,0,0,0,0.233,0.405 +1,0.514,0.0488,0.222,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.158 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.276 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0394 +1,0.606,0.286,0.332,0,0,0,0,0,0.3 +0.667,0.617,0.239,0.247,0,0,0,0,0.233,0.363 +1,0.658,0.473,0.384,0,0,0,0,0,0.0394 +1,0.645,0.662,0.467,0,0,0,0,0,0.12 +1,0.619,0.817,0.595,0,0,0,0,0,0.209 +1,0.566,0.521,0.501,0,0,0,0,0,0.364 +1,0.546,0.167,0.219,0,0,0,0,0,0.463 +1,0.533,0.0781,0.116,0,0,0,0,0,0.222 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.638 +1,0.54,0.0653,0.277,0,0,0,0,0,0.188 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.226 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.338 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.158 +0.333,0.555,0.0751,0.142,0,0,0.199,0.333,0,0.118 +0.333,0.555,0.0789,0.142,0,0,0.673,0.193,0,0.197 +0.333,0.564,0.0871,0.142,0,0,0.59,0,0.233,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.118 +1,0.645,0.351,0.345,0.222,0.317,0,0,0,0.0788 +1,0.658,0.473,0.384,0.663,0.617,0.00917,0.0702,0,0.158 +1,0.645,0.662,0.467,0.394,0,0.667,0.193,0,0.118 +1,0.6,0.55,0.413,0,0,0,0,0,0.0719 +1,0.564,0.269,0.275,0,0,0,0,0,0.0394 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0394 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0.197 +1,0.529,0.0158,0.0495,0,0,0,0,0.233,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.544 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.322 +1,0.514,0.0488,0.222,0,0,0,0,0.0667,0.134 +0.667,0.551,0.0406,0.163,0,0,0,0,0.167,0.0788 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.163 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.187 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.252 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.197 +1,0.658,0.473,0.384,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0.0394 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.338 +1,0.514,0.0488,0.222,0,0,0,0,0,0.408 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0.333 +0.667,0.548,0.0788,0.274,0,0,0.768,0.263,0,0.778 +0.667,0.548,0.0923,0.263,0,0,0.541,0,0,0.262 +0.667,0.548,0.103,0.256,0,0,0.638,0,0,0.197 +0.333,0.555,0.0646,0.147,0,0,0.378,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.453,0,0,0.0788 +0.333,0.555,0.0751,0.142,0,0,0.754,0,0,0.197 +0.333,0.555,0.0789,0.142,0,0,0.335,0,0,0.197 +0.333,0.564,0.0871,0.142,0,0,0,0,0.0667,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.167,0.118 +1,0.645,0.351,0.345,0.134,0.0667,0,0,0,0.197 +1,0.658,0.473,0.384,0.585,0.4,0,0,0,0.182 +1,0.645,0.662,0.467,0,0,0,0,0.467,0 +1,0.619,0.817,0.595,0.435,0.467,0,0,0,0.158 +1,0.564,0.269,0.275,0.209,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.124 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.455 +1,0.548,0.174,0.256,0,0,0,0,0,0.0202 +1,0.542,0.277,0.343,0,0,0,0,0,0.197 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.0394 +1,0.542,0.351,0.328,0,0,0,0,0,0.276 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.0394 +0.667,0.564,0.159,0.142,0,0,0,0,0.233,0.354 +0.667,0.576,0.167,0.144,0,0,0,0,0,0.0788 +0.667,0.589,0.172,0.148,0,0,0,0,0,0.118 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.236 +1,0.645,0.743,0.467,0,0,0,0,0,0.184 +1,0.619,0.873,0.595,0,0,0,0,0,0.0164 +1,0.568,0.806,0.726,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +1,0.551,0.0444,0.163,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.111 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.381 +1,0.542,0.252,0.359,0,0,0,0,0,0.425 +1,0.542,0.277,0.343,0,0,0,0,0,0.213 +1,0.542,0.297,0.331,0,0,0,0,0,0.302 +1,0.542,0.351,0.328,0,0,0,0,0,0.638 +1,0.542,0.401,0.327,0,0,0,0,0,0.197 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.236 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.288 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.158 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.0394 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0.0788 +0.667,0.566,0.543,0.501,0.611,0.817,0,0,0,0 +1,0.516,0.509,0.557,0.246,0.117,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.313,0.263,0,0.455 +1,0.514,0.0488,0.222,0,0,0.673,0,0.233,0.438 +1,0.529,0.09,0.39,0,0,0.485,0,0,0.334 +1,0.542,0.11,0.387,0,0,0.546,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.722,0,0,0.0394 +0.667,0.548,0.103,0.256,0,0,0.424,0,0,0.0788 +0.667,0.548,0.113,0.245,0,0,0.639,0,0,0.0394 +0.667,0.548,0.119,0.237,0,0,0.445,0,0.233,0.0788 +0.667,0.548,0.134,0.235,0,0,0.661,0,0,0.0394 +0.667,0.548,0.142,0.235,0,0,0.379,0,0,0.165 +1,0.568,0.23,0.328,0,0,0.699,0,0,0.3 +0.667,0.591,0.196,0.238,0,0,0.44,0,0,0.0394 +1,0.617,0.239,0.247,0,0,0,0,0,0.0788 +1,0.626,0.32,0.273,0,0,0,0,0,0.158 +1,0.617,0.446,0.328,0,0,0,0,0,0.0394 +1,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.418 +1,0.514,0.0488,0.222,0,0,0,0,0,0.417 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.239 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.25 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.518 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0757 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.438 +0.333,0.555,0.0751,0.142,0,0,0.361,0.263,0,0.158 +0.333,0.555,0.0789,0.142,0,0,0.381,0,0,0.158 +0.333,0.564,0.0871,0.142,0,0,0.419,0,0,0.0788 +0.333,0.576,0.106,0.144,0,0,0.402,0,0.233,0.0394 +0.667,0.617,0.239,0.247,0,0,0.306,0,0,0.0788 +0.667,0.626,0.32,0.273,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.118 +0.667,0.6,0.55,0.413,0,0,0,0,0.0667,0.0394 +0.667,0.564,0.269,0.275,0,0,0,0,0.4,0.0893 +1,0.531,0.317,0.388,0,0,0,0,0,0.207 +1,0.533,0.0781,0.116,0,0,0,0,0,0.301 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.272,0.317,0,0,0.233,0.192 +1,0.529,0.0241,0.0768,0.595,0.383,0,0,0,0.527 +1,0.514,0.0488,0.222,0,0,0,0,0,0.184 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.0394 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.118 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.276 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0788 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.238 +1,0.606,0.286,0.332,0,0,0,0,0,0.31 +1,0.645,0.351,0.345,0.211,0.317,0,0,0,0 +1,0.658,0.473,0.384,0.906,0.617,0,0,0.233,0.0788 +1,0.645,0.662,0.467,0.766,0,0.688,0.526,0,0 +1,0.619,0.817,0.595,0,0,0.502,0,0,0.0788 +1,0.568,0.774,0.726,0,0,0.373,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.311 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0968 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.136 +1,0.529,0.0241,0.0768,0,0,0,0,0.233,0.159 +1,0.538,0.0323,0.136,0,0,0,0,0,0.373 +1,0.54,0.0653,0.277,0,0,0,0,0,0.849 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.553 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.548,0.113,0.245,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.197 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.169 +0.667,0.566,0.158,0.235,0,0,0,0,0.0667,0.0788 +0.667,0.591,0.196,0.238,0,0,0,0,0.167,0.0394 +1,0.645,0.351,0.345,0,0,0,0,0,0.118 +1,0.658,0.473,0.384,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0.315 +1,0.566,0.521,0.501,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.275 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.282 +1,0.514,0.0488,0.222,0,0,0,0,0,0.285 +1,0.54,0.0653,0.277,0,0,0,0,0,0.38 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.158 +0.333,0.555,0.0541,0.156,0,0,0,0,0.317,0.223 +0.333,0.555,0.0593,0.153,0,0,0,0,0.15,0.0788 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.333,0.576,0.106,0.144,0,0,0.538,0.263,0,0.276 +0.667,0.617,0.239,0.247,0,0,0.76,0,0,0.354 +1,0.658,0.473,0.384,0,0,0.668,0,0,0.0394 +1,0.645,0.662,0.467,0,0,0.213,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0.404 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.351 +1,0.548,0.174,0.256,0,0,0.22,0.263,0,0.232 +1,0.542,0.277,0.343,0,0,0.309,0,0,0.332 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.118 +0.667,0.548,0.24,0.235,0,0,0,0,0,0.0394 +0.667,0.555,0.146,0.142,0,0,0,0,0,0.118 +1,0.568,0.441,0.328,0,0,0,0,0,0.118 +1,0.606,0.464,0.332,0,0,0,0,0,0.118 +1,0.645,0.479,0.345,0,0,0,0,0,0.0788 +1,0.658,0.565,0.384,0,0,0,0,0,0.0788 +0.667,0.589,0.26,0.189,0,0,0,0,0,0.118 +0.667,0.581,0.303,0.231,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.252 +1,0.528,0.0226,0.0763,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.118 +0.667,0.554,0.0828,0.154,0,0,0,0,0.15,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.0833,0.197 +0.667,0.554,0.105,0.145,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0.197 +0.667,0.554,0.129,0.14,0,0,0,0,0,0.0394 +0.667,0.554,0.146,0.14,0,0,0,0,0,0.118 +0.667,0.562,0.16,0.14,0.609,0.45,0,0,0,0.0788 +0.667,0.588,0.316,0.233,0.841,0,0,0,0.4,0.276 +1,0.64,0.481,0.338,0.818,0,0,0,0.0667,0.0788 +0.667,0.623,0.384,0.268,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0.117 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.0394 +1,0.528,0.0158,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.221 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.181 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.165 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.276 +0.667,0.546,0.0926,0.258,0,0,0.0887,0.0702,0,0.0394 +0.333,0.554,0.0595,0.15,0,0,0.664,0.474,0,0.0788 +0.333,0.554,0.0648,0.145,0,0,0.159,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0788 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.315 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.0775 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.421 +1,0.64,0.352,0.338,0,0,0.0443,0.0702,0.233,0 +1,0.653,0.474,0.377,0,0,0.448,0.193,0,0.301 +1,0.64,0.664,0.461,0,0,0.138,0,0,0.13 +1,0.615,0.82,0.59,0,0,0,0,0,0.74 +1,0.563,0.523,0.496,0,0,0,0,0,0.187 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0.118 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.198 +1,0.528,0.0241,0.0578,0,0,0,0,0,0.0185 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.559 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.118 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0394 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.118 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.168 +0.333,0.575,0.106,0.141,0.45,0.45,0,0,0,0.146 +1,0.64,0.352,0.338,0.288,0,0,0,0.233,0 +1,0.653,0.474,0.377,0,0,0,0,0,0.235 +1,0.64,0.664,0.461,0,0,0.662,0.263,0,0.241 +1,0.615,0.82,0.59,0,0,0.76,0,0,0.39 +1,0.563,0.523,0.496,0,0,0.471,0,0,0.253 +1,0.529,0.318,0.386,0,0,0.216,0,0,0 +1,0.532,0.0783,0.116,0,0,0.131,0,0,0.158 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.292 +1,0.512,0.0489,0.22,0,0,0,0,0,0.434 +0.667,0.549,0.0407,0.162,0,0,0,0,0.233,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.0394 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.197 +0.333,0.554,0.0678,0.141,0,0,0.419,0.333,0,0.118 +0.667,0.546,0.135,0.23,0,0,0.512,0.211,0,0.197 +0.667,0.546,0.142,0.23,0,0,0.476,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.18,0,0.233,0.118 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.291 +1,0.64,0.352,0.338,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.197 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.55 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.0394 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.0788 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.0788 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0788 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0394 +0.333,0.554,0.0753,0.14,0,0,0.541,0.263,0,0.118 +0.333,0.554,0.0791,0.14,0,0,0.787,0,0,0.0394 +0.333,0.562,0.0873,0.14,0,0,0.19,0,0.317,0 +0.667,0.588,0.196,0.233,0,0,0,0,0.15,0.354 +1,0.64,0.352,0.338,0,0,0,0,0,0.197 +1,0.653,0.474,0.377,0.485,0.217,0,0,0,0.197 +1,0.64,0.664,0.461,0.33,0,0,0,0,0.0788 +1,0.615,0.82,0.59,0.141,0.0667,0,0,0,0.0394 +1,0.562,0.269,0.273,0.443,0.383,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0.108 +1,0.532,0.0783,0.116,0,0,0,0,0,0.137 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.248 +1,0.528,0.0241,0.0763,0,0,0,0,0.233,0.236 +0.667,0.537,0.0324,0.135,0,0,0,0,0.233,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.0788 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.0788 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.236 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0804 +0.333,0.554,0.0648,0.145,0,0,0,0,0.317,0.257 +0.667,0.546,0.12,0.232,0.766,0.217,0,0,0.15,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.236 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.158 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.49 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.235 +1,0.64,0.352,0.338,0,0,0,0,0,0.0788 +1,0.653,0.474,0.377,0.295,0.317,0,0,0,0 +1,0.64,0.664,0.461,0.494,0.133,0,0,0,0 +1,0.615,0.82,0.59,0.49,0,0,0,0,0.0789 +1,0.563,0.777,0.72,0.55,0,0,0,0,0.158 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.549,0.0444,0.162,0,0,0,0,0,0.451 +1,0.554,0.0655,0.16,0,0,0,0,0.233,0.246 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.0394 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.0394 +0.667,0.546,0.191,0.24,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.276 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.197 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.315 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.0394 +0,0.562,0.0181,0.0495,0,0,0,0,0.4,0 +0.667,0.614,0.327,0.242,0,0,0,0,0.0667,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0.236 +0.667,0.614,0.503,0.324,0,0,0,0,0,0.197 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0.368 +1,0.512,0.51,0.554,0,0,0,0,0,0.0695 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0.0394 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0.197 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.197 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.422 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.099 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.118 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.118 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.0394 +0.667,0.546,0.274,0.23,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.118 +0.667,0.575,0.167,0.141,0,0,0,0,0,0.0394 +1,0.588,0.172,0.146,0,0,0,0,0,0.158 +1,0.592,0.201,0.159,0,0,0,0,0,0.197 +1,0.588,0.26,0.187,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0.449 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.271 +1,0.512,0.0489,0.22,0,0,0,0,0.233,0.212 +1,0.537,0.0655,0.274,0,0,0,0,0,0.322 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.138 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.118 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.118 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.197 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.169 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.133 +1,0.653,0.474,0.377,0,0,0,0,0,0.197 +1,0.64,0.664,0.461,0,0,0,0,0,0.0394 +1,0.615,0.82,0.59,0,0,0,0,0,0.0394 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0.236 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0394 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.293 +1,0.528,0.0241,0.0763,0,0,0.506,0.263,0,0.23 +1,0.512,0.0489,0.22,0,0,0.28,0,0,0.412 +1,0.537,0.0655,0.274,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +0.333,0.575,0.106,0.141,0.168,0.0667,0,0,0,0.315 +0.333,0.588,0.128,0.146,0.475,0.15,0,0,0,0.197 +1,0.653,0.474,0.377,0.628,0,0,0,0,0.118 +1,0.64,0.664,0.461,0.796,0,0,0,0,0.118 +1,0.615,0.82,0.59,0.225,0,0,0,0,0.118 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0738 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.208 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.173 +1,0.537,0.0324,0.135,0,0,0,0,0,0.365 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.12 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0788 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0.233,0.197 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.276 +1,0.64,0.352,0.338,0.578,0.45,0,0,0,0.0788 +1,0.653,0.474,0.377,0.154,0,0,0,0,0.589 +1,0.64,0.664,0.461,0,0,0,0,0,0.606 +1,0.615,0.82,0.59,0,0,0,0,0,0.216 +1,0.563,0.523,0.496,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.32 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.185 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.16 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.197 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.0788 +0.667,0.554,0.0791,0.14,0,0,0.119,0.263,0,0.118 +0.333,0.562,0.0873,0.14,0,0,0.384,0,0,0.0788 +0.667,0.588,0.196,0.233,0,0,0.309,0,0,0.118 +0.667,0.614,0.24,0.242,0,0,0.488,0,0,0.45 +1,0.653,0.474,0.377,0,0,0.78,0,0,0.0545 +1,0.64,0.664,0.461,0,0,0.612,0,0,0 +1,0.615,0.82,0.59,0,0,0.37,0,0,0 +1,0.563,0.523,0.496,0,0,0.864,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.865 +1,0.512,0.0489,0.22,0,0,0,0,0,0.303 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.0631 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.0138,0.0702,0,0.0788 +0.333,0.554,0.0595,0.15,0,0,0.665,0.193,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0.419,0,0.233,0.0788 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.473 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0394 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0394 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.236 +1,0.64,0.352,0.338,0,0,0,0,0,0.0394 +1,0.653,0.474,0.377,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.295 +1,0.563,0.777,0.72,0,0,0,0,0,0.132 +1,0.545,0.167,0.218,0,0,0,0,0,0.332 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.274 +1,0.528,0.0226,0.0763,0,0,0,0,0,0.326 +1,0.537,0.0302,0.135,0,0,0,0,0,0.414 +1,0.549,0.0444,0.162,0,0,0,0,0.233,0.248 +1,0.546,0.113,0.27,0,0,0,0,0,0.233 +1,0.546,0.148,0.258,0,0,0,0,0,0.275 +1,0.538,0.253,0.351,0,0,0,0,0,0.122 +0.667,0.546,0.191,0.24,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.0788 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.197 +0.333,0.554,0.146,0.14,0,0,0,0,0.15,0.236 +0.667,0.563,0.301,0.23,0,0,0,0,0.317,0.0788 +1,0.602,0.465,0.324,0,0,0,0,0,0.197 +1,0.64,0.481,0.338,0,0,0,0,0,0.0788 +1,0.653,0.567,0.377,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0.197 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0907 +1,0.549,0.0444,0.162,0.492,0.65,0,0,0,0.491 +1,0.546,0.113,0.27,0.333,0.483,0,0,0,0.497 +0.667,0.546,0.148,0.258,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.0394 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.158 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.0788 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.0788 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.0788 +0.667,0.562,0.16,0.14,0,0,0,0,0.4,0.118 +1,0.602,0.465,0.324,0,0,0,0,0.0667,0.118 +1,0.64,0.481,0.338,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0.344 +1,0.64,0.745,0.461,0,0,0,0,0,0.0961 +1,0.597,0.59,0.41,0,0,0,0,0,0.475 +1,0.563,0.545,0.496,0,0,0,0,0,0.0818 +1,0.529,0.346,0.386,0,0,0,0,0,0.199 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.186 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.528,0.0158,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.442 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.315 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.236 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.158 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0788 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.236 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0788 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.118 +1,0.602,0.287,0.324,0,0,0,0,0.233,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.255 +1,0.653,0.474,0.377,0,0,0,0,0,0.32 +1,0.64,0.664,0.461,0,0,0,0,0,0.0788 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0.14 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.152 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.392 +1,0.495,0.0324,0.103,0,0,0,0,0,0.217 +1,0.512,0.0489,0.22,0,0,0,0,0,0.0634 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.317,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0.617,0.118 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0394 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.118 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.433 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.158 +0.333,0.575,0.106,0.141,0,0,0,0,0.0667,0.0788 +0.667,0.614,0.24,0.242,0,0,0,0,0.167,0 +1,0.653,0.474,0.377,0.379,0.45,0,0,0,0.276 +1,0.64,0.664,0.461,0.469,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0896 +1,0.537,0.0324,0.135,0,0,0,0,0,0.381 +1,0.549,0.0407,0.162,0,0,0,0,0,0.335 +0.667,0.554,0.0475,0.16,0,0,0,0,0.567,0.402 +0.333,0.554,0.0542,0.154,0,0,0,0,0.367,0.0394 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.276 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0394 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.197 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.236 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0394 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0394 +0.333,0.575,0.106,0.141,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0.317,0 +0.667,0.623,0.321,0.268,0,0,0,0,0.383,0.499 +1,0.64,0.664,0.461,0,0,0,0,0,0.284 +1,0.615,0.82,0.59,0,0,0,0,0,0.0351 +1,0.563,0.777,0.72,0,0,0,0,0,0.151 +1,0.529,0.318,0.386,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.306 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.401 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0711 +0,0.562,0.0159,0.0495,0,0,0,0,0.817,0.114 +0.667,0.546,0.12,0.232,0,0,0,0,0.35,0.158 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0788 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.315 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.118 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.158 +0.333,0.588,0.128,0.146,0,0,0,0,0.233,0.118 +1,0.653,0.474,0.377,0,0,0,0,0,0.416 +1,0.64,0.664,0.461,0.201,0.0667,0,0,0,0.457 +0.667,0.597,0.552,0.41,0.637,1,0,0,0,0 +0.667,0.563,0.523,0.496,0,0.983,0,0,0,0.242 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0841,0.0702,0,0 +1,0.562,0.0159,0.0495,0,0,0.497,0.193,0,0.236 +1,0.528,0.0241,0.0763,0,0,0.304,0,0,0.158 +1,0.537,0.0324,0.135,0,0,0.216,0,0,0.264 +1,0.537,0.0655,0.274,0,0,0,0,0,0.291 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.156 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.214 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.102 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0788 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0788 +0.333,0.554,0.0791,0.14,0,0,0.133,0.263,0,0.197 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.0788 +1,0.602,0.287,0.324,0,0,0,0,0.233,0.197 +1,0.64,0.352,0.338,0,0,0,0,0,0.158 +1,0.653,0.474,0.377,0,0,0,0,0,0.108 +1,0.64,0.664,0.461,0,0,0,0,0,0.336 +1,0.615,0.82,0.59,0,0,0,0,0,0.0394 +1,0.563,0.523,0.496,0,0,0,0,0,0.0975 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.4,0 +1,0.546,0.113,0.27,0,0,0.237,0.158,0.533,0.0394 +1,0.546,0.148,0.258,0,0,0.651,0.386,0,0.118 +0.667,0.546,0.175,0.25,0,0,0.317,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.317,0,0,0.0788 +0.667,0.546,0.205,0.232,0.723,0.9,0,0,0,0.551 +0.333,0.554,0.129,0.14,0.693,0.233,0,0,0,0.197 +0.667,0.546,0.274,0.23,0.497,0,0.462,0.263,0,0.276 +0.667,0.563,0.301,0.23,0,0,0.563,0,0,0.197 +1,0.602,0.465,0.324,0,0,0.312,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0.249 +1,0.64,0.745,0.461,0,0,0,0,0,0.108 +0.667,0.597,0.59,0.41,0,0,0,0,0,0.128 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0.118 +1,0.528,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.237 +1,0.546,0.148,0.258,0,0,0,0,0.233,0.256 +1,0.538,0.253,0.351,0,0,0,0,0,0.236 +0.667,0.546,0.191,0.24,0,0,0,0,0.15,0.236 +0.333,0.554,0.111,0.141,0,0,0,0,1,0.236 +1,0.538,0.352,0.32,0,0,0.546,0.263,0.0167,0 +1,0.538,0.402,0.32,0,0,0.437,0,0,0.118 +1,0.563,0.443,0.321,0,0,0.159,0,0,0.118 +1,0.602,0.465,0.324,0,0,0,0,0.233,0 +1,0.64,0.481,0.338,0,0,0,0,0,0.276 +1,0.653,0.567,0.377,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0.0788 +0.667,0.545,0.182,0.218,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0.118 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.0394 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.0394 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.118 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.0788 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.263 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.195 +0.667,0.537,0.0655,0.274,0,0,0,0,0.317,0.254 +0.333,0.554,0.0475,0.16,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0.317,0.0394 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0394 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0394 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.197 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.236 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0.0788 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.537,0.0324,0.135,0,0,0,0,0,0.711 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.224 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.118 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.276 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.276 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0.19,0.317,0,0,0,0.197 +0.667,0.614,0.448,0.324,0.592,0.133,0,0,0,0.475 +1,0.615,0.82,0.59,0,0,0,0,0,0.279 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0954 +1,0.537,0.0324,0.135,0,0,0,0,0,0.237 +1,0.537,0.0655,0.274,0,0,0,0,0,0.747 +1,0.538,0.111,0.381,0,0,0,0,0,0.338 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.222 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.236 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.118 +0.333,0.562,0.0873,0.14,0,0,0,0,0.233,0.118 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.0788 +1,0.64,0.352,0.338,0.143,0.0667,0,0,0,0.0394 +1,0.623,0.321,0.268,0.639,0.85,0,0,0,0.0788 +1,0.64,0.664,0.461,0.604,0,0,0,0,0.0394 +1,0.615,0.82,0.59,0.682,0,0,0,0,0.0394 +1,0.563,0.777,0.72,0.658,0,0,0,0,0.0743 +1,0.545,0.167,0.218,0.201,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.403 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.25 +1,0.495,0.0324,0.103,0,0,0,0,0,0.364 +1,0.512,0.0489,0.22,0,0,0,0,0,0.296 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.214 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.427 +0.333,0.554,0.0542,0.154,0.312,0.317,0,0,0,0.0788 +0.333,0.554,0.0595,0.15,0.253,0.133,0.518,0.263,0,0.0788 +0.667,0.546,0.114,0.24,0,0,0.65,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.621,0,0.233,0.236 +0.667,0.546,0.135,0.23,0,0,0.83,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.199,0,0,0.0788 +0.667,0.563,0.159,0.23,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0.237,0.217,0,0,0,0.175 +1,0.653,0.474,0.377,1,0,0,0,0,0.41 +1,0.64,0.664,0.461,0.435,0,0,0,0.233,0.101 +1,0.615,0.82,0.59,0,0,0,0,0,0.185 +1,0.563,0.523,0.496,0,0,0,0,0,0.118 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.495,0.0218,0.0504,0,0,0,0,0,0.37 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0.549 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.411 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0788 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0788 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.158 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.118 +1,0.563,0.23,0.321,0,0,0,0,0,0.236 +0.667,0.588,0.196,0.233,0,0,0,0,0.317,0.315 +0.667,0.614,0.24,0.242,0,0,0,0,0.383,0 +0.667,0.623,0.321,0.268,0,0,0,0,0.0667,0 +0.667,0.614,0.448,0.324,0,0,0,0,0.867,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0.233,0.0394 +1,0.495,0.0271,0.103,0,0,0,0,0,0.0788 +1,0.512,0.0422,0.22,0,0,0,0,0,0.158 +0.667,0.549,0.0444,0.162,0,0,0,0,0.233,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.0394 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.245 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.0951 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.569 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.322 +0.333,0.554,0.146,0.14,0.283,0.4,0,0,0,0 +0.333,0.562,0.16,0.14,0.571,0.05,0,0,0,0.394 +0.333,0.575,0.167,0.141,0.579,0,0,0,0.233,0.0788 +0.667,0.614,0.327,0.242,0.55,0.45,0,0,0,0.315 +1,0.653,0.567,0.377,0.206,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.677,0.45,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.301 +1,0.512,0.0422,0.22,0,0,0,0,0,0.318 +1,0.537,0.0708,0.274,0,0,0,0,0,0.118 +1,0.546,0.113,0.27,0,0,0.56,0.263,0.233,0.118 +1,0.538,0.212,0.362,0,0,0.318,0,0,0 +1,0.538,0.253,0.351,0,0,0.485,0,0,0.118 +1,0.538,0.278,0.335,0,0,0.534,0,0,0 +1,0.538,0.298,0.324,0,0,0.313,0,0,0.315 +1,0.538,0.352,0.32,0,0,0.466,0,0,0.0788 +1,0.538,0.402,0.32,0,0,0.0963,0,0,0.28 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.0788 +0.667,0.588,0.316,0.233,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0.233,0.158 +1,0.653,0.567,0.377,0,0,0,0,0,0.0788 +1,0.64,0.745,0.461,0,0,0,0,0,0.0394 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.156 +1,0.512,0.0489,0.22,0,0,0,0,0,0.564 +1,0.537,0.0655,0.274,0,0,0,0,0,0.462 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.563 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.161 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.197 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.276 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.308 +0.333,0.562,0.0873,0.14,0.419,0.45,0,0,0,0.365 +0.333,0.575,0.106,0.141,0.592,0,0,0,0,0.431 +1,0.64,0.352,0.338,0.494,0,0,0,0.317,0.276 +1,0.653,0.474,0.377,0,0,0,0,0.85,0 +1,0.64,0.664,0.461,0,0,0.26,0.263,0,0 +1,0.615,0.82,0.59,0,0,0.523,0,0,0.0394 +1,0.563,0.523,0.496,0,0,0.303,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.263 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.346 +1,0.512,0.0489,0.22,0,0,0,0,0,0.265 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.219 +0.667,0.546,0.079,0.27,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.118 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.315 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0.0667,0.0788 +0.667,0.546,0.142,0.23,0,0,0,0,0.167,0.0394 +0.667,0.563,0.159,0.23,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0.0667,0.263 +1,0.653,0.474,0.377,0.695,0.45,0,0,0.633,0.118 +1,0.64,0.664,0.461,0.089,0,0,0,0,0.0394 +1,0.615,0.82,0.59,0,0,0,0,0,0.14 +1,0.563,0.777,0.72,0,0,0.356,0.263,0,0.0394 +1,0.529,0.318,0.386,0,0,0.699,0,0,0.0394 +1,0.503,0.141,0.183,0,0,0.427,0,0,0.0394 +1,0.495,0.059,0.099,0,0,0.558,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.564,0,0,0.118 +1,0.528,0.0171,0.0495,0,0,0.691,0,0,0.118 +1,0.528,0.0157,0.0495,0,0,0.485,0,0,0.433 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.233,0.241 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.0394 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.197 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0394 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.315 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.197 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0394 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0394 +0.333,0.562,0.0846,0.143,0,0,0,0,0.233,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.444 +1,0.563,0.749,0.788,0,0,0,0,0,0.314 +1,0.529,0.307,0.397,0,0,0,0,0,0.262 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.537,0.0316,0.136,0,0,0,0,0.233,0.622 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.153 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.481 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.569 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.447 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.456 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.256 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.226 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.376 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0788 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.276 +0.667,0.614,0.232,0.252,0,0,0,0,0.0667,0 +0.667,0.623,0.31,0.289,0.361,0.45,0,0,0.167,0.0394 +0.667,0.614,0.432,0.362,0.258,0,0,0,0,0.142 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.214 +1,0.563,0.504,0.542,0,0,0,0,0,0.0907 +1,0.529,0.307,0.397,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.276 +1,0.528,0.0236,0.0768,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.317,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0.15,0.558 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.0392 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.236 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.435 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.368 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.191 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.346 +1,0.615,0.79,0.668,0.309,0.317,0,0,0,0.483 +1,0.563,0.749,0.788,0.353,0.133,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0.154,0.263,0,0.118 +1,0.546,0.169,0.256,0,0,0.318,0,0,0.197 +0.667,0.554,0.101,0.147,0,0,0.44,0,0,0 +0.667,0.554,0.108,0.143,0,0,0.278,0,0,0.158 +0.667,0.554,0.125,0.142,0,0,0.44,0,0,0.0788 +0.667,0.554,0.141,0.142,0,0,0.468,0,0,0.0394 +0.333,0.562,0.154,0.143,0,0,0.471,0,0,0.0788 +0.333,0.575,0.162,0.144,0,0,0.176,0,0,0.154 +0.333,0.588,0.167,0.151,0,0,0,0,0.233,0.307 +0.667,0.623,0.37,0.289,0.243,0.317,0,0,0,0.197 +1,0.64,0.718,0.518,0.803,0.6,0,0,0,0.0394 +1,0.597,0.569,0.462,0.602,0,0,0,0,0.0788 +1,0.563,0.525,0.542,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0.236 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0791 +1,0.528,0.0201,0.05,0,0,0,0,0,0.195 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +0.667,0.554,0.0803,0.156,0,0,0,0,0.317,0.0394 +0.667,0.546,0.169,0.256,0,0,0,0,0.15,0.236 +0.667,0.546,0.184,0.245,0,0,0,0,0,0.118 +0.667,0.546,0.198,0.237,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0.118 +0.667,0.546,0.264,0.235,0,0,0,0,0,0.0394 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.433 +1,0.602,0.448,0.334,0,0,0,0,0,0.0788 +1,0.64,0.464,0.353,0,0,0,0,0,0.0394 +1,0.653,0.546,0.408,0,0,0,0,0,0.412 +1,0.64,0.718,0.518,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0.233,0 +1,0.563,0.779,0.788,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0.263,0.263,0,0.337 +1,0.503,0.155,0.183,0,0,0.456,0,0,0.139 +1,0.495,0.059,0.099,0,0,0.3,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0788 +1,0.528,0.0171,0.0495,0,0,0,0,0,0.158 +1,0.528,0.0157,0.0495,0,0,0,0,0,0.362 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.037 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.314 +1,0.512,0.0474,0.222,0,0,0,0,0,0.465 +1,0.525,0.087,0.39,0.246,0.317,0,0,0,0.0394 +0.333,0.554,0.0461,0.162,0.253,0.133,0,0,0,0.118 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.149 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.294 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.554,0.0657,0.143,0,0,0,0,0.0667,0.0788 +0.333,0.554,0.073,0.142,0,0,0,0,0.167,0.354 +0.333,0.554,0.0766,0.142,0,0,0,0,0.567,0.0788 +0.667,0.563,0.153,0.236,0,0,0,0,0.15,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0.233,0.118 +0.667,0.614,0.232,0.252,0.613,0.45,0,0,0.467,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.0394 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0.29 +1,0.563,0.749,0.788,0,0,0,0,0,0.351 +1,0.512,0.453,0.571,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.077 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0788 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.236 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.158 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.276 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0788 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.411 +1,0.64,0.339,0.353,0.33,0.317,0,0,0.0667,0.197 +1,0.653,0.457,0.408,0.246,0.6,0,0,1,0 +1,0.64,0.64,0.518,0,0,0,0,0.133,0.195 +1,0.615,0.79,0.668,0,0,0,0,0,0.262 +1,0.563,0.749,0.788,0,0,0,0,0,0.259 +1,0.512,0.453,0.571,0,0,0,0,0,0.0809 +1,0.503,0.136,0.183,0,0,0,0,0,0.0788 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.537,0.0316,0.136,0,0,0,0,0,0.312 +1,0.549,0.0396,0.163,0,0,0,0,0,0.796 +1,0.538,0.107,0.387,0,0,0,0,0,0.183 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0394 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.158 +0.333,0.554,0.0628,0.147,0,0,0,0,0.233,0.0788 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.118 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.0394 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0788 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.12 +1,0.615,0.79,0.668,0,0,0,0,0,0.14 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.313 +1,0.512,0.0474,0.222,0,0,0,0,0,0.578 +1,0.525,0.087,0.39,0,0,0,0,0,0.344 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.23 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.118 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0394 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0394 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.236 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.158 +0.333,0.575,0.103,0.144,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.118 +0.333,0.592,0.163,0.169,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0.207 +0.333,0.579,0.274,0.256,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.232 +1,0.512,0.453,0.571,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0.288 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.317,0.0788 +1,0.528,0.0186,0.05,0,0,0,0,0.15,0.208 +1,0.495,0.0314,0.104,0,0,0,0,0,0.411 +1,0.487,0.0631,0.308,0,0,0,0,0,0.445 +1,0.525,0.087,0.39,0,0,0,0,0,0.266 +0.667,0.546,0.0764,0.274,0.49,0.217,0,0,0.233,0.725 +0.667,0.546,0.0894,0.263,0.171,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0788 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.236 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.197 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.317,0.236 +0.667,0.614,0.232,0.252,0,0,0,0,0.15,0 +1,0.653,0.457,0.408,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.702,0.683,0,0,0,0 +1,0.615,0.79,0.668,0.089,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0.158 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.549,0.0433,0.163,0,0,0,0,0,0.357 +1,0.554,0.0636,0.162,0,0,0,0,0,0.269 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.427 +0.667,0.546,0.184,0.245,0,0,0,0,0,0.158 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.0394 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.118 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.236 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.0394 +0.667,0.588,0.305,0.239,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0.0489,0.0702,0,0.118 +1,0.653,0.546,0.408,0,0,0.369,0.193,0,0.0394 +1,0.64,0.718,0.518,0,0,0.41,0,0.467,0.118 +1,0.615,0.844,0.668,0,0,0.612,0,0,0 +1,0.563,0.779,0.788,0,0,0.0352,0,0,0.108 +1,0.512,0.492,0.571,0,0,0,0,0,0.509 +1,0.503,0.155,0.183,0,0,0,0,0,0.285 +1,0.528,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.554,0.0803,0.156,0,0,0,0,0,0.262 +1,0.546,0.169,0.256,0,0,0,0,0,0.582 +1,0.546,0.184,0.245,0,0,0,0,0,0.412 +0.667,0.546,0.198,0.237,0.333,0.567,0,0,0.467,0.0394 +0.667,0.546,0.232,0.235,0.622,0.583,0,0,0,0.0788 +0.667,0.546,0.264,0.235,0.572,0,0,0,0,0.315 +0.667,0.563,0.29,0.236,0.579,0,0,0,0,0.0394 +0.667,0.588,0.305,0.239,0.63,0,0,0,0,0.158 +1,0.64,0.464,0.353,0.588,0,0,0,0,0.118 +0.667,0.623,0.37,0.289,0.581,0,0,0,0,0.0394 +0.667,0.614,0.485,0.362,0.579,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.38,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0.0715 +1,0.529,0.334,0.397,0,0,0,0,0,0.334 +1,0.503,0.155,0.183,0,0,0,0,0,0.253 +1,0.495,0.059,0.099,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.451 +1,0.537,0.0316,0.136,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.0788 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.0788 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0788 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.197 +0.333,0.554,0.0766,0.142,0,0,0,0,0.233,0.118 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0788 +1,0.602,0.276,0.334,0,0,0,0,0,0.0788 +1,0.64,0.339,0.353,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.23,0.317,0,0,0,0.118 +1,0.64,0.64,0.518,0.483,0.133,0,0,0,0.0788 +1,0.615,0.79,0.668,0.614,0,0,0,0,0.118 +1,0.563,0.749,0.788,0.639,0,0,0,0,0 +1,0.512,0.453,0.571,0.667,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0.539 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0.882 +0.667,0.512,0.0474,0.222,0,0,0.142,0.263,0,0.431 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.191 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.315 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.197 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0394 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.158 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.0394 +0.667,0.614,0.232,0.252,0.251,0.0667,0,0,0.317,0.0788 +1,0.623,0.31,0.289,0.714,0.15,0,0,0.15,0.0394 +1,0.64,0.64,0.518,0.696,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0.196 +1,0.529,0.307,0.397,0,0,0,0,0,0.149 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0.717,0.0394 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.0394 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.0667,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0.65,0.394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.276 +0.333,0.554,0.0766,0.142,0.541,0.217,0,0,0,0.197 +0.333,0.562,0.0846,0.143,0.698,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.445,0,0,0,0,0.0788 +0.667,0.614,0.232,0.252,0.155,0.0667,0,0,0,0.236 +1,0.653,0.457,0.408,0.716,0.85,0,0,0,0 +1,0.64,0.64,0.518,0.709,0,0,0,0,0.322 +1,0.615,0.79,0.668,0.685,0,0,0,0,0 +1,0.563,0.504,0.542,0.602,0,0,0,0,0.2 +1,0.545,0.161,0.223,0,0,0,0,0,0.485 +1,0.532,0.0759,0.116,0,0,0,0,0,0.224 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.167 +1,0.537,0.0316,0.136,0,0,0,0,0,0.195 +1,0.537,0.0633,0.277,0,0,0,0,0,0.803 +1,0.546,0.0764,0.274,0,0,0,0,0,0.212 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.401 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.347 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.197 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.201 +1,0.563,0.222,0.329,0,0,0,0,0,0.407 +1,0.602,0.276,0.334,0,0,0,0,0,0.0394 +0.667,0.614,0.232,0.252,0,0,0,0,0.233,0.158 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0788 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.0788 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.333,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0.346 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.351 +1,0.512,0.0474,0.222,0,0,0,0,0,0.281 +1,0.537,0.0633,0.277,0,0,0,0,0,0.183 +1,0.546,0.0764,0.274,0,0,0,0,0,0.0788 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.378 +0.667,0.546,0.0996,0.256,0,0,0,0,0.233,0.317 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0394 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.375 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.264 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0788 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.276 +0.667,0.588,0.19,0.239,0,0,0.101,0.0702,0,0 +1,0.64,0.339,0.353,0.407,0.567,0.549,0.193,0.233,0.0394 +1,0.653,0.457,0.408,0.702,0.35,0.11,0,0,0 +1,0.64,0.64,0.518,0.138,0,0,0,0,0 +1,0.615,0.79,0.668,0.504,0.45,0,0,0,0.197 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +0.667,0.546,0.198,0.237,0,0,0,0,0,0.0788 +0.667,0.546,0.232,0.235,0.768,0.45,0,0,0,0.197 +0.667,0.546,0.264,0.235,0.147,0,0,0,0,0.118 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.0394 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.512 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.0394 +1,0.653,0.546,0.408,0,0,0,0,0.233,0.0788 +1,0.64,0.718,0.518,0,0,0,0,0,0.0678 +1,0.615,0.844,0.668,0,0,0,0,0,0.118 +1,0.563,0.779,0.788,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0.234 +1,0.474,0.224,0.249,0,0,0,0,0,0.244 +1,0.495,0.0699,0.099,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.817,0.194 +1,0.546,0.142,0.263,0,0,0,0,0.133,0.374 +1,0.546,0.169,0.256,0,0,0,0,0.233,0.118 +0.667,0.546,0.184,0.245,0.44,0.567,0,0,0,0.197 +0.667,0.546,0.198,0.237,0.677,0.35,0,0,0,0.151 +1,0.538,0.339,0.328,0,0,0,0,0,0.233 +0.667,0.546,0.264,0.235,0,0,0,0,0,0.354 +0.667,0.563,0.29,0.236,0.316,0.317,0,0,0,0 +1,0.602,0.448,0.334,0.729,0.133,0,0,0,0.42 +0.333,0.588,0.167,0.151,0.611,0,0.333,0.263,0,0.159 +0.667,0.623,0.37,0.289,0,0,0.584,0,0,0 +1,0.64,0.718,0.518,0,0,0.48,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0.102 +1,0.563,0.779,0.788,0,0,0,0,0,0.141 +1,0.512,0.492,0.571,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.125 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.425 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.183 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.158 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.197 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0394 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.276 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.569 +0.333,0.588,0.124,0.151,0,0,0,0,0.317,0.38 +1,0.653,0.457,0.408,0,0,0,0,0.15,0.245 +1,0.64,0.64,0.518,0,0,0,0,0,0.461 +1,0.615,0.79,0.668,0,0,0,0,0,0.06 +0.667,0.563,0.504,0.542,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.484 +0.667,0.512,0.0474,0.222,0,0,0.145,0.0702,0,0.177 +0.667,0.537,0.0633,0.277,0.387,0.217,0.651,0.193,0,0 +0.667,0.546,0.0764,0.274,0.485,0,0.388,0,0,0.0394 +0.667,0.546,0.0894,0.263,0.141,0,0.44,0,0,0.0788 +0.667,0.546,0.0996,0.256,0,0,0.694,0,0,0.0394 +0.667,0.546,0.11,0.245,0,0,0.59,0,0,0.0788 +0.667,0.546,0.116,0.237,0,0,0.674,0,0,0.354 +0.333,0.554,0.073,0.142,0,0,0.193,0,0,0.315 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.0788 +0.333,0.588,0.124,0.151,0,0,0,0,0.233,0.0788 +1,0.653,0.457,0.408,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.0788 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.0394 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.461 +1,0.487,0.0631,0.308,0,0,0,0,0,0.323 +0.667,0.537,0.0633,0.277,0,0,0,0,0.233,0.236 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.0539 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.253 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.567 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.055 +0.333,0.562,0.0159,0.0495,0,0,0.596,0.86,0,0.276 +0.667,0.554,0.073,0.142,0,0,0.318,0.193,0,0.0394 +0.667,0.554,0.0766,0.142,0,0,0.436,0,0,0.236 +0.667,0.562,0.0846,0.143,0,0,0.567,0,0,0.118 +0.667,0.588,0.19,0.239,0,0,0.659,0,0,0.236 +0.667,0.614,0.232,0.252,0,0,0.48,0,0,0.177 +0.667,0.623,0.31,0.289,0,0,0.312,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0.304 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.0788 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0394 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.158 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.312 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.318 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.207 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0788 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0394 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.118 +0.667,0.614,0.232,0.252,0.164,0.0667,0,0,0,0 +0.333,0.592,0.163,0.169,0.354,0.383,0,0,0,0 +0.667,0.614,0.432,0.362,0.645,0.45,0,0,0,0.0394 +0.667,0.597,0.532,0.462,0.318,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0.567,0 +1,0.529,0.307,0.397,0,0,0,0,0.15,0.0788 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.155 +1,0.528,0.0186,0.05,0,0,0,0,0,0.121 +1,0.495,0.0314,0.104,0,0,0,0,0.317,0.338 +1,0.512,0.0474,0.222,0,0,0,0,0.633,0.44 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.0394 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.118 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.158 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0394 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.315 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0394 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.0394 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.118 +1,0.653,0.457,0.408,0,0,0,0,0,0.0785 +1,0.64,0.64,0.518,0.173,0.0667,0,0,0.567,0.348 +1,0.615,0.79,0.668,0.791,0.383,0,0,0.15,0 +1,0.563,0.504,0.542,0.724,0,0,0,0,0 +1,0.529,0.307,0.397,0.59,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.528,0.0201,0.05,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.298,0.317,0,0,0,0 +1,0.554,0.0636,0.162,0.243,1,0,0,0,0.126 +0.667,0.554,0.0803,0.156,0,0.767,0,0,0,0.649 +0.667,0.546,0.169,0.256,0,0,0,0,0.317,0.0394 +1,0.538,0.268,0.343,0,0,0,0,0.4,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.158 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0788 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.236 +0.333,0.562,0.154,0.143,0,0,0,0,0.0667,0.118 +0.333,0.575,0.162,0.144,0,0,0,0,0.167,0.394 +0.667,0.614,0.315,0.252,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.0788 +0.667,0.597,0.569,0.462,0,0,0,0,0,0.157 +0.333,0.562,0.272,0.296,0,0,0,0,0,0.385 +0.667,0.529,0.334,0.397,0,0,0,0,0,0.133 +1,0.503,0.155,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +1,0.528,0.0222,0.0768,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.24 +0.667,0.546,0.142,0.263,0,0,0,0,0,0.253 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.412 +0.667,0.546,0.184,0.245,0,0,0,0,0,0.348 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.0788 +0.333,0.554,0.125,0.142,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.197 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.158 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.0788 +0.333,0.588,0.167,0.151,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0.0394 +0.667,0.563,0.525,0.542,0,0,0,0,0.233,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0.117 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0.0896 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0.0394 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0.197 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.33 +1,0.512,0.0474,0.222,0,0,0,0,0,0.274 +1,0.537,0.0633,0.277,0,0,0,0,0,0.337 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.0568 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.197 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.158 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0788 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.236 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.158 +0.333,0.575,0.103,0.144,0,0,0,0,0.817,0.27 +1,0.64,0.339,0.353,0,0,0,0,0.133,0.267 +1,0.653,0.457,0.408,0,0,0,0,0,0.153 +1,0.64,0.64,0.518,0,0,0,0,0,0.134 +1,0.615,0.79,0.668,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0.118 +1,0.528,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.152 +1,0.528,0.0236,0.0768,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.353 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.377 +0.667,0.546,0.0894,0.263,0,0,0,0,0.233,0.242 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.272 +0.333,0.554,0.0628,0.147,0,0,0,0,0.233,0.0394 +0.333,0.554,0.0657,0.143,0.148,0.0667,0,0,0,0.0788 +0.333,0.554,0.073,0.142,0.635,1,0,0,0,0.0788 +0.333,0.554,0.0766,0.142,0,0.55,0,0,0,0.0788 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.13 +0.333,0.588,0.124,0.151,0,0,0,0,0.0667,0.133 +0.667,0.623,0.31,0.289,0,0,0,0,0.167,0.152 +1,0.64,0.64,0.518,0,0,0,0,0,0.118 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0.131 +1,0.545,0.161,0.223,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0702 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0.233,0.0788 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.118 +0.333,0.554,0.0577,0.153,0,0,0.515,0.263,0,0.0394 +0.333,0.554,0.0628,0.147,0,0,0.674,0,0,0.158 +0.333,0.554,0.0657,0.143,0,0,0.19,0,0,0.69 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.155 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.197 +0.667,0.588,0.19,0.239,0,0,0,0,0.817,0.0788 +0.667,0.614,0.232,0.252,0,0,0,0,0.383,0.0394 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0394 +0.333,0.588,0.224,0.206,0,0,0,0,0.233,0.0788 +0.333,0.579,0.274,0.256,0,0,0,0,0,0.208 +1,0.563,0.749,0.788,0,0,0,0,0,0.0671 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.128,0.0702,0,0.204 +1,0.512,0.0474,0.222,0,0,0.604,0.193,0,0.366 +1,0.525,0.087,0.39,0,0,0,0,0,0.461 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.117 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.197 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0394 +0.333,0.554,0.0657,0.143,0,0,0.168,0.263,0.817,0.0394 +0.667,0.546,0.13,0.235,0,0,0.517,0,0.133,0.0394 +0.667,0.546,0.137,0.235,0,0,0.532,0,0,0.197 +0.667,0.563,0.153,0.236,0,0,0.327,0,0,0.158 +1,0.602,0.276,0.334,0,0,0.529,0,0.0667,0 +1,0.64,0.339,0.353,0,0,0.11,0,1,0.0733 +0.667,0.623,0.31,0.289,0,0,0,0,0.367,0.638 +1,0.64,0.64,0.518,0.157,0.0667,0,0,0,0.616 +1,0.597,0.532,0.462,0.586,0.15,0,0,0,0 +1,0.563,0.749,0.788,0.717,0,0,0,0,0.452 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0788 +1,0.528,0.0171,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.777 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.166 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.287 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.155 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.25 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.433 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.604 +0.667,0.588,0.19,0.239,0.709,0.45,0,0,0,0.158 +0.667,0.614,0.232,0.252,0.0785,0,0,0,0.233,0.118 +0.667,0.623,0.31,0.289,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0.0394 +1,0.563,0.504,0.542,0,0,0,0,0,0.693 +1,0.545,0.161,0.223,0,0,0,0,0,0.0726 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.529,0.0203,0.0503,0,0,0,0,0,0.0394 +1,0.529,0.0226,0.0781,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.236 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.113 +1,0.548,0.113,0.286,0,0,0,0,0.483,0.433 +1,0.542,0.212,0.392,0,0,0,0,0.233,0.272 +1,0.542,0.252,0.381,0,0,0,0,0,0.187 +1,0.542,0.277,0.364,0,0,0,0,0,0.0394 +0.667,0.548,0.204,0.251,0.265,0.233,0,0,0,0.0788 +0.667,0.548,0.24,0.249,0.728,0.467,0,0,0.233,0.0788 +0.667,0.548,0.273,0.249,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.118 +0.667,0.591,0.315,0.259,0,0,0,0,0.233,0.197 +0.667,0.617,0.326,0.286,0,0,0,0,0.25,0.583 +1,0.658,0.565,0.501,0,0,0,0,0,0.219 +1,0.645,0.743,0.656,0,0,0,0,0,0.115 +1,0.619,0.873,0.806,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0.273 +1,0.516,0.509,0.561,0,0,0,0,0,0.0982 +1,0.477,0.232,0.249,0,0,0,0,0,0.156 +1,0.497,0.0721,0.099,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0.118 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.158 +1,0.529,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.118 +1,0.555,0.0654,0.168,0,0,0,0,0,0.205 +1,0.548,0.147,0.278,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0.473 +0.667,0.548,0.191,0.259,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.0398,0.246,0,0.118 +0.667,0.548,0.273,0.249,0,0,0.719,0.281,0,0.0394 +0.667,0.564,0.159,0.15,0,0,0.55,0,0.483,0.0394 +0.667,0.591,0.315,0.259,0,0,0.778,0,0,0.118 +1,0.645,0.479,0.404,0,0,0.54,0,0,0.236 +1,0.658,0.565,0.501,0,0,0.208,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0.187 +1,0.619,0.873,0.806,0,0,0,0,0,0.118 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0.0788 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.25 +1,0.514,0.0488,0.228,0,0,0,0,0,0.286 +1,0.529,0.09,0.402,0,0,0,0,0,0.243 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.118 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0394 +0.333,0.555,0.0751,0.149,0,0,0,0,0.233,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.158 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.239 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.274 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.212 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0.323,0.317,0,0,0,0 +1,0.568,0.774,0.851,0.503,0.617,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0667,0.181 +1,0.538,0.0323,0.139,0.71,0.467,0,0,0.167,0.171 +0.667,0.551,0.0406,0.167,0.293,0,0,0,0,0.244 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.229 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0788 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.118 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.197 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.274 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.305 +0.667,0.566,0.158,0.251,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0394 +0.333,0.589,0.128,0.168,0,0,0,0,0.233,0.215 +1,0.658,0.473,0.501,0,0,0,0,0,0.158 +1,0.645,0.662,0.656,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.839 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.228 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0817 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.473 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.499 +1,0.54,0.0653,0.284,0,0,0,0,0,0.852 +1,0.548,0.0788,0.286,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.236 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0.0667,0.236 +0.667,0.566,0.158,0.251,0,0,0,0,0.167,0.276 +1,0.606,0.286,0.363,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0.567,0.0788 +0.667,0.626,0.32,0.351,0,0,0,0,0.15,0 +1,0.645,0.662,0.656,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.151 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.322 +1,0.49,0.0653,0.317,0,0,0,0,0,0.313 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0.315 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0.0138,0.0702,0,0.118 +0.333,0.555,0.0676,0.15,0,0,0.723,0.193,0,0 +0.333,0.555,0.0751,0.149,0,0,0.699,0,0,0.0394 +0.333,0.555,0.0789,0.149,0,0,0.622,0,0,0.276 +0.333,0.564,0.0871,0.15,0.358,0.317,0,0,0,0.354 +0.333,0.576,0.106,0.154,0.768,0.15,0,0,0,0 +0.667,0.617,0.239,0.286,0.564,0,0,0,0.233,0 +1,0.658,0.473,0.501,0.635,0,0,0,0,0 +1,0.645,0.662,0.656,0.667,0,0,0,0,0.0394 +1,0.619,0.817,0.806,0.108,0,0,0,0,0.0394 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.236 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.169 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.3 +1,0.529,0.0241,0.0781,0,0,0,0,0.483,0.336 +1,0.514,0.0488,0.228,0,0,0,0,0,0.713 +1,0.529,0.09,0.402,0,0,0,0,0,0.798 +1,0.542,0.11,0.404,0,0,0,0,0.233,0.445 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.183 +0.333,0.555,0.0593,0.16,0,0,0,0,0.0667,0.276 +0.333,0.555,0.0646,0.154,0,0,0,0,0.9,0.0394 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.236 +0.667,0.555,0.0751,0.149,0,0,0,0,0.0667,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.167,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0788 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.0788 +1,0.658,0.473,0.501,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0.0667,0.418 +0.667,0.6,0.55,0.554,0,0,0,0,0.167,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.514 +1,0.529,0.0203,0.0503,0,0,0,0,0,0.532 +1,0.529,0.0226,0.0781,0,0,0,0,0,0.289 +1,0.538,0.0301,0.139,0,0,0,0,0,0.2 +1,0.551,0.0444,0.167,0,0,0,0,0.233,0.185 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +0.667,0.548,0.147,0.278,0,0,0,0,0.233,0.0788 +1,0.542,0.252,0.381,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0.233,0.0394 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.66 +1,0.542,0.351,0.349,0,0,0,0,0,0.265 +1,0.542,0.401,0.349,0,0,0,0,0.483,0.0733 +1,0.568,0.441,0.351,0,0,0,0,0,0.312 +1,0.606,0.464,0.363,0,0,0,0,0,0.427 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.279 +0.667,0.626,0.383,0.351,0,0,0,0,0,0.191 +0.667,0.617,0.501,0.454,0,0,0.229,0.263,0,0.13 +0.667,0.6,0.588,0.554,0,0,0.497,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0.12 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.24 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.236 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.263 +1,0.555,0.0654,0.168,0,0,0,0,0,0.11 +1,0.555,0.0826,0.164,0,0,0,0,0.233,0.316 +1,0.548,0.174,0.27,0,0,0,0,0,0.214 +1,0.542,0.277,0.364,0,0,0,0,0,0.591 +1,0.542,0.297,0.352,0.64,0.467,0,0,0.233,0.162 +0.667,0.548,0.24,0.249,0.15,0,0,0,0,0.0394 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.29 +1,0.568,0.441,0.351,0,0,0,0,0,0.197 +1,0.606,0.464,0.363,0,0,0,0,0,0.118 +1,0.645,0.479,0.404,0,0,0,0,0,0.118 +1,0.658,0.565,0.501,0,0,0,0,0,0.118 +1,0.645,0.743,0.656,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.0797 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.296 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.258 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.424 +0.333,0.555,0.0473,0.168,0,0,0,0,0.233,0.401 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.349 +0.333,0.555,0.0593,0.16,0.654,0.467,0,0,0,0.276 +0.333,0.555,0.0646,0.154,0.564,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.283,0,0,0,0,0.197 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0.233,0.0394 +0.333,0.576,0.106,0.154,0,0,0.0657,0.0702,0,0.276 +1,0.645,0.351,0.404,0.264,0.317,0.645,0.193,0,0.0788 +1,0.658,0.473,0.501,0.623,0.15,0.398,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.112 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0.21 +1,0.516,0.468,0.561,0,0,0,0,0,0.112 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.457 +1,0.538,0.0323,0.139,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.358 +0.667,0.548,0.0788,0.286,0,0,0,0,0.483,0.477 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.236 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0394 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.394 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0.207 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.178 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.23 +1,0.658,0.473,0.501,0,0,0,0,0,0.118 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.344 +1,0.538,0.0323,0.139,0,0,0.333,0.333,0,0.158 +1,0.54,0.0653,0.284,0,0,0.732,0.737,0,0 +0.667,0.555,0.0473,0.168,0,0,0.58,0,0,0.158 +0.667,0.548,0.0923,0.278,0,0,0.277,0,0,0.0788 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.197 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.202,0.0667,0,0,0,0.208 +0.667,0.617,0.239,0.286,0.494,1,0,0,0,0.418 +0.667,0.626,0.32,0.351,0,0.1,0,0,0,0.29 +1,0.645,0.662,0.656,0,0,0,0,0,0.184 +0.667,0.6,0.55,0.554,0,0,0,0,0.233,0.422 +1,0.566,0.521,0.584,0,0,0,0,0,0.209 +1,0.531,0.317,0.391,0.408,0.467,0,0,0,0 +1,0.533,0.0781,0.116,0.133,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0.463,0.263,0,0.354 +0.333,0.555,0.0646,0.154,0,0,0.295,0.263,0,0.0788 +0.667,0.548,0.119,0.251,0,0,0.428,0,0,0.197 +0.667,0.548,0.134,0.249,0,0,0.352,0,0,0.197 +0.667,0.548,0.142,0.249,0,0,0.761,0,0,0.276 +0.667,0.566,0.158,0.251,0,0,0.801,0,0.233,0.276 +1,0.606,0.286,0.363,0,0,0.766,0,0.483,0.0788 +1,0.645,0.351,0.404,0,0,0.554,0,0,0.0394 +1,0.658,0.473,0.501,0,0,0.216,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.114 +1,0.619,0.817,0.806,0,0,0,0,0,0.421 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.26 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.498 +1,0.514,0.0488,0.228,0,0,0,0,0,0.491 +1,0.54,0.0653,0.284,0,0,0,0,0,0.442 +0.667,0.555,0.0473,0.168,0.216,0.0667,0,0,0.233,0.56 +0.667,0.548,0.0923,0.278,0.639,0.867,0,0,0,0 +0.667,0.548,0.103,0.27,0.716,0,0,0,0,0.0394 +0.667,0.548,0.113,0.259,0.437,0,0,0,0,0.197 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0.483,0.158 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.0788 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0796 +1,0.619,0.817,0.806,0,0,0,0,0,0.119 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.153 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.349 +1,0.538,0.0301,0.139,0,0,0,0,0.483,0.118 +1,0.551,0.0444,0.167,0,0,0,0,0,0.118 +1,0.555,0.0654,0.168,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0.368 +1,0.542,0.252,0.381,0,0,0,0,0,0.389 +1,0.542,0.277,0.364,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.291 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.479 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.303 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.0788 +0.667,0.591,0.315,0.259,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0.0394 +1,0.645,0.743,0.656,0,0,0.18,0.526,0,0.0788 +1,0.619,0.873,0.806,0,0,0.317,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +1,0.529,0.0226,0.0781,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.22 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0.47 +1,0.555,0.0654,0.168,0,0,0,0,0,0.249 +1,0.555,0.0826,0.164,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0.236 +1,0.555,0.104,0.154,0,0,0,0,0.233,0.0394 +0.667,0.555,0.111,0.15,0,0,0,0,0,0.0394 +0.667,0.555,0.129,0.149,0,0,0,0,0,0.118 +0.667,0.555,0.146,0.149,0,0,0,0,0,0.0394 +0.667,0.564,0.159,0.15,0,0,0,0,0,0.383 +0.667,0.576,0.167,0.154,0,0,0,0,0,0.15 +0.667,0.589,0.172,0.168,0.515,0.733,0,0,0,0.0788 +0.667,0.594,0.2,0.2,0.674,0.433,0,0,0,0.0394 +0.667,0.589,0.26,0.252,0.176,0,0.324,0.526,0,0.0394 +1,0.6,0.588,0.554,0,0,0.414,0,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,0,0.0788 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.667,0.529,0.0188,0.0503,0,0,0,0,0,0.0394 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.118 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0.135 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.118 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.236 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0.3,0.0788 +0.667,0.591,0.196,0.259,0,0,0,0,0.167,0 +0.667,0.617,0.239,0.286,0.22,0.0667,0,0,0,0 +0.333,0.594,0.168,0.2,0.59,0.167,0,0,0,0.0394 +0.333,0.589,0.231,0.252,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0.0688 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.268 +1,0.531,0.317,0.391,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.653 +1,0.538,0.0323,0.139,0,0,0,0,0,0.23 +1,0.551,0.0406,0.167,0,0,0,0,0,0.773 +1,0.542,0.11,0.404,0,0,0,0,0,0.358 +1,0.542,0.131,0.392,0,0,0,0,0,0.143 +0.667,0.548,0.103,0.27,0.302,0.317,0,0,0,0.444 +0.667,0.548,0.113,0.259,0.752,0.15,0,0,0,0.238 +0.667,0.548,0.119,0.251,0.384,0,0.162,0.263,0,0.236 +0.333,0.555,0.0751,0.149,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.0394 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.0788 +1,0.645,0.351,0.404,0,0,0,0,0,0.0788 +1,0.658,0.473,0.501,0,0,0,0,0,0.128 +1,0.645,0.662,0.656,0,0,0,0,0,0.247 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.382 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.433 +1,0.529,0.0241,0.0781,0,0,0.11,0.0702,0.317,0.236 +0.667,0.538,0.0323,0.139,0,0,0,0.193,0.167,0.305 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0.331 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.255 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.0881 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.301 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.418 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.184 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0788 +0.333,0.564,0.0871,0.15,0,0,0,0,0.233,0.154 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.217 +0.667,0.617,0.239,0.286,0.59,0.467,0,0,0,0.0394 +1,0.658,0.473,0.501,0.688,0,0,0,0,0 +1,0.645,0.662,0.656,0.621,0,0,0,0,0 +1,0.619,0.817,0.806,0.639,0,0,0,0,0.164 +1,0.564,0.269,0.317,0.347,0,0,0,0,0.123 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.569 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.12 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.0803 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0971 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0788 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.0667,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.65,0.197 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0788 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.276 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.286,0,0,0.534,0.526,0,0.118 +1,0.658,0.473,0.501,0.119,0.0667,0,0,0,0.0394 +1,0.645,0.662,0.656,0.682,0.4,0,0,0,0.0788 +1,0.619,0.817,0.806,0.304,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0.0394 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.262 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.162 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.817,0.0788 +0.667,0.538,0.0323,0.139,0.171,0.0667,0,0,0.383,0.236 +0.333,0.551,0.0406,0.167,0.658,0.4,0,0,0,0.0788 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.0788 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.236 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.276 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.197 +0.333,0.564,0.0871,0.15,0,0,0,0,0.817,0.0788 +1,0.606,0.286,0.363,0,0,0,0,0.15,0.118 +1,0.645,0.351,0.404,0,0,0.373,0.263,0,0.0788 +1,0.658,0.473,0.501,0,0,0.524,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +1,0.529,0.0203,0.0503,0,0,0,0,0,0.197 +1,0.529,0.0226,0.0781,0,0,0,0,0,0.0788 +1,0.538,0.0301,0.139,0,0,0,0,0,0.149 +1,0.551,0.0444,0.167,0,0,0,0,0,0.301 +1,0.548,0.113,0.286,0,0,0,0,0.483,0.275 +1,0.542,0.212,0.392,0,0,0,0,0,0.257 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.195 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.433 +0.333,0.555,0.111,0.15,0,0,0,0,0.233,0.0788 +0.333,0.555,0.129,0.149,0,0,0,0,0.483,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0.458 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.0973 +0.333,0.589,0.172,0.168,0,0,0,0,0.233,0.0394 +0.667,0.626,0.383,0.351,0,0,0,0,0.233,0 +1,0.645,0.743,0.656,0.373,0.467,0,0,0.233,0.163 +1,0.619,0.873,0.806,0.555,0,0,0,0,0.175 +1,0.568,0.806,0.851,0.314,0,0.388,0.263,0,0 +1,0.531,0.345,0.391,0,0,0.425,0,0,0 +1,0.533,0.0894,0.116,0,0,0.274,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.149 +1,0.54,0.0706,0.284,0,0,0,0,0,0.291 +1,0.548,0.113,0.286,0.726,0.467,0,0,0,0.197 +1,0.548,0.147,0.278,0,0,0,0,0,0.197 +0.667,0.555,0.0961,0.16,0,0,0,0,0.233,0.0788 +0.667,0.555,0.104,0.154,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.233,0.298 +0.667,0.548,0.24,0.249,0,0,0.5,0.263,0,0.315 +1,0.542,0.401,0.349,0,0,0.396,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0.0394 +1,0.606,0.464,0.363,0,0,0,0,0.233,0.197 +1,0.645,0.479,0.404,0,0,0,0,0,0 +1,0.658,0.565,0.501,0.503,0.467,0,0,0,0.158 +0.667,0.617,0.501,0.454,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0.0394 +0.667,0.564,0.281,0.317,0,0,0,0,0,0.0394 +0.667,0.546,0.182,0.22,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.268 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.118 +1,0.497,0.0323,0.107,0,0,0,0,0,0.118 +0.667,0.538,0.0323,0.139,0,0,0.199,0.263,0.483,0.118 +0.333,0.551,0.0406,0.167,0,0,0.46,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0.642,0,0,0.0788 +0.333,0.555,0.0541,0.164,0,0,0.821,0,0,0.0788 +0.333,0.555,0.0593,0.16,0,0,0.0657,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.118 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.197 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.278 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.567 +0.667,0.617,0.239,0.286,0,0,0,0,0.0667,0.316 +1,0.658,0.473,0.501,0,0,0,0,0.9,0.118 +1,0.645,0.662,0.656,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.483,0.197 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.59,0.263,0,0.236 +0.667,0.548,0.0788,0.286,0,0,0.476,0,0,0.0394 +0.667,0.548,0.0923,0.278,0,0,0.489,0,0,0.158 +0.667,0.548,0.103,0.27,0,0,0.11,0,0,0.0394 +0.333,0.555,0.0646,0.154,0.183,0.0667,0,0,0,0.236 +0.333,0.555,0.0676,0.15,0.752,0.167,0,0,0,0 +0.333,0.555,0.0751,0.149,0.565,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.149,0.36,0,0,0,0.567,0.158 +0.667,0.566,0.158,0.251,0,0,0,0,0.4,0.0788 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0788 +0.667,0.617,0.239,0.286,0,0,0.317,0.263,0,0 +1,0.658,0.473,0.501,0,0,0.662,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.116 +1,0.568,0.774,0.851,0,0,0,0,0,0.118 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0667,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0.9,0.118 +1,0.538,0.0323,0.139,0,0,0,0,0,0.487 +1,0.529,0.09,0.402,0,0,0,0,0,0.446 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.195 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.329 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.158 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0788 +0.333,0.555,0.0751,0.149,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.197 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.173,0.0667,0,0,0,0.0799 +0.667,0.617,0.239,0.286,0.386,0.633,0,0,0,0.617 +1,0.658,0.473,0.501,0,0,0,0,0,0.099 +1,0.645,0.662,0.656,0,0,0,0,0.233,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.228 +1,0.497,0.0323,0.107,0,0,0,0,0,0.148 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.424 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.216 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.796 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.119 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.181 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.158 +0.333,0.555,0.0789,0.149,0,0,0.216,0.263,0,0.0788 +0.333,0.564,0.0871,0.15,0,0,0.151,0,0,0.0394 +0.333,0.576,0.106,0.154,0,0,0.313,0,0,0.205 +0.667,0.617,0.239,0.286,0,0,0.628,0,0,0.488 +0.667,0.626,0.32,0.351,0,0,0.384,0,0,0.347 +1,0.645,0.662,0.656,0,0,0.294,0,0,0.124 +1,0.619,0.817,0.806,0,0,0,0,0,0.135 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.558 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.448 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.118 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.354 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.236 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.236 +0.667,0.566,0.158,0.251,0,0,0,0,0.0667,0.118 +0.667,0.591,0.196,0.259,0,0,0,0,0.167,0 +1,0.645,0.351,0.404,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0.0394 +1,0.645,0.662,0.656,0,0,0.286,0.263,0,0 +1,0.619,0.817,0.806,0.38,0.467,0.541,0,0,0 +1,0.568,0.774,0.851,0.105,0,0.524,0,0,0 +1,0.531,0.317,0.391,0,0,0.384,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.0788 +1,0.542,0.16,0.404,0,0,0.274,0.263,0,0.0394 +1,0.542,0.212,0.392,0,0,0.509,0,0,0.0788 +1,0.542,0.252,0.381,0,0,0.428,0,0,0.0788 +1,0.542,0.277,0.364,0,0,0.404,0,0,0.197 +0.667,0.548,0.204,0.251,0,0,0.465,0,0,0.118 +0.667,0.548,0.24,0.249,0,0,0.576,0,0,0.0788 +0.667,0.548,0.273,0.249,0,0,0.534,0,0,0.197 +0.667,0.566,0.3,0.251,0,0,0.555,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.391,0,0,0 +0.667,0.617,0.326,0.286,0,0,0.572,0,0,0.27 +1,0.658,0.565,0.501,0,0,0,0,0,0.236 +1,0.645,0.743,0.656,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.126 +1,0.555,0.0654,0.168,0,0,0,0,0.233,0.433 +0.667,0.555,0.0826,0.164,0,0,0,0,0.733,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.585,0.233,0,0,0,0 +1,0.542,0.297,0.352,0,0,0,0,0,0.0788 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.315 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.453 +1,0.568,0.441,0.351,0,0,0,0,0,0.413 +1,0.606,0.464,0.363,0.64,0.467,0,0,0.233,0.255 +1,0.645,0.479,0.404,0.6,0,0,0,0,0.0394 +1,0.626,0.383,0.351,0.668,0,0,0,0,0.0394 +1,0.617,0.501,0.454,0.675,0,0.211,0.263,0,0.315 +1,0.619,0.873,0.806,0.26,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0.0394 +1,0.516,0.509,0.561,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.74 +1,0.558,0.0289,0.11,0,0,0,0,0,0.338 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.0788 +0.333,0.585,0.0368,0.172,0,0,0,0,0.25,0.0788 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0788 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.208,0.0667,0,0,0.25,0.0394 +0.333,0.601,0.0774,0.162,0.253,0.417,0,0,0,0.315 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0.567,0.0394 +1,0.788,0.413,0.655,0,0,0,0,1,0.282 +1,0.772,0.578,0.829,0,0,0,0,1,0.118 +1,0.741,0.713,0.905,0,0,0,0,1,0.0788 +1,0.679,0.676,0.821,0,0,0,0,1,0 +1,0.599,0.278,0.356,0,0,0,0,0.7,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.197 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.46 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.109 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.294 +0.333,0.591,0.0427,0.175,0,0,0.119,0.0702,0,0.116 +0.333,0.591,0.0486,0.174,0,0,0.388,0.175,0,0.0788 +0.333,0.591,0.0532,0.17,0,0,0.313,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0788 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0788 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0394 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.236 +1,0.726,0.25,0.417,0,0,0,0,0.25,0 +1,0.772,0.307,0.501,0.614,0.483,0,0,0,0.381 +1,0.788,0.413,0.655,0,0,0,0,0,0.317 +1,0.772,0.578,0.829,0,0,0,0,0,0.306 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.19 +1,0.57,0.0296,0.143,0,0,0,0,0,0.117 +1,0.633,0.0786,0.417,0,0,0,0,0,0.379 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0394 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.197 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.394 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.236 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.197 +0.333,0.601,0.0774,0.162,0,0,0,0,0.317,0.236 +0.333,0.616,0.0938,0.172,0,0,0,0,0.183,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0.0394 +1,0.702,0.39,0.569,0,0,0,0,0,0.186 +1,0.741,0.713,0.905,0,0,0,0,0,0.165 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.214 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.133 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.181 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.218 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.418 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.16 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.119 +0.333,0.591,0.0577,0.164,0,0,0,0,0.567,0.315 +0.333,0.591,0.0604,0.16,0,0,0,0,0.183,0.0394 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.197 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0.0667,0.0788 +0.667,0.671,0.172,0.294,0,0,0,0,0.683,0.158 +1,0.772,0.307,0.501,0,0,0,0,0,0.0394 +1,0.788,0.413,0.655,0.274,0.0667,0,0,0,0 +1,0.772,0.578,0.829,0.408,0.167,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0.115 +1,0.679,0.676,0.821,0,0,0,0,0,0.118 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.353 +1,0.633,0.0786,0.417,0,0,0,0,0,0.532 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.555 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.303 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.269 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.243 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.235 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.158 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.276 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0.158 +1,0.702,0.21,0.35,0,0,0,0,0.317,0.0788 +1,0.712,0.28,0.453,0,0,0,0,0.683,0 +1,0.702,0.39,0.569,0,0,0,0,0,0.0394 +1,0.681,0.481,0.62,0,0,0,0,0.25,0 +1,0.64,0.456,0.564,0,0,0,0,0,0.168 +1,0.599,0.278,0.356,0,0,0,0,0,0.111 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0.118 +1,0.562,0.0181,0.0495,0,0,0,0,0.5,0.0788 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0.244,0.233,0,0,0,0 +0.667,0.591,0.0855,0.17,0.524,0,0,0,0,0.17 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0.422 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0.394 +0.667,0.591,0.114,0.159,0,0,0,0,0,0.389 +0.667,0.591,0.129,0.159,0,0,0,0,0,0.31 +0.667,0.601,0.14,0.162,0,0,0,0,0,0.533 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0.118 +0.333,0.632,0.228,0.309,0,0,0,0,0.75,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0.0788 +0.333,0.565,0.0796,0.116,0,0,0,0,0,0 +0.667,0.558,0.0637,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.439 +1,0.57,0.0278,0.143,0,0,0,0,0,0.215 +1,0.585,0.0403,0.172,0,0,0,0,0,0.106 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0.158 +0.667,0.591,0.0855,0.17,0.506,0.233,0,0,0,0.197 +0.667,0.62,0.167,0.279,0.682,0,0,0,0,0.0788 +0.667,0.62,0.179,0.271,0.275,0,0.229,0.246,0,0.118 +0.667,0.62,0.21,0.269,0,0,0.422,0,0,0.0788 +0.667,0.62,0.239,0.269,0,0,0.656,0,0,0.197 +0.667,0.64,0.263,0.274,0,0,0.318,0,0.25,0.197 +0.667,0.671,0.276,0.294,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0.21 +1,0.772,0.649,0.829,0,0,0,0,0,0.121 +1,0.741,0.763,0.905,0,0,0,0,0,0.303 +1,0.679,0.704,0.821,0,0,0,0,0,0.0788 +1,0.618,0.444,0.51,0,0,0,0,0,0.227 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.171,0.0667,0,0,0.25,0.227 +1,0.578,0.0433,0.236,0.442,0.417,0.716,0.737,0.317,0.171 +1,0.633,0.0786,0.417,0,0,0.52,0,0.433,0.276 +0.667,0.62,0.0695,0.301,0,0,0,0,0.75,0.0788 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.0788 +0.333,0.591,0.0532,0.17,0,0,0,0,0.25,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0.0667,0.158 +0.333,0.591,0.0604,0.16,0,0,0,0,0.933,0.236 +0.667,0.62,0.118,0.269,0,0,0,0,0.25,0.118 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.276 +0.667,0.64,0.139,0.274,0,0,0.913,0.246,0,0.197 +0.667,0.671,0.172,0.294,0,0,0.265,0,0.25,0.128 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.255 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.301 +1,0.772,0.578,0.829,0,0,0,0,0,0.231 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0.0394 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +1,0.57,0.0296,0.143,0,0,0.246,0.246,0,0.286 +1,0.585,0.0368,0.172,0,0,0.622,0,0,0.242 +1,0.649,0.0963,0.427,0,0,0.0214,0,0,0.454 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.29 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.303 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.25 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0394 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.158 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.158 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0788 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.158 +0.667,0.702,0.21,0.35,0,0,0,0,0,0 +0.667,0.637,0.148,0.251,0.384,0.233,0,0,0,0 +1,0.772,0.578,0.829,0.7,0,0,0,0,0.0394 +1,0.681,0.481,0.62,0.447,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0.0394 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.286 +1,0.578,0.0433,0.236,0,0,0,0,0,0.585 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.553 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.284 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.236 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.236 +0.667,0.671,0.172,0.294,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.265 +0.667,0.712,0.28,0.453,0,0,0.0795,0.246,0,0.34 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.627 +1,0.741,0.713,0.905,0,0,0,0,0,0.131 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.212 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.192 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.36 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.419 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.269 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.512 +0.333,0.591,0.0532,0.17,0,0,0,0,0.317,0.25 +0.333,0.591,0.0577,0.164,0,0,0,0,0.433,0.118 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0788 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.304 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.464 +0.667,0.671,0.172,0.294,0.335,0.317,0,0,0,0.468 +0.667,0.702,0.21,0.35,0.545,0.167,0,0,0,0.112 +0.667,0.712,0.28,0.453,0.133,0,0,0,0,0.171 +1,0.772,0.578,0.829,0.67,0.233,0,0,0,0.283 +1,0.741,0.713,0.905,0,0,0,0,0,0.0564 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0.0788 +1,0.56,0.0165,0.0495,0,0,0,0,0.25,0.312 +1,0.56,0.0152,0.0495,0,0,0,0,0,0.0978 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.415 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.285 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.158 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.139 +0.333,0.591,0.0532,0.17,0,0,0,0,0.317,0 +0.333,0.591,0.0577,0.164,0,0,0,0,1,0.333 +0.667,0.591,0.0604,0.16,0,0,0,0,0.933,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0,0,0.567,0.197 +0.667,0.671,0.172,0.294,0,0,0,0,0.433,0.0788 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.118 +1,0.788,0.413,0.655,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0.144 +1,0.741,0.713,0.905,0,0,0,0,0,0.479 +1,0.601,0.236,0.307,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.189 +1,0.585,0.0403,0.172,0,0,0,0,0,0.304 +1,0.591,0.0586,0.175,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.317,0 +0.667,0.591,0.0855,0.17,0,0,0,0,1,0.118 +0.667,0.62,0.167,0.279,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0.433,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.0394 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.118 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.394 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.197 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.197 +0.667,0.712,0.335,0.453,0,0,0,0,0,0.0788 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.0394 +1,0.741,0.763,0.905,0,0,0.648,0.246,0,0 +1,0.679,0.704,0.821,0,0,0.625,0,0,0.442 +1,0.599,0.302,0.356,0,0,0.537,0,0,0.0394 +1,0.568,0.141,0.183,0,0,0.624,0,0,0.215 +1,0.558,0.0637,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.118 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.118 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +1,0.585,0.0403,0.172,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0.276 +1,0.591,0.0737,0.174,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0.158 +1,0.591,0.0927,0.164,0,0,0,0,0,0.0394 +0.667,0.591,0.0986,0.16,0,0,0,0,0.0667,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.683,0.236 +0.667,0.591,0.129,0.159,0,0,0,0,0,0.236 +0.667,0.601,0.14,0.162,0,0,0,0,0,0.315 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.0734 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.308 +1,0.788,0.493,0.655,0,0,0,0,0,0.531 +0.667,0.702,0.438,0.569,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0.0394 +1,0.599,0.302,0.356,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.241 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.212 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.19 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.147 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.337 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.348 +0.667,0.62,0.105,0.271,0,0,0.428,0.246,0,0 +0.333,0.591,0.0669,0.159,0,0,0.596,0,0,0.118 +0.333,0.591,0.0702,0.159,0,0,0.583,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0.488,0,0,0.0394 +0.333,0.616,0.0938,0.172,0,0,0.827,0,0,0.197 +0.333,0.632,0.113,0.2,0.635,0.483,0,0,0,0.197 +1,0.788,0.413,0.655,0.651,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0.232,0,0.225,0.246,0,0.207 +1,0.741,0.713,0.905,0,0,0.145,0,0,0.2 +1,0.601,0.236,0.307,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.317,0.0394 +1,0.56,0.0224,0.0798,0,0,0,0,0.683,0.166 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.327 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.146 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.687,0.483,0,0,0,0.276 +0.333,0.591,0.0604,0.16,0.231,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0394 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.276 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.197 +0.667,0.702,0.21,0.35,0,0,0,0,0.75,0 +1,0.788,0.413,0.655,0,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0,0,0,0,0,0.181 +1,0.741,0.713,0.905,0,0,0.757,0.246,0,0.383 +1,0.679,0.676,0.821,0,0,0.813,0,0,0 +1,0.58,0.147,0.203,0,0,0.291,0,0,0.101 +1,0.565,0.0695,0.116,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.17 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.56,0.0224,0.0798,0,0,0,0,0.0667,0.379 +0.667,0.578,0.0433,0.236,0,0,0,0,0.683,0.0788 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.276 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.236 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0788 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.0667,0.0394 +0,0.562,0.0159,0.0495,0,0,0.193,0.246,0.183,0.0394 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.0788 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.543 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.412 +1,0.772,0.578,0.829,0,0,0,0,0,0.281 +1,0.741,0.713,0.905,0,0,0,0,0,0.347 +1,0.64,0.456,0.564,0,0,0,0,0,0.415 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.192 +0.667,0.558,0.0289,0.11,0,0,0,0,0,0.158 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0.0788 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0.25,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0788 +0.333,0.591,0.0577,0.164,0,0,0.0795,0.0702,0,0.0788 +0.333,0.591,0.0604,0.16,0,0,0.775,0.175,0,0.158 +0.333,0.591,0.0669,0.159,0,0,0.538,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0.263,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.118 +0.333,0.637,0.148,0.251,0.25,0.317,0,0,0,0.459 +1,0.772,0.578,0.829,0.583,0.167,0,0,0,0 +1,0.741,0.713,0.905,0.654,0,0,0,0,0.158 +1,0.679,0.676,0.821,0.297,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.317,0.275 +1,0.587,0.057,0.33,0,0,0,0,0.183,0.622 +1,0.633,0.0786,0.417,0,0,0,0,0,0.296 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.632 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.0394 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.373 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.299 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.315 +0.333,0.591,0.0702,0.159,0,0,0,0,0.317,0.0394 +1,0.64,0.139,0.274,0,0,0,0,0.183,0.197 +1,0.726,0.25,0.417,0,0,0,0,0.25,0.161 +1,0.772,0.307,0.501,0,0,0,0,0,0.0394 +1,0.788,0.413,0.655,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.677,0.233,0,0,0,0 +1,0.741,0.713,0.905,0.536,0,0,0,0,0.162 +1,0.64,0.456,0.564,0.839,0,0,0,0,0.0177 +1,0.58,0.147,0.203,0.67,0,0,0,0,0 +1,0.565,0.0695,0.116,0.59,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.438,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.25,0.38 +1,0.57,0.0278,0.143,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.25,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0.276 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0.0394 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.0394 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.0394 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.0394 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.0394 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.158 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.197 +1,0.788,0.493,0.655,0,0,0.361,0.246,0.25,0.0788 +1,0.772,0.649,0.829,0,0,0.612,0,0,0 +1,0.741,0.763,0.905,0,0,0.326,0,0,0.197 +1,0.679,0.704,0.821,0,0,0.609,0,0,0 +1,0.618,0.444,0.51,0,0,0.555,0,0.25,0 +1,0.571,0.202,0.249,0,0,0,0,0,0.0394 +1,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.558,0.0205,0.0518,0,0,0,0,0,0.0788 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0.0788 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0.0394 +0.667,0.585,0.0403,0.172,0.215,0.317,0,0,0,0.0788 +0.667,0.62,0.0991,0.301,0.709,0.167,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0.0394 +0.667,0.62,0.153,0.291,0,0,0,0,0,0.0788 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.0788 +0.667,0.62,0.21,0.269,0,0,0.586,0.246,0,0.158 +1,0.649,0.35,0.379,0,0,0.251,0,0,0.0788 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.118 +0.333,0.616,0.147,0.172,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.0963,0.0702,0,0 +0,0.562,0.0181,0.0495,0,0,0.468,0.175,0,0 +0.333,0.621,0.266,0.335,0,0,0.106,0,0,0.0394 +1,0.679,0.704,0.821,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.327 +1,0.57,0.0296,0.143,0,0,0,0,0,0.34 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.197 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.345 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.0806 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.0788 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.118 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0394 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.199 +0.667,0.671,0.172,0.294,0,0,0,0,0.25,0.18 +1,0.772,0.307,0.501,0,0,0,0,0.25,0 +1,0.788,0.413,0.655,0.673,0.817,0,0,0,0.0394 +1,0.772,0.578,0.829,0.566,0.4,0,0,0,0 +1,0.741,0.713,0.905,0.55,0,0,0,0,0.0788 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.342 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.202 +1,0.57,0.0296,0.143,0,0,0,0,0,0.216 +1,0.609,0.0577,0.295,0,0,0,0,0,0.253 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.0394 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0.0667,0.158 +0.333,0.591,0.0604,0.16,0,0,0,0,0.183,0.0394 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.197 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0394 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0.25,0.0808 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.205 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0788 +1,0.741,0.713,0.905,0,0,0,0,0,0.0394 +1,0.679,0.676,0.821,0,0,0,0,0,0.161 +1,0.58,0.147,0.203,0,0,0,0,0,0.139 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.147 +0.333,0.562,0.0159,0.0495,0.534,0.483,0,0,0.317,0.354 +0.333,0.591,0.0427,0.175,0.113,0,0,0,0.433,0.0788 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0788 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0394 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.119 +1,0.772,0.307,0.501,0.105,0.0667,0,0,0.5,0.0394 +1,0.788,0.413,0.655,0.375,0.417,0,0,0,0.158 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.236 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0.0394 +0.667,0.58,0.147,0.203,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0826,0.246,0,0.0394 +1,0.56,0.0224,0.0798,0,0,0.491,0,0,0.455 +1,0.578,0.0433,0.236,0,0,0.746,0,0,0.137 +0.667,0.585,0.0368,0.172,0,0,0.625,0,0,0.158 +0.667,0.591,0.0427,0.175,0,0,0.488,0,0,0.158 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.158 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.288 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.361 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.511 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.236 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0394 +0.667,0.671,0.172,0.294,0,0,0,0,0.25,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0.502,0.246,0,0.0394 +1,0.681,0.481,0.62,0,0,0.535,0,0,0.184 +1,0.64,0.456,0.564,0,0,0.586,0,0,0.201 +1,0.58,0.147,0.203,0,0,0.0917,0,0,0.0394 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.0394 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0394 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.269 +1,0.57,0.0296,0.143,0,0,0,0,0.25,0.316 +1,0.633,0.0786,0.417,0,0,0,0,0,0.0394 +1,0.649,0.0963,0.427,0,0,0,0,0,0.0788 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.433 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0788 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0788 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0788 +1,0.726,0.25,0.417,0,0,0,0,0.25,0.118 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.158 +1,0.788,0.413,0.655,0,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.157,0.0667,0,0,0,0 +1,0.679,0.676,0.821,0.602,0.917,0,0,0,0.2 +1,0.618,0.409,0.51,0.627,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.56,0.0193,0.0506,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.453 +1,0.585,0.0403,0.172,0,0,0,0,0,0.287 +1,0.591,0.0586,0.175,0,0,0,0,0,0.385 +1,0.62,0.129,0.299,0,0,0,0,0,0.115 +0.667,0.62,0.153,0.291,0,0,0,0,0,0.489 +0.667,0.62,0.167,0.279,0,0,0,0,0,0.206 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.0394 +0,0.562,0.0181,0.0495,0,0,0,0,0.25,0.0394 +0.333,0.591,0.129,0.159,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.118 +1,0.726,0.405,0.417,0,0,0,0,0,0.118 +1,0.772,0.419,0.501,0,0,0.428,0.246,0,0 +0.667,0.712,0.335,0.453,0,0,0.488,0,0,0.118 +0.667,0.702,0.438,0.569,0,0,0.413,0,0,0.158 +0.667,0.681,0.514,0.62,0,0,0,0,0,0.0788 +0.667,0.64,0.475,0.564,0,0,0,0,0,0.0394 +0.667,0.599,0.302,0.356,0,0,0,0,0,0.205 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0.0788 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.105 +1,0.57,0.0278,0.143,0,0,0,0,0,0.328 +1,0.585,0.0403,0.172,0,0,0,0,0,0.236 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0.158 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0.554 +0.667,0.62,0.179,0.271,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0.0394 +1,0.62,0.239,0.269,0,0,0.329,0.246,0,0.0788 +1,0.679,0.385,0.387,0,0,0.752,0,0,0.158 +1,0.726,0.405,0.417,0,0,0.742,0,0,0.118 +1,0.772,0.419,0.501,0,0,0,0,0,0 +1,0.788,0.493,0.655,0.447,0.567,0,0,0,0.0788 +1,0.772,0.649,0.829,0.284,1,0.373,0.86,0,0.0788 +1,0.741,0.763,0.905,0,0.15,0.398,0.632,0,0.0394 +1,0.679,0.704,0.821,0,0,0.555,0,0,0.0788 +1,0.618,0.444,0.51,0,0,0.657,0,0,0.0788 +1,0.568,0.141,0.183,0,0,0.352,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.483 +1,0.56,0.0224,0.0798,0,0,0,0,0.0667,0.313 +0.667,0.57,0.0296,0.143,0,0,0,0,0.183,0.0394 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.158 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.297 +0.667,0.671,0.172,0.294,0,0,0,0,0.25,0.387 +1,0.772,0.307,0.501,0,0,0,0,0,0.276 +1,0.788,0.413,0.655,0,0,0,0,0,0.118 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.131 +1,0.741,0.713,0.905,0,0,0,0,0,0.155 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0.308 +1,0.565,0.0695,0.116,0,0,0,0,0,0.137 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.171 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.309 +1,0.558,0.0289,0.11,0,0,0,0,0,0.117 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.283 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.394 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.112 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.107 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.241 +0.667,0.62,0.125,0.269,0,0,0,0,0,1 +0.333,0.601,0.0774,0.162,0,0,0,0,0.25,0.118 +0.667,0.671,0.172,0.294,0,0,0.388,0.246,0,0.0394 +0.667,0.702,0.21,0.35,0,0,0.635,0,0,0.0788 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0788 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.313 +1,0.741,0.713,0.905,0,0,0,0,0,0.129 +1,0.679,0.676,0.821,0,0,0,0,0,0.0788 +1,0.58,0.147,0.203,0,0,0,0,0,0.242 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.454,0.483,0,0,0,0.0394 +0.667,0.585,0.0368,0.172,0.534,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.197 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.118 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.236 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.158 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0394 +1,0.772,0.307,0.501,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.145,0.0667,0,0,0,0 +0.667,0.702,0.39,0.569,0.628,1,0,0,0,0 +0.667,0.681,0.481,0.62,0,0.9,0,0,0,0.0788 +1,0.601,0.236,0.307,0,0,0,0,0,0.0815 +1,0.58,0.147,0.203,0,0,0,0,0,0.296 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.234 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.188 +1,0.569,0.0294,0.147,0,0,0,0,0,0.198 +1,0.608,0.0573,0.305,0,0,0,0,0,0.788 +1,0.618,0.069,0.318,0,0,0.405,0.246,0,0.398 +1,0.647,0.113,0.456,0,0,0.401,0,0,0.465 +0.667,0.618,0.0898,0.312,0,0,0.211,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.434 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.315 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0394 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.118 +0.667,0.711,0.278,0.647,0,0,0,0,0.183,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0.35,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.201 +1,0.639,0.452,0.394,0,0,0,0,0,0.225 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.521,0.246,0,0.312 +1,0.631,0.078,0.433,0,0,0.11,0,0.267,0.508 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.255 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.703 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.22 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.268 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.118 +0.667,0.618,0.117,0.289,0,0,0,0,0.267,0.422 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0788 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.0394 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.0788 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.422,0.433,0,0,0,0.137 +1,0.77,0.573,0.919,0.522,0.6,0,0,0,0.241 +1,0.739,0.708,0.747,0.654,0,0,0,0,0.2 +1,0.639,0.452,0.394,0,0,0,0,0,0.496 +1,0.598,0.276,0.345,0,0,0,0,0,0.0992 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +0.667,0.585,0.04,0.177,0,0,0,0,0,0.0394 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0.118 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0.267,0.356 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.473 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.188 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.175 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.0788 +0.667,0.67,0.274,0.425,0,0,0,0,0,0.315 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.0394 +1,0.785,0.489,0.946,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0.197 +1,0.616,0.441,0.493,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.267,0.118 +0.667,0.618,0.128,0.321,0,0,0.33,0.246,0.267,0 +0.667,0.618,0.152,0.312,0,0,0.433,0.0702,0,0.118 +0.667,0.618,0.166,0.3,0,0,0.858,0.175,0,0.118 +0.667,0.618,0.178,0.292,0,0,0.255,0,0,0.197 +0.667,0.618,0.209,0.289,0,0,0,0,0.817,0.158 +0.667,0.59,0.128,0.173,0,0,0,0,0.267,0.155 +0.667,0.6,0.139,0.194,0,0,0,0,0,0.117 +0.667,0.67,0.274,0.425,0,0,0,0,0,0.0394 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.154 +0.667,0.711,0.332,0.647,0.117,0.0667,0,0,0,0.166 +0.667,0.7,0.435,0.629,0.422,0.45,0,0,0.267,0.0394 +0.667,0.68,0.51,0.515,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0.311 +1,0.598,0.3,0.345,0,0,0,0,0,0.142 +1,0.567,0.14,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.439 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0.197 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.559,0.0223,0.0816,0,0,0.286,0.719,0,0.276 +1,0.577,0.043,0.245,0,0,0.635,0.772,0.433,0.0394 +1,0.608,0.0573,0.305,0,0,0,0,0.383,0.558 +0.667,0.59,0.0424,0.184,0,0,0,0,0.267,0.203 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.339 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.193 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0788 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.578 +0.333,0.6,0.0769,0.194,0,0,0.115,0.193,0,0.223 +0.333,0.616,0.0931,0.237,0,0,0,0.0526,0.817,0.184 +1,0.77,0.304,0.804,0.426,0.433,0,0,0,0 +1,0.785,0.409,0.946,0.105,0.617,0,0,0,0.0815 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.202 +1,0.559,0.0177,0.051,0,0,0,0,0,0.0688 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.412 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.127 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.464 +0.333,0.59,0.0574,0.175,0,0,0,0,0.267,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.197 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0788 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.551 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.0394 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.0788 +0.333,0.631,0.112,0.301,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0.0394 +1,0.739,0.708,0.747,0,0,0,0,0,0.126 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.104 +1,0.569,0.0294,0.147,0,0,0,0,0,0.403 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.0788 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.276 +0.333,0.59,0.0483,0.185,0.351,0.517,0,0,0,0.284 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.307 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0.267,0.197 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.0394 +0.667,0.7,0.208,0.553,0.501,0.933,0,0,0,0.197 +0.667,0.711,0.278,0.647,0.119,0.3,0,0,0,0.243 +1,0.77,0.573,0.919,0.585,0.333,0,0,0,0.261 +1,0.739,0.708,0.747,0,0,0,0,0,0.441 +1,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.151 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.282 +1,0.585,0.0366,0.177,0,0,0,0,0,0.0915 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.0788 +0.333,0.59,0.0528,0.181,0,0,0,0,0.267,0.197 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0.33,0.246,0,0 +0.333,0.59,0.0665,0.169,0,0,0.586,0,0,0.276 +0.333,0.59,0.0697,0.173,0,0,0.433,0,0,0.276 +0.333,0.6,0.0769,0.194,0,0,0.661,0,0,0.0394 +0.333,0.616,0.0931,0.237,0,0,0.726,0,0.267,0.0788 +0.667,0.7,0.208,0.553,0,0,0.55,0,0,0.0394 +1,0.785,0.409,0.946,0.171,0.183,0.734,0,0,0.118 +1,0.77,0.573,0.919,0.377,0.333,0.0917,0,0,0.0394 +1,0.739,0.708,0.747,0,0,0,0,0,0.202 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.148 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.119,0.183,0,0,0.267,0.0788 +0.667,0.59,0.0424,0.184,0.572,1,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0.133,0,0,0,0.158 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.118 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.433,0.0394 +0.333,0.59,0.0665,0.169,0,0,0,0,0.383,0.158 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.366 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.204 +0.667,0.616,0.0931,0.237,0,0,0,0,0.683,0 +0.667,0.7,0.208,0.553,0.517,0.25,0,0,1,0.118 +1,0.785,0.409,0.946,0.0663,0,0,0,0.783,0 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.541 +1,0.639,0.452,0.394,0,0,0,0,0,0.0821 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.483 +1,0.577,0.0372,0.245,0,0,0,0,0,0.118 +1,0.608,0.0619,0.305,0,0,0,0,0,0.352 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0.326 +0.333,0.59,0.0732,0.185,0,0,0,0,0.267,0.0394 +0.333,0.59,0.0849,0.181,0,0,0.202,0.0702,0,0.0394 +0.333,0.59,0.092,0.175,0,0,0.434,0.175,0,0.0394 +0.667,0.618,0.178,0.292,0,0,0.532,0,0,0.197 +0.667,0.618,0.209,0.289,0,0,0.45,0,0,0.158 +0.667,0.618,0.237,0.297,0,0,0.482,0,0,0.236 +0.667,0.6,0.139,0.194,0,0,0,0,0,0.158 +0.667,0.616,0.146,0.237,0,0,0,0,0.267,0.0394 +1,0.7,0.283,0.553,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0.0394 +1,0.77,0.643,0.919,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.27 +1,0.59,0.0732,0.185,0,0,0,0,0,0.201 +0.667,0.618,0.152,0.312,0,0,0,0,0,0.315 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.0394 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.276 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.494 +0.667,0.618,0.237,0.297,0,0,0,0,0,0.156 +0.667,0.639,0.261,0.338,0.161,0.0667,0,0,0,0.204 +0.667,0.67,0.274,0.425,0.777,0.45,0,0,0,0.0838 +1,0.7,0.283,0.553,0.612,0,0,0,0.267,0.158 +1,0.785,0.489,0.946,0.217,0,0,0,0,0.315 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.0394 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0.248 +1,0.598,0.3,0.345,0,0,0,0,0,0.18 +1,0.564,0.079,0.116,0,0,0,0,0,0.0757 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.311 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.337 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.529 +1,0.569,0.0294,0.147,0,0,0,0,0,0.35 +0.667,0.585,0.0366,0.177,0,0,0,0,0.267,0.17 +1,0.59,0.0424,0.184,0,0,0,0,0,0.304 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.0394 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0.164,0.183,0,0,0,0.288 +0.667,0.618,0.104,0.292,0.627,0.867,0,0,0,0.204 +0.667,0.618,0.117,0.289,0.115,0,0,0,0,0.158 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.236 +0.333,0.6,0.0769,0.194,0,0,0,0,0.267,0.118 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.158 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.628,0.517,0,0,0,0.0788 +1,0.77,0.573,0.919,0.134,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0757 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0.234,0.246,0.267,0 +1,0.631,0.078,0.433,0,0,0.602,0,0,0.118 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.552 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0788 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.236 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0788 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.473 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0.276 +1,0.77,0.304,0.804,0,0,0,0,0,0.141 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.0971 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.132 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.342 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.332 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.433,0.118 +0.333,0.59,0.0424,0.184,0,0,0,0,0.933,0.0788 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.334 +0.667,0.639,0.138,0.338,0,0,0,0,0.533,0.236 +1,0.724,0.248,0.612,0,0,0,0,0.267,0.158 +1,0.77,0.304,0.804,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0.125 +1,0.739,0.708,0.747,0,0,0,0,0,0.214 +1,0.677,0.671,0.566,0,0,0,0,0,0.379 +1,0.616,0.405,0.493,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +1,0.559,0.0177,0.051,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.221 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.333,0.59,0.06,0.171,0,0,0,0,0.267,0.197 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.197 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0788 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.158 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0788 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.0788 +1,0.77,0.573,0.919,0,0,0,0,0,0.0948 +1,0.739,0.708,0.747,0,0,0,0,0,0.276 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.433,0.236 +1,0.559,0.0223,0.0816,0,0,0,0,0.1,0.0985 +1,0.577,0.043,0.245,0,0,0,0,0,0.57 +1,0.631,0.078,0.433,0,0,0,0,0,0.0991 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.158 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0394 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0.473 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.158 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.182 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.291 +1,0.564,0.0691,0.116,0,0,0,0,0,0.118 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.317,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0.217,0.578 +1,0.59,0.0582,0.184,0,0,0,0,0,0.527 +1,0.618,0.128,0.321,0,0,0,0,0,0.129 +1,0.618,0.152,0.312,0,0,0,0,0,0.154 +1,0.618,0.166,0.3,0,0,0,0,0.817,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0.267,0 +1,0.618,0.209,0.289,0,0,0,0,0,0.158 +1,0.647,0.347,0.421,0.323,0.517,0,0,0,0.118 +1,0.677,0.382,0.482,0.293,0,0,0,0,0.197 +1,0.724,0.402,0.612,0,0,0,0,0,0.0394 +1,0.77,0.415,0.804,0.187,0.0667,0,0,0,0 +1,0.785,0.489,0.946,0.56,0.183,0,0,0,0.0788 +1,0.77,0.643,0.919,0.757,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0.0394 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.23 +1,0.569,0.0277,0.147,0,0,0,0,0,0.699 +1,0.585,0.04,0.177,0,0,0,0,0.817,0.286 +1,0.618,0.0983,0.318,0,0,0,0,0.55,0 +1,0.647,0.183,0.456,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0.315 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.158 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.0394 +0.333,0.59,0.113,0.169,0,0,0,0,0.267,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.677,0.382,0.482,0,0,0,0,0,0.118 +1,0.724,0.402,0.612,0,0,0,0,0,0.0788 +1,0.77,0.415,0.804,0.295,0.317,0,0,0,0.118 +1,0.785,0.489,0.946,0.257,0.2,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.616,0.441,0.493,0.283,0.783,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.429 +1,0.585,0.0565,0.342,0,0,0,0,0,0.354 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.401 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.248 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.197 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0.433,0 +0.333,0.59,0.06,0.171,0,0,0,0,0.1,0.0788 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.236 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.383 +0.667,0.67,0.17,0.425,0,0,0,0,0.267,0.259 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.158 +1,0.785,0.409,0.946,0,0,0,0,0,0.522 +1,0.77,0.573,0.919,0,0,0,0,0,0.118 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0.303,0.246,0,0.279 +0.667,0.598,0.276,0.345,0,0,0.206,0,0,0.107 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0.0394 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.559,0.0223,0.0816,0,0,0,0,0.183,0.456 +1,0.577,0.043,0.245,0,0,0,0,0.35,0.237 +1,0.608,0.0573,0.305,0,0,0,0,0,0.229 +1,0.647,0.0955,0.452,0,0,0,0,0,0.242 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.433,0.0394 +0.333,0.6,0.0769,0.194,0,0,0.63,0.246,0.383,0.315 +0.667,0.67,0.17,0.425,0,0,0.7,0,0,0.382 +0.667,0.7,0.208,0.553,0,0,0.402,0,0.433,0.0394 +1,0.785,0.409,0.946,0,0,0,0,0.383,0.118 +1,0.77,0.573,0.919,0,0,0.11,0.193,0,0.118 +1,0.739,0.708,0.747,0,0,0.52,0.0526,0,0.121 +1,0.677,0.671,0.566,0,0,0.552,0,0,0 +1,0.598,0.276,0.345,0,0,0.502,0,0,0.0788 +1,0.564,0.0691,0.116,0,0,0.422,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.625 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.285 +1,0.577,0.043,0.245,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.503,0.683,0,0,0,0.118 +0.333,0.59,0.0528,0.181,0.145,0.367,0,0,0,0.61 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.146 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.452 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0788 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0788 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.17 +0.333,0.631,0.112,0.301,0,0,0,0,0.533,0.258 +0.333,0.636,0.147,0.348,0,0,0,0,0,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0.0788 +1,0.68,0.477,0.515,0,0,0,0,0,0.236 +1,0.639,0.452,0.394,0,0,0,0,0,0.0394 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.286 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0.224 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.184 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.363 +0.667,0.618,0.069,0.318,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.433 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0788 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.236 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.212 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.158 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0394 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.236 +0.667,0.631,0.112,0.301,0,0,0,0,0,0.118 +1,0.785,0.409,0.946,0,0,0,0,0,0.362 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.0394 +0.667,0.621,0.246,0.282,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0.23 +1,0.564,0.0691,0.116,0,0,0,0,0,0.092 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.263 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.243 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.311 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.611 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.16 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.205 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.518 +1,0.77,0.304,0.804,0,0,0,0,0,0.236 +0.667,0.711,0.278,0.647,0,0,0,0,0.683,0 +0.667,0.7,0.387,0.629,0.569,0.517,0,0,0.4,0.0788 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.258 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0.12 +1,0.564,0.0691,0.116,0,0,0,0,0,0.128 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.213 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.541 +1,0.618,0.0983,0.318,0,0,0,0,0,0.26 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +1,0.618,0.166,0.3,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.236 +0.333,0.59,0.113,0.169,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0.118 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.0788 +0.667,0.616,0.146,0.237,0,0,0,0,0.267,0.0394 +1,0.77,0.415,0.804,0.421,0.317,0,0,0.267,0.0394 +1,0.785,0.489,0.946,0.319,0.467,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0.0788 +1,0.567,0.14,0.183,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0.175 +1,0.559,0.0264,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +0.667,0.59,0.0732,0.185,0,0,0.326,0.246,0,0.0394 +0.667,0.618,0.152,0.312,0,0,0.876,0,0,0 +0.667,0.618,0.166,0.3,0,0,0.405,0,0,0.0788 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.118 +0.667,0.618,0.209,0.289,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0.354 +1,0.639,0.261,0.338,0,0,0,0,0,0.75 +1,0.67,0.274,0.425,0,0,0,0,0,0.27 +1,0.7,0.283,0.553,0,0,0,0,0,0.313 +1,0.711,0.332,0.647,0,0,0,0,0,0.0788 +0.667,0.7,0.435,0.629,0,0,0,0,0.267,0.142 +1,0.739,0.756,0.747,0,0,0,0,0,0.215 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.276 +1,0.559,0.0177,0.051,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.193 +1,0.569,0.0294,0.147,0,0,0,0,0,0.0671 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.0788 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.118 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.276 +0.667,0.59,0.0697,0.173,0,0,0,0,0.533,0.118 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0.0788 +1,0.724,0.248,0.612,0,0,0,0,0.183,0.34 +1,0.77,0.304,0.804,0,0,0,0,0.0833,0.0394 +0.667,0.711,0.278,0.647,0,0,0,0,0.267,0 +1,0.77,0.573,0.919,0,0,0,0,0,0.0394 +1,0.739,0.708,0.747,0,0,0,0,0,0.162 +1,0.639,0.452,0.394,0,0,0,0,0,0.208 +1,0.598,0.276,0.345,0,0,0,0,0,0.0781 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.304 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.728 +1,0.569,0.0294,0.147,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0.358,0.433,0,0,0,0.0394 +0.333,0.59,0.0424,0.184,0.415,0.0833,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0.415,0.433,0,0,0,0 +0.333,0.59,0.0528,0.181,0.197,0.0833,0,0,0,0.0394 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.197 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.0788 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0.421,0.433,0,0,0,0 +0.333,0.631,0.112,0.301,0.126,0.0833,0,0,0,0.668 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.311 +1,0.77,0.573,0.919,0,0,0,0,0,0.185 +1,0.739,0.708,0.747,0,0,0,0,0,0.185 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.236 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.318 +1,0.585,0.0565,0.342,0,0,0.219,0.246,0,0.564 +1,0.631,0.078,0.433,0,0,0.255,0,0,0.458 +0.333,0.59,0.0424,0.184,0,0,0.615,0,0,0.236 +0.333,0.59,0.0483,0.185,0,0,0.735,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.419,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0.00917,0,0,0.0394 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.158 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.118 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.118 +0.333,0.616,0.0931,0.237,0.578,0.517,0,0,0.267,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.239 +0.667,0.7,0.387,0.629,0.651,0.517,0,0,0,0.15 +1,0.739,0.708,0.747,0.773,0,0,0,0,0.0394 +1,0.677,0.671,0.566,0,0,0,0,0,0.0394 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.118 +0.333,0.59,0.0528,0.181,0,0,0,0,0.267,0.315 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0394 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0394 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.158 +0.667,0.7,0.208,0.553,0,0,0,0,0.267,0.197 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.78,0.933,0,0,0,0 +1,0.739,0.708,0.747,0.661,0.117,0,0,0,0.0788 +1,0.677,0.671,0.566,0,0,0,0,0,0.173 +1,0.598,0.276,0.345,0,0,0,0,0,0.0394 +1,0.567,0.122,0.183,0,0,0,0,0,0.0394 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.188 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.283 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.0765 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.618,0.25,0,0,0,0.0394 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.127 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.276 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.118 +0.667,0.67,0.17,0.425,0,0,0,0,0.433,0.0394 +1,0.77,0.304,0.804,0,0,0,0,0.1,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.0394 +1,0.677,0.671,0.566,0,0,0,0,0,0.344 +1,0.598,0.276,0.345,0,0,0,0,0,0.0992 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0.0873 +1,0.732,0.128,0.33,0,0,0,0,0,0.361 +1,0.732,0.168,0.337,0,0,0,0,0,0.222 +1,0.818,0.289,0.468,0,0,0,0,0,0.439 +0.333,0.647,0.118,0.183,0,0,0,0,0.267,0.0394 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.118 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.118 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.118 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.158 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.394 +1,0.973,0.549,0.869,0,0,0,0,0,0.236 +1,0.993,0.647,1,0,0,0,0,0,0.0394 +1,0.973,0.851,0.933,0,0,0,0,0,0.0394 +1,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0.197 +1,0.732,0.168,0.337,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0.158 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.0788 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.225 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.419 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.333 +1,0.915,0.531,0.661,0,0,0,0,0,0.268 +1,0.836,0.372,0.596,0,0,0,0,0,0.154 +1,0.849,0.437,0.683,0,0,0,0,0,0.727 +1,0.836,0.573,0.638,0,0,0,0,0,0.366 +1,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0.317,0 +1,0.667,0.183,0.183,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.836 +1,0.719,0.074,0.313,0,0,0,0,0,0.284 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.655 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.197 +0.667,0.797,0.224,0.457,0,0,0,0,0.0667,0.197 +0.333,0.699,0.145,0.323,0,0,0,0,0.483,0.253 +1,0.993,0.541,1,0,0,0,0,0,0.361 +1,0.973,0.758,0.933,0,0,0,0,0,0.197 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.0394 +0.667,0.758,0.596,0.386,0,0,0,0,0.817,0.0788 +1,0.634,0.189,0.196,0.459,0.267,0,0,0.583,0 +1,0.614,0.0879,0.116,0.871,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.44,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.267,0.118 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.218 +1,0.608,0.026,0.0829,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +0.667,0.64,0.0449,0.181,0,0,0,0,0.267,0.236 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.0788 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0.55,0.0788 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0788 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.158 +0.667,0.836,0.273,0.596,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.506,0.317,0,0,0,0.147 +0.667,0.836,0.51,0.638,0.574,1,0,0,0,0 +1,0.934,0.936,0.732,0.548,0.317,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0.0788 +1,0.706,0.363,0.342,0,0,0,0,0,0.283 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.197 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.176 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0.483,0.533,0,0,0,0.159 +0.667,0.647,0.0527,0.19,0.476,0,0,0,0,0.31 +0.667,0.732,0.105,0.337,0,0,0,0,0.267,0.222 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.197 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.204,0.344,0.317,0,0,0,0.118 +0.667,0.797,0.224,0.457,0.218,0.217,0,0,0.317,0.0394 +0.667,0.836,0.273,0.596,0,0,0,0,0.233,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.354 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.197 +1,0.934,0.936,0.732,0,0,0,0,0,0.461 +1,0.857,0.887,0.554,0,0,0,0,0,0.136 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.413 +1,0.621,0.0355,0.15,0,0,0,0,0,0.69 +1,0.798,0.103,0.444,0,0,0,0,0,0.247 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.185 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.636 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.296 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.124 +0.667,0.732,0.136,0.307,0,0,0,0,0.267,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0788 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0788 +0.667,0.836,0.273,0.596,0.353,0.317,0,0,0,0.0394 +0.667,0.849,0.366,0.683,0.461,0.217,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.558,0.246,0,0.0788 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.357 +1,0.706,0.363,0.342,0,0,0,0,0,0.187 +1,0.614,0.0879,0.116,0,0,0,0,0,0.141 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.321 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.185 +1,0.608,0.026,0.0829,0,0,0,0,0,0.157 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.413 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.301 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.128 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.233 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.326 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.774 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.221 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.918 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.614 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.419 +1,0.973,0.758,0.933,0,0,0.0612,0.0702,0,0.458 +1,0.934,0.936,0.732,0,0,0.506,0.175,0,0.0394 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.262 +1,0.64,0.049,0.181,0,0,0,0,0,0.349 +1,0.647,0.0731,0.19,0,0,0,0,0,0.0788 +1,0.647,0.0928,0.193,0,0,0.358,0.246,0,0 +1,0.647,0.108,0.189,0,0,0,0,0.0667,0.381 +1,0.818,0.317,0.449,0,0,0,0,0.2,0.0939 +1,0.818,0.34,0.436,0,0,0,0,0,0.321 +1,0.818,0.402,0.432,0,0,0,0,0,0.496 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.431 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.0394 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.118 +0.333,0.699,0.195,0.323,0,0,0,0,0.317,0 +0.333,0.705,0.228,0.366,0,0,0,0,0.233,0.197 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.0394 +0.667,0.81,0.673,0.504,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0.0806 +0.667,0.667,0.183,0.183,0,0,0,0,0,0.23 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0.207 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.356 +1,0.621,0.0327,0.15,0,0,0,0,0,0.103 +1,0.64,0.049,0.181,0,0,0,0,0,0.179 +1,0.647,0.0731,0.19,0,0,0,0,0,0.356 +1,0.647,0.0928,0.193,0,0,0,0,0,0.0394 +1,0.732,0.198,0.328,0,0,0,0,0,0.157 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.206 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.491 +1,0.818,0.402,0.432,0,0,0,0,0,0.0394 +1,0.818,0.459,0.446,0,0,0,0,0,0.0788 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.474 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.473 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.19 +1,0.993,0.647,1,0,0,0,0,0,0.493 +1,0.973,0.851,0.933,0,0,0,0,0,0.106 +1,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0.385 +1,0.706,0.394,0.342,0,0,0,0,0,0.0359 +1,0.614,0.101,0.116,0,0,0,0,0,0.281 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.0798 +1,0.608,0.026,0.0578,0,0,0,0,0,0.11 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.846 +1,0.608,0.026,0.0829,0,0,0,0,0,0.503 +1,0.68,0.0551,0.251,0,0,0,0,0,0.382 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.375 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.287 +1,0.732,0.105,0.337,0,0,0,0,0,0.31 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.207 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.384 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.191 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.118 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0394 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.115 +0.667,0.797,0.224,0.457,0,0,0,0,0.267,0.194 +1,0.973,0.402,0.869,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0.55,0 +1,0.973,0.758,0.933,0,0,0,0,0,0.0394 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0.0394 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.831 +1,0.74,0.0747,0.351,0,0,0,0,0.267,0.372 +1,0.798,0.103,0.444,0,0,0,0,0,0.118 +0.667,0.732,0.0895,0.33,0,0,0.0214,0.0702,0,0.0788 +0.667,0.732,0.105,0.337,0,0,1,0.965,0,0 +0.333,0.647,0.0664,0.189,0,0,0.124,0,0,0.118 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.276 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.419 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.43 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.569 +1,0.973,0.758,0.933,0,0,0.414,0.246,0,0 +1,0.934,0.936,0.732,0,0,0.633,0,0,0 +1,0.857,0.887,0.554,0,0,0.24,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.25 +1,0.608,0.026,0.0829,0,0,0,0,0,0.0948 +0.333,0.562,0.0159,0.0495,0.295,0.317,0,0,0,0.0394 +0.333,0.64,0.0449,0.181,0.295,0.217,0,0,0.267,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.118 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.236 +0.333,0.647,0.0759,0.178,0,0,0,0,0.55,0.236 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0394 +0.667,0.797,0.224,0.457,0.223,0.317,0,0,0.0667,0 +1,0.973,0.402,0.869,0.407,0.767,0,0,0.2,0.0394 +1,0.993,0.541,1,0,0,0,0,0,0.0394 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.118 +0.667,0.758,0.596,0.386,0,0,0.489,0.246,0,0 +1,0.706,0.363,0.342,0,0,0.424,0,0,0 +1,0.667,0.16,0.183,0,0,0.356,0,0,0 +1,0.654,0.0689,0.099,0,0,0.398,0,0,0.0394 +1,0.654,0.0362,0.066,0,0,0.584,0,0,0 +1,0.654,0.0208,0.0495,0,0,0.295,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.338 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.111 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.0394 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.315 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.276 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.224 +0.333,0.66,0.0982,0.204,0,0,0,0,0.0667,0.0394 +0.667,0.797,0.224,0.457,0,0,0,0,0.2,0.0788 +0.667,0.836,0.273,0.596,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0.0667,0 +1,0.973,0.758,0.933,0.642,0.817,0,0,0.483,0.197 +1,0.934,0.936,0.732,0.297,0.55,0,0,0,0.0788 +1,0.758,0.596,0.386,0,0,0,0,0,0.0394 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0728 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.577 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.694 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.149 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0788 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.118 +0.667,0.647,0.0845,0.177,0,0,0,0,0.55,0.0394 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0.0394 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0.158 +0.667,0.679,0.12,0.253,0,0,0,0,0,0.0394 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.241 +1,0.993,0.541,1,0,0,0,0,0,0.118 +1,0.973,0.758,0.933,0,0,0,0,0,0.308 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.295 +1,0.758,0.596,0.386,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.205 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.0788 +0.667,0.647,0.108,0.189,0,0,0,0,0,0.158 +0.667,0.647,0.118,0.183,0,0,0,0,0,0.0788 +0.667,0.647,0.125,0.178,0,0,0,0,0,0.158 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.0394 +1,0.818,0.459,0.446,0.394,0.317,0,0,0,0.158 +1,0.857,0.505,0.513,0.627,0.217,0,0,0.0667,0.158 +1,0.915,0.531,0.661,0.679,0,0,0,0.767,0.118 +1,0.973,0.549,0.869,0,0,0,0,0,0.241 +1,0.993,0.647,1,0,0,0,0,0,0.247 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0.325 +0.667,0.667,0.183,0.183,0,0,0,0,0,0.0394 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0.292 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0788 +1,0.608,0.0224,0.0495,0,0,0,0,0,0.197 +1,0.608,0.019,0.0495,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.11 +0.667,0.647,0.0731,0.19,0,0,0,0,0.267,0.56 +0.667,0.732,0.168,0.337,0,0,0,0,0,0.0675 +1,0.818,0.289,0.468,0,0,0,0,0,0.213 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.0394 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.357 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.566 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.303 +1,0.857,0.505,0.513,0,0,0,0,0,0.158 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.158 +0.667,0.836,0.372,0.596,0,0,0.0489,0.0702,0,0.111 +0.667,0.849,0.437,0.683,0,0,0.598,0.175,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0.267,0 +0.667,0.81,0.673,0.504,0.653,0.533,0.317,0.246,0,0 +1,0.857,0.923,0.554,0.131,0,0.572,0,0,0 +1,0.706,0.394,0.342,0,0,0.503,0,0,0.2 +1,0.667,0.183,0.183,0,0,0.115,0,0,0.35 +1,0.654,0.0689,0.099,0,0,0,0,0,0.13 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.195 +1,0.608,0.02,0.0513,0,0,0,0,0,0.365 +1,0.608,0.026,0.0829,0,0,0,0,0,0.189 +1,0.68,0.0551,0.251,0,0,0,0,0,0.14 +0.667,0.719,0.074,0.313,0,0,0,0,0.267,0.115 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.341 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.213 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.158 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.236 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0788 +0.333,0.679,0.12,0.253,0,0,0,0,0.0667,0.158 +0.667,0.836,0.273,0.596,0,0,0,0,1,0.118 +0.667,0.849,0.366,0.683,0.513,0.533,0,0,0.05,0 +0.667,0.836,0.51,0.638,0.382,0,0,0,0,0.182 +1,0.934,0.936,0.732,0,0,0,0,0,0.119 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0.267,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.26 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.0898 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.0788 +0.667,0.732,0.105,0.337,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.281 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0596 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.315 +0.667,0.797,0.224,0.457,0,0,0,0,0.267,0.0759 +1,0.973,0.402,0.869,0,0,0.295,0.246,0,0.427 +0.667,0.849,0.366,0.683,0,0,0.68,0,0,0.515 +0.667,0.836,0.51,0.638,0,0,0.19,0,0,0.253 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.226 +0.667,0.66,0.306,0.218,0,0,0,0,0,0.0394 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.267,0.306 +1,0.68,0.0551,0.251,0,0,0,0,0,0.148 +1,0.798,0.103,0.444,0.309,0.267,0,0,0,0.522 +1,0.818,0.126,0.47,0.396,0,0.22,0.246,0,0.331 +1,0.818,0.149,0.481,0,0,0.335,0,0,0.46 +1,0.818,0.168,0.468,0,0,0.451,0,0,0.278 +0.667,0.732,0.129,0.316,0,0,0.55,0,0,0.158 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.197 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.118 +1,0.818,0.235,0.446,0,0,0,0,0,0.0788 +1,0.857,0.263,0.513,0,0,0,0,0,0.0394 +1,0.915,0.327,0.661,0.532,0.817,0,0,0.0667,0.118 +0.667,0.836,0.273,0.596,0.162,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0.9,0.0788 +1,0.973,0.758,0.933,0,0,0,0,0,0.0394 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0.118 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.208 +1,0.608,0.026,0.0578,0,0,0,0,0,0.163 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.293 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.259 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.418 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.161 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.0578 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.178,0,0,0.11,0.0702,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.887,0.175,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0.359,0,0,0.197 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.118 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.323,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.416 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.0394 +1,0.66,0.306,0.218,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.0394 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.373 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.211 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.0394 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.0788 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.317,0 +0.333,0.647,0.0759,0.178,0.176,0.0667,0,0,0.233,0.0394 +0.333,0.647,0.0845,0.177,0.743,0.467,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.118 +0.667,0.836,0.273,0.596,0,0,0,0,0.317,0.276 +1,0.993,0.541,1,0,0,0,0,0.233,0.348 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.0723 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0.267,0.0394 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.152 +1,0.64,0.049,0.181,0,0,0,0,0,0.247 +1,0.732,0.128,0.33,0,0,0,0,0,0.346 +1,0.818,0.242,0.481,0,0,0,0,0,0.55 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.118 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.0394 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.0394 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.197 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.315 +0.667,0.758,0.343,0.359,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0.267,0.197 +1,0.973,0.549,0.869,0,0,0,0,0,0.0394 +1,0.993,0.647,1,0,0,0,0,0,0.29 +1,0.973,0.851,0.933,0,0,0,0,0,0.473 +1,0.934,1,0.732,0,0,0,0,0,0.572 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.0394 +1,0.654,0.0816,0.099,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0.567,0.197 +1,0.64,0.049,0.181,0,0,0,0,0.55,0.175 +1,0.647,0.0731,0.19,0,0,0,0,0,0.393 +0.667,0.647,0.0928,0.193,0,0,0,0,0.567,0.0394 +0.667,0.732,0.198,0.328,0,0,0,0,0.267,0.0394 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.135 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.272 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.394 +0.667,0.732,0.312,0.314,0,0,0.338,0.246,0.267,0.0394 +1,0.857,0.505,0.513,0,0,0.106,0,0,0.354 +1,0.915,0.531,0.661,0,0,0,0,0.0667,0.197 +1,0.836,0.372,0.596,0,0,0,0,0.483,0 +1,0.849,0.437,0.683,0,0,0,0,0,0.0788 +1,0.836,0.573,0.638,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.155 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.272 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0788 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.411 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.22 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.158 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.118 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.0788 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.363 +0.667,0.732,0.162,0.314,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.197 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.323,0,0,0.393,0.246,0,0.487 +1,0.993,0.541,1,0,0,0,0,0,0.542 +1,0.973,0.758,0.933,0,0,0,0,0,0.199 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0.236 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.387 +1,0.68,0.0551,0.251,0,0,0,0,0,0.227 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.174 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.158 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0394 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0.0963,0.0702,0,0.236 +0.667,0.647,0.0759,0.178,0,0,0.31,0.175,0,0.0788 +0.333,0.647,0.0845,0.177,0,0,0.0352,0,0.0667,0.276 +0.333,0.647,0.0888,0.182,0,0,0,0,0.767,0.118 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0394 +0.333,0.679,0.12,0.253,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0.267,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.106,0.0667,0,0,0,0.0788 +1,0.934,0.936,0.732,0.665,0.75,0,0,0.267,0 +1,0.857,0.887,0.554,0.623,0,0,0,0,0.368 +1,0.779,0.536,0.488,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.252 +1,0.608,0.026,0.0829,0,0,0,0,0,0.266 +1,0.68,0.0551,0.251,0,0,0,0,0.55,0.322 +1,0.719,0.074,0.313,0,0,0,0,0,0.387 +1,0.818,0.126,0.47,0,0,0,0,0,0.279 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.06 +0.333,0.647,0.0664,0.189,0,0,0,0,0.267,0.0788 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.197 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.315 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.323,0,0,0,0,0.267,0.157 +1,0.993,0.541,1,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.352,0.86,0,0.0394 +1,0.857,0.887,0.554,0,0,0.145,0.175,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.197 +1,0.608,0.026,0.0829,0,0,0,0,0,0.358 +1,0.68,0.0551,0.251,0,0,0,0,0.267,0.331 +1,0.798,0.103,0.444,0,0,0,0,0,0.161 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.118 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.118 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.158 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.177,0,0,0.541,0.246,0,0 +0.333,0.647,0.0888,0.182,0,0,0.683,0,0,0.293 +0.667,0.758,0.181,0.359,0,0,0.246,0,0,0.0788 +0.333,0.679,0.12,0.253,0,0,0.817,0,0,0.158 +1,0.973,0.402,0.869,0,0,0.287,0,0,0.53 +1,0.993,0.541,1,0,0,0,0,0,0.515 +1,0.973,0.758,0.933,0,0,0,0,0,0.0913 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.297 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.302 +0.667,0.634,0.189,0.196,0,0,0,0,0,0.0787 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.0788 +1,0.608,0.026,0.0829,0,0,0.102,0.246,0.317,0.157 +1,0.68,0.0551,0.251,0,0,0.479,0,0.233,0.222 +1,0.798,0.103,0.444,0.103,0.0667,0.356,0,0,0 +1,0.818,0.126,0.47,0.714,0.2,0.656,0,0,0.276 +1,0.818,0.149,0.481,0.0925,0,0.476,0,0,0.309 +1,0.818,0.168,0.468,0,0,0.694,0,0,0.21 +0.667,0.732,0.129,0.316,0,0,0.194,0,0,0.0394 +0.667,0.732,0.136,0.307,0,0,0.624,0,0,0.0394 +0.667,0.732,0.153,0.305,0,0,0.502,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0.485,0,0,0.118 +0.333,0.66,0.0982,0.204,0,0,0.408,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.55,0,0,0.197 +0.667,0.836,0.273,0.596,0,0,0.22,0,0,0.223 +0.667,0.705,0.191,0.366,0,0,0,0,0,0.0394 +0.667,0.699,0.263,0.344,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0.211 +1,0.706,0.363,0.342,0,0,0,0,0,0.304 +1,0.614,0.0879,0.116,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.267,0.0394 +1,0.621,0.0327,0.15,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0.0394 +1,0.647,0.0731,0.19,0,0,0,0,0.267,0.274 +1,0.732,0.168,0.337,0,0,0,0,0,0.553 +1,0.732,0.198,0.328,0,0,0,0,0,0.219 +1,0.732,0.217,0.316,0,0,0,0,0,0.0794 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.197 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.0394 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.0394 +0.333,0.66,0.18,0.204,0,0,0,0,0.267,0.197 +0.667,0.797,0.36,0.457,0,0,0.372,0.246,0,0.118 +1,0.973,0.549,0.869,0,0,0.211,0,0,0.158 +1,0.993,0.647,1,0,0,0,0,0,0.0788 +1,0.973,0.851,0.933,0,0,0,0,0,0.0788 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0.0394 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0.267,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0.118 +0.333,0.647,0.108,0.189,0,0,0,0,0,0.118 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.0788 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.41 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.287 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.494 +0.333,0.66,0.18,0.204,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.0788 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.0394 +0.667,0.849,0.437,0.683,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.0788 +1,0.934,1,0.732,0,0,0,0,0,0.158 +1,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.131 +1,0.74,0.0747,0.351,0.538,0.533,0,0,0,0.522 +1,0.798,0.103,0.444,0,0,0,0,0.267,0.157 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.0788 +0.667,0.732,0.117,0.328,0.159,0.0667,0,0,0.267,0 +0.667,0.732,0.129,0.316,0.429,1,0,0,0.55,0.0394 +0.667,0.732,0.136,0.307,0,0.3,0,0,0,0.354 +0.667,0.732,0.153,0.305,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0788 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.197 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.197 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.14 +1,0.993,0.541,1,0,0,0,0,0,0.116 +1,0.973,0.758,0.933,0,0,0,0,0,0.325 +1,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_2.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_2.csv new file mode 100644 index 0000000000..7b4bea6d72 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_2.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,cooking_range,hot_water_fixtures +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0.631 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.25,0.28 +0.667,0.732,0.0895,0.334,0,0,0,0,0.517,0.133 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.237 +0.667,0.732,0.117,0.334,0,0,0,0,0.533,0.399 +0.667,0.732,0.129,0.322,0,0,0,0,1,0.303 +0.667,0.732,0.136,0.313,0,0,0,0,0.0167,0.222 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0443 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.177 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.355 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.222 +0.667,0.836,0.273,0.548,0,0,0,0,0.517,0.0886 +0.667,0.849,0.366,0.669,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.229 +1,0.608,0.026,0.0833,0,0,0,0,0.25,0.394 +1,0.74,0.0747,0.355,0,0,0,0,0.533,0.258 +1,0.798,0.103,0.449,0,0,0,0,0.5,0.261 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.197 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.295 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.415 +0.667,0.647,0.0724,0.186,0,0,0,0,0,0.222 +0.667,0.647,0.0759,0.181,0,0,0.083,0.0333,0,0.156 +0.667,0.647,0.0845,0.18,0,0,0.57,0.45,0,0.0886 +0.667,0.647,0.0888,0.182,0,0,0.798,0,0.283,0.133 +0.667,0.758,0.181,0.343,0,0,0.459,0,0.233,0.133 +0.333,0.679,0.12,0.234,0.527,0.533,0.427,0,0,0 +0.667,0.836,0.273,0.548,0.373,1,0.625,0,0,0.0443 +0.667,0.849,0.366,0.669,0,0.0833,0,0,0,0.153 +0.667,0.836,0.51,0.677,0.614,0.783,0,0,0,0 +0.667,0.686,0.322,0.307,0,0.833,0,0,0,0.106 +1,0.758,0.596,0.43,0,0,0,0,0,0.0612 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0772 +0.667,0.647,0.0527,0.192,0.615,0.783,0.263,0.233,0,0.411 +0.667,0.732,0.105,0.343,0.0895,0.833,0.239,0,0.767,0.308 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.0443 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.133 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0443 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.355 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0886 +0.333,0.679,0.12,0.234,0,0,0.311,0.483,0,0.39 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.136 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.133 +0.667,0.836,0.51,0.677,0.548,0.783,0,0,0.0333,0 +0.667,0.81,0.629,0.565,0.0716,0.833,0,0,0.217,0.0443 +0.667,0.66,0.306,0.24,0,0,0,0,0,0.0859 +0.667,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0443 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.521 +1,0.68,0.0551,0.253,0,0,0,0,0,0.208 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.172 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.227 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.281 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0675 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.225 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +0.333,0.647,0.0888,0.182,0.264,0.283,0,0,0,0.0443 +0.333,0.66,0.0982,0.196,0.768,1,0,0,0,0.208 +0.667,0.797,0.224,0.418,0.467,0.333,0,0,0,0.194 +0.667,0.836,0.273,0.548,0,0,0,0,0.25,0.0886 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.133 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.0886 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.0443 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0235,0.0333,0.283,0 +1,0.68,0.0551,0.253,0,0,0.624,0.933,1,0.0886 +1,0.798,0.103,0.449,0,0,0,0,0.267,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.133 +0.333,0.647,0.0724,0.186,0,0,0,0,0.283,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0.233,0.0443 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0886 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.177 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.133 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.278 +1,0.973,0.402,0.798,0,0,0,0,0,0.303 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.295 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.266 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.292 +0.667,0.66,0.306,0.24,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0308 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.172 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.667,0.64,0.049,0.183,0,0,0,0,0,0.265 +0.667,0.732,0.128,0.334,0,0,0,0,0,0.172 +0.667,0.732,0.168,0.343,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.133 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.634 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.0886 +0.333,0.679,0.189,0.234,0,0,0,0,0,0.0886 +0.667,0.836,0.372,0.548,0,0,0,0,0.25,0.0886 +0.667,0.849,0.437,0.669,0,0,0.259,0.45,0,0 +0.667,0.836,0.573,0.677,0,0,0.462,0.0333,0.25,0.348 +1,0.934,1,0.823,0,0,0,0,0,0.415 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0.299 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.318 +1,0.608,0.0241,0.0833,0,0,0,0,0,0.0161 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.304 +0.667,0.64,0.049,0.183,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.125 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.246 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.102 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.0824 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.133 +0.667,0.647,0.165,0.182,0,0,0,0,0,0.0443 +0.667,0.66,0.18,0.196,0,0,0,0,0,0.222 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.133 +0.667,0.836,0.372,0.548,0,0,0,0,0,0.222 +0.667,0.849,0.437,0.669,0.719,0.95,0,0,0,0.0886 +0.667,0.836,0.573,0.677,0.181,0.667,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0.235 +1,0.857,0.923,0.621,0,0,0,0,0,0.23 +1,0.706,0.394,0.374,0,0,0,0,0,0.0829 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.187 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.117 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.266 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.173 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.242 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.399 +0.333,0.66,0.0982,0.196,0,0,0.0443,0.233,0,0.0443 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0886 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.121 +0.667,0.849,0.366,0.669,0.305,0.533,0,0,0,0.208 +1,0.973,0.758,0.991,0.298,1,0.254,0.283,0,0.31 +0.667,0.81,0.629,0.565,0,0.0833,0.606,0.917,0,0.0443 +0.667,0.758,0.596,0.43,0,0,0.322,0,0,0.45 +1,0.779,0.536,0.536,0,0,0,0,0,0.22 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.179 +1,0.68,0.0551,0.253,0,0,0,0,0,0.0886 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.133 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.17 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.202 +0.667,0.732,0.117,0.334,0,0,0.589,0.483,0,0.0756 +0.333,0.647,0.0724,0.186,0,0,0.574,0,0,0.133 +0.333,0.647,0.0759,0.181,0,0,0.559,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.418,0,0,0.133 +0.333,0.647,0.0888,0.182,0,0,0.278,0,0,0.4 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.222 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.177 +0.333,0.699,0.145,0.299,0.303,0.283,0,0,0,0.31 +0.667,0.849,0.366,0.669,0.738,1,0,0,0,0 +0.667,0.836,0.51,0.677,0.508,0.333,0,0,0,0.222 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.0443 +0.667,0.66,0.306,0.24,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.355 +1,0.621,0.0355,0.151,0,0,0,0,0,0.272 +1,0.719,0.074,0.316,0,0,0,0,0,0.348 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.16 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.528 +0.333,0.647,0.0664,0.192,0,0,0,0,0.283,0.411 +0.667,0.732,0.129,0.322,0,0,0,0,0.483,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.0954,0.233,0.25,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.177 +1,0.915,0.327,0.602,0,0,0,0,0,0.399 +0.667,0.836,0.273,0.548,0,0,0,0,0.25,0.222 +0.667,0.849,0.366,0.669,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0.351,0.283,0,0.183 +1,0.81,0.629,0.565,0,0,0,0.433,0,0.195 +1,0.66,0.306,0.24,0,0,0,0,0,0.0899 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0513 +0.667,0.608,0.026,0.0833,0,0,0,0,0.283,0.204 +0.667,0.68,0.0551,0.253,0,0,0,0,1,0.604 +0.333,0.64,0.0449,0.183,0,0,0,0,0.517,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.177 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0886 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.31 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0886 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0886 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0.149,0.0333,0,0,0,0.0443 +1,0.993,0.541,0.979,0.629,1,0,0,0,0.133 +1,0.973,0.758,0.991,0,0.583,0,0,0,0.133 +1,0.934,0.936,0.823,0,0,0,0,0,0.123 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.151 +1,0.654,0.0242,0.0532,0,0,0,0,0,0.285 +1,0.608,0.026,0.0833,0,0,0,0,0,0.306 +1,0.621,0.0355,0.151,0,0,0,0,0.517,0.463 +1,0.719,0.074,0.316,0,0,0,0,0,0.187 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.172 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.159 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.26 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0886 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.116 +1,0.758,0.181,0.343,0,0,0,0,0,0.273 +1,0.915,0.327,0.602,0.102,0.0333,0,0,0,0.0443 +0.667,0.836,0.273,0.548,0.855,1,0,0,0,0.0721 +0.667,0.849,0.366,0.669,0.362,0.583,0,0,0,0 +0.333,0.699,0.263,0.363,0,0,0.131,0.533,0,0.0443 +0.333,0.686,0.322,0.307,0,0,0,0.917,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.706,0.363,0.374,0,0,0,0,0,0 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.139 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.156 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.133 +1,0.654,0.0249,0.0532,0,0,0,0,0.25,0.391 +1,0.654,0.0301,0.117,0,0,0,0,0,0.264 +1,0.74,0.0619,0.355,0,0,0,0,0,0.177 +1,0.798,0.111,0.449,0,0,0,0,0,0.321 +1,0.818,0.183,0.477,0,0,0,0,0,0.504 +1,0.818,0.242,0.49,0,0,0,0,0,0.22 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.585 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.11 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.0443 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.177 +0.333,0.647,0.165,0.182,0,0,0,0,0.2,0 +0.333,0.66,0.18,0.196,0,0,0,0,0.05,0.222 +0.333,0.679,0.189,0.234,0,0,0,0,0,0 +0.667,0.699,0.195,0.299,0,0,0,0,0,0.133 +0.667,0.705,0.228,0.359,0,0,0,0,0,0.0886 +0.667,0.699,0.296,0.363,0,0,0.415,0.233,0,0 +0.667,0.81,0.673,0.565,0,0,0.278,0,0,0.0562 +0.667,0.758,0.621,0.43,0,0,0,0,0,0.128 +1,0.706,0.394,0.374,0,0,0,0,0,0.0886 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.25,0 +0.667,0.732,0.168,0.343,0.54,0.7,0,0,0,0.0443 +1,0.818,0.289,0.477,0.117,0.917,0,0,0,0.0886 +1,0.818,0.317,0.458,0,0,0,0,0,0.133 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.222 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.177 +0.667,0.732,0.312,0.315,0.702,0.95,0,0,0,0.0886 +0.667,0.758,0.343,0.343,0.324,0.667,0,0,0,0.222 +0.333,0.679,0.189,0.234,0,0,0,0,0,0.0886 +0.667,0.836,0.372,0.548,0,0,0,0,0.45,0.0443 +0.667,0.849,0.437,0.669,0,0,0,0,0.0667,0.177 +1,0.973,0.851,0.991,0,0,0,0,0,0.0886 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.222 +1,0.64,0.0449,0.183,0,0,0,0,0,0.155 +1,0.732,0.0895,0.334,0,0,0,0,0,0.391 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.0886 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.133 +0.667,0.647,0.0724,0.186,0,0,0.187,0.783,0,0.532 +0.333,0.647,0.0759,0.181,0,0,0.476,0.183,0,0 +0.333,0.647,0.0845,0.18,0,0,0.621,0,0,0.133 +0.333,0.647,0.0888,0.182,0,0,0.779,0,0,0.266 +0.333,0.66,0.0982,0.196,0,0,0.555,0,0,0.256 +0.333,0.679,0.12,0.234,0,0,0.494,0,0.25,0.408 +0.667,0.836,0.273,0.548,0.527,0.783,0.571,0,0,0 +0.667,0.849,0.366,0.669,0,0.833,0.0401,0,0.517,0.0443 +0.333,0.699,0.263,0.363,0,0,0,0,0,0.133 +0.333,0.686,0.322,0.307,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.397 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.29 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0.333,0.647,0.0759,0.181,0.363,0.283,0,0,0.0333,0.133 +0.667,0.732,0.153,0.311,0.414,1,0,0,0.483,0.443 +0.667,0.732,0.162,0.315,0,0.6,0,0,0,0.0443 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0886 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.222 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.266 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0886 +1,0.973,0.758,0.991,0,0,0,0,0,0.0443 +1,0.81,0.629,0.565,0,0,0.136,0.283,0,0 +1,0.758,0.596,0.43,0,0,0.0124,0.683,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0.0886 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0323 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.25,0.149 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.222 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.0886 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.352 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.275 +0.667,0.732,0.129,0.322,0,0,0.231,0.233,0,0.243 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.133 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.31 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.222 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0886 +0.333,0.705,0.191,0.359,0.0847,0.0333,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.831,1,0,0,0,0 +0.333,0.686,0.322,0.307,0,0.583,0,0,0,0.0443 +0.667,0.758,0.596,0.43,0,0,0,0,0,0.0294 +1,0.706,0.363,0.374,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.145 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.283,0.31 +1,0.608,0.026,0.0833,0,0,0,0,0.483,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.0443 +1,0.719,0.074,0.316,0,0,0,0,0,0.0443 +1,0.732,0.0895,0.334,0,0,0,0,0,0.159 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.164 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.0886 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0443 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.133 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0886 +0.333,0.647,0.0888,0.182,0,0,0.0913,0.0333,0,0.177 +0.333,0.66,0.0982,0.196,0,0,0.562,1,0,0.0886 +0.333,0.679,0.12,0.234,0,0,0,0.167,0.0333,0.31 +0.333,0.699,0.145,0.299,0.104,0.0333,0,0,0.217,0.0443 +0.667,0.849,0.366,0.669,0.885,1,0,0,0,0 +0.667,0.836,0.51,0.677,0.734,0.583,0,0,0,0.0886 +0.667,0.81,0.629,0.565,0.345,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.249 +1,0.68,0.0551,0.253,0,0,0,0,0.25,0.263 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.194 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.365 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.515 +0.667,0.732,0.117,0.334,0,0,0,0,0.0333,0.223 +0.333,0.647,0.0724,0.186,0,0,0,0,0.733,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0443 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0886 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.133 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.518 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.133 +0.667,0.836,0.273,0.548,0,0,0,0,0.25,0.0443 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0443 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.177 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0.127 +1,0.706,0.363,0.374,0,0,0,0,0,0.233 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0659 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.225 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.608,0.0215,0.0513,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.517,0.241 +1,0.732,0.168,0.343,0,0,0,0,0,0.0886 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.0443 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.134 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.665 +0.333,0.647,0.146,0.18,0.247,0.2,0,0,0,0.31 +0.333,0.647,0.165,0.182,0.669,1,0,0,0,0.177 +0.333,0.66,0.18,0.196,0.689,0.417,0,0,0,0.177 +0.333,0.679,0.189,0.234,0.77,0,0,0,0.45,0.133 +0.667,0.836,0.372,0.548,0.222,0,0,0,0.0667,0.0443 +0.333,0.705,0.228,0.359,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0.691,0.95,0,0,0,0 +0.667,0.81,0.673,0.565,0.831,0.667,0,0,0,0.0443 +0.667,0.758,0.621,0.43,0.908,0.7,0,0,0,0 +1,0.706,0.394,0.374,0.166,0.917,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0986 +1,0.562,0.0181,0.0495,0,0,0,0,0.45,0.31 +1,0.719,0.0799,0.316,0,0,0,0,0.317,0.0443 +1,0.732,0.128,0.334,0,0,0.799,0.483,0,0.222 +1,0.732,0.168,0.343,0,0,0.517,0,0.25,0.135 +1,0.818,0.289,0.477,0,0,0.0996,0,0,0.373 +1,0.818,0.317,0.458,0,0,0.331,0.233,0,0.329 +0.667,0.732,0.233,0.313,0,0,0.427,0,0,0.0886 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.0443 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.0443 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.291 +0.333,0.679,0.189,0.234,0,0,0,0,0.7,0.0443 +0.333,0.699,0.195,0.299,0,0,0,0,0.333,0.472 +0.667,0.705,0.228,0.359,0,0,0,0,0,0.222 +0.667,0.699,0.296,0.363,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0.35 +0.667,0.758,0.621,0.43,0,0,0,0,0,0.0721 +1,0.779,0.582,0.536,0,0,0,0,0,0.104 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.178 +1,0.621,0.0355,0.151,0,0,0,0,0,0.197 +1,0.719,0.074,0.316,0,0,0,0,0,0.0886 +0.333,0.647,0.0527,0.192,0,0,0,0,0.0333,0.0443 +0.333,0.647,0.0604,0.196,0,0,0,0,0.217,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.445,0.483,0,0.0443 +0.333,0.647,0.0845,0.18,0,0,0.664,0,0,0.399 +0.667,0.732,0.162,0.315,0,0,0.499,0,0.283,0.133 +0.667,0.758,0.181,0.343,0,0,0,0,1,0.222 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.266 +1,0.973,0.402,0.798,0,0,0,0,0.0333,0.163 +0.667,0.849,0.366,0.669,0,0,0,0,0.733,0.18 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.31 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.133 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.077 +1,0.608,0.026,0.0833,0,0,0.498,0.483,0,0.337 +1,0.68,0.0551,0.253,0,0,0.822,0,0,0.347 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.335 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.222 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.0886 +0.667,0.732,0.117,0.334,0,0,0.716,0.233,0,0.31 +0.333,0.647,0.0724,0.186,0,0,0.697,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0.574,0,0,0.0886 +0.333,0.647,0.0845,0.18,0,0,0.779,0,0,0.31 +0.333,0.647,0.0888,0.182,0,0,0.71,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0.158,0,0.0333,0.399 +0.333,0.679,0.12,0.234,0,0,0.617,0,0.217,0.0886 +0.667,0.836,0.273,0.548,0,0,0.0761,0,0,0 +0.667,0.849,0.366,0.669,0.49,0.533,0,0,0,0.0443 +1,0.973,0.758,0.991,0.556,1,0,0,0,0.0443 +1,0.934,0.936,0.823,0.411,0.0833,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0.283,0.177 +0.667,0.608,0.026,0.0833,0,0,0,0,0.233,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0886 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0.0333,0.0443 +0.333,0.647,0.0759,0.181,0,0,0.0595,0.283,0.217,0.133 +0.667,0.732,0.153,0.311,0,0,0,1,0,0.0886 +0.667,0.732,0.162,0.315,0,0,0,0.167,0,0.0886 +1,0.857,0.263,0.49,0,0,0,0,0,0.154 +1,0.915,0.327,0.602,0,0,0,0,0,0.133 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0886 +0.667,0.849,0.366,0.669,0,0,0,0,0,0 +0.333,0.699,0.263,0.363,0,0,0,0,0,0.292 +0.333,0.686,0.322,0.307,0,0,0,0,0,0.0418 +0.667,0.66,0.306,0.24,0,0,0,0,0,0.198 +0.667,0.634,0.189,0.212,0,0,0,0,0.25,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0.25,0.0807 +1,0.719,0.074,0.316,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0,0,0,0,0,0.133 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.266 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.0443 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.375 +0.667,0.732,0.136,0.313,0,0,0,0,0.0333,0.388 +0.667,0.732,0.153,0.311,0,0,0,0,0.217,0.328 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.261 +0.667,0.758,0.181,0.343,0,0,0,0,0.517,0.301 +0.667,0.679,0.12,0.234,0,0,0,0,0,0.215 +0.333,0.699,0.145,0.299,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0.355 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.0443 +0.667,0.66,0.306,0.24,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0733 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.282 +1,0.621,0.0355,0.151,0,0,0,0,0,0.236 +1,0.798,0.103,0.449,0,0,0,0,0,0.281 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.532 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.222 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0443 +0.333,0.647,0.0724,0.186,0,0,0.216,0.283,0,0.0443 +0.333,0.647,0.0759,0.181,0,0,0.459,0.683,0,0.222 +0.333,0.647,0.0845,0.18,0,0,0.329,0,0,0.266 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.133 +0.667,0.758,0.181,0.343,0,0,0,0,0.533,0.31 +0.667,0.797,0.224,0.418,0,0,0,0,0.75,0 +0.667,0.836,0.273,0.548,0,0,0,0,0.0333,0 +0.667,0.849,0.366,0.669,0,0,0,0,0.217,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.0886 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0.147 +1,0.706,0.363,0.374,0,0,0,0,0,0.23 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0616 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.287 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0.532 +0.667,0.647,0.0928,0.196,0,0,0.64,0.233,0,0.0886 +0.667,0.647,0.108,0.192,0,0,0.725,0,0,0.0443 +0.667,0.647,0.118,0.186,0,0,0,0,0,0.244 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.266 +0.667,0.647,0.146,0.18,0,0,0,0,0,0.133 +0.667,0.647,0.165,0.182,0,0,0,0,0,0.399 +0.667,0.66,0.18,0.196,0,0,0,0,0,0.0886 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.133 +0.667,0.836,0.573,0.677,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0 +0.667,0.758,0.621,0.43,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.339 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.45,0.224 +1,0.68,0.0473,0.253,0,0,0,0,0.317,0.268 +0.667,0.64,0.049,0.183,0,0,0,0,0,0.124 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.667,0.732,0.217,0.322,0,0,0,0,0.2,0.133 +0.333,0.647,0.125,0.181,0,0,0.3,0.483,1,0.133 +0.667,0.732,0.274,0.311,0,0,0.538,0,0.0833,0.0443 +0.667,0.732,0.312,0.315,0,0,0.264,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.222 +0.667,0.797,0.36,0.418,0,0,0,0,0.25,0.266 +0.667,0.836,0.372,0.548,0,0,0,0,0,0.0443 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.0886 +0.667,0.836,0.573,0.677,0,0,0,0,0,0.0443 +0.667,0.81,0.673,0.565,0,0,0,0,0,0.0886 +1,0.758,0.621,0.43,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.337 +1,0.621,0.0355,0.151,0,0,0,0,0,0.451 +1,0.64,0.0449,0.183,0.567,0.533,0,0,0.517,0.355 +1,0.647,0.0527,0.192,0.684,1,0,0,0,0.177 +1,0.732,0.105,0.343,0.742,0.0833,0,0,0,0 +1,0.732,0.117,0.334,0.218,0,0,0,0,0.266 +1,0.732,0.129,0.322,0,0,0,0,0,0.222 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0.187 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.464 +0.667,0.732,0.162,0.315,0,0,0.187,0.483,0,0.0443 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.133 +0.667,0.797,0.224,0.418,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.0443 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0443 +0.667,0.699,0.263,0.363,0,0,0,0,0,0.254 +0.667,0.686,0.322,0.307,0,0,0,0,0,0.0298 +0.667,0.66,0.306,0.24,0,0,0,0,0,0.104 +0.667,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0.25,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.783,0.308 +1,0.64,0.0449,0.183,0,0,0,0,0.25,0.222 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.292 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.119 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.222 +0.667,0.732,0.136,0.313,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.133 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.266 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0886 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.177 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.0443 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.348 +1,0.68,0.0551,0.253,0,0,0,0,0,0.203 +1,0.798,0.103,0.449,0,0,0,0,0,0.311 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0443 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.247 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0481 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0443 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.31 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.222 +0.333,0.705,0.191,0.359,0,0,0,0,0,0.222 +0.333,0.699,0.263,0.363,0,0,0,0,0,0.199 +0.333,0.686,0.322,0.307,0,0,0,0,0.517,0.13 +0.667,0.758,0.596,0.43,0,0,0,0,0,0.21 +1,0.779,0.536,0.536,0,0,0,0,0,0.14 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.483,0.275 +0.667,0.623,0.0353,0.15,0,0,0,0,0.533,0.555 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.405 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.222 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.355 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.31 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.266 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.177 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.0443 +0.333,0.708,0.19,0.322,0,0,0,0,0,0.133 +0.333,0.701,0.261,0.36,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0.118 +0.667,0.762,0.592,0.501,0,0,0,0,0,0.293 +1,0.71,0.36,0.442,0,0,0,0,0.5,0 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.789 +1,0.658,0.036,0.116,0,0,0,0,0,0.0942 +1,0.684,0.0548,0.251,0,0,0,0,0,0.254 +0.667,0.642,0.0447,0.181,0,0,0,0,0.5,0.226 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.278 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.395 +0.667,0.736,0.116,0.328,0,0,0,0,0.233,0.175 +0.667,0.736,0.128,0.316,0,0,0,0,0.267,0.0443 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0443 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0443 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0443 +0.333,0.682,0.119,0.208,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.31 +0.333,0.708,0.19,0.322,0,0,0,0,0.25,0.0886 +0.667,0.701,0.261,0.36,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0.0886 +1,0.762,0.592,0.501,0,0,0,0,0,0.133 +0.667,0.636,0.188,0.246,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +1,0.61,0.0215,0.0513,0,0,0,0,0,0.0443 +1,0.61,0.024,0.0829,0,0,0,0,0,0.177 +1,0.623,0.0326,0.15,0,0,0,0,0,0.041 +0.667,0.723,0.0794,0.313,0,0,0,0,0,0.395 +0.667,0.736,0.127,0.33,0,0,0,0,0,0.222 +0.333,0.649,0.0923,0.193,0,0,0,0,0.417,0.177 +0.333,0.649,0.108,0.189,0,0,0,0,0.6,0.0443 +0.333,0.649,0.117,0.183,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0.447,0.5,0,0.266 +0.333,0.649,0.145,0.177,0,0,0.314,0,0,0.0443 +0.333,0.649,0.164,0.178,0,0,0.279,0,0.417,0.0443 +0.333,0.662,0.179,0.186,0,0,0,0,0.35,0.133 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.0443 +1,0.98,0.545,0.674,0,0,0,0,0,0.0886 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.266 +0.667,0.841,0.569,0.67,0,0,0,0,0,0.0443 +0.667,0.815,0.668,0.625,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0 +0.667,0.636,0.205,0.246,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.238 +1,0.723,0.0794,0.313,0,0,0,0,0.25,0.432 +0.667,0.736,0.127,0.33,0,0,0,0,0,0.405 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.352 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.177 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.222 +0.333,0.649,0.125,0.178,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.355 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.31 +0.333,0.662,0.179,0.186,0,0,0,0,0,0 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.177 +0.333,0.701,0.194,0.258,0,0,0,0,0,0.412 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.259 +0.667,0.841,0.569,0.67,0,0,0,0,0,0.215 +0.667,0.815,0.668,0.625,0,0,0,0,0,0.103 +1,0.762,0.617,0.501,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.351 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.758 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.339 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0613 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.2 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.266 +0.667,0.736,0.135,0.307,0.567,0.733,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.16,0.85,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.731,0.983,0,0,0.233,0.31 +0.667,0.708,0.19,0.322,0,0.333,0,0,0.533,0.0443 +0.667,0.701,0.261,0.36,0,0,0,0,0,0.133 +0.667,0.688,0.32,0.337,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.17 +1,0.623,0.0353,0.15,0,0,0,0,0,0.177 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0.177 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0.266 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.32 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.414 +0.333,0.708,0.19,0.322,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.688,0.32,0.337,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0.163 +1,0.636,0.188,0.246,0,0,0,0,0,0.16 +1,0.616,0.0874,0.116,0,0,0,0,0,0.167 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.156 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.287 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.177 +0.333,0.642,0.0447,0.181,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0443 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0.266 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.133 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.177 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.215 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.155 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.0443 +0.333,0.708,0.19,0.322,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0 +0.333,0.688,0.32,0.337,0,0,0,0,0,0.18 +0.333,0.662,0.304,0.275,0,0,0,0,0,0.366 +0.667,0.636,0.188,0.246,0,0,0,0,0,0.331 +1,0.616,0.0874,0.116,0,0,0,0,0,0.0764 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.176 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0.222 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.135 +1,0.745,0.0742,0.351,0,0,0,0,0,0.189 +0.667,0.723,0.0735,0.313,0,0,0,0,0.25,0.116 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.177 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0886 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.0443 +0.667,0.736,0.128,0.316,0,0,0,0,0.733,0 +0.667,0.736,0.135,0.307,0,0,0,0,0.0333,0.0443 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0443 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.143 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.133 +0.333,0.682,0.119,0.208,0,0,0,0,0.25,0.0443 +0.667,0.841,0.271,0.466,0,0,0,0,0.233,0.0443 +0.667,0.854,0.364,0.595,0,0,0,0,0.533,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.133 +0.667,0.815,0.625,0.625,0,0,0,0,0,0.136 +0.667,0.762,0.592,0.501,0,0,0,0,0,0.0443 +0.667,0.71,0.36,0.442,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0.233,0.177 +1,0.61,0.0259,0.0829,0,0,0,0,0.267,0.222 +1,0.623,0.0353,0.15,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.331 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.251 +0.667,0.736,0.161,0.307,0,0,0.0996,0.233,0,0.337 +0.667,0.762,0.179,0.322,0,0,0.308,0.767,0,0.613 +0.667,0.802,0.222,0.367,0,0,0.55,0,0,0.491 +0.667,0.841,0.271,0.466,0,0,0.454,0,0,0.244 +1,1,0.537,0.868,0,0,0.628,0,0,0 +0.667,0.701,0.261,0.36,0,0,0.242,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0.0443 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0.134 +0.667,0.616,0.0874,0.116,0,0,0,0,0,0.118 +1,0.658,0.0811,0.099,0,0,0,0,0,0.0443 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.649,0.0727,0.19,0,0,0,0,0,0 +1,0.649,0.0923,0.193,0,0,0,0,0,0.158 +0.667,0.649,0.108,0.189,0,0,0,0,0,0.12 +0.667,0.649,0.117,0.183,0,0,0,0,0,0.31 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.266 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.133 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.177 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.0443 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.0886 +0.333,0.701,0.194,0.258,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.0886 +0.333,0.701,0.294,0.36,0,0,0,0,0,0.183 +0.667,0.815,0.668,0.625,0,0,0,0,0,0.0535 +1,0.762,0.617,0.501,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0.266 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.138 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0.318 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.0443 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.0886 +0.333,0.649,0.117,0.183,0,0,0,0,0.25,0.177 +0.667,0.736,0.231,0.307,0,0,0,0,0,0.222 +0.667,0.736,0.272,0.305,0,0,0,0,0.25,0.133 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.0443 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.177 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.177 +0.333,0.701,0.194,0.258,0,0,0,0,0,0.177 +0.333,0.708,0.226,0.322,0,0,0,0,0,0.0443 +0.667,0.841,0.569,0.67,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.266 +1,0.61,0.0165,0.0495,0,0,0,0,0,0.31 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.133 +1,0.61,0.0259,0.0829,0,0,0,0,0.0167,0.387 +1,0.684,0.0548,0.251,0,0,0,0,0,0.238 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.237 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.127 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0886 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.0443 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.266 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.667,0.841,0.507,0.67,0,0,0,0,0.267,0.133 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0 +0.667,0.616,0.0874,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.16 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.302 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.0886 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.0886 +0.667,0.736,0.104,0.337,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.487 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.177 +0.333,0.649,0.0839,0.177,0.48,0.483,0.0954,0.233,0,0.133 +0.333,0.649,0.0882,0.178,0,1,0.461,0.267,0,0.222 +0.333,0.662,0.0976,0.186,0,0.1,0.485,0,0,0.177 +0.333,0.682,0.119,0.208,0,0,0,0,0.25,0.0443 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.0886 +0.667,0.854,0.364,0.595,0,0,0,0,0.483,0 +0.667,0.841,0.507,0.67,0,0,0,0,0.283,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0.0886 +0.667,0.762,0.592,0.501,0,0,0.148,0.233,0,0.123 +1,0.71,0.36,0.442,0,0,0,0.267,0,0.369 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.16 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.157 +1,0.623,0.0353,0.15,0,0,0,0,0,0.662 +1,0.723,0.0735,0.313,0,0,0,0,0,0.688 +1,0.736,0.0889,0.33,0,0,0,0,0,0.442 +1,0.736,0.104,0.337,0,0,0,0,0.233,0.556 +0.667,0.736,0.116,0.328,0,0,0,0,0.0167,0.0443 +0.333,0.649,0.072,0.183,0,0,0,0,0.233,0.222 +0.667,0.736,0.135,0.307,0,0,0,0,0.267,0 +0.667,0.736,0.152,0.305,0,0,0,0,0.233,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0.533,0.222 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0443 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.0443 +0.333,0.701,0.144,0.258,0,0,0,0,0.5,0.228 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.197 +0.667,0.841,0.507,0.67,0,0,0,0,0,0 +0.667,0.688,0.32,0.337,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0.0886 +0.667,0.636,0.188,0.246,0,0,0,0,0,0.43 +1,0.671,0.159,0.183,0,0,0,0,0,0.101 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.122 +1,0.684,0.0548,0.251,0,0,0,0,0.483,0.435 +0.667,0.723,0.0735,0.313,0,0,0,0,0.0167,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0888 +0.333,0.649,0.066,0.189,0,0,0,0,0.233,0.129 +0.333,0.649,0.072,0.183,0,0,0,0,0.0167,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.399 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.222 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.31 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.266 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.4 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.388 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.149 +0.667,0.815,0.625,0.625,0,0,0,0,0,0.133 +1,0.863,0.88,0.727,0,0,0,0,0,0.0851 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0443 +1,0.623,0.0353,0.15,0,0,0,0,0.267,0.359 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.362 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.308 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0443 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.266 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.0443 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.31 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.0886 +0.333,0.701,0.261,0.36,0,0,0,0,0,0.0443 +0.333,0.688,0.32,0.337,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0.118 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +1,0.623,0.0326,0.15,0,0,0,0,0,0.133 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0.0886 +0.333,0.649,0.0727,0.19,0,0,0,0,0,0.133 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.266 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.0886 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.222 +0.333,0.649,0.145,0.177,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.222 +0.667,0.762,0.34,0.322,0,0,0,0,0.25,0.222 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.133 +0.667,0.841,0.369,0.466,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0.655,0.917,0,0,0,0 +0.667,0.762,0.617,0.501,0,0.667,0,0,0,0.0443 +0.667,0.636,0.205,0.246,0,0,0,0,0,0.225 +0.667,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.623,0.0326,0.15,0,0,0,0,0,0.254 +1,0.723,0.0794,0.313,0,0,0,0,0,0.382 +1,0.736,0.127,0.33,0,0,0,0,0,0.314 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0.339 +0.667,0.649,0.108,0.189,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.14 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.508 +0.667,0.682,0.188,0.208,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.917,0.222 +0.333,0.708,0.226,0.322,0,0,0,0,0.1,0.177 +0.333,0.701,0.294,0.36,0,0,0,0,0.25,0.177 +0.667,0.815,0.668,0.625,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0.292 +1,0.71,0.392,0.442,0,0,0,0,0,0.204 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.123 +1,0.623,0.0353,0.15,0,0,0,0,0,0.499 +1,0.642,0.0447,0.181,0,0,0,0,0,0.414 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.469 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.328 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.243 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.44 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.3 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.331 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.264,0.233,0,0,0,0.0443 +1,0.922,0.325,0.526,0.475,1,0,0,0,0.177 +0.667,0.841,0.271,0.466,0.657,0.35,0,0,0,0 +0.667,0.854,0.364,0.595,0.173,0,0,0,0,0.0443 +0.667,0.841,0.507,0.67,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0 +0.667,0.616,0.0874,0.116,0,0,0,0,0,0.173 +0.667,0.61,0.0421,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.112 +0.667,0.61,0.02,0.0513,0,0,0,0,0.483,0.138 +1,0.658,0.036,0.116,0,0,0,0,0.533,0.586 +1,0.745,0.0742,0.351,0,0,0.155,0.233,0,0.623 +1,0.804,0.102,0.444,0,0,0.423,0.0167,0,0.0443 +0.333,0.649,0.0524,0.19,0,0,0.743,0,0,0.133 +0.333,0.649,0.0601,0.193,0,0,0.441,0,0,0.0443 +0.667,0.649,0.066,0.189,0,0,0.459,0,0,0.222 +0.667,0.649,0.072,0.183,0,0,0.58,0,0,0.191 +0.667,0.736,0.135,0.307,0,0,0.607,0,0,0.133 +0.667,0.736,0.152,0.305,0,0,0.539,0,0,0.0443 +0.333,0.649,0.0882,0.178,0,0,0.75,0,0,0.31 +0.333,0.662,0.0976,0.186,0,0,0.332,0,0,0.133 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0.105 +0.333,0.701,0.144,0.258,0,0,0,0,0.0167,0 +0.333,0.708,0.19,0.322,0,0,0,0,0,0 +0.333,0.701,0.261,0.36,0,0,0,0,0,0.0443 +0.333,0.688,0.32,0.337,0,0,0,0,0,0.164 +0.667,0.762,0.592,0.501,0,0,0,0,0,0.0583 +0.667,0.636,0.188,0.246,0,0,0,0,0,0.134 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.5,0.154 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.725 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.0848 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.258 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.133 +0.333,0.649,0.0754,0.178,0.533,0.733,0,0,0.233,0.0443 +0.667,0.736,0.152,0.305,0.313,0.85,0.53,0.25,0.0167,0.106 +1,0.824,0.233,0.435,0,0,0.0802,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0443 +0.667,0.802,0.222,0.367,0,0,0,0,0.483,0.177 +1,0.98,0.399,0.674,0,0,0,0,0.283,0.0443 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.15 +0.667,0.841,0.507,0.67,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0.147,0.233,0,0.222 +1,0.863,0.88,0.727,0,0,0.0802,0.267,0,0 +1,0.784,0.532,0.638,0,0,0,0,0,0.117 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.473 +1,0.684,0.0548,0.251,0,0,0,0,0,0.124 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.0689 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.0886 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.177 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.152,0.483,0,0.0886 +0.333,0.662,0.0976,0.186,0,0,0.703,0.0167,0,0.177 +0.333,0.682,0.119,0.208,0,0,0.252,0,0,0.222 +0.333,0.701,0.144,0.258,0,0,0.907,0,0.733,0 +0.667,0.854,0.364,0.595,0,0,0,0,0.0333,0.133 +0.333,0.701,0.261,0.36,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.386 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.388 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.667 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.529 +0.667,0.736,0.116,0.328,0,0,0,0,0,1 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.126 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.431 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.206 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.177 +0.333,0.662,0.0976,0.186,0,0,0,0,0.733,0 +0.333,0.682,0.119,0.208,0,0,0,0,0.8,0.0886 +0.333,0.701,0.144,0.258,0,0,0.231,0.25,0,0 +0.333,0.708,0.19,0.322,0,0,0.354,0,0,0.222 +0.333,0.701,0.261,0.36,0,0,0.196,0,0,0.0443 +0.333,0.688,0.32,0.337,0,0,0.335,0,0,0 +0.667,0.762,0.592,0.501,0,0,0.53,0,0,0 +1,0.784,0.532,0.638,0,0,0.335,0,0,0.106 +1,0.725,0.23,0.249,0,0,0,0,0,0.189 +1,0.658,0.0811,0.099,0,0,0.129,0.167,0.917,0 +1,0.658,0.0436,0.066,0,0,0.784,1,0.1,0.177 +1,0.61,0.0223,0.0495,0,0,0.567,0.0833,0,0.177 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0.25,0.31 +1,0.623,0.0326,0.15,0,0,0,0,0,0.0443 +1,0.723,0.0794,0.313,0,0,0,0,0,0.184 +1,0.736,0.127,0.33,0,0,0,0,0,0.296 +1,0.736,0.166,0.337,0,0,0,0,0,0.0443 +0.333,0.649,0.108,0.189,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.0443 +0.333,0.649,0.125,0.178,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.0443 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.31 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.0886 +0.667,0.841,0.369,0.466,0.81,0.917,0,0,0,0.0443 +0.667,0.854,0.434,0.595,0.341,0.667,0,0,0,0 +0.333,0.701,0.294,0.36,0,0,0,0,0.25,0.0683 +1,0.941,0.993,0.913,0,0,0,0,0,0.133 +0.667,0.762,0.617,0.501,0,0,0,0,0,0.14 +1,0.784,0.578,0.638,0,0,0,0,0,0.115 +1,0.616,0.1,0.116,0,0,0,0,0,0.0791 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.483 +1,0.623,0.0326,0.15,0,0,0,0,0,0.102 +1,0.642,0.0488,0.181,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0.0613 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.211 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.352 +0.667,0.736,0.216,0.316,0,0,0,0,0,0.133 +0.667,0.736,0.231,0.307,0,0,0,0,0,0.486 +0.667,0.736,0.272,0.305,0,0,0,0,0,0.401 +0.667,0.649,0.164,0.178,0,0,0,0,0,0.222 +0.667,0.662,0.179,0.186,0,0,0,0,0.417,0.0443 +0.667,0.682,0.188,0.208,0,0,0,0,0.0833,0 +0.667,0.841,0.369,0.466,0,0,0.307,0.25,0,0 +0.667,0.854,0.434,0.595,0,0,0.0595,0,0,0.0443 +0.667,0.841,0.569,0.67,0,0,0,0,0,0.0443 +0.667,0.815,0.668,0.625,0.603,0.917,0,0,0,0 +0.667,0.762,0.617,0.501,0.635,0.667,0,0,0,0 +0.667,0.71,0.392,0.442,0.539,0,0,0,0,0 +0.667,0.616,0.1,0.116,0.38,0,0,0,0,0 +0.667,0.61,0.0421,0.0743,0,0,0.647,0.25,0,0.0443 +0.667,0.61,0.0259,0.0578,0,0,0.625,0,0,0.0443 +1,0.61,0.0183,0.0495,0,0,0.458,0,0,0 +1,0.61,0.0165,0.0495,0,0,0.271,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.334 +1,0.623,0.0353,0.15,0,0,0,0,0,0.0886 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.0443 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0443 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0443 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.177 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.222 +0.333,0.682,0.119,0.208,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.222 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.222 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.0443 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0.983,0 +1,0.616,0.0874,0.116,0.22,0,0,0,0.0333,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.45,0.483,0,0,0.5,0.318 +1,0.723,0.0735,0.313,0.145,1,0,0,0,0.222 +0.667,0.649,0.0524,0.19,0,0.1,0,0,0,0.0443 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.0886 +0.667,0.649,0.066,0.189,0,0,0,0,0,0.0886 +0.667,0.649,0.072,0.183,0,0,0,0,0,0.222 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.443 +0.667,0.736,0.161,0.307,0,0,0,0,0.5,0.368 +0.667,0.762,0.179,0.322,0.524,0.733,0,0,0,0.0443 +0.667,0.802,0.222,0.367,0.326,1,0,0,0,0.133 +0.667,0.841,0.271,0.466,0,0.1,0,0,0,0.0443 +0.667,0.854,0.364,0.595,0,0,0,0,0,0 +0.667,0.841,0.507,0.67,0.341,0.233,0,0,0,0.0489 +1,0.941,0.929,0.913,0.369,1,0,0,0,0 +1,0.662,0.304,0.275,0,0.6,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.122 +1,0.623,0.0353,0.15,0,0,0,0,0.483,0.0786 +1,0.642,0.0447,0.181,0,0,0,0,0.0167,0.419 +1,0.736,0.0889,0.33,0,0,0,0,0,0.258 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.377 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.131 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.238 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.133 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.222 +0.667,0.736,0.161,0.307,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.191 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.13 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.522 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.207 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.297 +0.667,0.688,0.32,0.337,0,0,0,0,0,0.204 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.222 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.266 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.133 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.266 +0.667,0.621,0.11,0.3,0,0,0,0,0.0333,0.0886 +0.333,0.591,0.0658,0.171,0,0,0,0,0.45,0.119 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.627 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0867 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0729 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.325 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.4 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.344 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.0583 +0.667,0.602,0.26,0.302,0,0,0,0,0,0.171 +1,0.6,0.307,0.35,0,0,0,0,0,0.115 +1,0.565,0.0759,0.116,0,0,0,0,0,0.146 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.0443 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +1,0.651,0.142,0.443,0.13,0.0333,0,0,0,0 +1,0.651,0.157,0.426,0.282,1,0,0,0,0.133 +0.667,0.621,0.116,0.292,0,0.5,0,0,0,0.0886 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.177 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.222 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0443 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.222 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0299 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.275 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.319 +0.667,0.642,0.505,0.555,0,0,0,0,0,0 +0.667,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.051,0,0,0,0,0,0.0443 +1,0.56,0.0223,0.0816,0,0,0,0,0.233,0.0443 +0.667,0.571,0.0295,0.147,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0,0.444 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0.207 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.429 +0.667,0.621,0.169,0.312,0,0,0,0,0.367,0.0443 +0.667,0.621,0.185,0.3,0,0,0,0,0.35,0.206 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.329 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.13 +0.333,0.591,0.141,0.17,0.377,0.367,0,0,0,0.0886 +0.667,0.642,0.291,0.298,0.802,1,0,0,0,0.177 +0.667,0.673,0.305,0.326,0.377,0.167,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0.117,0.149 +0.667,0.683,0.57,0.635,0,0,0,0,0.117,0.147 +1,0.682,0.78,0.807,0,0,0,0,0,0.279 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.222 +1,0.56,0.0201,0.051,0,0,0,0,0,0.177 +1,0.56,0.0223,0.0816,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.867,0.355 +0.667,0.591,0.0636,0.184,0,0,0,0,1,0 +0.667,0.591,0.0803,0.185,0,0,0,0,1,0.175 +0.667,0.621,0.169,0.312,0,0,0,0,0.05,0.165 +1,0.651,0.268,0.426,0,0,0,0,0.233,0.365 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.241 +1,0.651,0.34,0.409,0,0,0,0,0,0.36 +1,0.621,0.265,0.29,0,0,0,0,0,0.177 +1,0.642,0.291,0.298,0,0,0,0,0,0.16 +1,0.673,0.305,0.326,0,0,0,0,0.117,0.22 +1,0.704,0.315,0.395,0,0,0,0,0.367,0.176 +0.667,0.714,0.371,0.507,0,0,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.41 +0.667,0.683,0.57,0.635,0.814,0.867,0,0,0,0.22 +0.667,0.642,0.526,0.555,0.215,0.667,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0443 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.133 +1,0.56,0.0157,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.147 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.129 +0.667,0.571,0.0316,0.147,0,0,0,0,0.0333,0.266 +0.333,0.586,0.0396,0.177,0,0,0,0,0.2,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.0443 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.133 +0.333,0.591,0.0629,0.175,0,0,0,0,0.0333,0.0443 +0.333,0.591,0.0658,0.171,0,0,0,0,0.2,0.222 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.31 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0886 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0443 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0797 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.297 +0.667,0.638,0.163,0.278,0,0,0,0,0,0.323 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.622,0.274,0.342,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.114 +1,0.571,0.0316,0.147,0,0,0,0,0,0.268 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.0994 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.0312 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.531 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0.233,0.222 +1,0.651,0.198,0.41,0,0,0,0,0,0.399 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.31 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.177 +1,0.774,0.34,0.567,0,0,0,0,0,0.0983 +1,0.79,0.457,0.736,0,0,0,0,0,0.146 +1,0.774,0.64,0.895,0,0,0,0,0,0.217 +0.333,0.622,0.274,0.342,0,0,0,0,0,0.222 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.255 +1,0.6,0.307,0.35,0,0,0,0,0,0.392 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.113 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.174 +1,0.586,0.0396,0.177,0,0,0,0,0,0.195 +1,0.621,0.0764,0.318,0,0,0,0,0,0.276 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.298 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.167 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.153 +0.333,0.562,0.0159,0.0495,0,0,0.0719,0.0333,0.283,0.0443 +0.667,0.621,0.13,0.289,0,0,0.474,0.95,0.933,0.151 +1,0.651,0.198,0.41,0,0,0.494,0,0,0.0886 +1,0.682,0.222,0.422,0,0,0.43,0,0,0.222 +0.667,0.673,0.19,0.326,0,0,0.491,0,0,0.133 +1,0.774,0.34,0.567,0,0,0.481,0,0,0.222 +0.667,0.714,0.31,0.507,0,0,0.299,0,0.283,0.0443 +0.667,0.704,0.432,0.613,0.185,0.0333,0,0,0.2,0 +0.667,0.683,0.532,0.635,0.571,1,0,0,0,0 +0.667,0.642,0.505,0.555,0,0.5,0,0,0,0.0443 +0.667,0.581,0.162,0.2,0,0,0,0,0,0.0298 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0.241 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0.667,0.571,0.0316,0.147,0,0,0.267,0.483,0.45,0.076 +0.667,0.611,0.0634,0.305,0,0,0.286,0,0,0.275 +0.667,0.621,0.0764,0.318,0,0,0.242,0,0,0.176 +0.333,0.591,0.0527,0.185,0,0,0.219,0.483,0,0.211 +0.333,0.591,0.0578,0.181,0,0,0.425,0,0,0.355 +0.333,0.591,0.0629,0.175,0,0,0.437,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.346,0,0,0.177 +0.333,0.591,0.073,0.169,0,0,0.469,0,0,0.0886 +0.333,0.591,0.0767,0.17,0,0,0.797,0,0,0.266 +0,0.562,0.0159,0.0495,0,0,0.228,0,0.0333,0.295 +0.667,0.673,0.19,0.326,0,0,0,0,0.2,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0886 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0443 +1,0.774,0.64,0.895,0,0,0,0,0,0.0443 +0.333,0.622,0.274,0.342,0,0,0,0,0,0 +0.333,0.602,0.26,0.302,0,0,0,0,0,0.0999 +0.667,0.581,0.162,0.2,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0886 +0.667,0.571,0.0316,0.147,0,0,0,0,0.2,0.443 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.0871,0.0333,0,0.0886 +0.333,0.591,0.0578,0.181,0,0,0.773,0.45,0,0.133 +0.333,0.591,0.0629,0.175,0,0,0.347,0,0,0.0443 +0.333,0.591,0.0658,0.171,0,0,0.433,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.144,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0.667,0.602,0.0846,0.174,0,0,0,0,0.45,0.222 +0.667,0.673,0.19,0.326,0,0,0,0,0.233,0.222 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.177 +0.667,0.714,0.31,0.507,0.316,0.283,0,0,0,0.0886 +0.333,0.633,0.224,0.331,0.356,1,0,0,0,0 +0.333,0.622,0.274,0.342,0,0.25,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0316 +0.667,0.581,0.162,0.2,0,0,0,0,0,0.298 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0 +0.667,0.56,0.044,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.26 +1,0.56,0.0201,0.051,0,0,0,0,0,0.45 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.367,0.0886 +0.667,0.591,0.0636,0.184,0,0,0,0,0.117,0.171 +0.667,0.591,0.0803,0.185,0,0,0,0,0.367,0.105 +0.333,0.591,0.0934,0.181,0,0,0,0,1,0.0529 +0.333,0.591,0.101,0.175,0,0,0,0,0.0833,0.163 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.197 +0.333,0.591,0.125,0.169,0.258,0.367,0,0,0.117,0.165 +0.667,0.591,0.141,0.17,0.264,1,0,0,0.6,0.266 +0.667,0.602,0.154,0.174,0,0.167,0,0,0,0.0886 +0.667,0.617,0.162,0.188,0,0,0,0,0,0.0886 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.0443 +0.667,0.714,0.371,0.507,0,0,0,0,0,0.263 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.0886 +0.667,0.683,0.57,0.635,0,0,0,0,0.233,0.0991 +0.667,0.642,0.526,0.555,0,0,0,0,0,0.105 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0.0732 +1,0.56,0.044,0.0743,0,0,0,0,0,0.212 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.0454 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.38 +1,0.621,0.109,0.318,0,0,0,0,0,0.367 +1,0.621,0.143,0.321,0,0,0,0,0,0.742 +1,0.621,0.169,0.312,0,0,0,0,0,0.545 +0.333,0.591,0.101,0.175,0,0,0,0,0,0.0777 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.0951 +0.333,0.591,0.125,0.169,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.117,0.0886 +0.333,0.602,0.154,0.174,0,0,0,0,0.6,0.31 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.149 +0.333,0.633,0.167,0.222,0,0,0,0,0,0.0743 +0.667,0.638,0.194,0.278,0,0,0,0,0,0.0443 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.0443 +0.667,0.683,0.57,0.635,0,0,0,0,0,0 +0.667,0.602,0.272,0.302,0,0,0,0,0,0 +0.667,0.581,0.176,0.2,0,0,0,0,0,0.177 +1,0.569,0.156,0.183,0,0,0,0,0,0.321 +1,0.559,0.059,0.099,0,0,0,0,0,0.0529 +1,0.559,0.0314,0.066,0,0,0,0,0,0.176 +1,0.559,0.0184,0.0495,0,0,0,0,0,0.0443 +1,0.56,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0732 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.45 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.366 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.275 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.309 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.133 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.177 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0443 +1,0.728,0.277,0.464,0,0,0,0,0,0.133 +0.667,0.704,0.232,0.395,0,0,0,0,0.233,0.0886 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0443 +0.667,0.704,0.432,0.613,0,0,0.0719,0.0333,0,0 +0.667,0.683,0.532,0.635,0,0,0.237,0.7,0,0.0443 +0.667,0.642,0.505,0.555,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0 +0.667,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0282 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.479 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0597 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.601 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.436 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.199 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.267 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.315 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.0443 +1,0.621,0.137,0.29,0,0,0,0,0,0.37 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.382 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.482 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.173 +0.667,0.714,0.31,0.507,0,0,0,0,0.0333,0.488 +1,0.774,0.64,0.895,0,0,0,0,0.2,0.234 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.149 +1,0.62,0.453,0.5,0,0,0,0,0,0.295 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0754 +1,0.56,0.0157,0.0495,0,0,0,0,0.283,0.413 +1,0.562,0.0159,0.0495,0,0,0,0,0.2,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.198 +1,0.571,0.0316,0.147,0,0,0,0,0,0.231 +1,0.586,0.0396,0.177,0,0,0,0,0,0.177 +1,0.591,0.0462,0.184,0,0,0,0,0,0.0443 +1,0.591,0.0527,0.185,0,0,0,0,0.0333,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0.2,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.31 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.169 +0.333,0.591,0.073,0.169,0,0,0,0,0.0333,0.233 +0.333,0.591,0.0767,0.17,0,0,0,0,0.933,0.302 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0886 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.265 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.638,0.163,0.278,0.465,0.533,0,0,0,0 +0.333,0.633,0.224,0.331,0.307,1,0,0,0,0.0754 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.142 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.303 +0.667,0.581,0.162,0.2,0,0,0,0,0,0.0316 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.483,0.133 +1,0.571,0.0316,0.147,0,0,0,0,0,0.116 +1,0.586,0.0396,0.177,0,0,0,0,0,0.201 +1,0.591,0.0462,0.184,0,0,0,0,0,0.471 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.266 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.0443 +0.333,0.591,0.0629,0.175,0.169,0.0333,0,0,0,0 +0.333,0.591,0.0658,0.171,0.817,1,0,0,0,0.0443 +0.333,0.591,0.073,0.169,0,0.75,0,0,0.283,0.0886 +0.667,0.621,0.137,0.29,0,0,0,0,1,0.222 +0.667,0.642,0.153,0.298,0,0,0,0,0.667,0.516 +1,0.728,0.277,0.464,0,0,0,0,0,0.343 +1,0.774,0.34,0.567,0,0,0,0,0,0.404 +1,0.79,0.457,0.736,0,0,0,0,0,0.0284 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.115 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.602,0.26,0.302,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0702 +1,0.586,0.0396,0.177,0,0,0,0,0,0.159 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.0886 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.0443 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.177 +0.667,0.591,0.0658,0.171,0,0,0,0,0.0333,0.133 +0.667,0.591,0.073,0.169,0,0,0,0,0.2,0.355 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0.0443 +0.667,0.602,0.0846,0.174,0,0,0,0,0,0.38 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0443 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.222 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.222 +0.333,0.633,0.224,0.331,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.407 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.0443 +1,0.581,0.162,0.2,0,0,0,0,0,0.177 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.541 +1,0.571,0.0295,0.147,0,0,0,0,0,0.299 +0.667,0.611,0.0685,0.305,0,0,0,0,0,0.358 +0.667,0.621,0.109,0.318,0,0,0,0,0,0.222 +0.667,0.621,0.143,0.321,0,0,0,0,0,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.0886 +0.333,0.591,0.101,0.175,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0 +0.667,0.591,0.125,0.169,0,0,0,0,0,0.0886 +0.667,0.591,0.141,0.17,0,0,0,0,0,0.0886 +0.667,0.602,0.154,0.174,0,0,0,0,0,0.651 +0.333,0.617,0.162,0.188,0,0,0,0,0.367,0.333 +0.667,0.704,0.315,0.395,0,0,0,0,0.117,0.338 +0.667,0.714,0.371,0.507,0,0,0,0,0,0.0886 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.31 +0.667,0.683,0.57,0.635,0.288,0.367,0.163,0.483,0,0.0988 +1,0.682,0.78,0.807,0.782,1,0,0,0,0.191 +1,0.62,0.492,0.5,0.759,0.167,0,0,0,0 +1,0.569,0.156,0.183,0.239,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.114 +1,0.586,0.0433,0.177,0,0,0,0,0,0.133 +1,0.621,0.109,0.318,0,0,0.0761,0.367,0,0.402 +0.667,0.621,0.143,0.321,0,0,0,0.367,0,0.347 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.133 +0.333,0.591,0.125,0.169,0,0,0.25,0.733,0,0.266 +0.333,0.591,0.141,0.17,0,0,0.466,0,0,0.141 +0.667,0.642,0.291,0.298,0,0,0.501,0,0,0.382 +0.667,0.673,0.305,0.326,0,0,0.416,0,0,0.24 +0.667,0.704,0.315,0.395,0,0,0.689,0,0,0.201 +0.667,0.714,0.371,0.507,0,0,0.633,0,0,0.376 +1,0.774,0.719,0.895,0,0,0.593,0,0,0.141 +1,0.744,0.845,0.928,0,0,0,0,0,0.222 +0.667,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0.13 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0751 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.25 +1,0.571,0.0316,0.147,0,0,0,0,0,0.33 +1,0.611,0.0634,0.305,0,0,0,0,0,0.7 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.315 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0886 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0886 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.31 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.667,0.673,0.19,0.326,0,0,0,0,0.233,0.118 +0.333,0.633,0.124,0.222,0,0,0,0,0,0 +0.333,0.638,0.163,0.278,0,0,0,0,0.783,0 +0.667,0.704,0.432,0.613,0,0,0,0,0.183,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.161 +0.667,0.58,0.0474,0.245,0,0,0,0,0.0333,0.168 +0.333,0.586,0.0396,0.177,0,0,0,0,0.233,0.0443 +0.333,0.591,0.0462,0.184,0,0,0,0,0.933,0.0886 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.0443 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0886 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0298 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.154 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.177 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0.0333,0.222 +0.333,0.617,0.103,0.188,0,0,0,0,0.683,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.0886 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.266 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.532 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.225 +0.667,0.602,0.26,0.302,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.56,0.0157,0.0495,0,0,0,0,0.683,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0751 +1,0.586,0.0396,0.177,0,0,0,0,0.0333,0.222 +0.667,0.621,0.0764,0.318,0,0,0,0,0.933,0.256 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.31 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.177 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0443 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.133 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.266 +0.667,0.704,0.232,0.395,0,0,0,0,0.483,0.133 +1,0.79,0.457,0.736,0,0,0,0,0,0.0443 +0.667,0.633,0.224,0.331,0,0,0,0,0,0.209 +0.667,0.622,0.274,0.342,0,0,0,0,0,0.0316 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0275 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0.454 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0.0437 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.26 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.478 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.264 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.178 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.25 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.133 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0757 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.526 +0.667,0.673,0.19,0.326,0.158,0.0333,0,0,0,0.104 +0.667,0.704,0.232,0.395,0.565,1,0,0,0,0.207 +0.667,0.714,0.31,0.507,0.847,0.75,0,0,0,0.0443 +1,0.774,0.64,0.895,0.556,0,0,0,0,0.133 +1,0.744,0.791,0.928,0.548,0,0,0,0,0 +0.667,0.602,0.26,0.302,0.693,0,0,0,0,0 +0.667,0.581,0.162,0.2,0.169,0,0,0,0,0.157 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0821 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.217 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.259 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0747 +1,0.58,0.0474,0.245,0,0,0,0,0.45,0.451 +1,0.611,0.0634,0.305,0,0,0,0,0,0.195 +1,0.621,0.0764,0.318,0.271,0.283,0,0,0,0.191 +1,0.651,0.126,0.456,0.62,1,0,0,0,0.388 +0.333,0.591,0.0578,0.181,0,0.25,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0443 +0.667,0.621,0.116,0.292,0.158,0.0333,0,0,0,0.222 +0.667,0.621,0.13,0.289,0.516,1,0,0,0,0.0443 +0.667,0.621,0.137,0.29,0,0.5,0,0,0,0.266 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.133 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0443 +0.667,0.633,0.124,0.222,0,0,0,0,0,0.0443 +0.667,0.638,0.163,0.278,0,0,0,0,0,0.282 +1,0.774,0.64,0.895,0,0,0,0,0,0.319 +1,0.744,0.791,0.928,0,0,0,0,0,0.159 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0.233,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0.0886 +1,0.56,0.0208,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.142 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.617,0.0886 +0.333,0.591,0.108,0.171,0.179,0.117,0,0,0.35,0.133 +0.333,0.591,0.125,0.169,0.736,1,0,0,0,0.177 +0.333,0.591,0.141,0.17,0.667,0.417,0,0,0.233,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.266 +1,0.728,0.449,0.464,0,0,0,0,0,0.399 +1,0.774,0.464,0.567,0,0,0,0,0,0.266 +0.333,0.638,0.194,0.278,0,0,0,0,0,0.31 +0.333,0.633,0.252,0.331,0,0,0,0,0,0.0886 +0.333,0.622,0.294,0.342,0,0,0,0,0,0.0483 +0.667,0.642,0.526,0.555,0,0,0,0,0,0.044 +0.667,0.581,0.176,0.2,0,0,0,0,0,0.215 +1,0.569,0.156,0.183,0,0,0,0,0,0.173 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0.206 +0.667,0.571,0.0295,0.147,0,0,0,0,0,0.133 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0.0886 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.667,0.591,0.108,0.171,0,0,0,0,0.233,0.266 +0.667,0.591,0.125,0.169,0,0,0,0,0,0.133 +0.667,0.591,0.141,0.17,0,0,0,0,0,0.151 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.291 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.445 +1,0.774,0.464,0.567,0,0,0,0,0.367,0.177 +0.667,0.714,0.371,0.507,0,0,0,0,0.117,0.201 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.343 +0.667,0.683,0.57,0.635,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0,0,0,0 +0.667,0.581,0.176,0.2,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0.0802 +0.667,0.56,0.0374,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.0443 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.177 +1,0.571,0.0316,0.147,0,0,0,0,0,0.0443 +0.667,0.586,0.0396,0.177,0,0,0,0,0.233,0.185 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.443 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.0886 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.31 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0886 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.133 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.222 +0.333,0.602,0.0846,0.174,0,0,0.297,0.533,0,0 +0.667,0.673,0.19,0.326,0,0,0.401,0.95,0,0 +0.667,0.704,0.232,0.395,0.522,0.533,0.184,0,0.0333,0 +0.667,0.714,0.31,0.507,0.631,1,0,0,0.45,0.0443 +0.667,0.704,0.432,0.613,0.292,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.602,0.26,0.302,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.106 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.117 +1,0.56,0.0236,0.0816,0,0,0.467,0.233,0,0.211 +1,0.571,0.0316,0.147,0,0,0.546,0,0,0.366 +0.667,0.611,0.0634,0.305,0,0,0.523,0,0,0.0443 +0.667,0.621,0.0764,0.318,0,0,0.502,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.589,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0.26,0,0,0.0443 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.155 +0.667,0.621,0.116,0.292,0,0,0.219,0.533,0,0.389 +0.333,0.591,0.073,0.169,0,0,0.716,0.2,0,0.177 +0.333,0.591,0.0767,0.17,0,0,0.593,0,0,0.0886 +0.333,0.602,0.0846,0.174,0,0,0.0401,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.12 +0.667,0.704,0.232,0.395,0.584,0.533,0,0,0.283,0.203 +0.667,0.638,0.163,0.278,0.49,1,0,0,0.433,0.308 +1,0.774,0.64,0.895,0,0,0.0802,0.233,0,0.539 +1,0.744,0.791,0.928,0,0,0,0,0,0.21 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0308 +1,0.56,0.0186,0.051,0,0,0,0,0,0.51 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.37 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.177 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.0886 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0886 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0886 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0443 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.0886 +0.333,0.638,0.163,0.278,0,0,0,0,0,0.133 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.25 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.0303 +0.667,0.6,0.307,0.35,0,0,0,0,0,0.209 +0.667,0.569,0.136,0.183,0,0,0,0,0,0.0629 +1,0.558,0.0806,0.124,0,0,0,0,0,0.251 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.25 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.194 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.0291 +1,0.56,0.0186,0.051,0,0,0,0,0.533,0.265 +1,0.56,0.0236,0.0816,0,0,0,0,1,0.0886 +1,0.571,0.0316,0.147,0,0,0,0,0.167,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0.0443 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0.0333,0.133 +0.333,0.591,0.0658,0.171,0,0,0,0,0.2,0.133 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.31 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0443 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0294 +0.667,0.673,0.19,0.326,0,0,0,0,0.233,0.118 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0443 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0443 +1,0.774,0.64,0.895,0,0,0,0,0.483,0.0443 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.602,0.26,0.302,0,0,0,0,0,0.0311 +1,0.6,0.307,0.35,0,0,0,0,0,0.176 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.159 +1,0.58,0.0474,0.245,0,0,0,0,0,0.227 +1,0.635,0.0871,0.433,0,0,0,0,0,0.512 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.0443 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.133 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.133 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0886 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.266 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0886 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.133 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.0886 +1,0.774,0.34,0.567,0,0,0,0,0,0 +0.667,0.714,0.31,0.507,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.229 +1,0.744,0.791,0.928,0,0,0,0,0,0.288 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.488 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.867,0.355 +1,0.586,0.0433,0.177,0,0,0,0,0.833,0 +1,0.591,0.0636,0.184,0,0,0,0,0.367,0 +1,0.621,0.143,0.321,0,0,0,0,0.6,0.0443 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0.343 +1,0.651,0.268,0.426,0,0,0.302,0.367,0,0.289 +0.333,0.591,0.108,0.171,0,0,0.49,0.367,0,0 +0.667,0.621,0.233,0.289,0,0,0.556,0,0,0 +0.667,0.621,0.265,0.29,0,0,0.267,0,0,0.0886 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.0886 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.177 +0.333,0.633,0.167,0.222,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0.593 +0.333,0.633,0.252,0.331,0,0,0,0,0.233,0.102 +0.667,0.683,0.57,0.635,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0.105 +1,0.56,0.0443,0.0743,0,0,0,0,0,0.484 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0798,0,0,0,0,0,0.133 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.107 +1,0.619,0.144,0.299,0,0,0,0,0,0.241 +0.667,0.619,0.17,0.291,0,0,0,0,0,0.295 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.129 +0.333,0.59,0.109,0.16,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.0443 +0.667,0.59,0.142,0.159,0,0,0,0,0,0.177 +0.667,0.601,0.156,0.159,0,0,0,0,0,0.133 +1,0.671,0.308,0.274,0,0,0,0,0.233,0.222 +1,0.701,0.318,0.291,0,0,0,0,0,0.0443 +0.667,0.712,0.374,0.339,0,0,0,0,0,0.0443 +1,0.771,0.725,0.619,0,0,0,0,0,0.0443 +1,0.741,0.852,0.783,0.371,0.333,0,0,0,0.0886 +1,0.679,0.786,0.88,0.797,0.9,0,0,0,0 +1,0.599,0.337,0.415,0.603,0,0,0,0,0.291 +1,0.565,0.0875,0.116,0.78,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.128,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0285 +1,0.57,0.0318,0.143,0,0,0,0,0.533,0.154 +1,0.633,0.0879,0.417,0,0,0,0,0.167,0.151 +1,0.648,0.108,0.427,0,0,0,0,0,0.451 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.182 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0.108,0.283,0,0.0443 +0.333,0.59,0.0772,0.159,0,0,0.405,0.483,0,0.177 +0.333,0.601,0.0853,0.159,0,0,0.382,0,0,0.443 +0.667,0.671,0.191,0.274,0,0,0.306,0,0,0.263 +1,0.771,0.343,0.412,0,0,0.422,0,0,0.339 +0.667,0.712,0.313,0.339,0,0,0.495,0,0,0.39 +0.667,0.701,0.436,0.429,0,0,0.438,0,0,0.0443 +0.667,0.681,0.537,0.538,0,0,0.671,0,0,0.145 +0.667,0.64,0.509,0.603,0,0,0.277,0,0,0.123 +0.667,0.58,0.163,0.232,0,0,0,0,0,0.268 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.062 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0719 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.368 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.533 +1,0.578,0.0478,0.236,0,0,0,0,0,0.514 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.218 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.36 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.0986 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0.0333,0.133 +0.333,0.616,0.104,0.162,0,0,0,0,0.433,0.133 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.222 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0443 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.0443 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.0886 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.122 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.326 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.172 +0.667,0.56,0.0238,0.0798,0,0,0,0,0,0.0886 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.38 +0.667,0.609,0.0639,0.295,0,0,0.0954,0.0333,0,0.163 +0.667,0.619,0.077,0.301,0,0,0.43,0.217,0,0.165 +1,0.648,0.127,0.424,0,0,0.148,0,0,0.419 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.399 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0443 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.222 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.133 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.266 +0.333,0.616,0.104,0.162,0,0,0,0,0.467,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.0443 +0.333,0.637,0.164,0.194,0,0,0.342,0.533,0,0.0443 +0.333,0.631,0.226,0.239,0,0,0.469,0.5,0,0 +0.333,0.621,0.276,0.294,0,0,0.14,0,0,0.259 +0.667,0.64,0.509,0.603,0,0,0,0,0.283,0.254 +1,0.599,0.31,0.415,0,0,0,0,0.417,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.0323 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.164 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.328 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0286 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.287 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.178 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.221 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0.327 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.207 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0.233,0.266 +0.667,0.619,0.117,0.271,0,0,0,0,0.233,0.339 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.436 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.281 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0656 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0443 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.118 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.333,0.621,0.276,0.294,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0726 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.319 +1,0.578,0.0478,0.236,0,0,0,0,0,0.29 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0.263 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.204 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.133 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0443 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0886 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0443 +1,0.671,0.191,0.274,0,0,0,0,0,0.355 +1,0.631,0.125,0.17,0,0,0,0,0,0.0886 +0.667,0.637,0.164,0.194,0,0,0,0,0,0.0886 +0.667,0.631,0.226,0.239,0,0,0,0,0,0.0886 +1,0.681,0.537,0.538,0,0,0,0,0,0 +1,0.601,0.262,0.326,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.169 +1,0.57,0.0297,0.143,0,0,0,0,0,0.324 +1,0.609,0.069,0.295,0,0,0,0,0,0.444 +1,0.619,0.11,0.301,0,0,0,0,0,0.303 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.277 +0.333,0.59,0.0941,0.17,0,0,0,0,0.467,0.0443 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.266 +0.333,0.59,0.109,0.16,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.266 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.0443 +0.333,0.616,0.163,0.162,0,0,0,0,0.0833,0.222 +0.333,0.631,0.168,0.17,0,0,0,0,0.15,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0.117 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.0846 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.13 +0.667,0.64,0.53,0.603,0,0,0,0,0,0.163 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.57,0.0297,0.143,0,0,0,0,0,0.0929 +1,0.585,0.0436,0.172,0,0,0,0,0,0.292 +0.667,0.59,0.0641,0.175,0.136,0.0833,0,0,0,0.12 +0.667,0.619,0.144,0.299,0.753,1,0,0,0,0.288 +0.667,0.619,0.17,0.291,0,0.4,0,0,0,0.46 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.0443 +0.667,0.619,0.199,0.271,0,0,0,0,0,0.266 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.133 +0.667,0.619,0.267,0.268,0,0,0,0,0,0 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.222 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.399 +0.333,0.631,0.168,0.17,0,0,0,0,0.333,0 +0.667,0.712,0.374,0.339,0,0,0,0,0.133,0.177 +0.667,0.701,0.489,0.429,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0.108,0.333,0,0 +0.667,0.599,0.337,0.415,0,0,0.577,0.7,0,0.0443 +1,0.568,0.157,0.183,0,0,0.307,0,0,0 +0.667,0.56,0.0377,0.0743,0,0,0,0,0,0 +0.667,0.56,0.0238,0.0578,0,0,0,0,0,0.169 +1,0.56,0.0172,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0303 +1,0.57,0.0318,0.143,0,0,0,0,0,0.69 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.59,0.0772,0.159,0,0,0,0,0.467,0.399 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0443 +0.333,0.616,0.104,0.162,0,0,0,0,0.0333,0 +0.333,0.631,0.125,0.17,0,0,0,0,0.2,0.31 +0.667,0.712,0.313,0.339,0.576,0.533,0,0,0,0.404 +0.667,0.701,0.436,0.429,0.175,0.95,0,0,0,0.382 +0.667,0.681,0.537,0.538,0,0,0,0,0.533,0.133 +0.667,0.64,0.509,0.603,0,0,0,0,0.167,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.075 +0.667,0.56,0.0238,0.0798,0,0,0,0,0,0.258 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.562 +1,0.633,0.0879,0.417,0,0,0,0,0,0.154 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.204 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.133 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.177 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.177 +0.333,0.59,0.0662,0.16,0,0,0.112,0.0333,0.233,0 +0.667,0.619,0.131,0.269,0,0,0.32,1,0,0.0443 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.222 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0443 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0.233,0.0886 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.0304 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.276 +0.667,0.599,0.31,0.415,0,0,0,0,0.467,0.0762 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0722 +1,0.585,0.0399,0.172,0,0,0,0,0,0.247 +1,0.619,0.077,0.301,0,0,0,0,0,0.252 +1,0.648,0.127,0.424,0,0,0,0,0,0.239 +1,0.648,0.143,0.411,0,0,0,0,0,0.237 +1,0.648,0.158,0.394,0,0,0,0,0.233,0.886 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.133 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.0443 +0.667,0.59,0.0772,0.159,0,0,0,0,0,0.165 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0789 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.177 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.266 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0886 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.0443 +1,0.56,0.0238,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.229 +1,0.609,0.0639,0.295,0,0,0,0,0.283,0.166 +0.667,0.619,0.077,0.301,0,0,0,0,0.183,0.208 +1,0.648,0.127,0.424,0,0,0,0,0,0.216 +1,0.648,0.143,0.411,0,0,0,0,0,0.339 +1,0.648,0.158,0.394,0.437,0.533,0,0,0.283,0.139 +0.667,0.619,0.117,0.271,0.881,0.95,0,0,0.417,0 +0.667,0.619,0.131,0.269,0.38,0,0,0,0,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +0.667,0.64,0.155,0.269,0,0,0,0,0.433,0.133 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.177 +0.667,0.701,0.234,0.291,0,0,0,0,0.0333,0.222 +1,0.787,0.461,0.484,0,0,0,0,0.667,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.222 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.0298 +0.667,0.599,0.31,0.415,0,0,0,0,0,0.223 +0.667,0.568,0.137,0.183,0,0,0,0,0,0.405 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0692 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.192 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0.315 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.134 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.0886 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.133 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.133 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0443 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0886 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.222 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0789 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.193 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.278 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.0486 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0.149 +1,0.565,0.0765,0.116,0,0,0,0,0,0.0629 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.118 +1,0.59,0.0641,0.175,0,0,0,0,0.0833,0.26 +1,0.619,0.144,0.299,0,0,0,0,0.383,0.268 +1,0.648,0.246,0.411,0,0,0,0,0,0.617 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.36 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.283 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.392 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.443 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.0443 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.0443 +0.333,0.631,0.168,0.17,0,0,0,0,0.583,0.0886 +0.333,0.637,0.196,0.194,0,0,0,0,0.117,0.266 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.0443 +0.333,0.621,0.296,0.294,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0 +0.667,0.565,0.0875,0.116,0,0,0,0,0,0.267 +1,0.56,0.0443,0.0743,0,0,0,0,0,0.0443 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.0443 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.211 +0.667,0.619,0.144,0.299,0,0,0,0,0,0.335 +0.667,0.619,0.17,0.291,0,0,0,0,0,0.424 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.314 +0.667,0.619,0.199,0.271,0,0,0,0,0,0.212 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.222 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.0443 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.0443 +0.333,0.616,0.163,0.162,0,0,0,0,0,0 +0.333,0.631,0.168,0.17,0,0,0,0,0,0.222 +0.667,0.712,0.374,0.339,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.0443 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.0443 +0.667,0.64,0.53,0.603,0,0,0,0,0,0 +0.667,0.599,0.337,0.415,0,0,0,0,0,0.11 +1,0.568,0.157,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +1,0.557,0.0316,0.11,0,0,0,0,0.2,0.133 +1,0.578,0.0478,0.236,0,0,0,0,0,0.428 +1,0.633,0.0879,0.417,0,0,0,0,0,0.203 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.362 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.133 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0443 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.266 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.177 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.133 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0886 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0.233,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.177 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.359 +1,0.609,0.0639,0.295,0,0,0,0,0,0.298 +1,0.648,0.108,0.427,0,0,0,0,0,0.727 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.334 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.133 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0886 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0443 +0.333,0.59,0.0772,0.159,0.331,0.533,0,0,0,0.133 +0.333,0.601,0.0853,0.159,0.42,0.95,0,0,0,0.0758 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.411 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.0886 +0.333,0.637,0.164,0.194,0,0,0.391,0.533,0.233,0.0443 +1,0.771,0.646,0.619,0,0,0.487,0.5,0,0 +0.667,0.681,0.537,0.538,0,0,0.202,0,0,0.0443 +0.667,0.64,0.509,0.603,0,0,0.598,0,0,0.0289 +1,0.617,0.457,0.597,0,0,0.364,0,0,0.34 +1,0.568,0.137,0.183,0,0,0.487,0,0,0.223 +1,0.56,0.0377,0.0743,0,0,0.201,0,0,0 +1,0.56,0.0238,0.0578,0,0,0.668,0,0,0 +1,0.56,0.0172,0.0495,0,0,0.461,0,0,0 +1,0.56,0.0157,0.0495,0,0,0.604,0,0,0.177 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0316 +1,0.586,0.0637,0.33,0,0,0,0,0.2,0.247 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.347 +1,0.648,0.127,0.424,0,0,0,0,0,0.211 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.122 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0443 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0886 +0.333,0.59,0.0735,0.159,0.136,0.0333,0,0,0,0.62 +0.333,0.59,0.0772,0.159,0.478,1,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0.45,0,0,0,0.0443 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.173 +1,0.701,0.234,0.291,0,0,0,0,0,0.239 +1,0.787,0.461,0.484,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0,0,0,0,0,0.0886 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.601,0.262,0.326,0,0,0,0,0,0.0298 +0.667,0.58,0.163,0.232,0,0,0,0,0,0.0298 +0.667,0.565,0.0765,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0292 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.0729 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.222 +0.333,0.59,0.0633,0.164,0,0,0,0,0.0333,0.0443 +0.333,0.59,0.0662,0.16,0,0,0,0,0.433,0.0886 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.133 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.114 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.293 +1,0.725,0.279,0.386,0,0,0,0,0,0.66 +1,0.771,0.343,0.412,0,0,0.159,0.283,0,0.506 +0.667,0.712,0.313,0.339,0,0,0,0.75,0,0.12 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.0532 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.114 +1,0.679,0.756,0.88,0,0,0,0,0,0.0886 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.0443 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +1,0.619,0.077,0.301,0,0,0,0,0,0.177 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.31 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0.266 +0.667,0.59,0.0633,0.164,0.347,0.533,0,0,0.0333,0.0712 +0.667,0.619,0.117,0.271,0.153,0.95,0,0,0.2,0.412 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.133 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.161 +0.667,0.64,0.155,0.269,0,0,0,0,0.283,0.346 +0.667,0.671,0.191,0.274,0,0,0,0,0.65,0 +1,0.771,0.343,0.412,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0.0886 +0.667,0.631,0.226,0.239,0,0,0,0,0,0.0443 +0.667,0.621,0.276,0.294,0.181,0.0333,0,0,0,0.0443 +0.667,0.64,0.509,0.603,0.537,1,0,0,0,0.335 +0.667,0.599,0.31,0.415,0,0.45,0,0,0,0.177 +0.667,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.31 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.133 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.222 +0.667,0.671,0.308,0.274,0,0,0,0,0,0 +0.667,0.701,0.318,0.291,0,0,0,0,0.583,0.0886 +0.667,0.712,0.374,0.339,0,0,0,0,0.117,0.133 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.222 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.0443 +0.667,0.64,0.53,0.603,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.165 +1,0.59,0.0641,0.175,0,0,0.127,0.0833,0,0.347 +1,0.619,0.144,0.299,0,0,0.667,0.95,0,0.183 +0.333,0.562,0.0181,0.0495,0,0,0.0318,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0723 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.335 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.143 +0.667,0.619,0.267,0.268,0,0,0,0,0,0.442 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.499 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.0443 +0.667,0.701,0.318,0.291,0,0,0,0,0.0833,0.116 +0.667,0.712,0.374,0.339,0,0,0,0,0.15,0.22 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.177 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.131 +0.667,0.64,0.53,0.603,0,0,0,0,0,0.133 +1,0.617,0.496,0.597,0,0,0,0,0,0.235 +1,0.568,0.157,0.183,0,0,0,0,0,0.266 +1,0.56,0.0377,0.0743,0.395,0.533,0,0,0,0 +1,0.56,0.0238,0.0578,0.143,0.95,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0312 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.141 +0.667,0.57,0.0318,0.143,0,0,0.188,0.533,0,0.386 +0.667,0.585,0.0399,0.172,0,0,0.314,0.5,0,0.31 +0.667,0.619,0.077,0.301,0,0,0.474,0,0,0.266 +0.667,0.619,0.0902,0.299,0,0,0.18,0,0,0.133 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0443 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.177 +0.333,0.59,0.0662,0.16,0,0,0,0,0.0333,0.0443 +0.333,0.59,0.0735,0.159,0,0,0,0,1,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.617,0.133 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.177 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.266 +0.333,0.631,0.125,0.17,0,0,0,0,0.233,0.133 +0.333,0.637,0.164,0.194,0,0,0,0,0,0.0886 +0.333,0.631,0.226,0.239,0,0,0,0,0,0 +0.333,0.621,0.276,0.294,0,0,0,0,0,0.116 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.31 +0.667,0.58,0.163,0.232,0,0,0,0,0,0.464 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0581 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0279 +1,0.57,0.0318,0.143,0,0,0,0,0,0.246 +1,0.585,0.0399,0.172,0,0,0,0,0,0.127 +0.667,0.59,0.0465,0.175,0,0,0,0,0.0333,0 +0.667,0.59,0.053,0.174,0,0,0,0,0.2,0.0886 +0.667,0.619,0.1,0.291,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.133 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0443 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0886 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0886 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.346 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.2 +0,0.562,0.0159,0.0495,0,0,0,0,0.467,0.0443 +0.333,0.637,0.164,0.194,0,0,0,0,0,0.0443 +0.333,0.631,0.226,0.239,0,0,0,0,0,0.177 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.0744 +1,0.617,0.457,0.597,0,0,0,0,0,0.181 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.105 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.56 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.328 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.191 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.0443 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.133 +0.333,0.59,0.0582,0.17,0,0,0,0,0.233,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0443 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0443 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.266 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0443 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.133 +0.333,0.616,0.104,0.162,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0.467,0.133 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.133 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.03 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.225 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.222 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0289 +0.667,0.56,0.0238,0.0798,0,0,0,0,0,0.266 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.0537 +0.667,0.585,0.0399,0.172,0,0,0,0,0.233,0.282 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.257 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0886 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0443 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0443 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.31 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.783,0.115 +0.667,0.712,0.313,0.339,0,0,0,0,0.15,0.25 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.329 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.122 +0.667,0.601,0.262,0.326,0,0,0,0,0,0.0443 +0.667,0.58,0.163,0.232,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.0443 +1,0.56,0.0172,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.57,0.0318,0.143,0,0,0,0,0.667,0.31 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.0886 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.133 +0.667,0.59,0.053,0.174,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0.208 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.464 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.177 +0.333,0.616,0.104,0.162,0,0,0,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.0886 +0.667,0.712,0.313,0.339,0.182,0.0333,0,0,0,0.0443 +0.667,0.701,0.436,0.429,0.611,1,0,0,0,0.0443 +0.667,0.681,0.537,0.538,0,0.45,0,0,0,0.134 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.143 +0.667,0.599,0.31,0.415,0,0,0,0,0,0.103 +0.667,0.565,0.0765,0.116,0,0,0,0,0,0.274 +0.667,0.56,0.0443,0.0743,0,0,0,0,0,0.186 +1,0.56,0.0282,0.0578,0,0,0,0,0,0.105 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.194 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.398 +0.667,0.619,0.17,0.291,0,0,0,0,0,0.242 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.266 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.0443 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.133 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.177 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.185 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.196 +0.667,0.712,0.374,0.339,0,0,0,0,0,0.399 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.177 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.0443 +0.667,0.64,0.53,0.603,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0.0718 +0.667,0.565,0.0875,0.116,0,0,0,0,0,0.152 +1,0.557,0.0705,0.099,0,0,0,0,0,0.0948 +1,0.56,0.0282,0.0578,0,0,0,0,0,0.334 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.149 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0781 +1,0.57,0.0297,0.143,0,0,0,0,0,0.0839 +1,0.585,0.0436,0.172,0,0,0,0,0.233,0.334 +1,0.619,0.11,0.301,0,0,0,0,0,0.352 +0.667,0.619,0.144,0.299,0.497,0.583,0,0,0,0.106 +0.667,0.619,0.17,0.291,0.124,0.9,0,0,0,0.313 +1,0.648,0.27,0.394,0,0,0,0,0,0.519 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.316 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.486 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.133 +0.667,0.616,0.163,0.162,0,0,0,0,0,0.322 +1,0.771,0.468,0.412,0,0,0,0,0,0.317 +0.333,0.637,0.196,0.194,0,0,0,0,0,0.141 +0.333,0.631,0.254,0.239,0,0,0,0,0,0 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.0778 +0.667,0.64,0.53,0.603,0,0,0,0,0,0.0443 +0.667,0.58,0.178,0.232,0.682,0.583,0,0,0,0 +1,0.565,0.0875,0.116,0.678,0.9,0,0,0,0.0415 +1,0.56,0.0377,0.0743,0.815,0,0,0,0,0.0443 +1,0.56,0.0238,0.0578,0.729,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +1,0.56,0.0157,0.0495,0,0,0,0,0.2,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.578,0.0478,0.236,0.264,0.283,0,0,0.233,0.31 +0.667,0.585,0.0399,0.172,0.738,1,0,0,0,0.222 +0.667,0.59,0.0465,0.175,0.595,0.2,0,0,0,0.0886 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.133 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.222 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.177 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0443 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0443 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.355 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.349 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.281 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.332 +0.667,0.591,0.0527,0.164,0,0,0,0,0.0333,0.837 +0.667,0.621,0.0997,0.27,0,0,0,0,0.433,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.12 +0.333,0.591,0.0658,0.15,0,0,0,0,0.283,0.506 +0.667,0.621,0.13,0.249,0,0,0,0,0.667,0.133 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0886 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.177 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.399 +0.667,0.704,0.232,0.264,0.267,0.283,0,0,0,0 +0.333,0.638,0.163,0.173,0.785,1,0,0,0,0.0443 +0.333,0.633,0.224,0.207,0,0.167,0,0,0,0.0886 +0.333,0.622,0.274,0.257,0,0,0,0,0,0.11 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.131 +0.667,0.6,0.307,0.405,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.3 +1,0.58,0.0474,0.228,0,0,0,0,0,0.632 +1,0.611,0.0634,0.284,0,0,0,0,0,0.497 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.305 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.1 +0.667,0.591,0.0578,0.16,0.65,0.533,0,0,0.533,0 +0.667,0.621,0.11,0.259,0.708,0.917,0,0,0.417,0.0443 +0.667,0.621,0.116,0.251,0.635,0,0,0,0,0.119 +0.667,0.621,0.13,0.249,0.795,0,0,0,0,0.28 +0.667,0.621,0.137,0.249,0,0,0,0,0.533,0.474 +0.667,0.602,0.0846,0.149,0,0,0,0,0.183,0.222 +0.667,0.617,0.103,0.151,0,0,0,0,0,0.0443 +0.667,0.633,0.124,0.157,0,0,0,0,0,0.0297 +0.667,0.714,0.31,0.296,0,0,0,0,0.233,0.133 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.0626 +0.667,0.6,0.307,0.405,0,0,0,0,0,0.107 +1,0.569,0.136,0.183,0,0,0,0,0,0.0753 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0315 +1,0.571,0.0316,0.139,0,0,0,0,0,0.295 +1,0.635,0.0871,0.402,0,0,0,0,0,0.29 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0.254,0.283,0,0,0,0 +0.333,0.591,0.0629,0.154,0.426,1,0,0,0,0.0443 +0.333,0.591,0.0658,0.15,0,0.167,0.324,0.5,0,0.222 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.177 +0.333,0.591,0.0767,0.149,0,0,0,0,0.533,0.0886 +0.667,0.642,0.153,0.249,0,0,0,0,0.417,0.133 +0.667,0.673,0.19,0.252,0,0,0,0,0.0333,0.173 +0.667,0.704,0.232,0.264,0,0,0,0,0.2,0.355 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0443 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.602,0.26,0.299,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.467,0.163 +1,0.611,0.0634,0.284,0,0,0.0871,0.0333,0,0.343 +1,0.651,0.107,0.404,0,0,0.343,0.217,0,0.595 +0.667,0.621,0.0895,0.278,0,0,0.131,0.25,0.0333,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0.2,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.177 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.443 +0.667,0.591,0.073,0.149,0,0,0,0,0,0.266 +0.667,0.591,0.0767,0.149,0,0,0,0,0,0.222 +1,0.642,0.153,0.249,0,0,0,0,0.0333,0.177 +1,0.673,0.19,0.252,0,0,0,0,0.2,0.385 +1,0.704,0.232,0.264,0,0,0,0,0,0.183 +1,0.714,0.31,0.296,0,0,0,0,0,0.0443 +1,0.774,0.64,0.523,0,0,0,0,0.0333,0.0443 +0.667,0.683,0.532,0.464,0,0,0,0,0.2,0.0312 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.375 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.263 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.524 +1,0.571,0.0295,0.139,0,0,0,0,0,0.379 +1,0.611,0.0685,0.284,0,0,0,0,0,0.208 +1,0.621,0.109,0.286,0,0,0,0,0.467,0.528 +0.667,0.621,0.143,0.278,0,0,0,0,0,0.266 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0.233,0.0443 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.0886 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.0886 +0.333,0.591,0.141,0.149,0,0,0.343,0.283,0,0.133 +0.333,0.602,0.154,0.149,0,0,0.0927,0.733,0,0.177 +0.667,0.673,0.305,0.252,0,0,0,0,0,0 +0.667,0.704,0.315,0.264,0,0,0,0,0.0333,0 +0.667,0.714,0.371,0.296,0,0,0,0,0.683,0.263 +0.667,0.704,0.485,0.365,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0 +0.667,0.642,0.526,0.549,0,0,0,0,0,0 +0.667,0.6,0.334,0.405,0,0,0,0,0,0.0875 +1,0.573,0.224,0.249,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.643 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.193 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.133 +0,0.562,0.0181,0.0495,0,0,0,0,0.0333,0 +0.333,0.591,0.141,0.149,0,0,0,0,0.683,0.133 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.133 +0.333,0.617,0.162,0.151,0,0,0,0,0,0.266 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.296 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.342 +0.667,0.704,0.485,0.365,0,0,0,0,0,0 +0.333,0.622,0.294,0.257,0,0,0,0,0,0.0443 +0.333,0.602,0.272,0.299,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.56,0.0186,0.0503,0,0,0,0,0.433,0.0886 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.498 +1,0.58,0.0474,0.228,0,0,0,0,0,0.16 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.12 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.119 +0.333,0.591,0.0578,0.16,0,0,0,0,0.233,0.0443 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0886 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0886 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.133 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0886 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.222 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.188 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0443 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0886 +0.333,0.622,0.274,0.257,0,0,0,0,0,0.0443 +0.333,0.602,0.26,0.299,0,0,0,0,0,0 +0.333,0.581,0.162,0.227,0,0,0,0,0,0 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0307 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.184 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.203 +1,0.635,0.0871,0.402,0,0,0,0,0,0.257 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.107 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0886 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.133 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.266 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.177 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.355 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.133 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.116 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0948 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.0886 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0787 +1,0.744,0.791,0.671,0,0,0,0,0,0.275 +0.667,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.62,0.453,0.582,0,0,0,0,0,0.0443 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.251 +1,0.559,0.0314,0.107,0,0,0,0,0,0.459 +1,0.58,0.0474,0.228,0,0,0,0,0,0.196 +1,0.635,0.0871,0.402,0,0,0,0,0,0.495 +1,0.651,0.107,0.404,0,0,0,0,0,0.609 +1,0.651,0.126,0.392,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.222 +0.667,0.621,0.11,0.259,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.266 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0886 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.177 +0.333,0.617,0.103,0.151,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.31 +0.667,0.714,0.31,0.296,0,0,0,0,0.467,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.0318 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.123 +0.667,0.581,0.162,0.227,0,0,0,0,0,0.218 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.249 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0926 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.119 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.198 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0886 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0886 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0886 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0443 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0443 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0443 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.423 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.448 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.491 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.179 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.188 +0.667,0.683,0.532,0.464,0,0,0,0,0.233,0.0619 +0.667,0.602,0.26,0.299,0,0,0,0,0,0 +0.667,0.581,0.162,0.227,0,0,0,0,0,0.177 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0.0878 +1,0.56,0.0374,0.0743,0.166,0.0333,0,0,0,0 +1,0.56,0.0236,0.0578,0.328,1,0,0,0,0 +1,0.56,0.0171,0.0495,0,0.417,0,0,0,0.404 +1,0.56,0.0157,0.0495,0,0,0,0,0.233,0.0421 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0297 +0.667,0.621,0.0764,0.286,0,0,0,0,0.433,0.266 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.222 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0886 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.133 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.31 +0.333,0.602,0.0846,0.149,0,0,0.243,0.25,0.0333,0.355 +1,0.728,0.277,0.353,0,0,0,0,0.917,0.0886 +1,0.774,0.34,0.371,0.469,0.533,0,0,0,0.0886 +0.667,0.714,0.31,0.296,0.316,0.917,0.481,0.783,0,0.222 +0.667,0.704,0.432,0.365,0,0,0.422,0.233,0,0.177 +1,0.744,0.791,0.671,0,0,0.487,0,0,0 +0.667,0.602,0.26,0.299,0,0,0.275,0,0,0 +1,0.6,0.307,0.405,0,0,0.582,0,0,0 +1,0.569,0.136,0.183,0,0,0.144,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0.31 +1,0.591,0.0636,0.168,0,0,0,0,0,0.214 +1,0.621,0.143,0.278,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +0.667,0.591,0.125,0.149,0,0,0,0,0,0.0524 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.133 +0.333,0.602,0.154,0.149,0,0,0.243,0.533,0,0.266 +0.667,0.673,0.305,0.252,0,0,0.217,0.217,0,0.222 +0.667,0.704,0.315,0.264,0,0,0.477,0,0,0.266 +0.667,0.714,0.371,0.296,0,0,0.426,0,0,0 +0.667,0.704,0.485,0.365,0,0,0.248,0,0,0.0443 +1,0.744,0.845,0.671,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.106 +1,0.586,0.0433,0.167,0,0,0,0,0,0.169 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.233,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.126 +0.667,0.591,0.101,0.154,0,0,0,0,0,0.31 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.34 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.0443 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.481 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.704 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.0886 +0.333,0.633,0.167,0.157,0,0,0,0,0,0.342 +0.333,0.638,0.194,0.173,0,0,0,0,0,0.121 +0.667,0.704,0.485,0.365,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0.463,0.533,0,0,0,0 +0.667,0.642,0.526,0.549,0.254,0.917,0,0,0,0 +0.667,0.581,0.176,0.227,0,0,0,0,0,0 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0759 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.199 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.179 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.294 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.12 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0312 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.367 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0886 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.467,0.0886 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.0886 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.0886 +0.333,0.638,0.163,0.173,0,0,0,0,0,0.355 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0443 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.483 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.014 +0.667,0.6,0.307,0.405,0,0,0,0,0,0.0313 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0.211 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0764 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.405 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.14 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.153 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.0883 +0.667,0.591,0.0578,0.16,0,0,0,0,0,0.199 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.222 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0886 +0.333,0.591,0.073,0.149,0.45,0.533,0,0,0,0.0443 +0.333,0.591,0.0767,0.149,0.128,0.917,0,0,0,0.31 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.266 +0,0.562,0.0159,0.0495,0,0,0,0,0.467,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.143 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0443 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.0907 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0.144 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.139 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.475 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.513 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.498 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.261 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.532 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.133 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.076 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.566 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.602,0.26,0.299,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0286 +1,0.571,0.0316,0.139,0,0,0,0,0,0.384 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.149 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.176 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.507 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.222 +0.333,0.591,0.0658,0.15,0.539,0.783,0,0,0,0.0886 +0.333,0.591,0.073,0.149,0.637,0.667,0.117,0.0333,0,0.0886 +0.333,0.591,0.0767,0.149,0.352,0,0.281,0.717,0,0.0886 +0.333,0.602,0.0846,0.149,0,0,0.49,0,0,0.0886 +0.667,0.673,0.19,0.252,0,0,0.459,0,0,0.0443 +0.667,0.704,0.232,0.264,0,0,0.0318,0,0,0.0886 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.133 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0443 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.602,0.26,0.299,0,0,0,0,0,0 +0.667,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.251 +1,0.611,0.0634,0.284,0,0,0,0,0.2,0.283 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.189 +0.667,0.621,0.0895,0.278,0,0,0,0,0.0333,0.269 +0.667,0.621,0.0997,0.27,0,0,0,0,0.433,0.159 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.233 +0.667,0.621,0.116,0.251,0,0,0,0,0.467,0.591 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.572 +1,0.651,0.198,0.348,0,0,0,0,0,0.392 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0.188 +0.333,0.617,0.103,0.151,0,0,0,0,0.467,0.177 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.0608 +0.333,0.638,0.163,0.173,0,0,0.228,0.533,0,0.133 +0.667,0.704,0.432,0.365,0,0,0.16,0.483,0,0.0886 +1,0.744,0.791,0.671,0,0,0,0,0,0.0297 +1,0.682,0.749,0.799,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.251 +1,0.586,0.0433,0.167,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.321 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0.281 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.714 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.0443 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.266 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.177 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.133 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.207 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.255 +0.667,0.704,0.315,0.264,0,0,0,0,0,0 +0.333,0.638,0.194,0.173,0,0,0,0,0,0 +0.333,0.633,0.252,0.207,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.0886 +1,0.591,0.0636,0.168,0,0,0,0,0,0.133 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0.0589 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.295 +0.333,0.591,0.101,0.154,0,0,0,0,0,0 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.133 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.177 +1,0.651,0.388,0.348,0,0,0,0,0,0.361 +1,0.682,0.427,0.349,0,0,0,0,0.0333,0.526 +1,0.728,0.449,0.353,0,0,0,0,0.683,0.142 +1,0.774,0.464,0.371,0,0,0,0,0,0.0902 +0.667,0.714,0.371,0.296,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0.259 +1,0.682,0.78,0.799,0,0,0,0,0.0333,0.134 +1,0.62,0.492,0.582,0,0,0,0,0.433,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0.0886 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0443 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0462 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0.433,0.0794 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.0443 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.177 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.266 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0443 +0.333,0.591,0.073,0.149,0,0,0,0,0.233,0.31 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.355 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.0886 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0443 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0443 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.222 +1,0.682,0.749,0.799,0,0,0,0,0,0.0317 +1,0.6,0.307,0.405,0,0,0,0,0,0.437 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0293 +0.667,0.56,0.0186,0.0503,0,0,0,0,0,0.253 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0.0886 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0.0945 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.305 +0.333,0.591,0.0527,0.164,0,0,0,0,0.467,0.214 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0443 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0443 +0.667,0.621,0.137,0.249,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.31 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.406 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.104 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0986 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.173 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0304 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0609 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.327 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.133 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.105 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0323 +0.667,0.621,0.0764,0.286,0,0,0,0,0.0333,0.433 +0.667,0.621,0.0895,0.278,0,0,0,0,0.433,0.0443 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0886 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0886 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.133 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.222 +0.667,0.714,0.31,0.296,0.576,0.533,0,0,0,0.161 +0.667,0.704,0.432,0.365,0.719,0.917,0,0,0,0.13 +0.667,0.683,0.532,0.464,0.444,0,0,0,0,0.34 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.133 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.667,0.586,0.0396,0.167,0,0,0.0996,0.0333,0,0.222 +0.667,0.591,0.0462,0.168,0,0,0.474,0.467,0,0.25 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.0284 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.133 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0886 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.119 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.329 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.195 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +1,0.774,0.34,0.371,0,0,0,0,0,0.167 +0.667,0.714,0.31,0.296,0,0,0,0,0.233,0.133 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.333,0.622,0.274,0.257,0,0,0,0,0,0 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.0443 +0.667,0.581,0.162,0.227,0,0,0.259,0.25,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0.717,0.0315 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.481 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.133 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0886 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0443 +0.333,0.591,0.073,0.149,0,0,0.0636,0.283,0,0.0886 +0.667,0.621,0.137,0.249,0,0,0.404,0.217,0.283,0.0443 +0.667,0.642,0.153,0.249,0,0,0.584,0,0.667,0.177 +0.667,0.673,0.19,0.252,0,0,0.65,0,0,0.266 +1,0.774,0.34,0.371,0,0,0.34,0,0,0.31 +1,0.79,0.457,0.42,0,0,0.611,0,0,0.0886 +0.333,0.633,0.224,0.207,0,0,0,0,0,0 +0.333,0.622,0.274,0.257,0,0,0,0,0,0.0443 +0.333,0.602,0.26,0.299,0,0,0,0,0,0.144 +0.667,0.6,0.307,0.405,0,0,0,0,0,0.288 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.0333,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.433,0.222 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.487 +0.667,0.673,0.305,0.252,0.601,0.783,0,0,0,0.2 +0.667,0.704,0.315,0.264,0.333,0.667,0,0,0,0.354 +0.333,0.638,0.194,0.173,0,0,0,0,0,0.0443 +0.333,0.633,0.252,0.207,0,0,0,0,0,0.0886 +0.667,0.683,0.57,0.464,0,0,0,0,0,0.0443 +0.667,0.602,0.272,0.299,0,0,0,0,0,0.0443 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0744 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.311 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0.266 +0.667,0.621,0.143,0.278,0,0,0,0,0,0.133 +0.667,0.621,0.169,0.27,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.0886 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.0443 +0.333,0.591,0.125,0.149,0,0,0,0,0,0 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.202 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.389 +0.333,0.617,0.162,0.151,0,0,0,0,0,0.502 +0.333,0.633,0.167,0.157,0,0,0,0,0,0.202 +0.333,0.638,0.194,0.173,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0.0443 +1,0.744,0.845,0.671,0,0,0,0,0,0.266 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.123 +1,0.571,0.0316,0.139,0,0,0,0,0,0.736 +1,0.586,0.0396,0.167,0,0,0,0,0,0.17 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.473 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.27 +0.667,0.591,0.0578,0.16,0,0,0,0,0,0.331 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.425 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.203 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.177 +0.667,0.673,0.19,0.252,0,0,0,0,0.233,0.0443 +0.667,0.704,0.232,0.264,0.492,0.533,0,0,0,0.0886 +0.667,0.714,0.31,0.296,0,1,0,0,0,0.177 +0.333,0.633,0.224,0.207,0,0.167,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0705 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.0987 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0.223 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.192 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.329 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.21 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.21 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.409 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.599 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.299 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.159 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.0886 +0.333,0.638,0.163,0.173,0,0,0,0,0,0.0443 +0.333,0.633,0.224,0.207,0,0,0,0,0,0.341 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.0397 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.0691 +0.667,0.6,0.307,0.405,0,0,0,0,0,0.108 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0 +0.667,0.56,0.0374,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0292 +1,0.571,0.0316,0.139,0,0,0,0,0,0.218 +0.667,0.586,0.0396,0.167,0,0,0,0,0.0333,0.441 +0.667,0.621,0.0764,0.286,0,0,0,0,0.433,0.409 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.229 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.576 +0.333,0.591,0.0629,0.154,0,0,0,0,0.0333,0.286 +0.667,0.621,0.116,0.251,0,0,0,0,0.917,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.177 +0.333,0.591,0.0767,0.149,0,0,0,0,0.0333,0.0443 +0.333,0.602,0.0846,0.149,0,0,0,0,0.433,0.177 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.0443 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0443 +0.667,0.704,0.432,0.365,0,0,0,0,0.467,0.177 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.602,0.26,0.299,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.029 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.131 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.196 +1,0.58,0.0474,0.228,0,0,0,0,0,0.18 +0.333,0.586,0.0396,0.167,0.16,0.0333,0,0,0,0.0886 +0.333,0.591,0.0462,0.168,0.682,1,0,0,0,0.31 +0.333,0.591,0.0527,0.164,0,0.417,0,0,0,0.375 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.233 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.241 +0.333,0.591,0.0658,0.15,0,0,0,0,0.233,0.0443 +0.333,0.591,0.073,0.149,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.602,0.0846,0.149,0,0,0,0,0.233,0.355 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.246 +1,0.774,0.34,0.371,0,0,0,0,0,0.176 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0443 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.0261 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.0798 +0.667,0.581,0.162,0.227,0,0,0,0,0,0.0783 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.199,0.533,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0.467,0,0.0323 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.162 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.0979,0.0333,0,0,0,0.0886 +0.333,0.555,0.0593,0.153,0.838,1,0,0,0,0.222 +0.333,0.555,0.0646,0.147,0,0.367,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0443 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.177 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.443 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.222 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0886 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.0443 +0.667,0.626,0.32,0.273,0.109,0.0333,0,0,0,0.133 +0.667,0.617,0.446,0.328,0.908,1,0,0,0,0 +0.667,0.6,0.55,0.413,0,0.367,0,0,0,0 +0.667,0.566,0.521,0.501,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.567,0.783,0,0,0,0 +0.667,0.533,0.0781,0.116,0,0.617,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0.293 +1,0.548,0.113,0.274,0,0,0,0,0,0.126 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.331 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0.384 +0.667,0.555,0.104,0.147,0,0,0,0,0,0.345 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.196 +0.667,0.548,0.24,0.235,0,0,0,0,0,0.118 +1,0.542,0.401,0.327,0,0,0,0,0,0.2 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.177 +0.333,0.576,0.167,0.144,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.467,0.133 +0.333,0.594,0.2,0.161,0,0,0,0,0.0333,0.266 +0.333,0.589,0.26,0.189,0,0,0,0,0.433,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0.0886 +1,0.568,0.806,0.726,0,0,0,0,0,0.106 +1,0.531,0.345,0.388,0,0,0,0,0,0.0443 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0284 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +1,0.538,0.0301,0.136,0,0,0,0,0,0.0443 +1,0.551,0.0444,0.163,0,0,0,0,0,0.368 +1,0.548,0.113,0.274,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.36 +0.333,0.555,0.0961,0.153,0,0,0,0,0,0.0443 +0.333,0.555,0.104,0.147,0,0,0,0,0,0.0443 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0.667,0.548,0.24,0.235,0,0,0,0,0.283,0.177 +0.667,0.548,0.273,0.235,0,0,0,0,0.183,0.0886 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.0886 +0.667,0.591,0.315,0.238,0,0,0,0,0,0 +1,0.617,0.326,0.247,0,0,0,0,0,0.367 +1,0.626,0.383,0.273,0,0,0,0,0,0.201 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.0886 +0.667,0.581,0.303,0.231,0,0,0,0,0,0.0886 +0.667,0.564,0.281,0.275,0,0,0,0,0,0.0886 +0.667,0.546,0.182,0.219,0,0,0,0,0,0.0737 +1,0.505,0.161,0.183,0,0,0,0,0,0.131 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.222 +1,0.529,0.0173,0.0495,0,0,0,0,0,0.108 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.104 +1,0.529,0.0188,0.05,0,0,0,0,0,0.448 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0286 +0.667,0.551,0.0406,0.163,0,0,0,0,0.283,0.239 +0.667,0.548,0.0788,0.274,0,0,0,0,0.65,0.265 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.7,0.0443 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.133 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.355 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.31 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0886 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.355 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.0886 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.133 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.162 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.29 +0.667,0.564,0.269,0.275,0.508,0.783,0,0,0,0 +1,0.546,0.167,0.219,0.608,0.617,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.159 +1,0.514,0.0488,0.222,0,0,0,0,0,0.292 +1,0.54,0.0653,0.277,0,0,0,0,0,0.0443 +0.667,0.548,0.0788,0.274,0.501,0.533,0,0,0,0.121 +0.667,0.548,0.0923,0.263,0.412,0.867,0,0,0,0.314 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.177 +0.333,0.555,0.0646,0.147,0,0,0,0,0.233,0.0886 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.177 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0886 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.266 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.487 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0886 +0.667,0.617,0.239,0.247,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0.233,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.235 +1,0.531,0.317,0.388,0,0,0,0,0,0.211 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.529,0.0241,0.0768,0,0,0,0,0.2,0.133 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0443 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.667,0.548,0.103,0.256,0,0,0,0,0.533,0.222 +0.333,0.555,0.0646,0.147,0,0,0.513,0.783,0.167,0.0443 +0.333,0.555,0.0676,0.143,0,0,0.43,0.483,0,0.177 +0.667,0.548,0.134,0.235,0,0,0.393,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0.411,0,0,0.133 +0.667,0.566,0.158,0.235,0,0,0.711,0,0,0.222 +1,0.606,0.286,0.332,0,0,0.443,0,0,0.133 +1,0.645,0.351,0.345,0,0,0.239,0,0,0 +1,0.658,0.473,0.384,0,0,0.646,0,0,0.0886 +0.667,0.617,0.446,0.328,0,0,0.806,0,0,0.0443 +0.667,0.6,0.55,0.413,0,0,0,0,0.783,0 +0.667,0.566,0.521,0.501,0,0,0,0,0.15,0.032 +0.667,0.531,0.317,0.388,0,0,0,0,0,0.16 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0723 +1,0.538,0.0323,0.136,0,0,0,0,0,0.129 +1,0.54,0.0653,0.277,0,0,0,0,0,0.244 +1,0.548,0.0788,0.274,0,0,0,0,0,0.201 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.355 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0443 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.163 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.149 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.355 +0.333,0.576,0.106,0.144,0,0,0,0,0.0333,0.133 +0.333,0.589,0.128,0.148,0,0,0,0,0.2,0.19 +0.667,0.626,0.32,0.273,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.227 +0.333,0.581,0.283,0.231,0,0,0,0,0,0.102 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.247 +0.667,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.467,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.133 +1,0.54,0.0653,0.277,0,0,0,0,0,0.0443 +1,0.548,0.0788,0.274,0,0,0,0,0,0.355 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.0443 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.177 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.355 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.0886 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0.133 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0 +0.667,0.576,0.106,0.144,0,0,0,0,0,0.132 +0.667,0.589,0.128,0.148,0,0,0,0,0,0.449 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.243 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.31 +0.667,0.6,0.55,0.413,0.465,0.783,0,0,0,0 +0.667,0.566,0.521,0.501,0,0.617,0,0,0.467,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.467,0 +1,0.548,0.113,0.274,0,0,0,0,0,0.188 +1,0.548,0.147,0.263,0,0,0,0,0,0.234 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.266 +0.333,0.555,0.129,0.142,0,0,0,0,0,0 +0.667,0.555,0.146,0.142,0,0,0,0,0,0.0443 +1,0.566,0.3,0.235,0,0,0,0,0,0.0886 +0.333,0.576,0.167,0.144,0,0,0,0,0.467,0.222 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.0886 +0.333,0.594,0.2,0.161,0.192,0.0333,0,0,0,0.121 +0.667,0.617,0.501,0.328,0.706,1,0,0,0,0.0161 +0.333,0.581,0.303,0.231,0.565,0.367,0,0,0,0 +0.667,0.566,0.543,0.501,0.46,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0.0961 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.143 +0.333,0.555,0.0654,0.162,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.47,0.783,0,0.222 +0.333,0.555,0.111,0.143,0,0,0.315,0.483,0.283,0.222 +0.333,0.555,0.129,0.142,0.275,0.283,0.618,0,0.417,0.427 +0.667,0.548,0.273,0.235,0.335,1,0.418,0,0,0.329 +0.667,0.566,0.3,0.235,0,0.117,0,0,0,0.21 +0.667,0.576,0.167,0.144,0,0,0.0719,0.0333,0,0.0886 +0.667,0.617,0.326,0.247,0,0,0.589,0.717,0,0.243 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.0443 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.199 +0.667,0.6,0.588,0.413,0,0,0,0,0,0.129 +1,0.568,0.806,0.726,0,0,0,0,0,0.193 +1,0.516,0.509,0.557,0,0,0,0,0,0.402 +1,0.533,0.0894,0.116,0,0,0,0,0,0.248 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0296 +1,0.514,0.0488,0.222,0,0,0,0,0,0.439 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0.375 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.615 +0.333,0.555,0.0541,0.156,0.111,0.0333,0,0,0,0.0886 +0.333,0.555,0.0593,0.153,0.77,1,0,0,0,0.133 +0.333,0.555,0.0646,0.147,0.751,0.367,0,0,0.233,0.133 +0.333,0.555,0.0676,0.143,0.367,0,0,0,0,0.0886 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0443 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.133 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.443 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.0886 +0.333,0.594,0.168,0.161,0,0,0.0443,0.0333,0,0 +0.333,0.589,0.231,0.189,0,0,0.57,0.467,0,0.0443 +0.333,0.581,0.283,0.231,0,0,0.264,0,0,0.071 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.308 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.109 +1,0.533,0.0781,0.116,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.254 +1,0.514,0.0488,0.222,0,0,0.083,0.0333,0,0.33 +0.667,0.54,0.0653,0.277,0,0,0.358,0.467,0,0.407 +0.667,0.548,0.0788,0.274,0.475,0.533,0,0,0,0.0443 +0.333,0.555,0.0541,0.156,0.42,0.867,0,0,0,0.133 +0.333,0.555,0.0593,0.153,0.358,0.533,0,0,0,0 +0.667,0.548,0.113,0.245,0.237,0.867,0,0,0,0.0443 +0.667,0.548,0.119,0.237,0,0,0,0,0.233,0.0767 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.402 +1,0.542,0.205,0.327,0,0,0,0,0,0.3 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.177 +0.333,0.576,0.106,0.144,0,0,0,0,0,0 +0.333,0.589,0.128,0.148,0,0,0.131,0.0333,0,0.0443 +0.667,0.626,0.32,0.273,0,0,0.564,0.717,0,0.266 +0.667,0.617,0.446,0.328,0,0,0.415,0,0,0.0302 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.178 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.0855 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.119 +1,0.533,0.0781,0.116,0,0,0,0,0,0.143 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0296 +1,0.529,0.0188,0.05,0,0,0,0,0,0.366 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.0612 +1,0.514,0.0488,0.222,0,0,0,0,0,0.411 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.0886 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0.333,0.555,0.0646,0.147,0,0,0,0,0.233,0.177 +0.333,0.555,0.0676,0.143,0,0,0,0,0.2,0.222 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0443 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.133 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0699 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.201 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.199 +0.667,0.594,0.168,0.161,0,0,0,0,0,0.0443 +0.667,0.617,0.446,0.328,0.527,0.783,0,0,0,0.0443 +0.667,0.6,0.55,0.413,0.145,0.617,0,0,0,0.132 +0.667,0.564,0.269,0.275,0,0,0,0,0,0.098 +0.667,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0.2,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.0886 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.487 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.31 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0886 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0886 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0443 +0.333,0.589,0.128,0.148,0,0,0,0,0.533,0.177 +0.667,0.626,0.32,0.273,0,0,0,0,0.167,0.0311 +1,0.645,0.662,0.467,0,0,0,0,0,0.184 +1,0.619,0.817,0.595,0,0,0,0,0,0.124 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.0308 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.139 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.538,0.0323,0.136,0,0,0,0,0,0.177 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0292 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.224 +0.667,0.555,0.0541,0.156,0,0,0,0,0,0.761 +0.667,0.555,0.0593,0.153,0,0,0,0,0,0.0886 +0.667,0.548,0.113,0.245,0,0,0,0,0.0333,0 +0.667,0.548,0.119,0.237,0,0,0,0,0.433,0.0313 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.541 +0.667,0.548,0.142,0.235,0,0,0.16,0.25,0,0.334 +0.667,0.566,0.158,0.235,0,0,0.16,0,0,0.162 +0.333,0.576,0.106,0.144,0,0,0.342,0,0,0.251 +0.333,0.589,0.128,0.148,0,0,0,0,0.233,0.435 +0.667,0.594,0.168,0.161,0,0,0,0,0.0333,0.177 +0.667,0.617,0.446,0.328,0,0,0,0,0.433,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.266 +0.333,0.564,0.269,0.275,0,0,0,0,0,0 +0.333,0.546,0.167,0.219,0,0,0,0,0,0.124 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.548,0.113,0.274,0,0,0,0,0.283,0.176 +1,0.542,0.212,0.37,0,0,0,0,0.417,0.417 +0.667,0.548,0.174,0.256,0,0,0,0,0,0.677 +0.333,0.555,0.104,0.147,0,0,0,0,0,0.0612 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.222 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.0443 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.0886 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.31 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.355 +0.667,0.594,0.2,0.161,0,0,0,0,0,0.0443 +0.667,0.589,0.26,0.189,0,0,0,0,0,0.0443 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.334 +1,0.529,0.0203,0.05,0,0,0,0,0,0.347 +1,0.497,0.0271,0.104,0,0,0,0,0,0.628 +1,0.514,0.0421,0.222,0,0,0,0,0,0.237 +0.667,0.551,0.0444,0.163,0,0,0,0,0,0.0443 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0961,0.153,0,0,0,0,0,0.16 +0.333,0.555,0.104,0.147,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.291 +0.667,0.548,0.273,0.235,0,0,0.116,0.0333,0,0.0443 +0.667,0.566,0.3,0.235,0,0,0.494,0.217,0,0.177 +0.667,0.591,0.315,0.238,0,0,0.0802,0,0,0.532 +0.333,0.589,0.172,0.148,0,0,0,0,0,0.177 +0.667,0.626,0.383,0.273,0,0,0,0,0.283,0.0886 +0,0.562,0.0181,0.0495,0,0,0,0,0.183,0 +0.333,0.581,0.303,0.231,0,0,0,0,0,0 +0.333,0.564,0.281,0.275,0,0,0,0,0.783,0 +0.667,0.531,0.345,0.388,0,0,0,0,1,0.142 +0.667,0.533,0.0894,0.116,0,0,0,0,0.1,0.0706 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.158 +0.667,0.551,0.0406,0.163,0,0,0,0,0.2,0.0443 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.293 +0.667,0.548,0.0923,0.263,0,0,0.0996,0.0333,0,0.35 +0.667,0.548,0.103,0.256,0,0,0.284,0.217,0,0.233 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0443 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.513 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0443 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0886 +0.333,0.576,0.106,0.144,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.0886 +0.667,0.594,0.168,0.161,0,0,0,0,0,0.0886 +0.667,0.589,0.231,0.189,0,0,0,0,0,0.0886 +0.667,0.581,0.283,0.231,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.0443 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.0886 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0764 +0.667,0.538,0.0323,0.136,0,0,0,0,0.283,0.412 +0.667,0.551,0.0406,0.163,0,0,0,0,0.183,0.221 +0.667,0.548,0.0788,0.274,0,0,0,0,0.233,0.569 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.334 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.268 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0886 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.177 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.355 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.133 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0443 +1,0.645,0.351,0.345,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.767 +0.667,0.566,0.521,0.501,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.15 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.326 +0.667,0.548,0.103,0.256,0,0,0,0,0.0333,0.14 +0.667,0.548,0.113,0.245,0,0,0,0,0.2,0.0443 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.31 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0443 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.266 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.266 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.075 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.567 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.248 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.0443 +1,0.516,0.468,0.557,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0.173 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0443 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0886 +1,0.551,0.0406,0.163,0,0,0,0,0.0333,0.186 +0.667,0.555,0.0473,0.162,0,0,0,0,0.667,0.132 +0.667,0.555,0.0541,0.156,0.185,0.0333,0,0,0,0 +0.667,0.548,0.103,0.256,0.793,1,0,0,0,0.358 +0.333,0.555,0.0646,0.147,0,0.133,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.209 +0.667,0.548,0.142,0.235,0,0,0.172,0.283,0,0.0918 +1,0.568,0.23,0.328,0,0,0.083,0.467,0,0.355 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.443 +1,0.645,0.351,0.345,0,0,0,0,0,0.119 +1,0.658,0.473,0.384,0,0,0,0,0,0.159 +1,0.645,0.662,0.467,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.128 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.287 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.0443 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.266 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.222 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0443 +0.333,0.555,0.0676,0.143,0.292,0.283,0,0,0,0.0886 +0.667,0.548,0.134,0.235,0.465,1,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0.117,0.322,0.533,0,0.0886 +0.333,0.564,0.0871,0.142,0,0,0.682,1,0,0.133 +0.333,0.576,0.106,0.144,0,0,0.371,0.233,0,0.13 +0.667,0.617,0.239,0.247,0,0,0.519,0,0.0333,0.406 +1,0.658,0.473,0.384,0,0,0,0,0.667,0.363 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0.586,0.533,0,0,0,0 +0.667,0.566,0.521,0.501,0.507,0.867,0,0,0,0 +0.667,0.531,0.317,0.388,0.121,0,0,0,0,0.212 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.451 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.346 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.768 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.362 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.334 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0.533,0.0443 +1,0.531,0.345,0.388,0,0,0,0,0.167,0.0443 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +1,0.529,0.0203,0.05,0,0,0,0,0,0.424 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.03 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.135 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0317 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.215 +0.667,0.548,0.191,0.245,0,0,0,0,0,0.177 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.0443 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.177 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.0443 +0.333,0.576,0.167,0.144,0,0,0,0,0,0.443 +0.333,0.589,0.172,0.148,0,0,0,0,0.7,0.266 +0.667,0.626,0.383,0.273,0.224,0.0333,0,0,0,0.31 +0.667,0.617,0.501,0.328,0.52,1,0,0,0,0.0886 +0.333,0.581,0.303,0.231,0,0.367,0,0,0,0 +0.333,0.564,0.281,0.275,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0282 +1,0.529,0.0188,0.05,0,0,0,0,0.0333,0.0704 +1,0.529,0.0241,0.0768,0,0,0,0,0.233,0.437 +1,0.538,0.0323,0.136,0,0,0,0,0.2,0.355 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0443 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0443 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.555,0.0789,0.142,0,0,0,0,0.0333,0.0886 +0.333,0.564,0.0871,0.142,0,0,0,0,0.2,0.0443 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.177 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.414 +0.667,0.594,0.168,0.161,0,0,0,0,0,0.133 +0.667,0.589,0.231,0.189,0,0,0,0,0,0.0443 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0.054 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0775 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.137 +1,0.538,0.0323,0.136,0,0,0,0,0,0.302 +1,0.54,0.0653,0.277,0,0,0,0,0.467,0.452 +1,0.542,0.11,0.387,0,0,0,0,0,0.177 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.176 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.106 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.133 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0443 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.222 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0443 +0.333,0.564,0.0871,0.142,0,0,0,0,0.0333,0.355 +0.667,0.591,0.196,0.238,0,0,0,0,0.433,0.0443 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.133 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.0886 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +0.667,0.566,0.521,0.501,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0 +0.667,0.533,0.0781,0.116,0,0,0,0,0.467,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.1 +1,0.514,0.0488,0.222,0,0,0,0,0,0.166 +1,0.529,0.09,0.39,0,0,0,0,0,0.224 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.197 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.244 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.133 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.266 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.355 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.177 +0.333,0.564,0.0871,0.142,0,0,0,0,0.233,0.0886 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0886 +1,0.645,0.351,0.345,0,0,0,0,0.0333,0.133 +0.667,0.626,0.32,0.273,0,0,0,0,0.2,0.0443 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.266 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.182 +1,0.514,0.0488,0.222,0,0,0,0,0,0.396 +1,0.529,0.09,0.39,0,0,0,0,0,0.608 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.409 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.586 +0.667,0.548,0.103,0.256,0,0,0,0,0.0333,0.344 +0.667,0.548,0.113,0.245,0,0,0,0,0.9,0.266 +0.333,0.555,0.0676,0.143,0,0,0,0,0.533,0.266 +0,0.562,0.0159,0.0495,0,0,0,0,0.167,0.204 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0.667,0.589,0.128,0.148,0,0,0,0,0.9,0.0443 +0.667,0.594,0.168,0.161,0,0,0,0,0,0 +0.667,0.589,0.231,0.189,0,0,0,0,0,0.682 +0.667,0.6,0.55,0.413,0,0,0,0,0.7,0 +0.667,0.566,0.521,0.501,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.0991 +1,0.533,0.0781,0.116,0,0,0,0,0,0.156 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0789 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.029 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.385 +1,0.538,0.0323,0.136,0,0,0,0,0,0.373 +1,0.54,0.0653,0.277,0,0,0,0,0,0.142 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.657 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.0886 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0886 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0886 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.266 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.322 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.142 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.309 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0443 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.0886 +1,0.658,0.473,0.384,0,0,0,0,0,0.0296 +1,0.645,0.662,0.467,0,0,0,0,0,0.312 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +1,0.538,0.0301,0.136,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.58 +1,0.548,0.113,0.274,0,0,0,0,0.233,0.317 +0.667,0.548,0.147,0.263,0.196,0.283,0,0,0.783,0 +0.667,0.548,0.174,0.256,0.424,1,0,0,0.633,0.222 +0.333,0.555,0.104,0.147,0,0.117,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.177 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.0443 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.0886 +0.667,0.566,0.3,0.235,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0,0,0,0,0,0.177 +0.333,0.589,0.172,0.148,0,0,0,0,0,0.0443 +0.667,0.626,0.383,0.273,0,0,0,0,0.0333,0 +0.667,0.617,0.501,0.328,0,0,0,0,0.433,0.222 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0.242 +1,0.516,0.509,0.557,0,0,0,0,0,0.0883 +1,0.505,0.161,0.183,0,0,0,0,0,0.0443 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +1,0.537,0.0708,0.274,0,0,0,0,0,0.177 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.248 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0.614,0.25,0,0.31 +0.333,0.554,0.105,0.145,0,0,0.51,0,0.617,0.31 +0.667,0.546,0.205,0.232,0,0,0.474,0,0.317,0 +0.333,0.554,0.129,0.14,0,0,0.606,0,0,0.133 +0.667,0.546,0.274,0.23,0,0,0.174,0,0,0.355 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.266 +0.333,0.575,0.167,0.141,0,0,0,0,0,0 +0.333,0.588,0.172,0.146,0,0,0,0,0,0.0443 +0.333,0.592,0.201,0.159,0,0,0,0,0,0 +0.333,0.588,0.26,0.187,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0.103 +1,0.563,0.808,0.72,0,0,0,0,0,0.276 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0556 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.533,0.074 +0.667,0.546,0.0926,0.258,0,0,0,0,0.633,0.474 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.123 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.292,0.533,0,0.0886 +0.333,0.554,0.0753,0.14,0,0,0.322,0.5,0,0.0886 +0.333,0.554,0.0791,0.14,0,0,0.729,0,0,0.177 +0.333,0.562,0.0873,0.14,0,0,0.411,0,0,0.0443 +0.333,0.575,0.106,0.141,0,0,0.61,0,0,0.296 +0.667,0.614,0.24,0.242,0.377,0.283,0.286,0,0,0.284 +0.667,0.623,0.321,0.268,0.78,1,0.524,0,0,0 +0.667,0.614,0.448,0.324,0.505,0.0833,0.227,0,0,0.0443 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.562,0.269,0.273,0,0,0,0,0,0.268 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.532,0.0783,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0802,0.0333,0.0333,0.0443 +0.667,0.512,0.0489,0.22,0,0,0.469,1,0.433,0.315 +0.667,0.537,0.0655,0.274,0.113,0.0333,0.396,0,0,0.133 +0.667,0.546,0.079,0.27,0.791,1,0,0,0,0.0443 +0.333,0.554,0.0542,0.154,0.51,0.333,0,0,0,0 +0.333,0.554,0.0595,0.15,0.631,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0.626,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0.065,0,0,0,0,0.133 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0886 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.266 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0443 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.31 +0.333,0.588,0.128,0.146,0.52,0.533,0,0,0,0.0886 +0.667,0.623,0.321,0.268,0.589,0.833,0,0,0,0 +0.667,0.614,0.448,0.324,0.62,0,0,0,0,0 +0.667,0.597,0.552,0.41,0.669,0,0,0,0,0.0402 +1,0.563,0.777,0.72,0.718,0,0,0,0,0 +1,0.512,0.47,0.554,0.557,0,0,0,0,0.0443 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0763 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.356 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.432 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.0895 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.554,0.0542,0.154,0,0,0.415,0.517,0,0.133 +0.333,0.554,0.0595,0.15,0,0,0.562,0,0,0.177 +0.333,0.554,0.0648,0.145,0,0,0.537,0,0,0.0886 +0.667,0.546,0.12,0.232,0,0,0.261,0,0,0.0886 +0.333,0.554,0.0753,0.14,0,0,0.545,0,0,0.165 +0.667,0.546,0.142,0.23,0,0,0.438,0,0,0.404 +0.667,0.563,0.159,0.23,0,0,0.571,0,0,0.23 +0.667,0.588,0.196,0.233,0,0,0.284,0,0,0.177 +0.333,0.588,0.128,0.146,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.266 +0.667,0.597,0.552,0.41,0,0,0,0,0.783,0 +1,0.563,0.523,0.496,0,0,0,0,0.15,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0729 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.378 +1,0.537,0.0324,0.135,0,0,0,0,0,0.211 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0748 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.54 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.19 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.217 +0.333,0.554,0.0648,0.145,0.164,0.0333,0,0,0,0.204 +0.333,0.554,0.0678,0.141,0.611,1,0,0,0,0.31 +0.667,0.554,0.0753,0.14,0,0.333,0,0,0,0.165 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.338 +0.333,0.562,0.0873,0.14,0,0,0,0,0.467,0.0886 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0886 +0.333,0.588,0.128,0.146,0,0,0,0,0.233,0.0886 +0.333,0.592,0.169,0.159,0,0,0,0,0,0.0443 +0.333,0.588,0.232,0.187,0,0,0,0,0.7,0.0443 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0.0277 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0415 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.146 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.133 +1,0.537,0.0324,0.135,0,0,0,0,0,0.0312 +1,0.549,0.0407,0.162,0,0,0,0,0,0.539 +1,0.546,0.079,0.27,0,0,0,0,0,0.0443 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.258 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.133 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.133 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.133 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0886 +0.333,0.588,0.128,0.146,0,0,0,0,0.233,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.152 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.0297 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.348 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.537,0.0302,0.135,0,0,0.239,0.25,0,0.0848 +1,0.537,0.0708,0.274,0,0,0.25,0,0,0.379 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.0314 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0724 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.284 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.108 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.11 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.233,0.487 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.31 +0.667,0.575,0.167,0.141,0,0,0.0719,0.367,0,0.0443 +0.667,0.588,0.172,0.146,0,0,0,0.667,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.588,0.26,0.187,0,0,0.174,0.117,0,0.177 +0.667,0.597,0.59,0.41,0,0,0.127,0.667,0,0 +0.667,0.563,0.545,0.496,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0.112 +1,0.503,0.161,0.183,0,0,0,0,0,0.108 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.135 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.117,0.133 +1,0.537,0.0302,0.135,0,0,0,0,1,0.192 +0.667,0.549,0.0444,0.162,0,0,0,0,0.283,0.273 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.308 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0913 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0.222 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.222 +0.333,0.554,0.129,0.14,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.312 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.0886 +0.333,0.575,0.167,0.141,0,0,0,0,0,0.0443 +0.333,0.588,0.172,0.146,0,0,0,0,0.617,0.0443 +0.667,0.623,0.384,0.268,0,0,0,0,0.317,0.246 +1,0.64,0.745,0.461,0,0,0,0,0,0.122 +1,0.615,0.876,0.59,0,0,0,0,0,0 +0.667,0.563,0.545,0.496,0,0,0,0,0,0.0721 +0.667,0.529,0.346,0.386,0,0,0,0,0,0.145 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.174 +1,0.528,0.0241,0.0763,0,0,0,0,0.0333,0.0443 +1,0.537,0.0324,0.135,0,0,0,0,0.667,0.0886 +0.667,0.549,0.0407,0.162,0,0,0.0484,0.283,0,0.177 +0.667,0.554,0.0475,0.16,0,0,0,0.5,0.233,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.31 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.266 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.177 +0.667,0.546,0.12,0.232,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0443 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.266 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0886 +0.667,0.588,0.196,0.233,0,0,0,0,0.467,0.0443 +0.667,0.614,0.24,0.242,0,0,0,0,0,0 +0.333,0.592,0.169,0.159,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0.338 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.528,0.0241,0.0763,0,0,0,0,0.533,0.207 +1,0.512,0.0489,0.22,0,0,0,0,0.167,0.362 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.305 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.314 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.467,0.0443 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.133 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0886 +0.667,0.575,0.106,0.141,0,0,0,0,0,0.0886 +0.667,0.614,0.24,0.242,0.186,0.0333,0,0,0,0.215 +0.667,0.623,0.321,0.268,0.782,1,0,0,0,0.0988 +0.667,0.614,0.448,0.324,0,0.567,0,0,0,0.0443 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.563,0.777,0.72,0.13,0.0333,0,0,0,0.0861 +1,0.512,0.47,0.554,0.567,1,0,0,0,0 +1,0.532,0.0783,0.116,0.537,0.333,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +1,0.528,0.0189,0.0499,0,0,0,0,0.2,0.177 +1,0.528,0.0241,0.0763,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.298 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.208 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0886 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0443 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.31 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0443 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.177 +0.667,0.588,0.196,0.233,0,0,0,0,0.0333,0.133 +0.333,0.588,0.128,0.146,0,0,0,0,0.433,0 +0.333,0.592,0.169,0.159,0,0,0,0,0,0.133 +0.333,0.588,0.232,0.187,0,0,0,0,0,0 +0.333,0.579,0.284,0.23,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.266 +0.667,0.545,0.167,0.218,0,0,0,0,0,0.0611 +1,0.503,0.141,0.183,0,0,0,0,0,0.217 +1,0.495,0.061,0.099,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.0443 +1,0.528,0.0158,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.217 +1,0.512,0.0489,0.22,0,0,0,0,0,0.343 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0443 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.177 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0443 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.222 +0.333,0.554,0.0791,0.14,0,0,0,0,0.233,0.266 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.133 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0886 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0443 +0.333,0.592,0.169,0.159,0,0,0,0,0,0.0443 +0.333,0.588,0.232,0.187,0,0,0,0,0,0.277 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.102 +0.667,0.563,0.523,0.496,0,0,0,0,0,0.305 +0.667,0.545,0.167,0.218,0,0,0,0,0,0.218 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.467,0.073 +1,0.512,0.0489,0.22,0,0,0,0,0.233,0.175 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0.0333,0.222 +0.333,0.554,0.0678,0.141,0,0,0,0,0.667,0.266 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.31 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.133 +0.333,0.562,0.0873,0.14,0,0,0.0954,0.0333,0,0.11 +0.667,0.588,0.196,0.233,0,0,0,0.217,0,0.498 +0.333,0.588,0.128,0.146,0,0,0,0,0.233,0.0886 +0.667,0.623,0.321,0.268,0.499,0.533,0,0,0,0.0443 +0.333,0.588,0.232,0.187,0.324,0.833,0,0,0,0.222 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.562,0.269,0.273,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0.0443 +1,0.549,0.0444,0.162,0,0,0,0,0,0.261 +1,0.554,0.0655,0.16,0,0,0,0,0,0.238 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.406 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.136 +0.333,0.554,0.105,0.145,0,0,0.0954,0.117,0,0.0886 +0.333,0.554,0.111,0.141,0,0,0.369,0.4,0,0 +0.667,0.546,0.241,0.23,0,0,0.633,0,0,0.0886 +0.333,0.554,0.146,0.14,0,0,0.44,0,0.117,0.133 +0.333,0.562,0.16,0.14,0,0,0,0,0.817,0.133 +0.333,0.575,0.167,0.141,0,0,0,0,0.233,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.222 +0.667,0.623,0.384,0.268,0,0,0,0,0,0.177 +0.667,0.614,0.503,0.324,0,0,0,0,0,0.133 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +0.667,0.563,0.545,0.496,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0.0913,0.117,0,0 +0.667,0.554,0.0655,0.16,0,0,0.228,0.917,0,0.15 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0.214 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.495 +0.667,0.546,0.191,0.24,0,0,0,0,0,0.133 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.266 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.266 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.399 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.0443 +0.333,0.575,0.167,0.141,0,0,0,0,0,0 +0.333,0.588,0.172,0.146,0,0,0,0,0.117,0 +0.667,0.623,0.384,0.268,0,0,0,0,0.583,0.0443 +0.667,0.614,0.503,0.324,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0.11 +0.667,0.563,0.545,0.496,0,0,0,0,0,0.381 +0.667,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0.261 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0784 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.227 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.312 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.403 +1,0.537,0.0324,0.135,0,0,0,0,0.0333,0.583 +1,0.525,0.0903,0.386,0,0,0,0,0.2,0.347 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.256 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.0674 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.541 +0.667,0.554,0.0648,0.145,0,0,0,0,0,0.177 +0.667,0.554,0.0678,0.141,0.35,0.283,0,0,0,0 +0.667,0.554,0.0753,0.14,0.561,1,0,0,0,0.0443 +0.667,0.554,0.0791,0.14,0.876,0.317,0,0,0,0.222 +0.667,0.562,0.0873,0.14,0.645,0,0,0,0,0.0443 +1,0.575,0.106,0.141,0.65,0,0,0,0,0 +0.667,0.588,0.128,0.146,0.13,0,0,0,0,0.12 +1,0.623,0.321,0.268,0,0,0,0,0,0.237 +0.667,0.588,0.232,0.187,0,0,0,0,0,0.121 +0.667,0.579,0.284,0.23,0,0,0,0,0,0.264 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0307 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.411 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.399 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.222 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0443 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.135 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.222 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0443 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.133 +1,0.64,0.352,0.338,0,0,0,0,0,0.132 +1,0.653,0.474,0.377,0,0,0,0,0,0.309 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.371 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.562,0.269,0.273,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.528,0.0241,0.0763,0,0,0,0,0.433,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.143 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.189 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.283 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.151 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.335 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.376 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.222 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.133 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.133 +0.667,0.588,0.196,0.233,0,0,0,0,0.0333,0.355 +0.667,0.614,0.24,0.242,0,0,0,0,0.433,0.133 +0.667,0.623,0.321,0.268,0.508,0.533,0,0,0,0 +0.667,0.614,0.448,0.324,0.678,0.833,0,0,0,0.234 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.0894 +1,0.562,0.269,0.273,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.0721 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.299 +1,0.525,0.0903,0.386,0,0,0.375,0.25,0,0.281 +0.667,0.546,0.079,0.27,0,0,0.347,0,0,0.432 +0.667,0.546,0.0926,0.258,0,0,0.307,0,0.233,0.71 +0.667,0.546,0.103,0.25,0,0,0.654,0,0,0 +0.667,0.546,0.114,0.24,0,0,0.494,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.667,0,0,0.222 +0.667,0.546,0.135,0.23,0,0,0.627,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.25,0,0,0.0443 +0.667,0.563,0.159,0.23,0,0,0.472,0,0,0.142 +0.667,0.588,0.196,0.233,0,0,0.616,0,0,0.0443 +0.333,0.588,0.128,0.146,0,0,0.0553,0,0,0.133 +0.667,0.623,0.321,0.268,0,0,0,0,0.233,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.0443 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.209 +1,0.529,0.318,0.386,0,0,0,0,0,0.235 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0886 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.178 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0.2,0.0443 +0.333,0.554,0.0542,0.154,0,0,0,0,0.0333,0.0443 +0.667,0.546,0.103,0.25,0,0,0,0,0.667,0.222 +0.667,0.546,0.114,0.24,0,0,0,0,0.233,0.177 +0.667,0.546,0.12,0.232,0,0,0,0,0.467,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.133 +0.333,0.554,0.0791,0.14,0,0,0.0954,0.0333,0,0.222 +0.667,0.563,0.159,0.23,0,0,0.642,0.217,0,0.222 +0.667,0.588,0.196,0.233,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0.533,0 +0.667,0.623,0.321,0.268,0,0,0,0,0.4,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.0443 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.0736 +0.333,0.562,0.269,0.273,0,0,0,0,0,0.117 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.269 +1,0.528,0.0204,0.0499,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.117,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0.583,0.133 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.0443 +0.667,0.546,0.175,0.25,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.0443 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.266 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.222 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.419 +0.333,0.575,0.167,0.141,0,0,0,0,0,0.298 +0.333,0.588,0.172,0.146,0,0,0,0,0,0.0443 +0.333,0.592,0.201,0.159,0,0,0,0,0,0 +0.333,0.588,0.26,0.187,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0.106 +1,0.563,0.808,0.72,0,0,0,0,0,0.0954 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.12 +1,0.549,0.0444,0.162,0,0,0,0,0,0.345 +1,0.546,0.113,0.27,0,0,0,0,0,0.405 +0.667,0.546,0.148,0.258,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.0886 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.133 +0.667,0.546,0.241,0.23,0,0,0.0871,0.117,0,0.0443 +1,0.538,0.402,0.32,0,0,0.455,1,0,0.0886 +1,0.563,0.443,0.321,0,0,0.552,0.183,0,0.222 +1,0.602,0.465,0.324,0,0,0.629,0,0,0 +1,0.64,0.481,0.338,0,0,0.744,0,0,0.355 +1,0.653,0.567,0.377,0,0,0.0318,0,0,0.282 +1,0.64,0.745,0.461,0,0,0,0,0,0.119 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.45 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.0154 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.225 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.252 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.491 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.31 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.399 +0.333,0.575,0.106,0.141,0,0,0,0,0.533,0.133 +0.333,0.588,0.128,0.146,0,0,0,0,0.4,0 +0.333,0.592,0.169,0.159,0,0,0,0,0,0.133 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.0886 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.0443 +0.667,0.562,0.269,0.273,0,0,0,0,0,0 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.532,0.0783,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.0765 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.0972 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.177 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.133 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.266 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.355 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.177 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.562,0.0873,0.14,0,0,0,0,0.233,0.222 +0.333,0.575,0.106,0.141,0.573,0.783,0,0,0,0.177 +0.333,0.588,0.128,0.146,0,0.583,0,0,0,0.0321 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.221 +0.667,0.614,0.448,0.324,0,0,0.521,0.25,0,0 +0.667,0.597,0.552,0.41,0,0,0.477,0,0,0.0886 +0.667,0.563,0.523,0.496,0,0,0.853,0,0,0.164 +1,0.529,0.318,0.386,0,0,0,0,0.233,0.601 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0837 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0.132,0.0333,0,0,0.283,0.162 +1,0.537,0.0655,0.274,0.785,1,0,0,0.883,0.297 +1,0.538,0.111,0.381,0,0.1,0,0,0,0.444 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.382 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0886 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.426,0.517,0,0.0443 +0.333,0.562,0.0873,0.14,0,0,0.314,0,0,0.266 +0.333,0.575,0.106,0.141,0,0,0.481,0,0,0.133 +0.667,0.614,0.24,0.242,0,0,0.375,0,0,0.266 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.0443 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.159 +0.667,0.563,0.523,0.496,0,0,0,0,0,0.221 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.105 +1,0.512,0.0489,0.22,0,0,0,0,0,0.283 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.545 +0.667,0.546,0.079,0.27,0.343,0.533,0,0,0,0.309 +0.667,0.546,0.0926,0.258,0.591,0.833,0,0,0,0.157 +0.667,0.546,0.103,0.25,0.514,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0886 +0.333,0.554,0.0678,0.141,0,0,0,0,0.0333,0.0886 +0.333,0.554,0.0753,0.14,0,0,0,0,0.9,0.266 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.222 +0.333,0.562,0.0873,0.14,0,0,0,0,0.0333,0.443 +0.333,0.575,0.106,0.141,0,0,0,0,0.2,0.0443 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.133 +0.333,0.592,0.169,0.159,0.181,0.0333,0,0,0,0.249 +1,0.64,0.664,0.461,0.702,1,0,0,0,0.103 +0.667,0.597,0.552,0.41,0.463,0.333,0,0,0,0 +0.667,0.562,0.269,0.273,0,0,0,0,0,0 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.532,0.0783,0.116,0,0,0,0,0,0 +0.667,0.528,0.0384,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.305 +1,0.537,0.0324,0.135,0,0,0,0,0,0.189 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.266 +0.667,0.554,0.0595,0.15,0,0,0,0,0,0.0886 +0.667,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.553 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.163 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.105 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.0443 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.212 +0.333,0.588,0.232,0.187,0,0,0,0,0,0.623 +0.333,0.579,0.284,0.23,0,0,0,0,0,0.147 +0.667,0.562,0.269,0.273,0,0,0,0,0,0 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.537,0.0302,0.135,0,0,0,0,0,0.0443 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.117,0.182 +0.667,0.546,0.148,0.258,0,0,0,0,0.583,0.467 +0.667,0.546,0.175,0.25,0,0,0.533,0.25,0,0 +0.667,0.546,0.191,0.24,0,0,0.498,0,0,0.722 +0.667,0.546,0.205,0.232,0,0,0.116,0,0,0.147 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.356 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.032 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.333,0.575,0.167,0.141,0,0,0,0,0,0.177 +0.333,0.588,0.172,0.146,0,0,0,0,0,0.0443 +0.667,0.623,0.384,0.268,0,0,0,0,0.117,0.177 +0.333,0.588,0.26,0.187,0,0,0,0,0.117,0.111 +1,0.615,0.876,0.59,0,0,0,0,0,0.44 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.124,0.117,0.233,0.188 +1,0.546,0.113,0.27,0,0,0.613,0.4,0.117,0.224 +1,0.538,0.212,0.362,0,0,0,0,0.817,0.177 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.0443 +0.667,0.546,0.191,0.24,0,0,0,0,0,0.133 +0.333,0.554,0.111,0.141,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.117,0.0886 +0.333,0.554,0.146,0.14,0,0,0,0,0.35,0.266 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.133 +0.333,0.575,0.167,0.141,0,0,0,0,0,0.0443 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.0443 +0.667,0.623,0.384,0.268,0,0,0,0,0.7,0.133 +0.667,0.614,0.503,0.324,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0.106 +0.667,0.563,0.545,0.496,0,0,0,0,0,0.153 +0.667,0.529,0.346,0.386,0,0,0,0,0,0.0443 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.132 +1,0.537,0.0324,0.135,0,0,0,0,0,0.307 +1,0.537,0.0655,0.274,0,0,0,0,0,0.099 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.0437 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.228 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.294 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.458 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.251 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.238 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0886 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.355 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.177 +0.333,0.588,0.128,0.146,0,0,0.0802,0.0333,0.0333,0.133 +0.667,0.623,0.321,0.268,0.198,0.0333,0.116,0.75,0.2,0.103 +0.667,0.614,0.448,0.324,0.493,1,0,0,0,0.0759 +0.667,0.597,0.552,0.41,0,0.333,0.373,0.783,0,0.155 +0.667,0.563,0.523,0.496,0,0,0.432,0.25,0,0 +0.667,0.529,0.318,0.386,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0746 +1,0.528,0.0241,0.0763,0,0,0,0,0.0333,0.388 +1,0.512,0.0489,0.22,0,0,0,0,0.667,0.266 +1,0.537,0.0655,0.274,0,0,0,0,0,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0443 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0443 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.177 +0.333,0.554,0.0678,0.141,0,0,0,0,0.283,0.0443 +0.667,0.546,0.135,0.23,0,0,0,0,0.183,0.0443 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.222 +0.667,0.563,0.159,0.23,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.31 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0.514,0.783,0,0,0,0 +0.667,0.529,0.318,0.386,0,0.583,0,0,0,0.199 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0284 +1,0.495,0.0212,0.0506,0,0,0,0,0,0.161 +0.667,0.528,0.0236,0.0768,0,0,0,0,0.0333,0.0443 +0.667,0.512,0.0474,0.222,0,0,0,0,0.2,0.0443 +0.667,0.537,0.0633,0.277,0.429,0.533,0,0,0.467,0.156 +0.667,0.546,0.0764,0.274,0.36,0.85,0,0,0,0.313 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.132 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0.283,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0.183,0.0443 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0886 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0.249,0.283,0,0,0,0.155 +0.667,0.588,0.19,0.239,0.753,1,0,0,0,0.336 +0.667,0.614,0.232,0.252,0.307,0.1,0.0318,0.0333,0,0.471 +0.667,0.623,0.31,0.289,0,0,0.609,1,0,0.0443 +0.667,0.614,0.432,0.362,0,0,0,0.467,0,0.0886 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.133 +0.667,0.529,0.307,0.397,0,0,0,0,0,0 +0.333,0.532,0.0759,0.116,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +1,0.495,0.0314,0.104,0,0,0,0,0,0.399 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.0443 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.0443 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.133 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.22 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.459 +1,0.538,0.187,0.328,0,0,0,0,0,0.431 +1,0.538,0.198,0.327,0,0,0,0,0,0.316 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.177 +0.667,0.588,0.19,0.239,0.149,0.0333,0,0,0,0.0886 +0.667,0.614,0.232,0.252,0.657,1,0,0,0.467,0.266 +0.667,0.623,0.31,0.289,0.687,0.35,0,0,0,0 +0.667,0.614,0.432,0.362,0.567,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0.0443 +0.667,0.562,0.26,0.296,0,0,0,0,0,0 +0.667,0.545,0.161,0.223,0,0,0,0,0,0 +0.667,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.495,0.059,0.099,0,0,0,0,0,0.0724 +1,0.495,0.0314,0.066,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.194 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.165 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.273 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.506 +0.667,0.588,0.19,0.239,0,0,0,0,0.0333,0.241 +0.667,0.614,0.232,0.252,0.578,0.533,0,0,0.2,0.222 +1,0.653,0.457,0.408,0.154,0.85,0,0,0,0.193 +0.667,0.614,0.432,0.362,0,0,0,0,0.467,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.0845 +0.333,0.562,0.26,0.296,0.507,0.783,0,0,0,0.238 +1,0.529,0.307,0.397,0,0.6,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0208,0.0495,0,0,0,0,0,0.0886 +1,0.528,0.0179,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0,0.177 +1,0.537,0.0295,0.136,0,0,0,0,0,0 +1,0.537,0.0684,0.277,0,0,0.0719,0.0333,0.233,0.0718 +1,0.546,0.109,0.274,0,0,0.223,0.717,0.533,0.301 +0.667,0.546,0.142,0.263,0,0,0.473,0,0.183,0.121 +0.667,0.546,0.169,0.256,0,0,0.696,0,0,0.293 +0.333,0.554,0.101,0.147,0,0,0.751,0,0,0 +0.667,0.546,0.198,0.237,0,0,0.483,0,0,0 +0.667,0.546,0.232,0.235,0,0,0.277,0,0,0.133 +0.667,0.546,0.264,0.235,0,0,0.643,0,0,0.0443 +0.667,0.563,0.29,0.236,0,0,0.445,0,0,0.222 +0.667,0.588,0.305,0.239,0,0,0.447,0,0,0 +0.333,0.588,0.167,0.151,0,0,0.342,0,0,0.0886 +0.333,0.592,0.194,0.169,0,0,0.29,0,0,0.0886 +0.333,0.588,0.251,0.206,0,0,0,0,0,0.262 +0.667,0.597,0.569,0.462,0,0,0,0,0,0.194 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.0859 +1,0.529,0.334,0.397,0,0,0,0,0,0.0443 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0208,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0333,0.0294 +1,0.537,0.0684,0.277,0,0,0,0,0.917,0.304 +1,0.546,0.109,0.274,0,0,0,0,0,0.227 +1,0.546,0.142,0.263,0,0,0,0,0,0.0886 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.0443 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.222 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.133 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.0886 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.177 +0.667,0.588,0.305,0.239,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0.233,0.0443 +1,0.653,0.546,0.408,0.271,0.283,0,0,0,0.133 +1,0.64,0.718,0.518,0.866,1,0,0,0,0 +1,0.615,0.844,0.668,0.64,0.1,0,0,0,0.124 +1,0.563,0.779,0.788,0.298,0,0.288,0.5,0,0.143 +1,0.512,0.492,0.571,0,0,0.172,0,0,0.0739 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0313 +1,0.537,0.0316,0.136,0,0,0,0,0,0.332 +1,0.549,0.0396,0.163,0,0,0,0,0,0.27 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0929 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.0886 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.31 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0886 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.153 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0637 +0.333,0.554,0.0766,0.142,0.313,0.283,0,0,0,0.0443 +0.333,0.562,0.0846,0.143,0.616,1,0,0,0,0.177 +0.333,0.575,0.103,0.144,0,0.333,0,0,0.283,0.355 +0.667,0.614,0.232,0.252,0.488,0.533,0,0,0.183,0.222 +0.667,0.623,0.31,0.289,0.603,0.85,0,0,0,0.133 +0.333,0.588,0.224,0.206,0.437,0,0,0,0.467,0 +0.333,0.579,0.274,0.256,0,0,0,0,0,0.0443 +0.667,0.562,0.26,0.296,0,0,0,0,0,0.133 +0.667,0.545,0.161,0.223,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0759 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.158 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0.667,0.549,0.0396,0.163,0,0,0,0,0.2,0.0443 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.222 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.0886 +1,0.538,0.141,0.359,0,0,0,0,0,0.0886 +1,0.538,0.157,0.343,0,0,0,0,0,0 +1,0.538,0.165,0.331,0,0,0,0,0,0.0443 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0886 +0.333,0.554,0.0766,0.142,0,0,0.18,0.283,0,0.0443 +0.333,0.562,0.0846,0.143,0,0,0.465,1,0,0.133 +0.667,0.588,0.19,0.239,0,0,0.494,0.217,0,0 +0.667,0.614,0.232,0.252,0,0,0.355,0,0.0333,0 +0.667,0.623,0.31,0.289,0,0,0.318,0,0.2,0.31 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.149 +1,0.562,0.26,0.296,0,0,0,0,0,0 +0.667,0.545,0.161,0.223,0,0,0,0,0,0.0829 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0757 +1,0.537,0.0316,0.136,0,0,0,0,0,0.225 +1,0.549,0.0396,0.163,0,0,0,0,0,0.0737 +0.333,0.562,0.0159,0.0495,0,0,0.299,0.25,0,0.0443 +0.667,0.554,0.0526,0.156,0,0,0.454,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0.391,0,0,0.34 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.272 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.386 +1,0.602,0.276,0.334,0,0,0,0,0,0.468 +0.667,0.614,0.232,0.252,0.107,0.0333,0,0,0,0 +1,0.653,0.457,0.408,0.665,1,0,0,0,0.133 +0.667,0.614,0.432,0.362,0.542,0.35,0,0,0,0.0886 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0279 +1,0.537,0.0316,0.136,0,0,0,0,0.283,0.38 +1,0.537,0.0633,0.277,0,0,0,0,0.467,0.0443 +0.667,0.554,0.0461,0.162,0,0,0,0,0.2,0.38 +0.333,0.554,0.0526,0.156,0,0,0.191,0.283,0,0 +0.333,0.554,0.0577,0.153,0,0,0.35,0.467,0,0.0443 +0.333,0.554,0.0628,0.147,0,0,0.61,0,0,0.266 +0.333,0.554,0.0657,0.143,0,0,0.328,0,0,0.0443 +0.333,0.554,0.073,0.142,0,0,0.454,0,0,0.0443 +0.667,0.546,0.137,0.235,0,0,0.362,0,0,0.0443 +0.667,0.562,0.0846,0.143,0,0,0,0,0.0333,0.0886 +0.667,0.575,0.103,0.144,0,0,0,0,0.433,0.31 +0.667,0.614,0.232,0.252,0,0,0.275,0.533,0,0.177 +0.667,0.623,0.31,0.289,0,0,0.458,0.217,0,0.0443 +0.667,0.614,0.432,0.362,0,0,0.329,0,0,0 +0.667,0.597,0.532,0.462,0,0,0.438,0,0,0 +0.667,0.563,0.504,0.542,0,0,0.505,0,0,0 +0.667,0.529,0.307,0.397,0,0,0.307,0,0,0 +0.667,0.503,0.136,0.183,0,0,0,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0.2 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.342 +1,0.512,0.0474,0.222,0,0,0,0,0,0.354 +0.667,0.549,0.0396,0.163,0,0,0,0,0.0333,0.194 +0.667,0.546,0.0764,0.274,0,0,0,0,0.2,0.348 +0.667,0.546,0.0894,0.263,0,0,0,0,0.283,0.192 +0.333,0.554,0.0577,0.153,0,0,0,0,0.917,0.15 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0443 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.192 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.246 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.234 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.0443 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.439 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.388 +0.333,0.579,0.274,0.256,0,0,0,0,0,0.0951 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.257 +1,0.512,0.453,0.571,0,0,0,0,0,0.0294 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0295 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0.387 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.349 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.0886 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.222 +0.333,0.554,0.125,0.142,0,0,0,0,0.0333,0.443 +0.667,0.546,0.264,0.235,0,0,0.0996,0.0333,0.2,0.133 +0.667,0.563,0.29,0.236,0,0,0.407,0.467,0,0.222 +0.667,0.575,0.162,0.144,0,0,0.216,0.0333,0,0.0443 +0.667,0.614,0.315,0.252,0,0,0.548,0.717,0,0.0443 +0.667,0.623,0.37,0.289,0,0,0.505,0,0,0.0443 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.0443 +0.667,0.579,0.294,0.256,0.463,0.533,0,0,0,0 +0.667,0.563,0.525,0.542,0.674,0.85,0,0,0,0 +0.667,0.545,0.176,0.223,0.734,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0 +0.667,0.528,0.044,0.0743,0,0,0,0,0,0 +0.667,0.528,0.028,0.0578,0,0,0,0,0,0 +1,0.528,0.0208,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0,0.133 +1,0.549,0.0433,0.163,0,0,0,0,0.467,0.0443 +1,0.538,0.155,0.387,0,0,0,0,0,0 +0.667,0.546,0.142,0.263,0,0,0,0,0,0 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0.0443 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.133 +0.333,0.554,0.108,0.143,0,0,0.362,0.783,0,0.266 +0.667,0.554,0.125,0.142,0,0,0,0.467,0,0.0886 +0.667,0.554,0.141,0.142,0,0,0,0,0,0 +0.667,0.562,0.154,0.143,0,0,0,0,0,0.222 +0.333,0.575,0.162,0.144,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0,0,0,0 +0.333,0.592,0.194,0.169,0,0,0,0,0,0.0443 +0.333,0.588,0.251,0.206,0,0,0,0,0,0.133 +0.333,0.579,0.294,0.256,0,0,0,0,0,0.0797 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.162 +1,0.512,0.0474,0.222,0,0,0,0,0,0.53 +1,0.537,0.0633,0.277,0,0,0,0,0,0.0886 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.341 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.405 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.177 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.533,0.0886 +0.333,0.554,0.073,0.142,0,0,0,0,0.417,0.341 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.214 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.123 +0.667,0.575,0.103,0.144,0,0,0,0,0.0333,0.443 +0.667,0.614,0.232,0.252,0,0,0,0,0.433,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.076 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.25 +0.667,0.579,0.274,0.256,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.0886 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.133 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.133 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.253 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.292 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.0443 +0.667,0.554,0.0628,0.147,0,0,0,0,0.283,0.0886 +0.667,0.554,0.0657,0.143,0,0,0,0,0.183,0.177 +0.667,0.554,0.073,0.142,0,0,0,0,0,0.177 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0.0443 +0.667,0.562,0.0846,0.143,0,0,0,0,0.783,0 +0.667,0.588,0.19,0.239,0,0,0,0,1,0.0443 +0.667,0.614,0.232,0.252,0,0,0,0,0.133,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0.133 +0.333,0.588,0.224,0.206,0,0,0,0,0.233,0.0443 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.105 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.228 +0.667,0.529,0.307,0.397,0,0,0,0,0,0.206 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.222 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.266 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.218 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.107 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.297 +0.333,0.575,0.103,0.144,0,0,0,0,0.0333,0.278 +0.667,0.614,0.232,0.252,0,0,0,0,0.2,0.0886 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0443 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.0886 +0.333,0.579,0.274,0.256,0,0,0,0,0,0.0291 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.154 +1,0.529,0.307,0.397,0,0,0,0,0.233,0.105 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0443 +1,0.528,0.0171,0.0495,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.098 +1,0.528,0.0236,0.0768,0,0,0,0,0.283,0.237 +0.667,0.512,0.0474,0.222,0,0,0,0,0.433,0.243 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.358 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.327 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0886 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.216 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.774 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.177 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.266 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.588,0.124,0.151,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0.233,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0.266 +0.333,0.579,0.274,0.256,0,0,0,0,0,0.0886 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.783,0 +1,0.545,0.161,0.223,0,0,0,0,0.9,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.177 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.133 +1,0.537,0.0316,0.136,0,0,0,0,0,0.032 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.239 +1,0.546,0.0764,0.274,0,0,0,0,0,0.195 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0886 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.467,0.0443 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0443 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.252 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.361 +0.333,0.588,0.124,0.151,0.171,0.0333,0,0,0,0.0443 +0.667,0.623,0.31,0.289,0.849,1,0,0,0,0.0886 +0.667,0.614,0.432,0.362,0,0.117,0,0,0,0.48 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.298 +0.667,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.0312 +1,0.503,0.136,0.183,0,0,0,0,0,0.309 +1,0.528,0.044,0.0743,0,0,0,0,0,0.108 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.549,0.0433,0.163,0,0,0,0,0,0.0443 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.0333,0 +0.333,0.554,0.101,0.147,0,0,0,0,0.683,0.194 +0.667,0.546,0.198,0.237,0,0,0,0,0,0.47 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0886 +0.333,0.554,0.141,0.142,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.0886 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.177 +0.333,0.588,0.167,0.151,0,0,0,0,0,0.177 +0.333,0.592,0.194,0.169,0.691,0.783,0,0,0.0333,0.158 +0.667,0.614,0.485,0.362,0,0.6,0,0,1,0.321 +0.667,0.597,0.569,0.462,0,0,0,0,0.4,0.191 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.0443 +0.667,0.529,0.334,0.397,0,0,0,0,0,0.0672 +1,0.474,0.224,0.249,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.189 +1,0.554,0.0803,0.156,0,0,0,0,0.0333,0.272 +0.667,0.546,0.169,0.256,0,0,0,0,0.2,0.0886 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.443 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.266 +0.333,0.554,0.125,0.142,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.0886 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.0443 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.0443 +0.333,0.588,0.167,0.151,0,0,0,0,0,0.0443 +0.333,0.592,0.194,0.169,0,0,0,0,0,0.212 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.224 +0.667,0.597,0.569,0.462,0,0,0,0,0,0 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.175 +1,0.529,0.334,0.397,0,0,0,0,0,0.194 +1,0.532,0.0868,0.116,0,0,0,0,0,0.153 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.133 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.355 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.443 +0.667,0.549,0.0396,0.163,0.279,0.283,0,0,0.233,0.259 +0.333,0.554,0.0461,0.162,0.685,1,0,0,0,0.0443 +0.333,0.554,0.0526,0.156,0.708,0.1,0,0,0,0.133 +0.333,0.554,0.0577,0.153,0.298,0,0.409,0.533,0,0 +0.333,0.554,0.0628,0.147,0,0,0.192,0.967,0,0 +0.333,0.554,0.0657,0.143,0,0,0.82,0,0,0.133 +0.667,0.546,0.13,0.235,0,0,0.235,0,0,0.105 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.271 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.31 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.0886 +0.333,0.588,0.124,0.151,0,0,0,0,0.533,0 +0.667,0.623,0.31,0.289,0,0,0,0,0.183,0 +1,0.64,0.64,0.518,0.552,0.533,0,0,0,0 +0.667,0.579,0.274,0.256,0.733,0.85,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.156,0.0333,0,0,0,0 +1,0.528,0.0186,0.05,0.789,1,0,0,0,0.188 +1,0.495,0.0314,0.104,0.593,0.35,0.0802,0.0333,0,0.361 +0.667,0.537,0.0316,0.136,0.183,0,0.231,0.217,0,0.291 +1,0.525,0.087,0.39,0,0,0.355,0,0,0.0395 +1,0.538,0.107,0.387,0,0,0.725,0,0,0.232 +0.667,0.546,0.0894,0.263,0,0,0.671,0,0,0.106 +0.667,0.546,0.0996,0.256,0,0,0.259,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0.531,0,0,0.0886 +0.333,0.554,0.0657,0.143,0,0,0.718,0,0,0.665 +0.333,0.554,0.073,0.142,0,0,0.86,0,0,0.253 +0.667,0.546,0.137,0.235,0,0,0.351,0,0,0.394 +0.667,0.563,0.153,0.236,0,0,0.716,0,0,0.0443 +0.667,0.588,0.19,0.239,0,0,0.592,0,0,0.0443 +0.333,0.588,0.124,0.151,0,0,0.516,0,0.0333,0 +0.667,0.623,0.31,0.289,0,0,0.398,0,0.2,0 +0.667,0.614,0.432,0.362,0,0,0.275,0,0,0.132 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.287 +0.667,0.562,0.26,0.296,0,0,0,0,0,0 +0.667,0.545,0.161,0.223,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.46 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.1 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0.266 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0443 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0443 +0.667,0.588,0.124,0.151,0,0,0,0,0,0.0886 +0.667,0.592,0.163,0.169,0,0,0,0,0,0.341 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.227 +0.667,0.597,0.532,0.462,0,0,0.267,0.5,0,0.0443 +0.667,0.562,0.26,0.296,0,0,0,0,0,0.0443 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.105 +1,0.512,0.0474,0.222,0,0,0,0,0.533,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0.183,0.0443 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.133 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.177 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.133 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.31 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0443 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0443 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0443 +0.667,0.588,0.19,0.239,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.589,0.783,0.194,0.283,0,0.399 +0.333,0.588,0.224,0.206,0.318,0.6,0.408,0.217,0,0.0443 +0.333,0.579,0.274,0.256,0,0,0.604,0,0,0.177 +0.333,0.562,0.26,0.296,0,0,0.454,0,0,0.0443 +0.667,0.545,0.161,0.223,0,0,0.541,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.533,0.0443 +1,0.537,0.0316,0.136,0,0,0,0,0.417,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0 +0.667,0.554,0.0526,0.156,0,0,0,0,0.533,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0.183,0.177 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.133 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0886 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.31 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0886 +0.333,0.562,0.0846,0.143,0,0,0,0,0.0333,0.133 +0.667,0.588,0.19,0.239,0,0,0,0,0.433,0.0753 +0.667,0.614,0.232,0.252,0.206,0.0333,0,0,0,0.166 +0.667,0.623,0.31,0.289,0.8,1,0,0,0,0.0886 +0.667,0.614,0.432,0.362,0.397,0.35,0.0194,0.0333,0,0.0443 +0.667,0.597,0.532,0.462,0,0,0.602,0.217,0,0.133 +0.667,0.563,0.504,0.542,0,0,0.591,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.133 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0953 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.667,0.546,0.142,0.263,0,0,0,0,0,0.342 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.259 +0.667,0.546,0.184,0.245,0,0,0,0,0.233,0.0886 +0.667,0.546,0.198,0.237,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0443 +0.667,0.546,0.264,0.235,0,0,0,0,0.233,0.0886 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.0886 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.0967 +1,0.64,0.464,0.353,0,0,0,0,0,0.346 +0.667,0.623,0.37,0.289,0,0,0,0,0,0.0443 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.222 +0.333,0.579,0.294,0.256,0,0,0,0,0,0.0967 +0.667,0.563,0.525,0.542,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0.0443 +1,0.528,0.028,0.0578,0,0,0,0,0,0 +1,0.528,0.0208,0.0495,0,0,0,0,0,0.0886 +1,0.528,0.0179,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.0124,0.0333,0,0.0739 +1,0.537,0.0684,0.277,0,0,0.3,0.217,0,0.209 +0.667,0.554,0.0636,0.162,0,0,0.462,0,0,0.201 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0711 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.409 +0.667,0.546,0.184,0.245,0,0,0,0,0,0.301 +0.667,0.546,0.198,0.237,0,0,0,0,0,0.0886 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.222 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.399 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.333,0.588,0.251,0.206,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0.149 +0.667,0.563,0.525,0.542,0,0,0,0,0,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0562 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0891 +1,0.537,0.0316,0.136,0,0,0,0,0,0.482 +0.667,0.537,0.0633,0.277,0,0,0,0,0.467,0.116 +0.667,0.546,0.0764,0.274,0.565,0.783,0,0,0,0.133 +0.667,0.546,0.0894,0.263,0.267,0.6,0,0,0,0.0443 +0.667,0.546,0.0996,0.256,0,0,0,0,0.533,0.0886 +0.667,0.546,0.11,0.245,0,0,0,0,0.183,0.222 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.31 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.222 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.222 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0443 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.133 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0886 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.177 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.0443 +0.667,0.563,0.504,0.542,0,0,0,0,0,0 +0.667,0.529,0.307,0.397,0,0,0,0,0.467,0 +1,0.503,0.136,0.183,0.55,0.783,0,0,0,0.0301 +1,0.528,0.0374,0.0743,0,0.6,0,0,0,0.0452 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.528,0.0186,0.05,0,0,0,0,0,0.454 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.374 +1,0.512,0.0474,0.222,0,0,0,0,0.467,0.334 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0748 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.425 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.224 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.134 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.251 +0.667,0.588,0.19,0.239,0,0,0,0,0.283,0.161 +1,0.64,0.339,0.353,0,0,0,0,0.217,0 +0.667,0.623,0.31,0.289,0,0,0,0,0.2,0.133 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.0314 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.342 +1,0.512,0.453,0.571,0,0,0,0,0,0.164 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.283 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0.0886 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.133 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.177 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.133 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0443 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0443 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.133 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.133 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.133 +0.333,0.575,0.103,0.144,0,0,0,0,0.467,0.0886 +0.667,0.614,0.232,0.252,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0443 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.237 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.631 +0.667,0.537,0.0316,0.136,0,0,0,0,0.533,0.0443 +0.667,0.549,0.0396,0.163,0,0,0,0,0.417,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.266 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.0318,0.0333,0,0 +0.333,0.554,0.0657,0.143,0,0,0.523,0.967,0,0.0886 +0.333,0.554,0.073,0.142,0,0,0.515,0,0.783,0.273 +0.667,0.546,0.137,0.235,0,0,0.35,0,0.167,0.112 +0.667,0.563,0.153,0.236,0,0,0.213,0.25,0,0 +0.667,0.588,0.19,0.239,0,0,0.759,0,0.0333,0.0443 +1,0.64,0.339,0.353,0.384,0.533,0.119,0,1,0.222 +0.667,0.623,0.31,0.289,0.224,0.85,0,0,0.167,0.31 +0.667,0.614,0.432,0.362,0.454,0.533,0,0,0,0.0443 +0.667,0.579,0.274,0.256,0.137,0.85,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +1,0.545,0.161,0.223,0,0,0,0,0.2,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.344 +1,0.549,0.0396,0.163,0,0,0,0,0,0.266 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.133 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.133 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.667,0.614,0.232,0.252,0.627,0.783,0,0,0,0.287 +1,0.653,0.457,0.408,1,0.6,0,0,0,0.313 +0.667,0.614,0.432,0.362,0.269,0,0,0,0,0.16 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.111 +0.333,0.562,0.26,0.296,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.431 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0.207 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.34 +0.667,0.548,0.174,0.27,0,0,0,0,0.233,0.51 +0.667,0.548,0.191,0.259,0,0,0,0,0.233,0.0767 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.119 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.658 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.594 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.0443 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.0443 +0.333,0.594,0.2,0.2,0,0,0,0,0,0.133 +0.667,0.617,0.501,0.454,0.554,0.7,0,0,0,0.204 +1,0.619,0.873,0.806,0.171,0.7,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0.278 +1,0.531,0.345,0.391,0,0,0,0,0,0.0443 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.45,0.222 +1,0.529,0.0203,0.0503,0,0,0,0,0.267,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0459 +1,0.514,0.0421,0.228,0,0,0,0,0,0.387 +1,0.54,0.0706,0.284,0,0,0,0,0,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0.233,0.222 +0.667,0.548,0.147,0.278,0,0,0.216,0.7,0,0 +0.667,0.548,0.174,0.27,0,0,0.524,0.05,0,0 +0.667,0.548,0.191,0.259,0,0,0.721,0,0,0.266 +0.667,0.548,0.204,0.251,0,0,0.383,0,0,0.0443 +0.667,0.548,0.24,0.249,0,0,0.704,0,0,0.133 +0.667,0.548,0.273,0.249,0,0,0.477,0,0.2,0.0443 +0.667,0.566,0.3,0.251,0,0,0.491,0,0.283,0.0886 +0.667,0.591,0.315,0.259,0,0,0.533,0,0,0.133 +0.667,0.617,0.326,0.286,0,0,0.0878,0,0.233,0 +1,0.658,0.565,0.501,0,0,0,0,0,0.271 +1,0.617,0.501,0.454,0,0,0,0,0,0.322 +1,0.6,0.588,0.554,0,0,0,0,0,0.0386 +1,0.564,0.281,0.317,0,0,0,0,0,0.121 +1,0.546,0.182,0.22,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.209 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.186 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.0443 +1,0.497,0.0323,0.107,0,0,0,0,0,0.369 +1,0.514,0.0488,0.228,0,0,0,0,0.483,0.415 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0.557 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.151 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.242 +0.667,0.548,0.103,0.27,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.0443 +0.667,0.548,0.134,0.249,0,0,0.0913,0.0333,0,0.177 +0.333,0.555,0.0789,0.149,0,0,0.577,0.217,0,0 +0.667,0.566,0.158,0.251,0,0,0.448,0.0333,0,0.31 +0.667,0.591,0.196,0.259,0,0,0.418,0.467,0,0.177 +0.667,0.617,0.239,0.286,0,0,0.212,0,0,0.0756 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.259 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.139 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.722 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.188 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.133 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0443 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.497,0.0188,0.0495,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.283,0.0317 +1,0.497,0.0323,0.107,0,0,0,0,0.433,0.25 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0.214 +1,0.529,0.09,0.402,0,0,0,0,0,0.12 +1,0.542,0.11,0.404,0,0,0,0,0,0.0282 +0.667,0.548,0.0923,0.278,0,0,0,0,0.533,0.133 +0.667,0.548,0.103,0.27,0,0,0,0,1,0 +0.667,0.548,0.113,0.259,0,0,0,0,0.4,0.31 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.266 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.133 +0.333,0.576,0.106,0.154,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.133 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0443 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.477,0.203,0.249,0,0,0,0,0,0.0725 +1,0.497,0.0608,0.099,0,0,0,0,0,0 +0.667,0.529,0.0241,0.0578,0,0,0,0,0,0.0443 +0.667,0.529,0.0173,0.0495,0,0,0,0,0,0.0443 +1,0.497,0.0158,0.0495,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.296 +1,0.538,0.0323,0.139,0,0,0,0,0,0.0296 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.219 +0.667,0.555,0.0541,0.164,0,0,0,0,0.233,0.227 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.358 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.299 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.31 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.0886 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0886 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0443 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.0443 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.0306 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.226 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.177 +0.333,0.581,0.283,0.302,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.0443 +0.667,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0564 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.134 +1,0.514,0.0488,0.228,0,0,0,0,0,0.63 +0.667,0.54,0.0653,0.284,0,0,0.0719,0.0333,0,0.0921 +0.333,0.555,0.0473,0.168,0,0,0.542,0.717,0,0 +0.333,0.555,0.0541,0.164,0,0,0.531,0,0,0.31 +0.333,0.555,0.0593,0.16,0,0,0.534,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0.465,0,0,0.0886 +0.333,0.555,0.0676,0.15,0,0,0.563,0,0,0.222 +0.333,0.555,0.0751,0.149,0,0,0.606,0,0,0.0443 +0.333,0.555,0.0789,0.149,0,0,0.501,0,0,0.133 +0.333,0.564,0.0871,0.15,0,0,0.716,0,0,0.399 +0.667,0.591,0.196,0.259,0,0,0.336,0,0.0333,0.133 +0.667,0.617,0.239,0.286,0,0,0,0,0.45,0.0886 +0.667,0.626,0.32,0.351,0,0,0,0,0,0 +0.333,0.589,0.231,0.252,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0 +0.333,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.185 +1,0.505,0.14,0.183,0,0,0,0,0,0.051 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0303 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.823 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.0861 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.456 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.0443 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.353 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.371 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.115 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.302 +0.667,0.548,0.119,0.251,0,0,0,0,0,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.287 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.177 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.133 +0.333,0.576,0.106,0.154,0,0,0,0,0.0333,0.0443 +0.333,0.589,0.128,0.168,0.561,0.533,0,0,0.45,0 +0.667,0.626,0.32,0.351,0.296,0.867,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0.129 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.31 +1,0.54,0.0706,0.284,0,0,0,0,0,0.295 +1,0.555,0.0654,0.168,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.259 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.555,0.111,0.15,0,0,0,0,0,0.0886 +0.667,0.555,0.129,0.149,0,0,0,0,0.45,0.133 +0.667,0.555,0.146,0.149,0,0,0,0,0.0333,0.0886 +0.667,0.564,0.159,0.15,0,0,0,0,0,0.355 +0.667,0.576,0.167,0.154,0,0,0,0,0.233,0.355 +1,0.645,0.479,0.404,0,0,0,0,0,0.0443 +1,0.658,0.565,0.501,0,0,0,0,0,0.178 +1,0.645,0.743,0.656,0.151,0.2,0,0,0,0.0443 +0.667,0.6,0.588,0.554,0.603,1,0,0,0,0 +0.667,0.566,0.543,0.584,0,0.2,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0.255 +1,0.529,0.0286,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0 +1,0.529,0.0226,0.0781,0,0,0,0,0,0.0443 +1,0.538,0.0301,0.139,0,0,0,0,0,0.238 +1,0.54,0.0706,0.284,0,0,0,0,0,0.438 +1,0.548,0.113,0.286,0,0,0,0,0,0.196 +1,0.548,0.147,0.278,0,0,0,0,0,0.415 +1,0.542,0.252,0.381,0,0,0,0,0,0.199 +1,0.542,0.277,0.364,0,0,0,0,0,0.428 +1,0.542,0.297,0.352,0,0,0,0,0,0.137 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.393 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.32 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.177 +0.333,0.576,0.167,0.154,0,0,0,0,0,0.392 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.355 +0.333,0.594,0.2,0.2,0,0,0,0,0.483,0.266 +0.667,0.617,0.501,0.454,0,0,0,0,0,0.101 +0.667,0.6,0.588,0.554,0,0,0,0,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.283,0 +1,0.529,0.0241,0.0781,0,0,0,0,0.433,0.0902 +0.667,0.538,0.0323,0.139,0,0,0,0,0.533,0.0443 +0.667,0.551,0.0406,0.167,0,0,0,0,0.183,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.076 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.342 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.071 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.399 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.0886 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0886 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.0886 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.431 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0443 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.252 +0.667,0.564,0.269,0.317,0,0,0,0,0,0.092 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.283,0.0443 +1,0.529,0.0241,0.0781,0,0,0,0,0.433,0.266 +1,0.514,0.0488,0.228,0,0,0,0,0,0.459 +1,0.54,0.0653,0.284,0,0,0,0,0,0.506 +1,0.548,0.0788,0.286,0,0,0,0,0,0.475 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0.394 +0.667,0.555,0.0593,0.16,0,0,0,0,0,0.694 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.483 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0,0.562,0.0159,0.0495,0,0,0.127,0.0333,0.45,0 +0.333,0.576,0.106,0.154,0,0,0.817,0.217,0.233,0 +0.667,0.617,0.239,0.286,0,0,0.393,0,0,0.0886 +0.667,0.626,0.32,0.351,0,0,0.404,0,0,0 +0.667,0.617,0.446,0.454,0,0,0.0996,0,0,0.0443 +0.667,0.581,0.283,0.302,0,0,0,0,0,0.0886 +0.667,0.564,0.269,0.317,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0 +0.667,0.533,0.0781,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.36 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.11 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.292 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.156 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.222 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.222 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0443 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0443 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0443 +0.667,0.617,0.239,0.286,0.117,0.0333,0,0,0,0.133 +0.667,0.626,0.32,0.351,0.813,1,0,0,0,0.133 +0.333,0.589,0.231,0.252,0.669,0.367,0,0,0,0 +0.667,0.6,0.55,0.554,0.126,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.26 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.146 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.195 +1,0.538,0.0323,0.139,0,0,0,0,0,0.296 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.898 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.137 +0.333,0.555,0.0541,0.164,0.475,0.533,0,0,0,0.189 +0.333,0.555,0.0593,0.16,0.444,0.867,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0348 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.149 +0.333,0.555,0.0751,0.149,0,0,0.0802,0.0333,0,0 +0,0.562,0.0159,0.0495,0,0,0.456,0.217,0,0.222 +0.333,0.564,0.0871,0.15,0,0,0.322,0,0,0.0443 +0.333,0.576,0.106,0.154,0,0,0.212,0,0.233,0.177 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.0443 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.0886 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.0443 +0.333,0.581,0.283,0.302,0,0,0,0,0,0.0297 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.258 +0.667,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.194 +1,0.529,0.0158,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.783,0.408 +1,0.551,0.0406,0.167,0,0,0,0,1,0.274 +0.667,0.555,0.0473,0.168,0,0,0,0,1,0.272 +0.667,0.548,0.0923,0.278,0,0,0,0,0.117,0.165 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.177 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.0745 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.187 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0886 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.133 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.133 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.266 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0443 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.133 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.179 +0.667,0.546,0.167,0.22,0,0,0,0,0,0.373 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.555,0.0654,0.168,0,0,0.214,0.25,0,0 +1,0.555,0.0826,0.164,0,0,0.61,0,0,0 +1,0.555,0.0961,0.16,0,0,0.527,0,0,0 +1,0.548,0.191,0.259,0,0,0.288,0,0,0.133 +1,0.548,0.204,0.251,0,0,0.136,0.2,0,0.0443 +0.667,0.555,0.129,0.149,0,0,0.394,0.55,0,0.11 +1,0.542,0.401,0.349,0,0,0.619,0,0,0.692 +1,0.568,0.441,0.351,0,0,0.175,0,0,0.269 +1,0.606,0.464,0.363,0,0,0,0,0.7,0.215 +1,0.645,0.479,0.404,0,0,0,0,0.0167,0.0886 +0.667,0.626,0.383,0.351,0,0,0,0,0,0.31 +0.333,0.589,0.26,0.252,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0.292,0.25,0,0 +0.667,0.566,0.543,0.584,0,0,0.66,0,0,0.0886 +0.667,0.531,0.345,0.391,0,0,0.339,0,0,0 +0.667,0.505,0.161,0.183,0,0,0.296,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0.0194,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.42 +1,0.555,0.0654,0.168,0,0,0,0,0,0.562 +1,0.542,0.212,0.392,0,0,0,0,0,0.436 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.228 +0.667,0.548,0.191,0.259,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.222 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.133 +0.333,0.555,0.146,0.149,0,0,0,0,0.2,0.266 +0.667,0.566,0.3,0.251,0,0,0,0,0.0333,0.222 +0.333,0.576,0.167,0.154,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.177 +0.333,0.594,0.2,0.2,0,0,0,0,0.483,0.133 +0.667,0.617,0.501,0.454,0,0,0,0,0,0.133 +0.667,0.6,0.588,0.554,0,0,0,0,0,0.0443 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0.136 +1,0.505,0.161,0.183,0,0,0.243,0,0,0.13 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.11 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.373 +1,0.551,0.0406,0.167,0,0,0,0,0,0.659 +1,0.548,0.0788,0.286,0,0,0,0,0,0.0632 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0307 +0.667,0.555,0.0593,0.16,0,0,0.339,0.783,0.0333,0.0768 +0.667,0.555,0.0646,0.154,0,0,0,0.733,0.45,0.0443 +0.667,0.555,0.0676,0.15,0,0,0,0,0,0.0443 +0.667,0.555,0.0751,0.149,0.358,0.283,0,0,0,0.399 +0.667,0.555,0.0789,0.149,0.333,1,0,0,0,0.222 +0.667,0.566,0.158,0.251,0,0.117,0.455,0.25,0,0.31 +0.667,0.591,0.196,0.259,0,0,0.488,0,0,0.177 +0.667,0.617,0.239,0.286,0.171,0.0333,0.367,0,0,0.222 +0.667,0.626,0.32,0.351,0.392,1,0.248,0,0,0.31 +0.667,0.617,0.446,0.454,0.535,0.6,0,0,0.0333,0.0443 +0.667,0.6,0.55,0.554,0,0,0,0,0.683,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.177 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.133 +1,0.538,0.0323,0.139,0,0,0,0,0,0.119 +1,0.54,0.0653,0.284,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0443 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0886 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0443 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.667,0.564,0.0871,0.15,0,0,0.328,0.5,0,0.222 +0.667,0.576,0.106,0.154,0,0,0,0,0,0.31 +0.667,0.589,0.128,0.168,0,0,0,0,0.483,0.0886 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.177 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0443 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.094 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.0443 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0 +0.667,0.555,0.0593,0.16,0,0,0,0,0,0.0443 +0.667,0.555,0.0646,0.154,0,0,0,0,0,0.133 +0.667,0.555,0.0676,0.15,0,0,0,0,0,0.0443 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.0886 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0.177 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.222 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.443 +1,0.645,0.351,0.404,0,0,0,0,0,0.266 +0.333,0.594,0.168,0.2,0,0,0,0,0.717,0.102 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.27 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.0443 +0.667,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.717,0 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.149 +1,0.538,0.0323,0.139,0,0,0,0,0,0.0924 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.288 +1,0.548,0.0788,0.286,0,0,0,0,0,0.242 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0.484 +0.667,0.555,0.0593,0.16,0,0,0,0,0,0.609 +0.667,0.555,0.0646,0.154,0,0,0,0,0,0.139 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.621 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.23 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.176 +0.667,0.564,0.0871,0.15,0,0,0,0,0.233,0.191 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.133 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.0886 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.177 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.196 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.0307 +1,0.568,0.774,0.851,0,0,0,0,0,0.226 +1,0.531,0.317,0.391,0,0,0,0,0,0.0807 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.154 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.14 +0.667,0.529,0.0241,0.0781,0,0,0,0,0.283,0 +0.333,0.538,0.0323,0.139,0,0,0,0,0.2,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.164 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.0443 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0443 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.283,0.177 +0.333,0.555,0.0789,0.149,0,0,0,0,1,0.157 +0.333,0.564,0.0871,0.15,0,0,0,0,0.683,0.235 +0.667,0.591,0.196,0.259,0,0,0,0,1,0.0443 +0.667,0.617,0.239,0.286,0,0,0,0,0.167,0.0443 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.133 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.177 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0.0443 +1,0.546,0.167,0.22,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.362 +1,0.538,0.0301,0.139,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.0886 +0.667,0.548,0.174,0.27,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.133 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.31 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.0886 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.133 +0.333,0.564,0.159,0.15,0,0,0,0,0.233,0.177 +0.333,0.576,0.167,0.154,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.266 +0.333,0.594,0.2,0.2,0,0,0,0,0,0.0443 +0.333,0.589,0.26,0.252,0,0,0,0,0,0.15 +0.667,0.6,0.588,0.554,0,0,0,0,0,0.273 +0.667,0.566,0.543,0.584,0,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.486 +1,0.538,0.0301,0.139,0,0,0,0,0.45,0.0758 +0.667,0.551,0.0444,0.167,0,0,0,0,0.0333,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0.0886 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.0443 +0.667,0.555,0.0961,0.16,0,0,0,0,0.233,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.0886 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.0443 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.222 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.177 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.133 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.115 +0.667,0.617,0.326,0.286,0,0,0,0,0.2,0 +0.667,0.626,0.383,0.351,0.508,0.45,0,0,0.283,0.355 +1,0.617,0.501,0.454,0,1,0,0,0,0 +1,0.6,0.588,0.554,0,0.183,0,0,0,0.0502 +1,0.566,0.543,0.584,0,0,0,0,0,0.187 +1,0.546,0.182,0.22,0,0,0,0,0,0.39 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.783,0.266 +0.667,0.562,0.0159,0.0495,0,0,0,0,1,0.37 +0.667,0.551,0.0406,0.167,0,0,0,0,0.15,0.045 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.31 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0886 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.443 +0.333,0.555,0.0789,0.149,0,0,0.704,0.783,0,0.266 +0.333,0.564,0.0871,0.15,0,0,0.625,0.233,0,0.0443 +0.333,0.576,0.106,0.154,0.177,0.0333,0.0996,0,0,0 +0.333,0.589,0.128,0.168,0.426,1,0,0,0,0.132 +0.333,0.594,0.168,0.2,0,0.367,0,0,0,0.197 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +0.667,0.581,0.283,0.302,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0.032 +1,0.531,0.317,0.391,0,0,0,0,0,0.105 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.318 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.2 +1,0.497,0.0323,0.107,0,0,0,0,0,0.822 +1,0.514,0.0488,0.228,0,0,0,0,0,0.117 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0.352,0.283,0,0,0,0 +0.333,0.555,0.0593,0.16,0.635,1,0,0,0,0.266 +0.333,0.555,0.0646,0.154,0,0.35,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.222 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.484 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.639 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.222 +0.667,0.617,0.239,0.286,0,0,0,0,0.233,0.0886 +0.667,0.626,0.32,0.351,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0.233,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.0886 +0.667,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.219 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.294 +1,0.514,0.0488,0.228,0,0,0,0,0,0.551 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.266 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.076 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.502 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0443 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.222 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0443 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.576,0.106,0.154,0,0,0,0,0.283,0 +0.667,0.617,0.239,0.286,0.126,0.0333,0,0,0.433,0.322 +1,0.658,0.473,0.501,0.78,1,0,0,0,0.133 +0.667,0.617,0.446,0.454,0.725,0.6,0,0,0,0 +0.667,0.6,0.55,0.554,0.625,0,0,0,0,0.0757 +0.667,0.566,0.521,0.584,0.475,0,0,0,0,0.248 +0.667,0.531,0.317,0.391,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.263 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.0307 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.283,0.0443 +1,0.538,0.0323,0.139,0,0,0,0,0.683,0.0886 +0.667,0.551,0.0406,0.167,0,0,0,0,0.233,0.133 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0.283,0.0443 +0.333,0.555,0.0676,0.15,0,0,0,0,0.433,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0443 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.355 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.315 +1,0.606,0.286,0.363,0,0,0,0,0,0.222 +0.667,0.617,0.239,0.286,0.623,0.783,0,0,0,0.355 +0.667,0.626,0.32,0.351,0.55,0.617,0,0,0,0 +0.667,0.617,0.446,0.454,0.395,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.36 +1,0.54,0.0653,0.284,0,0,0,0,0,0.35 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.243 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.821,0.783,0.187,0.283,0,0.0886 +0.333,0.555,0.0676,0.15,0,0.617,0.573,0.217,0.0333,0.177 +0.333,0.555,0.0751,0.149,0,0,0,0,1,0.399 +0.333,0.555,0.0789,0.149,0,0,0,0,0.167,0.0886 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.133 +1,0.606,0.286,0.363,0,0,0,0,0,0.317 +1,0.617,0.239,0.286,0,0,0,0,0,0.136 +1,0.658,0.473,0.501,0,0,0,0,0,0.0443 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.647 +0.333,0.581,0.283,0.302,0.395,0.283,0,0,0,0.133 +0.667,0.566,0.521,0.584,0.454,1,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0.117,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.185 +1,0.538,0.0301,0.139,0,0,0,0,0,0.266 +1,0.54,0.0706,0.284,0,0,0,0,0.483,0.122 +1,0.548,0.113,0.286,0,0,0.176,0.45,0,0.177 +0.667,0.548,0.147,0.278,0,0,0.407,0.567,0,0.133 +0.667,0.548,0.174,0.27,0,0,0.378,0,0,0.0443 +0.667,0.548,0.191,0.259,0.71,0.7,0.163,0,0,0.0886 +0.667,0.548,0.204,0.251,0,0.7,0,0,0,0.0443 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.133 +1,0.542,0.401,0.349,0,0,0,0,0.233,0.22 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.207 +0.333,0.576,0.167,0.154,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.45,0 +0.667,0.617,0.501,0.454,0,0,0,0,0.267,0.0886 +0.667,0.6,0.588,0.554,0,0,0,0,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,0,0 +0.667,0.531,0.345,0.391,0,0,0,0,0,0.143 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.271 +1,0.551,0.0444,0.167,0,0,0,0,0,0.0443 +1,0.555,0.0654,0.168,0,0,0,0,0,0.494 +1,0.548,0.147,0.278,0,0,0,0,0,0.742 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.0483 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.263 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.128 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.345 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.266 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.0886 +0.333,0.576,0.167,0.154,0,0,0,0,0,0.0886 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0818 +0.667,0.546,0.182,0.22,0,0,0,0,0,0.509 +1,0.533,0.0894,0.116,0,0,0,0,0,0.127 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0294 +1,0.578,0.0433,0.236,0,0,0.58,0.7,0.467,0.323 +1,0.609,0.0577,0.295,0,0,0.326,0,0,0.0954 +1,0.649,0.0963,0.427,0,0,0.741,0,0,0.388 +0.667,0.62,0.0813,0.299,0,0,0.284,0,0,0.266 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0886 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0443 +0.333,0.591,0.0669,0.159,0.401,0.783,0,0,0,0.133 +0.333,0.591,0.0702,0.159,0,0.683,0,0,0,0.12 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.338 +1,0.726,0.25,0.417,0,0,0.25,0.467,0.0333,0.177 +1,0.772,0.307,0.501,0,0,0,0,0.217,0.31 +0.667,0.712,0.28,0.453,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.64,0.456,0.564,0,0,0,0,0,0 +0.667,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.118 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.0745 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0643 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.0605 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.0443 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0313 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.208 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.133 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.177 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.31 +0.333,0.601,0.0774,0.162,0,0,0,0,0.5,0.0443 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.0443 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0886 +0.667,0.712,0.28,0.453,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.64,0.456,0.564,0,0,0,0,0,0.0816 +0.667,0.58,0.147,0.203,0,0,0,0,0,0.0994 +1,0.565,0.0695,0.116,0,0,0,0,0,0.103 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0322 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.435 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.277 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.392 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.452 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.365 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.252 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.344 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0886 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.222 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.133 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0886 +0.333,0.601,0.0774,0.162,0,0,0,0,0.0333,0.0886 +0.667,0.671,0.172,0.294,0,0,0,0,0.467,0.177 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0443 +0.667,0.712,0.28,0.453,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0.0934 +1,0.64,0.456,0.564,0,0,0,0,0,0.207 +1,0.58,0.147,0.203,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0305 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.151 +1,0.56,0.0224,0.0798,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.164 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.642 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.0997 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.123 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.258 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.189 +0.667,0.62,0.105,0.271,0,0,0,0,0.0333,0.0443 +0.333,0.591,0.0669,0.159,0,0,0,0,0.467,0.0443 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0.25,0.222 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0443 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.177 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0886 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0524 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.031 +0.667,0.64,0.456,0.564,0,0,0,0,0,0.405 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.426 +0.667,0.578,0.0433,0.236,0,0,0,0,0.25,0.512 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.233 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.209 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.359 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.219 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.387 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0886 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.632,0.203,0.309,0,0,0,0,0.0333,0 +0.667,0.621,0.248,0.335,0,0,0,0,0.217,0.208 +1,0.64,0.456,0.564,0,0,0,0,0,0.302 +1,0.58,0.147,0.203,0,0,0,0,0,0.0317 +1,0.565,0.0695,0.116,0,0,0,0,0,0.289 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0333,0 +1,0.56,0.02,0.0495,0,0,0.284,0.533,0.217,0.0443 +1,0.56,0.0173,0.0495,0,0,0.207,0.167,0,0.0443 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0747 +1,0.57,0.0278,0.143,0,0,0,0,0,0.408 +1,0.609,0.0624,0.295,0,0,0,0,0,0.417 +1,0.649,0.14,0.427,0,0,0,0,0,0.149 +0.667,0.62,0.129,0.299,0,0,0,0,0,0.382 +0.667,0.62,0.153,0.291,0,0,0.163,0.283,0.25,0.0443 +0.667,0.62,0.167,0.279,0,0,0.383,0.183,0,0.133 +0.333,0.591,0.0986,0.16,0,0,0.382,0,0,0 +0.333,0.591,0.114,0.159,0,0,0.716,0,0,0 +0.667,0.62,0.239,0.269,0,0,0.491,0,0,0.0886 +0.667,0.601,0.14,0.162,0,0,1,0,0.25,0.0443 +1,0.671,0.276,0.294,0,0,0.112,0,0,0.0886 +0.667,0.702,0.285,0.35,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0.25,0.0886 +0.667,0.702,0.438,0.569,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0.0443 +0.667,0.58,0.16,0.203,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0.212 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0309 +1,0.56,0.0193,0.0506,0,0,0,0,0,0.235 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.266 +1,0.57,0.0278,0.143,0,0,0,0,0,0.0293 +1,0.609,0.0624,0.295,0,0,0,0,0,0.305 +1,0.62,0.0991,0.301,0,0,0,0,0.533,0.482 +1,0.649,0.185,0.424,0,0,0,0,0.717,0.263 +0.667,0.62,0.153,0.291,0,0,0,0,0,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0.177 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.133 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.0443 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.177 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.0886 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.0443 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.0443 +0.333,0.637,0.177,0.251,0,0,0,0,0,0.0443 +0.667,0.702,0.438,0.569,0,0,0,0,0.0333,0.0886 +1,0.741,0.763,0.905,0,0,0,0,0.217,0 +1,0.679,0.704,0.821,0,0,0,0,0,0.113 +1,0.618,0.444,0.51,0,0,0,0,0,0.15 +1,0.568,0.141,0.183,0,0,0,0,0,0.208 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0314 +1,0.585,0.0368,0.172,0,0,0,0,0,0.315 +1,0.649,0.0963,0.427,0,0,0,0,0,0.0443 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0443 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0443 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.31 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.443 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.177 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.0886 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.355 +0.333,0.632,0.203,0.309,0,0,0,0,0,0.154 +0.333,0.621,0.248,0.335,0,0,0,0,0,0.266 +0.667,0.64,0.456,0.564,0,0,0,0,0,0.0298 +0.667,0.599,0.278,0.356,0,0,0,0,0,0.0895 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.204 +0.667,0.57,0.0296,0.143,0,0,0,0,0.25,0.504 +1,0.633,0.0786,0.417,0,0,0,0,0,0.156 +1,0.649,0.0963,0.427,0,0,0,0,0,0.238 +1,0.649,0.114,0.424,0,0,0,0,0,0.57 +0.667,0.62,0.0905,0.291,0,0,0,0,0.783,0.537 +0.333,0.591,0.0577,0.164,0,0,0,0,0.217,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.177 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.133 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0886 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.133 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.135 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.587 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.496 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0295 +0.667,0.64,0.456,0.564,0,0,0,0,0,0.16 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.57,0.0296,0.143,0,0,0,0,0.467,0.193 +1,0.609,0.0577,0.295,0.154,0.0333,0,0,0,0.354 +0.333,0.591,0.0427,0.175,0.716,1,0,0,0,0.0443 +0.333,0.591,0.0486,0.174,0.598,0.433,0,0,0,0.133 +0.333,0.591,0.0532,0.17,0.32,0,0,0,0,0.19 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.283 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.295 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0.388 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0.133 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.432 +0.333,0.616,0.0938,0.172,0,0,0,0,0.25,0.147 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0443 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0886 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.248 +0.667,0.601,0.236,0.307,0,0,0,0,0,0.127 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.071 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.36 +1,0.57,0.0296,0.143,0,0,0,0,0,0.103 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.177 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0886 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.177 +0.333,0.616,0.0938,0.172,0,0,0.083,0.0333,0,0.31 +0.333,0.632,0.113,0.2,0,0,0.199,0.2,0,0.121 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.0443 +0.333,0.632,0.203,0.309,0,0,0,0,0,0.133 +0.333,0.621,0.248,0.335,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0.177 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0.0443 +1,0.56,0.0165,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.078 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0886 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.133 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0.0761,0.0333,0,0.133 +0.333,0.591,0.0604,0.16,0,0,0.427,0.433,0,0.133 +0.333,0.591,0.0669,0.159,0,0,0.64,0,0,0.177 +0.333,0.591,0.0702,0.159,0,0,0.596,0,0,0.355 +0.333,0.601,0.0774,0.162,0,0,0.596,0,0,0.0443 +0.333,0.616,0.0938,0.172,0,0,0.451,0,0,0 +0.667,0.702,0.21,0.35,0,0,0.64,0,0,0.0443 +0.667,0.712,0.28,0.453,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0886 +0.667,0.64,0.456,0.564,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0315 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.369 +1,0.57,0.0278,0.143,0,0,0,0,0,0.148 +0.667,0.562,0.0181,0.0495,0.109,0.0333,0,0,0,0.0443 +1,0.591,0.0586,0.175,0.831,1,0,0,0.25,0.399 +0.667,0.591,0.0737,0.174,0.169,0.433,0,0,0,0.251 +0.667,0.62,0.153,0.291,0,0,0,0,0,0.379 +0.667,0.62,0.167,0.279,0,0,0,0,0.5,0.266 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.462 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.091 +0.333,0.632,0.152,0.2,0,0,0,0,0,0.0443 +0.333,0.637,0.177,0.251,0,0,0,0,0,0.0886 +0.333,0.632,0.228,0.309,0,0,0,0,0.75,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0.068 +0.667,0.64,0.475,0.564,0,0,0,0,0,0.312 +0.667,0.599,0.302,0.356,0,0,0,0,0,0.1 +0.667,0.568,0.141,0.183,0,0,0,0,0,0.117 +1,0.558,0.0637,0.099,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0795 +1,0.57,0.0278,0.143,0,0,0,0,0,0.361 +1,0.585,0.0403,0.172,0,0,0,0,0,0.0443 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0.199 +0.667,0.591,0.0737,0.174,0,0,0,0,0.0333,0.255 +0.333,0.591,0.0855,0.17,0,0,0,0,0.217,0.0886 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.0333,0.0886 +0.667,0.62,0.21,0.269,0,0,0,0,0.467,0.0886 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.355 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.0886 +1,0.671,0.276,0.294,0,0,0,0,0,0.0886 +0.667,0.702,0.285,0.35,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0 +0.333,0.632,0.228,0.309,0,0,0,0,0,0.286 +1,0.681,0.514,0.62,0,0,0,0,0,0.212 +1,0.64,0.475,0.564,0,0,0,0,0,0.358 +1,0.599,0.302,0.356,0,0,0,0,0,0.136 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +1,0.56,0.0224,0.0798,0,0,0,0,0.217,0.164 +1,0.57,0.0296,0.143,0,0,0,0,0,0.313 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.559 +0.667,0.591,0.0427,0.175,0.377,0.533,0,0,0,0 +0.667,0.62,0.0813,0.299,0.179,0.933,0,0,0,0.0443 +0.667,0.62,0.0905,0.291,0.665,0.783,0.282,0.533,0.0333,0.0443 +1,0.649,0.142,0.394,0.252,0.933,0.263,0.4,0.217,0.0886 +1,0.649,0.149,0.382,0,0,0.739,0,0,0.0443 +1,0.62,0.118,0.269,0.275,0.283,0.18,0,0,0.0886 +1,0.62,0.125,0.269,0.64,1,0,0,0,0.257 +0.333,0.601,0.0774,0.162,0,0.183,0,0,0.5,0.177 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.177 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.0443 +0.667,0.637,0.148,0.251,0,0,0,0,0,0.0886 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0443 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.64,0.456,0.564,0,0,0,0,0,0.143 +1,0.58,0.147,0.203,0,0,0,0,0,0.0505 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0754 +1,0.585,0.0368,0.172,0,0,0,0,0,0.348 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.506 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.242 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.205 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.305 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.166 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.385 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.133 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.399 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.533,0 +0.333,0.637,0.148,0.251,0,0,0,0,0.467,0.266 +0.333,0.632,0.203,0.309,0,0,0,0,0,0.154 +0.333,0.621,0.248,0.335,0,0,0,0,0,0.407 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.57,0.0296,0.143,0,0,0,0,0,0.41 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0577,0.164,0,0,0,0,0,0.0886 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0.0443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.222 +0.667,0.671,0.172,0.294,0,0,0,0,0.25,0.0886 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0443 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.133 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0886 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.64,0.456,0.564,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0297 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.193 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.31 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0443 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.222 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.177 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.355 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.31 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0.148,0.283,0,0.0443 +0.667,0.712,0.28,0.453,0,0,0.477,0.417,0,0.133 +0.667,0.632,0.203,0.309,0,0,0,0,0,0.213 +0.667,0.621,0.248,0.335,0,0,0,0,0,0.0832 +0.667,0.601,0.236,0.307,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.119 +1,0.57,0.0296,0.143,0,0,0,0,0,0.748 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.353 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0807 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.266 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.177 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0443 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0.25,0.0886 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0886 +1,0.788,0.413,0.655,0.39,0.533,0,0,0,0.251 +1,0.772,0.578,0.829,0.75,0.683,0.55,0.7,0,0.218 +1,0.741,0.713,0.905,0.373,0,0.515,0,0,0.0942 +1,0.679,0.676,0.821,0,0,0.441,0,0,0.196 +1,0.599,0.278,0.356,0,0,0.27,0,0,0 +1,0.568,0.123,0.183,0,0,0.43,0,0,0 +1,0.558,0.0637,0.099,0,0,0.512,0,0,0 +1,0.56,0.0265,0.0578,0,0,0.347,0,0,0.0288 +1,0.56,0.02,0.0495,0,0,0,0,0,0.0719 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0.266 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.0886 +1,0.57,0.0278,0.143,0,0,0,0,0.0333,0.133 +0.667,0.585,0.0403,0.172,0,0,0.574,0.533,0.967,0.0443 +1,0.62,0.0991,0.301,0,0,0.422,0.4,0,0.266 +0.667,0.591,0.0737,0.174,0,0,0.281,0,0,0.0443 +0.333,0.591,0.0855,0.17,0,0,0.434,0,0.283,0.0443 +0.667,0.62,0.167,0.279,0,0,0.596,0,0.467,0.0443 +0.667,0.62,0.179,0.271,0,0,0.188,0,0,0.133 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.0886 +0.333,0.591,0.129,0.159,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.326,0.467,0,0 +0.333,0.632,0.228,0.309,0,0,0.512,0,0,0.0443 +0.333,0.621,0.266,0.335,0,0,0.534,0,0.25,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0 +0.667,0.58,0.16,0.203,0,0,0,0,0,0 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0.0758 +1,0.62,0.0991,0.301,0,0,0,0,0,0.309 +0.667,0.62,0.129,0.299,0,0,0,0,0,0.381 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.121 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.614 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.105 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.0443 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.399 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.0443 +0.667,0.702,0.285,0.35,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0.207,0.0333,0,0,0,0.569 +1,0.772,0.649,0.829,0.589,1,0,0,0,0.078 +1,0.741,0.763,0.905,0,0.433,0,0,0,0.0443 +1,0.679,0.704,0.821,0,0,0,0,0,0.0886 +1,0.58,0.16,0.203,0,0,0,0,0,0.172 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0293 +1,0.57,0.0296,0.143,0,0,0,0,0,0.16 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0.0333,0.0443 +0.333,0.591,0.0669,0.159,0,0,0,0,0.967,0.0886 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0443 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.133 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.133 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.443 +0.667,0.712,0.28,0.453,0,0,0,0,0.283,0 +0.667,0.702,0.39,0.569,0,0,0,0,0.217,0.0443 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.266 +0.667,0.64,0.456,0.564,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.116,0.0333,0,0 +1,0.565,0.0695,0.116,0,0,0.0678,0.667,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.0443 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.0755 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.339 +0.667,0.62,0.0996,0.279,0,0,0,0,0.25,0.353 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.355 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.355 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.177 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0443 +0.333,0.616,0.0938,0.172,0.542,0.783,0,0,0,0.0443 +0.667,0.702,0.21,0.35,0.623,0.683,0,0,0,0.162 +0.667,0.712,0.28,0.453,0.742,0,0,0,0,0.172 +0.667,0.702,0.39,0.569,0.706,0,0,0,0.25,0.0443 +0.667,0.681,0.481,0.62,0.574,0,0,0,0,0.0886 +0.667,0.64,0.456,0.564,0.154,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0281 +1,0.585,0.0368,0.172,0,0,0,0,0.0333,0.309 +1,0.62,0.0695,0.301,0,0,0.16,0.783,0.217,0.513 +1,0.62,0.0813,0.299,0,0,0,0.633,0,0.548 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0.12 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0443 +0.333,0.601,0.0774,0.162,0,0,0,0,0.217,0.0443 +0.333,0.616,0.0938,0.172,0,0,0,0,0.25,0.133 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.177 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.266 +0.667,0.702,0.39,0.569,0.26,0.283,0,0,0,0.0443 +0.667,0.681,0.481,0.62,0.623,1,0,0,0,0.101 +0.667,0.64,0.456,0.564,0.734,0.183,0,0,0.0333,0.239 +0.667,0.599,0.278,0.356,0,0,0,0,0.467,0.0443 +0.667,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0279 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0.35 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.0886 +0.333,0.562,0.0159,0.0495,0.32,0.283,0,0,0,0.0443 +0.333,0.591,0.0486,0.174,0.742,1,0,0,0,0.177 +0.333,0.591,0.0532,0.17,0.627,0.183,0,0,0,0.177 +0.333,0.591,0.0577,0.164,0.621,0,0,0,0,0 +0.667,0.62,0.105,0.271,0.723,0,0,0,0,0.0443 +0.667,0.62,0.118,0.269,0.71,0,0,0,0,0.133 +0.667,0.62,0.125,0.269,0.651,0,0,0,0,0.0886 +0.333,0.601,0.0774,0.162,0.588,0,0,0,0,0.133 +0.333,0.616,0.0938,0.172,0.915,0,0,0,0,0.0886 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.355 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0886 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.64,0.456,0.564,0,0,0,0,0,0.0443 +0.667,0.58,0.147,0.203,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0324 +1,0.56,0.0224,0.0798,0,0,0,0,0.0333,0.179 +1,0.578,0.0433,0.236,0,0,0,0,0.467,0.124 +1,0.609,0.0577,0.295,0,0,0,0,0,0.222 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.133 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0 +0.667,0.591,0.0532,0.17,0,0,0,0,0.5,0.0886 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0443 +1,0.649,0.169,0.378,0,0,0,0,0,0.266 +1,0.649,0.179,0.379,0,0,0,0,0,0.487 +1,0.679,0.2,0.387,0,0,0,0,0,0.31 +1,0.726,0.25,0.417,0,0,0,0,0,0.133 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.222 +0.333,0.637,0.148,0.251,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.621,0.248,0.335,0,0,0,0,0,0 +0.333,0.601,0.236,0.307,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0 +0.667,0.565,0.0695,0.116,0,0,0,0,0,0.0443 +0.667,0.56,0.0409,0.0743,0,0,0,0,0.25,0.0886 +1,0.558,0.0349,0.066,0,0,0,0,0,0.0443 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0.5,0.0443 +1,0.62,0.129,0.299,0,0,0,0,0,0.0895 +1,0.62,0.153,0.291,0,0,0,0,0,0.191 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0.0443 +0.333,0.591,0.0986,0.16,0,0,0,0,0.5,0.222 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.222 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.266 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.31 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.199 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.222 +0.667,0.712,0.335,0.453,0,0,0,0,0,0.226 +0.333,0.632,0.228,0.309,0,0,0,0,0,0.236 +1,0.741,0.763,0.905,0,0,0,0,0,0.0443 +1,0.679,0.704,0.821,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.56,0.0265,0.0578,0,0,0,0,0,0.627 +1,0.56,0.02,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.121 +1,0.585,0.0403,0.172,0,0,0,0,0,0.317 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0.195 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0.139 +0,0.562,0.0181,0.0495,0,0,0,0,0.0333,0.0886 +0.333,0.591,0.0927,0.164,0,0,0,0,0.217,0.0443 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.0886 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.133 +0.333,0.591,0.129,0.159,0,0,0,0,0.5,0.0443 +0.667,0.64,0.263,0.274,0,0,0.0871,0.0333,0,0.177 +0.667,0.671,0.276,0.294,0,0,0.396,0.667,0.0333,0.266 +0.667,0.702,0.285,0.35,0,0,0.0318,0,0.217,0.0443 +0.667,0.712,0.335,0.453,0.0885,0.0333,0,0,0,0 +0.667,0.702,0.438,0.569,0.75,1,0,0,0,0 +0.667,0.621,0.266,0.335,0,0.433,0,0,0,0 +0.667,0.601,0.247,0.307,0,0,0,0,0,0 +1,0.58,0.16,0.203,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.318 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.342 +1,0.578,0.0433,0.236,0,0,0,0,0,0.203 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.392 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.102 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.237 +0.667,0.591,0.0532,0.17,0,0,0,0,0.0333,0.149 +0.667,0.62,0.0996,0.279,0,0,0,0,1,0.222 +0.333,0.591,0.0604,0.16,0,0,0,0,0.467,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0443 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0886 +0.667,0.64,0.139,0.274,0,0,0.207,0.233,0,0.266 +1,0.671,0.172,0.294,0,0,0.408,0,0,0.121 +1,0.772,0.307,0.501,0,0,0.573,0,0,0.0886 +0.667,0.712,0.28,0.453,0,0,0.212,0,0,0.0443 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.133 +0.333,0.621,0.248,0.335,0,0,0,0,0,0.0886 +0.667,0.64,0.456,0.564,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0935 +1,0.57,0.0296,0.143,0,0,0,0,0,0.196 +1,0.585,0.0368,0.172,0,0,0,0,0,0.0717 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0301 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.335 +0.667,0.62,0.0996,0.279,0.426,0.533,0,0,0,0.576 +0.333,0.591,0.0604,0.16,0.126,0.933,0,0,0,0.0443 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.399 +0.667,0.671,0.172,0.294,0,0,0,0,0.5,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.266 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.443 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +0.667,0.64,0.456,0.564,0.465,0.533,0,0,0,0.0443 +0.667,0.599,0.278,0.356,0.273,0.933,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0886 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.395 +1,0.57,0.0296,0.143,0,0,0,0,0,0.0306 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.341 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.409 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.393 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0991 +0.667,0.62,0.105,0.271,0,0,0.119,0.0333,0,0.192 +0.667,0.62,0.118,0.269,0,0,0.674,0.667,0,0.426 +0.667,0.62,0.125,0.269,0,0,0.102,0,0.533,0.0443 +0.333,0.601,0.0774,0.162,0,0,0,0,0.467,0.0443 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.0443 +1,0.772,0.307,0.501,0,0,0,0,0.25,0 +1,0.788,0.413,0.655,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0443 +1,0.679,0.676,0.821,0.437,0.533,0,0,0,0 +1,0.599,0.278,0.356,0.635,0.933,0,0,0,0 +1,0.568,0.123,0.183,0.729,0,0,0,0,0 +1,0.559,0.0346,0.0743,0.154,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.177 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.0886 +1,0.569,0.0294,0.147,0,0,0,0,0,0.0443 +1,0.585,0.0366,0.177,0,0,0,0,0,0.133 +1,0.59,0.0424,0.184,0,0,0,0,0,0.0443 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.31 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.31 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.266 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0.0886 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.414 +1,0.785,0.409,0.946,0.307,0.4,0,0,0,0.0443 +0.667,0.631,0.202,0.339,0.441,1,0,0,0,0.0443 +1,0.562,0.0159,0.0495,0,0.183,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.136,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.987 +1,0.569,0.0294,0.147,0,0,0,0,0,0.393 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.199 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.59,0.0574,0.175,0,0,0,0,0.533,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.65,0.0443 +0.333,0.631,0.112,0.301,0,0,0,0,0.433,0.177 +0.667,0.711,0.278,0.647,0.618,0.65,0,0,0,0.0443 +0.667,0.7,0.387,0.629,0.343,0.933,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.0443 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0,0,0,0.138 +1,0.567,0.122,0.183,0,0,0,0,0,0.165 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0754 +1,0.562,0.0181,0.0495,0,0,0,0,0.533,0.685 +1,0.585,0.04,0.177,0,0,0,0,0.833,0.272 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0.392 +0.667,0.59,0.0732,0.185,0,0,0,0,0.533,0.291 +0.333,0.59,0.0849,0.181,0,0,0,0,0.283,0.769 +0.333,0.59,0.092,0.175,0,0,0,0,0,0.0494 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.222 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.333,0.616,0.146,0.237,0,0,0,0,0,0.231 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.266 +0.667,0.711,0.332,0.647,0,0,0,0,0,0.0886 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.0443 +1,0.68,0.51,0.515,0,0,0,0,0,0 +1,0.639,0.471,0.394,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0.0764 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.286,0.467,0,0.0443 +1,0.559,0.0192,0.051,0,0,0.483,0,0,0.222 +1,0.559,0.0212,0.0816,0,0,0.45,0,0,0.0886 +1,0.569,0.0277,0.147,0,0,0.646,0,0,0.151 +1,0.608,0.0619,0.305,0,0,0.519,0,0,0.313 +1,0.618,0.0983,0.318,0,0,0.502,0,0,0.112 +1,0.618,0.128,0.321,0,0,0.87,0,0,0 +1,0.618,0.152,0.312,0,0,0.14,0,0,0.485 +1,0.618,0.166,0.3,0,0,0,0,0,0.0443 +0.667,0.59,0.0979,0.171,0,0,0,0,0.267,0.0443 +1,0.618,0.209,0.289,0,0,0,0,0,0.329 +1,0.647,0.347,0.421,0,0,0,0,0,0.163 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.819 +1,0.724,0.402,0.612,0,0,0,0,0,0.177 +1,0.77,0.415,0.804,0,0,0,0,0.0333,0 +0.333,0.636,0.175,0.348,0,0,0,0,0.233,0 +0.333,0.631,0.227,0.339,0,0,0,0,0,0 +0.333,0.621,0.264,0.282,0.512,0.533,0,0,0,0 +0.333,0.6,0.245,0.222,0.149,1,0,0,0,0.0972 +0.667,0.562,0.0181,0.0495,0,0.05,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.029 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.0602 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.325 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.0443 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.59,0.0424,0.184,0,0,0.083,0.15,0,0 +1,0.618,0.0807,0.321,0,0,0.459,0.55,0,0.0886 +1,0.618,0.0898,0.312,0,0,0.55,0,0,0 +0.667,0.59,0.0574,0.175,0,0,0.624,0,0,0.266 +0.667,0.59,0.06,0.171,0,0,0.337,0,0,0.222 +0.667,0.59,0.0665,0.169,0,0,0.217,0,0,0.0443 +0.667,0.59,0.0697,0.173,0.26,0.4,0.545,0,0,0.625 +0.667,0.639,0.138,0.338,0.505,1,0,0,0,0.148 +0.667,0.67,0.17,0.425,0,0.183,0,0,0,0.355 +0.667,0.7,0.208,0.553,0,0,0,0,0.65,0.266 +0.667,0.711,0.278,0.647,0.456,0.65,0,0,0.717,0 +0.667,0.7,0.387,0.629,0.262,1,0.0761,0.65,0,0.0886 +0.667,0.68,0.477,0.515,0,0.2,0,0.767,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0.0443 +0.667,0.58,0.146,0.197,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.344,0.467,0,0.0886 +0.333,0.59,0.0483,0.185,0,0,0.654,0,0,0.0886 +0.667,0.618,0.0898,0.312,0,0,0.53,0,0,0.133 +0.667,0.618,0.0989,0.3,0,0,0.362,0,0,0.167 +0.667,0.618,0.104,0.292,0,0,0.454,0,0,0.0521 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0886 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.177 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.266 +0.333,0.616,0.0931,0.237,0.181,0.15,0,0,0,0.177 +0.333,0.631,0.112,0.301,0.642,1,0,0,0,0.177 +0.333,0.636,0.147,0.348,0,0.433,0,0,0,0.222 +0.333,0.631,0.202,0.339,0,0,0,0,0,0.0443 +0.333,0.621,0.246,0.282,0,0,0,0,0,0 +0.333,0.6,0.234,0.222,0,0,0,0,0,0.0897 +0.667,0.58,0.146,0.197,0,0,0,0,0,0.198 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.186 +1,0.559,0.0177,0.051,0,0,0,0,0,0.177 +1,0.559,0.0223,0.0816,0,0,0.131,0.15,0,0.0975 +1,0.577,0.043,0.245,0,0,0.0595,0.317,0,0.421 +1,0.585,0.0366,0.177,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0.15,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0.383,0.0443 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0886 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0886 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.177 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.477 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.105 +1,0.724,0.248,0.612,0,0,0,0,0,0.234 +1,0.77,0.304,0.804,0.154,0.15,0,0,0.533,0.126 +0.333,0.636,0.147,0.348,0.608,1,0,0,0,0.0886 +0.667,0.7,0.387,0.629,0,0.7,0,0,0,0.222 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0.0718 +1,0.598,0.276,0.345,0,0,0,0,0,0.266 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.262 +1,0.559,0.0223,0.0816,0,0,0,0,0.4,0.0886 +1,0.577,0.043,0.245,0,0,0,0,0.133,0.236 +0.667,0.585,0.0366,0.177,0,0,0,0,0.15,0.582 +0.333,0.59,0.0424,0.184,0.392,0.4,0.123,0.15,0.383,0.0443 +0.333,0.59,0.0483,0.185,0.454,1,0.712,0.55,0,0 +0.333,0.59,0.0528,0.181,0,0.183,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0.153,0.15,0,0,0,0.177 +0.333,0.59,0.0665,0.169,0.714,1,0,0,0,0.487 +0.333,0.59,0.0697,0.173,0,0.433,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.177 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.196 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.746 +0.667,0.711,0.278,0.647,0,0,0,0,0.267,0.338 +0.667,0.7,0.387,0.629,0.663,0.65,0,0,0,0.268 +0.667,0.68,0.477,0.515,0.309,0.933,0,0,0,0.0861 +0.667,0.639,0.452,0.394,0,0,0,0,0,0.154 +1,0.616,0.405,0.493,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.278 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.644 +1,0.569,0.0294,0.147,0,0,0,0,0,0.274 +1,0.585,0.0366,0.177,0,0,0.0401,0.233,0,0.0886 +1,0.59,0.0424,0.184,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.0443 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0 +0.667,0.59,0.0574,0.175,0,0,0,0,0,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0886 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0443 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.0886 +0.333,0.636,0.147,0.348,0,0,0.426,0.65,0,0 +0.333,0.631,0.202,0.339,0,0,0,0.283,0,0 +0.333,0.621,0.246,0.282,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.559,0.0173,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.267,0.266 +1,0.585,0.04,0.177,0,0,0,0,0,0.222 +1,0.59,0.0582,0.184,0,0,0,0,0,0.192 +1,0.59,0.0732,0.185,0,0,0,0,0,0.405 +1,0.618,0.152,0.312,0,0,0,0,0,0.226 +1,0.618,0.166,0.3,0,0,0,0,0,0.107 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0,0.562,0.0181,0.0495,0.54,0.533,0,0,0,0.133 +0.333,0.6,0.139,0.194,0.386,1,0,0,0,0 +0.667,0.67,0.274,0.425,0,0.05,0,0,0,0.0886 +0.333,0.631,0.15,0.301,0,0,0,0,0,0.222 +0.667,0.711,0.332,0.647,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0 +0.333,0.621,0.264,0.282,0,0,0,0,0,0.112 +0.333,0.6,0.245,0.222,0,0,0,0,0,0.41 +0.667,0.58,0.159,0.197,0,0,0,0,0,0.144 +0.667,0.564,0.079,0.116,0,0,0,0,0,0.184 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.177 +1,0.585,0.04,0.177,0,0,0,0,0,0.246 +0.667,0.618,0.0983,0.318,0,0,0,0,0,0.212 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.163 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0 +0.333,0.59,0.092,0.175,0,0,0,0,0,0.133 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.133 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.133 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.289 +0.333,0.631,0.15,0.301,0,0,0,0,0,0.486 +0.667,0.711,0.332,0.647,0,0,0,0,0.267,0.0886 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.127 +1,0.739,0.756,0.747,0,0,0,0,0,0.0883 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0886 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0.0443 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.483 +0.333,0.585,0.0366,0.177,0,0,0,0,0,0.386 +0.667,0.59,0.0424,0.184,0,0,0,0,0.15,0.101 +0.667,0.618,0.0807,0.321,0,0,0,0,0.383,0.133 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0443 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.133 +0.667,0.59,0.0697,0.173,0,0,0.303,0.15,0,0.222 +0.667,0.6,0.0769,0.194,0,0,0.0871,0.55,0,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.631,0.112,0.301,0,0,0,0,0,0.31 +1,0.711,0.278,0.647,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.113 +0.667,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.533,0.41 +1,0.608,0.0573,0.305,0.264,0.4,0,0,0,0.313 +1,0.647,0.0955,0.452,0.365,1,0,0,0,0.0554 +0.667,0.618,0.0807,0.321,0,0.183,0,0,0,0.127 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.198 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.222 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.133 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0886 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.266 +0.667,0.711,0.278,0.647,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.132 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.0886 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.204 +1,0.564,0.0691,0.116,0,0,0,0,0,0.204 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0886 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.585,0.0366,0.177,0,0,0,0,0,0.0443 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.133 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.745 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.192 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0886 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.133 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.177 +0.333,0.6,0.0769,0.194,0,0,0,0,0.15,0.0886 +0.333,0.616,0.0931,0.237,0,0,0,0,0.117,0.222 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.133 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.28 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.27 +1,0.739,0.708,0.747,0,0,0,0,0,0.205 +0.667,0.639,0.452,0.394,0,0,0,0,0,0.333 +1,0.616,0.405,0.493,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.2 +1,0.585,0.0366,0.177,0,0,0,0,0,0.385 +1,0.59,0.0424,0.184,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.0837 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.307 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.244 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.332 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0886 +1,0.647,0.177,0.421,0,0,0,0,0,0.133 +0.667,0.639,0.138,0.338,0,0,0,0,0.4,0.222 +0.667,0.67,0.17,0.425,0,0,0.314,0.4,0.133,0.266 +0.667,0.7,0.208,0.553,0,0,0.55,0.0667,0,0 +0.667,0.711,0.278,0.647,0,0,0.364,0,0,0.0886 +0.667,0.7,0.387,0.629,0,0,0.34,0,0,0.213 +0.667,0.68,0.477,0.515,0,0,0.506,0,0,0.0443 +0.667,0.639,0.452,0.394,0,0,0.373,0.233,0,0.0697 +1,0.616,0.405,0.493,0,0,0.318,0,0,0.179 +1,0.57,0.175,0.249,0,0,0.119,0,0,0.141 +1,0.557,0.0534,0.099,0,0,0,0,0,0.134 +1,0.557,0.0287,0.066,0,0,0,0,0,0.321 +1,0.557,0.017,0.0495,0,0,0,0,0,0.187 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.234 +1,0.559,0.0177,0.051,0,0,0,0,0,0.222 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.427 +1,0.569,0.0294,0.147,0,0,0,0,0,0.454 +1,0.585,0.0366,0.177,0,0,0,0,0,0.232 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.15,0.091 +0.667,0.618,0.0989,0.3,0.149,0.15,0,0,0.933,0.0443 +0.667,0.618,0.104,0.292,0.701,1,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0.433,0,0,0,0.0886 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.266 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0443 +0.333,0.616,0.0931,0.237,0,0,0,0,0.15,0 +0.333,0.631,0.112,0.301,0,0,0,0,0.383,0.0443 +0.333,0.636,0.147,0.348,0,0,0,0,0,0.0443 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.17 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0.014 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.31 +1,0.559,0.0212,0.0816,0,0,0,0,0,0.86 +1,0.569,0.0277,0.147,0,0,0,0,0,0.275 +1,0.585,0.04,0.177,0,0,0,0,0,0.174 +1,0.59,0.0582,0.184,0,0,0,0,0,0.0459 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.472 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.398 +0.667,0.59,0.0979,0.171,0,0,0,0,0.267,0.12 +1,0.618,0.209,0.289,0,0,0,0,0,0.0583 +1,0.618,0.237,0.297,0,0,0,0,0,0.31 +1,0.639,0.261,0.338,0,0,0,0,0,0.0443 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.0745 +1,0.7,0.283,0.553,0.499,0.533,0.0996,0.0333,0,0.46 +0.667,0.711,0.332,0.647,0.612,1,0.444,0.2,0,0 +0.667,0.7,0.435,0.629,0,0.05,0,0,0,0.0443 +0.667,0.621,0.264,0.282,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0.205 +1,0.564,0.079,0.116,0,0,0,0,0,0.143 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0.0443 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.153 +0.333,0.59,0.092,0.175,0,0,0,0,0,0.0867 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.508 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.222 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.0886 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.783,0.222 +0.333,0.631,0.15,0.301,0,0,0,0,0.85,0.133 +0.333,0.636,0.175,0.348,0,0,0,0,0,0.133 +0.333,0.631,0.227,0.339,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0.0443 +0.667,0.6,0.245,0.222,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.42 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0751 +1,0.618,0.069,0.318,0,0,0,0,0,0.0886 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.0443 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.133 +0.667,0.59,0.0574,0.175,0,0,0,0,0,0.0443 +0.667,0.59,0.06,0.171,0,0,0,0,0.65,0.0737 +0.333,0.59,0.0665,0.169,0,0,0,0,1,0.133 +0.333,0.59,0.0697,0.173,0,0,0,0,0.533,0.266 +0.667,0.639,0.138,0.338,0,0,0,0,0.15,0.0886 +0.667,0.67,0.17,0.425,0,0,0,0,0.117,0.355 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.355 +0.333,0.631,0.202,0.339,0,0,0,0,0,0 +0.333,0.621,0.246,0.282,0,0,0,0,0,0.207 +0.667,0.6,0.234,0.222,0,0,0,0,0,0.084 +1,0.598,0.276,0.345,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.186 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.259 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.267,0.0886 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.31 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0886 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.399 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.177 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.199 +0.667,0.7,0.208,0.553,0,0,0,0,0.15,0.132 +0.667,0.711,0.278,0.647,0.301,0.4,0,0,0.117,0.133 +0.667,0.7,0.387,0.629,0.699,1,0,0,0,0 +0.667,0.68,0.477,0.515,0.64,0.183,0,0,0,0 +0.667,0.6,0.234,0.222,0.642,0,0,0,0,0.0886 +1,0.598,0.276,0.345,0.674,0,0,0,0,0 +1,0.564,0.0691,0.116,0.853,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.569,0.0294,0.147,0,0,0,0,0,0.0886 +1,0.608,0.0573,0.305,0,0,0,0,0,0.0886 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.59,0.0528,0.181,0.586,0.65,0,0,0,0 +0.333,0.59,0.0574,0.175,0,1,0,0,0,0.0443 +0.333,0.59,0.06,0.171,0,0.2,0,0,0,0.0443 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0886 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.133 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0 +0.333,0.631,0.112,0.301,0,0,0.212,0.4,0.267,0.0886 +0.667,0.711,0.278,0.647,0,0,0.212,0.3,0.4,0.133 +0.667,0.7,0.387,0.629,0,0,0,0,0.683,0.133 +0.333,0.621,0.246,0.282,0,0,0,0,0,0.0886 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.0443 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0.133 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.15,0 +0.333,0.585,0.0366,0.177,0,0,0,0,0.117,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0.212,0.467,0,0.402 +0.333,0.59,0.0528,0.181,0,0,0.646,0,0,0.0443 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.266 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.355 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.137 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.136 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0886 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0.267,0.0886 +0.333,0.636,0.147,0.348,0,0,0,0,0,0 +0.333,0.631,0.202,0.339,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0.127,0.15,0,0 +1,0.598,0.276,0.345,0.158,0.15,0.624,1,0,0.0443 +1,0.564,0.0691,0.116,0.446,0.883,0,0.267,0,0 +1,0.559,0.0346,0.0743,0,0.433,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0.9,0.0443 +1,0.559,0.0151,0.0495,0,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.0443 +0.667,0.59,0.0424,0.184,0,0,0,0,0.15,0.0443 +0.667,0.59,0.0483,0.185,0,0,0,0,0.117,0.177 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.362 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.237 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.17 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.133 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.133 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.222 +0.333,0.616,0.0931,0.237,0,0,0,0,0.65,0.227 +1,0.77,0.304,0.804,0,0,0,0,0.433,0.411 +1,0.785,0.409,0.946,0,0,0,0,0,0.101 +0.667,0.7,0.387,0.629,0,0,0,0,0.15,0 +0.667,0.68,0.477,0.515,0,0,0,0,0.117,0 +1,0.639,0.452,0.394,0,0,0,0,0,0.133 +1,0.598,0.276,0.345,0,0,0,0,0,0.179 +1,0.564,0.0691,0.116,0,0.117,0,0,0,0.045 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.186,0.0333,0,0,0.533,0 +1,0.585,0.04,0.177,0.727,1,0,0,0.283,0 +0.667,0.59,0.0582,0.184,0.582,0.55,0,0,0,0.0443 +0.667,0.59,0.0732,0.185,0.154,0,0,0,0,0.0953 +0.667,0.59,0.0849,0.181,0,0,0,0,0.533,0.103 +0.667,0.618,0.166,0.3,0,0,0,0,0.833,0.177 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.222 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.355 +0.667,0.618,0.237,0.297,0,0,0,0,0,0.0886 +0.667,0.639,0.261,0.338,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0.133 +0.667,0.7,0.283,0.553,0,0,0.0595,0.0333,0,0 +0.667,0.711,0.332,0.647,0,0,0.387,0.2,0,0.0443 +0.667,0.7,0.435,0.629,0,0,0.407,0,0,0.607 +0.667,0.68,0.51,0.515,0,0,0.176,0,0,0.317 +0.667,0.6,0.245,0.222,0,0,0,0,0,0 +0.667,0.58,0.159,0.197,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.12 +1,0.618,0.128,0.321,0,0,0,0,0,0.0942 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.0886 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.222 +0.333,0.59,0.128,0.173,0,0,0,0,0.267,0.532 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.414 +0.333,0.616,0.146,0.237,0,0,0,0,0,0.239 +0.667,0.631,0.15,0.301,0,0,0,0,0.267,0.364 +1,0.711,0.332,0.647,0,0,0,0,0,0.177 +1,0.77,0.643,0.919,0,0,0.0913,0.283,0,0 +1,0.739,0.756,0.747,0,0,0.195,0.65,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0.0443 +1,0.598,0.3,0.345,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.145 +1,0.559,0.0223,0.0816,0,0,0,0,0.65,0.308 +1,0.577,0.043,0.245,0,0,0,0,0.433,0.399 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.267 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.214 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0443 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.222 +0.667,0.618,0.117,0.289,0,0,0,0,0.15,0 +1,0.618,0.124,0.297,0,0,0,0,0.383,0 +1,0.639,0.138,0.338,0,0,0,0,0,0.0886 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0.133 +0.667,0.631,0.112,0.301,0,0,0,0,0,0 +0.667,0.636,0.147,0.348,0.132,0.15,0,0,0,0 +0.667,0.631,0.202,0.339,0.712,1,0,0,0,0.222 +0.333,0.562,0.0159,0.0495,0,0.433,0,0,0,0.257 +0.667,0.639,0.452,0.394,0,0,0,0,0,0.152 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.33 +1,0.577,0.043,0.245,0,0,0,0,0.15,0.423 +1,0.631,0.078,0.433,0,0,0,0,0.533,0.139 +0.333,0.59,0.0424,0.184,0,0,0,0,0.117,0.197 +0.333,0.59,0.0483,0.185,0,0,0.0235,0.15,0,0.133 +0.333,0.59,0.0528,0.181,0,0,0.497,0.0833,0,0 +0.333,0.59,0.0574,0.175,0,0,0.58,0,0,0.0443 +0.333,0.59,0.06,0.171,0,0,0.407,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0.386,0,0,0.177 +0.667,0.618,0.124,0.297,0,0,0.455,0,0,0.222 +0.667,0.639,0.138,0.338,0,0,0.494,0,0.4,0.0443 +0.667,0.67,0.17,0.425,0,0,0.602,0,1,0.177 +0.667,0.7,0.208,0.553,0,0,0.581,0,0.517,0.222 +0.667,0.711,0.278,0.647,0,0,0.557,0,0,0 +0.667,0.7,0.387,0.629,0,0,0.686,0,0,0.133 +0.333,0.621,0.246,0.282,0,0,0.414,0,0.267,0 +0.333,0.6,0.234,0.222,0,0,0.322,0,0,0.14 +0.667,0.58,0.146,0.197,0,0,0.39,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.382 +1,0.577,0.043,0.245,0,0,0,0,0,0.194 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.0443 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.133 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.133 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.276 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.133 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.0443 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0.133 +1,0.618,0.124,0.297,0,0,0,0,0,0.266 +0.667,0.639,0.138,0.338,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.222 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.443 +0.667,0.711,0.278,0.647,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.222 +0.667,0.68,0.477,0.515,0,0,0.398,0.233,0,0.0886 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.15,0.145 +0.667,0.618,0.069,0.318,0,0,0,0,0.117,0.0967 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.177 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.222 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.31 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0886 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.222 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.266 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.0443 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.115 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.0443 +0.667,0.6,0.234,0.222,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.576 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.15,0 +0.667,0.608,0.0573,0.305,0.714,0.65,0,0,0.117,0.175 +0.667,0.618,0.069,0.318,0,0.933,0,0,0,0.144 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.177 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0443 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.177 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.6,0.0769,0.194,0,0,0,0,0.4,0.31 +0.667,0.67,0.17,0.425,0,0,0,0,0.683,0.0443 +0.333,0.631,0.112,0.301,0,0,0,0,0.267,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.0443 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.133 +0.667,0.621,0.246,0.282,0,0,0,0,0,0 +0.667,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.15 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.441 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0292 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0322 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.109 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.031 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.821 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.62 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.0886 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0.533,0.31 +0.667,0.836,0.372,0.596,0,0,0,0,1,0.177 +0.667,0.849,0.437,0.683,0,0,0,0,0.433,0.0443 +0.667,0.836,0.573,0.638,0,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0.12 +0.667,0.706,0.394,0.342,0,0,0,0,0,0.0787 +0.667,0.667,0.183,0.183,0,0,0,0,0,0.0443 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0.0443 +1,0.64,0.049,0.181,0,0,0,0,0,0.355 +1,0.647,0.0731,0.19,0,0,0,0,0,0.0443 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.266 +0.667,0.647,0.108,0.189,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.159 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.132 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.206 +0.333,0.679,0.189,0.253,0,0,0.286,0.233,0,0.133 +0.333,0.699,0.195,0.323,0,0,0.463,0,0,0.133 +0.333,0.705,0.228,0.366,0,0,0.705,0,0,0.133 +0.333,0.699,0.296,0.344,0,0,0.379,0,0,0 +0.333,0.686,0.345,0.277,0,0,0.379,0,0,0.266 +0.333,0.66,0.32,0.218,0,0,0.152,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0573 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.221 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0288 +1,0.621,0.0355,0.15,0,0,0,0,0,0.192 +1,0.719,0.074,0.313,0.354,0.533,0,0,0,0.402 +0.667,0.732,0.0895,0.33,0.612,1,0,0,0,0.197 +0.667,0.732,0.105,0.337,0,0.1,0,0,0,0.249 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.37 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.625 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0319 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.291 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.107 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.398 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.0886 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0.162 +0.667,0.797,0.224,0.457,0,0,0,0,0.533,0.497 +1,0.973,0.402,0.869,0,0,0,0,0.3,0.289 +1,0.993,0.541,1,0,0,0,0,0.267,0.355 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.0443 +0.667,0.706,0.363,0.342,0,0,0,0,0,0.0886 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.606 +1,0.621,0.0355,0.15,0,0,0,0,0,0.313 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.302 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.329 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.235 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.266 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.0443 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.443 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0886 +0.333,0.699,0.145,0.323,0,0,0,0,0.8,0.31 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.114 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.329 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.0443 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.0312 +0.667,0.634,0.189,0.196,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0303 +1,0.621,0.0355,0.15,0,0,0,0,0,0.215 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.187 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.0443 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.177 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.647,0.0888,0.182,0,0,0,0,0.267,0.133 +0.333,0.66,0.0982,0.204,0,0,0,0,0.0333,0.177 +0.333,0.679,0.12,0.253,0,0,0,0,1,0.0443 +0.667,0.836,0.273,0.596,0,0,0,0,0.367,0.267 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.121 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.468 +0.667,0.81,0.629,0.504,0.461,0.533,0,0,0,0.151 +1,0.66,0.306,0.218,0.45,1,0,0,0,0 +1,0.562,0.0159,0.0495,0,0.1,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.032 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.488 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.296 +0.667,0.647,0.0527,0.19,0,0,0,0,0.267,0.334 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.209 +0.333,0.647,0.0664,0.189,0.166,0.0333,0,0,0,0.38 +0.333,0.647,0.0724,0.183,0.704,1,0,0,0,0 +0.333,0.647,0.0759,0.178,0.132,0.6,0.271,0.533,0,0.0886 +0.333,0.647,0.0845,0.177,0,0,0.585,0.2,0,0.266 +0.333,0.647,0.0888,0.182,0,0,0.4,0,0,0.0443 +0.667,0.758,0.181,0.359,0,0,0.654,0,0,0.222 +0.667,0.797,0.224,0.457,0,0,0.4,0,0,0.177 +0.667,0.836,0.273,0.596,0,0,0.472,0,0,0 +0.667,0.849,0.366,0.683,0,0,0.553,0,0.533,0.0886 +0.667,0.836,0.51,0.638,0,0,0.127,0,0.583,0.133 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.316 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.157 +1,0.621,0.0327,0.15,0,0,0,0,0,0.233 +1,0.64,0.049,0.181,0,0,0,0,0,0.248 +1,0.647,0.0731,0.19,0,0,0,0,0,0.292 +1,0.732,0.168,0.337,0,0,0,0,0,0.493 +1,0.732,0.198,0.328,0,0,0,0,0,0.226 +1,0.818,0.317,0.449,0,0,0,0,0.0333,0.13 +0.667,0.732,0.233,0.307,0,0,0,0,0.233,0.221 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.266 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.0443 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.266 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.133 +0.333,0.699,0.195,0.323,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.533,0.0443 +0.333,0.699,0.296,0.344,0,0,0,0,0.0167,0 +0.333,0.686,0.345,0.277,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0.0304 +1,0.667,0.183,0.183,0,0,0,0,0,0.227 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0302 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.259 +1,0.654,0.0301,0.116,0,0,0,0,0.267,0.122 +0.667,0.68,0.0473,0.251,0,0,0,0,0,0.167 +0.667,0.64,0.049,0.181,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.177 +0.667,0.732,0.168,0.337,0,0,0,0,0,0.163 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.312 +0.667,0.732,0.217,0.316,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.222 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.443 +0.667,0.679,0.189,0.253,0,0,0,0,0,0.0886 +0.667,0.699,0.195,0.323,0,0,0,0,0,0.266 +0.667,0.849,0.437,0.683,0,0,0,0,0,0.0886 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.0886 +0.667,0.81,0.673,0.504,0,0,0,0,0,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0 +0.667,0.634,0.206,0.196,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +1,0.608,0.026,0.0829,0,0,0,0,0,0.432 +1,0.621,0.0355,0.15,0,0,0,0,0,0 +1,0.64,0.0449,0.181,0,0,0,0,0.0333,0.0886 +0.667,0.647,0.0527,0.19,0,0,0,0,0.8,0.0886 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.0886 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.0443 +0.667,0.647,0.0724,0.183,0,0,0,0,0.0333,0 +0.667,0.732,0.136,0.307,0,0,0,0,0.233,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.0443 +1,0.732,0.162,0.314,0,0,0,0,0,0.133 +1,0.758,0.181,0.359,0,0,0,0,0,0.0886 +1,0.797,0.224,0.457,0,0,0,0,0,0.133 +1,0.836,0.273,0.596,0,0,0,0,0,0.222 +1,0.849,0.366,0.683,0,0,0,0,0,0.0443 +0.667,0.699,0.263,0.344,0,0,0,0,0,0.0443 +0.667,0.686,0.322,0.277,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.374 +1,0.798,0.103,0.444,0,0,0,0,0.267,0.267 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.292 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.177 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0886 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0886 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.31 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.235 +0.333,0.66,0.0982,0.204,0,0,0,0,0.783,0.0443 +0.667,0.797,0.224,0.457,0,0,0,0,0.333,0.0886 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.0443 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.194 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.0443 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.133 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.0443 +0.667,0.706,0.363,0.342,0,0,0,0,0,0.131 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.236 +1,0.608,0.026,0.0829,0,0,0,0,0,0.112 +1,0.74,0.0747,0.351,0,0,0,0,0,0.842 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.267 +0.333,0.647,0.0527,0.19,0,0,0,0,0.267,0.31 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.176 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.0886 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0443 +0.333,0.647,0.0759,0.178,0.557,0.533,0,0,0,0.0443 +0.333,0.647,0.0845,0.177,0.633,1,0,0,0,0 +0.333,0.647,0.0888,0.182,0.725,0.1,0,0,0,0.137 +0.667,0.758,0.181,0.359,0.753,0,0,0,0,0.31 +0.667,0.679,0.12,0.253,0.362,0,0,0,0.533,0.133 +0.333,0.699,0.145,0.323,0,0,0,0,0.3,0 +1,0.993,0.541,1,0.282,0.283,0,0,0,0.31 +1,0.973,0.758,0.933,0.416,1,0,0,0,0.0886 +1,0.81,0.629,0.504,0.245,0.35,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0314 +1,0.608,0.026,0.0829,0,0,0,0,0,0.421 +0.667,0.68,0.0551,0.251,0,0,0,0,0.0333,0.496 +0.667,0.719,0.074,0.313,0,0,0,0,0.8,0.225 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.324 +0.667,0.732,0.105,0.337,0,0,0,0,0,0 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.0443 +0.667,0.732,0.129,0.316,0.537,0.533,0,0,0,0.133 +0.667,0.732,0.136,0.307,0.341,1,0,0,0.267,0 +0.667,0.732,0.153,0.305,0,0.1,0,0,0,0.0443 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0886 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0886 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.133 +1,0.973,0.402,0.869,0,0,0,0,0.583,0.0443 +1,0.993,0.541,1,0,0,0,0,0.233,0.0443 +0.667,0.836,0.51,0.638,0.207,0.0333,0,0,0,0.222 +0.667,0.81,0.629,0.504,0.501,1,0,0,0,0.121 +0.667,0.758,0.596,0.386,0,0.6,0,0,0,0.203 +0.667,0.634,0.189,0.196,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.177 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.0886 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.21 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.177 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.177 +0.333,0.647,0.0759,0.178,0,0,0,0,0.533,0.177 +0.333,0.647,0.0845,0.177,0,0,0,0,0.0167,0.133 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.222 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.222 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0886 +0.667,0.836,0.273,0.596,0.435,0.533,0,0,0,0.133 +0.667,0.849,0.366,0.683,0.379,1,0,0,0,0.177 +0.667,0.836,0.51,0.638,0.157,0.133,0,0,0,0 +0.667,0.81,0.629,0.504,0.749,1,0,0,0,0 +0.667,0.758,0.596,0.386,0,0.6,0,0,0,0 +0.667,0.706,0.363,0.342,0,0,0,0,0,0.0443 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0.0738 +1,0.654,0.0816,0.099,0,0,0,0,0,0.0883 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.477 +1,0.68,0.0473,0.251,0,0,0,0,0,0.415 +0.667,0.64,0.049,0.181,0,0,0,0,0,0.0932 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.281 +0.667,0.732,0.168,0.337,0,0,0,0,0,0.517 +0.667,0.732,0.198,0.328,0.606,0.783,0,0,0,0.258 +0.667,0.732,0.217,0.316,0.625,0.85,0,0,0,0.166 +0.667,0.732,0.233,0.307,0.384,0,0,0,0,0.169 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.318 +0.333,0.647,0.165,0.182,0.153,0.0333,0,0,0,0.443 +0.667,0.758,0.343,0.359,0.473,1,0,0,0,0.443 +0.333,0.679,0.189,0.253,0.667,0.6,0,0,0.533,0.294 +1,0.973,0.549,0.869,0.633,0,0,0,0.3,0.171 +0.667,0.849,0.437,0.683,0.927,0,0,0,0,0 +0.667,0.836,0.573,0.638,0.267,0,0,0,0,0 +0.667,0.81,0.673,0.504,0,0,0,0,0,0.0443 +1,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.0886 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.377 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.43 +0.667,0.621,0.0327,0.15,0,0,0,0,0,0.106 +0.667,0.64,0.049,0.181,0,0,0,0,0,0.264 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.19 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.186 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.24 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.313 +0.333,0.647,0.125,0.178,0,0,0,0,0,0 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.355 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.0886 +0.667,0.562,0.0181,0.0495,0.162,0.0333,0,0,0,0.0886 +0.667,0.679,0.189,0.253,0.409,1,0,0,0.0333,0.286 +1,0.836,0.372,0.596,0,0.6,0,0,0.233,0.129 +0.667,0.705,0.228,0.366,0,0,0,0,0,0.0443 +0.333,0.699,0.296,0.344,0,0,0,0,0.267,0 +0.333,0.686,0.345,0.277,0,0,0.324,0.733,0,0.208 +0.667,0.758,0.621,0.386,0,0,0.142,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0.076 +0.667,0.608,0.0424,0.0743,0,0,0,0,0,0.457 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0304 +1,0.608,0.02,0.0513,0,0,0,0,0,0.524 +1,0.608,0.026,0.0829,0,0,0,0,0,0.439 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.182 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.316 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.133 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0322 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.38 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.136 +0,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.464 +0.333,0.647,0.0845,0.177,0.629,0.783,0,0,0.517,0.0604 +0.333,0.647,0.0888,0.182,0.642,0.85,0,0,0,0.222 +0.333,0.66,0.0982,0.204,0.158,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0.0333,0.0443 +0.667,0.836,0.273,0.596,0,0,0,0,1,0.222 +1,0.993,0.541,1,0,0,0,0,1,0.0886 +0.667,0.836,0.51,0.638,0,0,0,0,0.217,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0 +0.667,0.706,0.363,0.342,0,0,0,0,0,0 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 +0.667,0.608,0.0424,0.0743,0,0,0,0,0,0 +0.667,0.608,0.026,0.0578,0,0,0,0,0,0.0443 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0323 +1,0.608,0.02,0.0513,0,0,0,0,0,0.237 +1,0.608,0.026,0.0829,0,0,0,0,0,0.384 +1,0.68,0.0551,0.251,0,0,0,0,0,0.404 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.289 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.219 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.222 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.31 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.177 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.133 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.333,0.699,0.263,0.344,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0.267,0.266 +1,0.608,0.026,0.0829,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.258 +1,0.64,0.0449,0.181,0,0,0,0,0,0.226 +1,0.732,0.0895,0.33,0,0,0,0,0,0.256 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.101 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.0659 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.102 +0.667,0.732,0.136,0.307,0.111,0.0333,0,0,0,0.0402 +0.667,0.732,0.153,0.305,0.815,1,0,0,0,0.317 +0.667,0.732,0.162,0.314,0.458,0.6,0.502,0.233,0,0.487 +0.667,0.758,0.181,0.359,0,0,0.43,0,0.0333,0.266 +0.667,0.797,0.224,0.457,0,0,0.765,0,1,0.0721 +1,0.973,0.402,0.869,0,0,0.206,0,1,0.232 +1,0.993,0.541,1,0,0,0,0,0.217,0.314 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.266 +0.667,0.81,0.629,0.504,0,0,0,0,0.783,0 +1,0.758,0.596,0.386,0,0,0,0,0.333,0.0751 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0763 +1,0.608,0.026,0.0829,0,0,0,0,0,0.37 +1,0.621,0.0355,0.15,0,0,0,0,0.267,0.311 +1,0.798,0.103,0.444,0,0,0,0,0,0.29 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.102 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0443 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.443 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.222 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0443 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0.162 +0.667,0.679,0.12,0.253,0,0,0,0,0,0.427 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.157 +1,0.993,0.541,1,0,0,0,0,0,0.146 +0.667,0.836,0.51,0.638,0.554,0.783,0,0,0,0.0443 +0.667,0.81,0.629,0.504,0,0.85,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0.14,0.0333,0,0.0697 +1,0.706,0.363,0.342,0.512,0.533,0.212,0.95,0,0 +1,0.667,0.16,0.183,0.723,1,0,0,0,0 +1,0.654,0.0689,0.099,0.544,0.1,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0.0824 +1,0.654,0.0208,0.0495,0,0,0,0,0,0.352 +1,0.654,0.0173,0.0495,0,0,0,0,0,0.421 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0333,0.0886 +0.667,0.647,0.0604,0.193,0,0,0,0,0.233,0.0886 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.0886 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.33 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.547 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.145 +0.667,0.758,0.181,0.359,0.569,0.533,0,0,0,0.177 +0.667,0.797,0.224,0.457,0.134,1,0,0,0,0.177 +0.667,0.836,0.273,0.596,0,0.1,0,0,0,0.0886 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.222 +0.667,0.836,0.51,0.638,0,0,0.318,0.233,0,0.298 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.0964 +0.667,0.66,0.306,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.0333,0.111 +0.667,0.732,0.198,0.328,0,0,0,0,0.233,0.253 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.402 +1,0.818,0.34,0.436,0,0,0,0,0,0.648 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.425 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.266 +0.333,0.66,0.18,0.204,0,0,0,0,0.0333,0.443 +0.333,0.679,0.189,0.253,0,0,0,0,0.517,0.266 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.222 +0.333,0.705,0.228,0.366,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.0886 +0.667,0.81,0.673,0.504,0,0,0,0,0,0.0443 +0.667,0.758,0.621,0.386,0,0,0,0,0,0.0807 +1,0.706,0.394,0.342,0,0,0,0,0,0.4 +1,0.667,0.183,0.183,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.222 +1,0.621,0.0327,0.15,0,0,0,0,0,0.177 +1,0.64,0.049,0.181,0,0,0,0,0,0.222 +1,0.647,0.0731,0.19,0,0,0,0,0.267,0.0635 +1,0.818,0.242,0.481,0,0,0,0,0,0.159 +1,0.818,0.289,0.468,0,0,0,0,0,0.287 +1,0.818,0.317,0.449,0,0,0,0,0,0.113 +0.667,0.732,0.233,0.307,0,0,0,0,0.0333,0.112 +0.667,0.732,0.274,0.305,0,0,0,0,1,0.0886 +0.333,0.647,0.165,0.182,0,0,0,0,0.0833,0.443 +0.333,0.66,0.18,0.204,0,0,0,0,0.533,0.0886 +0.333,0.679,0.189,0.253,0,0,0,0,1,0.0886 +0.333,0.699,0.195,0.323,0,0,0,0,0.15,0 +0.667,0.849,0.437,0.683,0.139,0.0333,0,0,0,0.0443 +0.667,0.836,0.573,0.638,0.516,1,0,0,0,0.133 +0.667,0.81,0.673,0.504,0,0.6,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0759 +1,0.621,0.0355,0.15,0,0,0,0,0,0.398 +1,0.798,0.103,0.444,0,0,0,0,0,0.472 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.255 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0443 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0443 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.31 +0.333,0.647,0.0888,0.182,0,0,0,0,0.0333,0.0886 +1,0.758,0.181,0.359,0,0,0,0,0.233,0 +0.667,0.679,0.12,0.253,0,0,0,0,0,0.0443 +0.667,0.699,0.145,0.323,0,0,0,0,0,0 +0.333,0.705,0.191,0.366,0,0,0,0,0,0.0443 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.336 +1,0.634,0.189,0.196,0,0,0,0,0,0.105 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.0443 +0.667,0.608,0.026,0.0829,0,0,0,0,0,0.0764 +0.333,0.621,0.0355,0.15,0,0,0.0913,0.0333,0,0.25 +0.333,0.64,0.0449,0.181,0,0,0.534,0.45,0,0.266 +0.667,0.647,0.0527,0.19,0,0,0.407,0,0,0.272 +0.667,0.732,0.105,0.337,0,0,0.382,0,0,0.169 +0.667,0.732,0.117,0.328,0,0,0.282,0,0,0.175 +0.333,0.647,0.0724,0.183,0,0,0.477,0,0,0.0443 +0.333,0.647,0.0759,0.178,0,0,0.438,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0.0761,0,0,0.0886 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0443 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0886 +0.333,0.679,0.12,0.253,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.0886 +0.333,0.705,0.191,0.366,0,0,0,0,0,0.0886 +0.667,0.836,0.51,0.638,0.416,0.533,0,0,0,0 +0.667,0.81,0.629,0.504,0.77,1,0,0,0,0 +0.667,0.758,0.596,0.386,0.407,0.1,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.12 +1,0.621,0.0355,0.15,0,0,0,0,0,0.394 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.137 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.283,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0.55,0.222 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.696 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.243 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.316 +1,0.973,0.758,0.933,0,0,0,0,0,0.369 +1,0.934,0.936,0.732,0,0,0,0,0,0.347 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.159 +1,0.621,0.0355,0.15,0,0,0,0,0,0.235 +1,0.64,0.0449,0.181,0,0,0,0,0,0.417 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.222 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.31 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.0886 +0.667,0.647,0.0724,0.183,0,0,0,0,0.267,0 +0.667,0.647,0.0759,0.178,0,0,0,0,0,0.0443 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.0886 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0.0083,0.0333,0.283,0.0443 +0.667,0.797,0.224,0.457,0,0,0.633,0.7,0.55,0.0443 +0.667,0.836,0.273,0.596,0,0,0.441,0,0,0.133 +0.667,0.849,0.366,0.683,0,0,0,0,0,0 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.222 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.66,0.306,0.218,0,0,0,0,0,0 +0.667,0.634,0.189,0.196,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.185 +1,0.621,0.0355,0.15,0,0,0,0,0.0333,0.212 +1,0.798,0.103,0.444,0,0,0,0,0.233,0.316 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.219 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.321 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.308 +0.667,0.732,0.129,0.316,0,0,0,0,0.0333,0.203 +0.333,0.647,0.0759,0.178,0,0,0,0,0.517,0.355 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0886 +0.667,0.758,0.181,0.359,0,0,0.195,0.283,0,0.0443 +0.667,0.797,0.224,0.457,0,0,0.501,0.2,0,0.0443 +0.667,0.836,0.273,0.596,0,0,0.159,0,0,0.222 +0.667,0.849,0.366,0.683,0.54,0.533,0,0,0,0.0886 +0.667,0.836,0.51,0.638,0.798,1,0,0,0,0 +0.667,0.81,0.629,0.504,0.286,0.1,0,0,0,0.032 +0.667,0.758,0.596,0.386,0,0,0,0,0.267,0.104 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0758 +1,0.621,0.0327,0.15,0,0,0,0,0,0.261 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.0805 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.193 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.222 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.0443 +0.333,0.647,0.165,0.182,0,0,0,0,0,0 +0.667,0.66,0.18,0.204,0,0,0,0,0.533,0 +0.667,0.797,0.36,0.457,0,0,0,0,0.0167,0.0886 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.0443 +1,0.993,0.647,1,0.597,0.783,0,0,0,0.165 +0.667,0.836,0.573,0.638,0.54,0.85,0,0,0,0.0771 +0.667,0.81,0.673,0.504,0,0,0,0,0,0.152 +0.667,0.758,0.621,0.386,0,0,0,0,0.283,0.0443 +1,0.779,0.582,0.488,0,0,0,0,0.267,0.0443 +1,0.667,0.183,0.183,0,0,0,0,0,0.177 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0443 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.797 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.36 +1,0.621,0.0327,0.15,0,0,0,0,0,0.585 +1,0.64,0.049,0.181,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0.0764 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.672 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.0443 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.0443 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0886 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.0443 +0.333,0.705,0.228,0.366,0,0,0,0,0,0 +0.333,0.699,0.296,0.344,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.0886 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.225 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.113 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0443 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0886 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.487 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0.0443 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0.237 +0.667,0.797,0.224,0.457,0,0,0,0,0.267,0.31 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.177 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0886 +0.333,0.699,0.263,0.344,0,0,0,0,0,0 +0.333,0.686,0.322,0.277,0,0,0,0,0,0.0309 +0.667,0.66,0.306,0.218,0,0,0,0,0,0.0772 +0.667,0.634,0.189,0.196,0,0,0,0,0,0 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_3.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_3.csv new file mode 100644 index 0000000000..d76c6d1916 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_3.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.33 +1,0.608,0.026,0.0833,0,0,0,0,0.133,0.42 +1,0.68,0.0551,0.253,0,0,0,0,0.633,0.163 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.254 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.191 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.153 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.0383 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.191 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.383 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.191 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.153 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.705,0.191,0.359,0,0,0,0,0.25,0.0383 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0.274 +1,0.706,0.363,0.374,0,0,0,0,0,0.0301 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.123 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.0965 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.154 +1,0.654,0.0362,0.117,0,0,0,0,0,0.39 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.0466 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0765 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0765 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.66,0.0982,0.196,0,0,0,0,0.133,0.153 +0.333,0.679,0.12,0.234,0,0,0,0,0.383,0.0383 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0383 +0.667,0.849,0.366,0.669,0.124,0.133,0,0,0,0.0765 +1,0.973,0.758,0.991,0.627,0.133,0,0,0,0.191 +1,0.934,0.936,0.823,0.212,0,0,0,0,0.155 +1,0.758,0.596,0.43,0,0,0.125,0.633,0.25,0.0146 +1,0.562,0.0159,0.0495,0,0,0,0.0833,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.127 +0.667,0.64,0.0449,0.183,0,0,0.236,0.483,0,0.115 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.0765 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.112 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0765 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.383 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0383 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.115 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.19 +0.333,0.679,0.12,0.234,0,0,0,0,0,0 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0383 +0.667,0.849,0.366,0.669,0,0,0.116,0.133,0,0.191 +0.667,0.836,0.51,0.677,0.0991,0.133,0.319,0.583,0,0 +0.667,0.81,0.629,0.565,0.244,1,0,0,0,0 +0.667,0.66,0.306,0.24,0,0.483,0,0,0,0.0383 +1,0.634,0.189,0.212,0,0,0,0,0,0.0383 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.115 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.163 +1,0.608,0.026,0.0833,0,0,0,0,0,0.291 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.238 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.117 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.193 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.141 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.227 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.142 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.268 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.191 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.153 +0.667,0.699,0.145,0.299,0,0,0,0,0.133,0 +1,0.849,0.366,0.669,0,0,0,0,1,0 +1,0.836,0.51,0.677,0.288,0.267,0,0,0.15,0 +1,0.934,0.936,0.823,0.681,0,0,0,0,0 +1,0.857,0.887,0.621,0.63,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.608,0.02,0.0513,0,0,0,0,0,0.36 +1,0.654,0.0362,0.117,0,0,0,0,0,0.427 +1,0.68,0.0551,0.253,0.382,0.383,0,0,0.25,0 +0.667,0.64,0.0449,0.183,0.159,0.967,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0765 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.191 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.344 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0383 +0.333,0.679,0.12,0.234,0,0,0,0,0.383,0.115 +1,0.973,0.402,0.798,0,0,0,0,0.133,0 +1,0.993,0.541,0.979,0,0,0.514,0.717,0,0.115 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0.0765 +1,0.758,0.596,0.43,0,0,0,0,0.883,0.125 +1,0.634,0.189,0.212,0,0,0,0,0.15,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.25,0.16 +1,0.732,0.168,0.343,0,0,0,0,0,0.274 +0.667,0.732,0.198,0.334,0,0,0,0,0.517,0.115 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.115 +0.667,0.732,0.233,0.313,0,0,0,0,0.8,0.0383 +1,0.818,0.402,0.441,0,0,0,0,0.483,0.153 +1,0.732,0.312,0.315,0,0,0,0,0,0.153 +1,0.758,0.343,0.343,0,0,0.396,0.717,0,0.0383 +1,0.797,0.36,0.418,0,0,0,0,0,0 +1,0.836,0.372,0.548,0,0,0,0,0.517,0.115 +1,0.849,0.437,0.669,0,0,0,0,0,0 +1,0.973,0.851,0.991,0.48,0.55,0,0,0,0.0383 +1,0.934,1,0.823,0,0.8,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0.0782 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +1,0.608,0.0215,0.0513,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.403 +1,0.647,0.0731,0.192,0,0,0,0,0,0.0604 +1,0.732,0.168,0.343,0,0,0,0,0,0.491 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.6 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.374 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.0765 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.0765 +0.333,0.647,0.165,0.182,0,0,0,0,0,0 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.54 +0.667,0.797,0.36,0.418,0,0,0,0,0.05,0.117 +0.667,0.836,0.372,0.548,0,0,0,0,0.2,0.0383 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.115 +0.667,0.836,0.573,0.677,0,0,0,0,0,0.0765 +0.667,0.81,0.673,0.565,0.531,0.267,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0.0724 +1,0.779,0.582,0.536,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.213 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.286 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.222 +1,0.74,0.0747,0.355,0.129,0.133,0,0,0.383,0.394 +1,0.798,0.103,0.449,0.759,0.133,0,0,0.383,0.233 +1,0.818,0.126,0.477,0.623,0,0.0963,0.133,0,0.376 +1,0.818,0.149,0.49,0,0,0.795,0.583,0,0.15 +0.667,0.732,0.117,0.334,0,0,0.385,0,0,0.265 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.19 +0.333,0.562,0.0159,0.0495,0,0,0.319,0.383,0,0 +0.333,0.647,0.0845,0.18,0,0,0.342,0.333,0,0.0383 +0.667,0.732,0.162,0.315,0,0,0.36,0,0,0 +1,0.857,0.263,0.49,0,0,0.482,0,0,0.153 +1,0.915,0.327,0.602,0,0,0.642,0,0,0.153 +1,0.973,0.402,0.798,0,0,0.0642,0,0.25,0.383 +1,0.993,0.541,0.979,0,0,0,0,0,0.0383 +1,0.973,0.758,0.991,0,0,0,0,0,0.0383 +1,0.81,0.629,0.565,0,0,0,0,0,0.0383 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0779 +1,0.608,0.026,0.0833,0,0,0,0,0,0.352 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0383 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.115 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.23 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0383 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0765 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.333,0.66,0.0982,0.196,0,0,0,0,0.133,0 +0.333,0.679,0.12,0.234,0,0,0,0,0.383,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.153 +1,0.993,0.541,0.979,0,0,0,0,0.633,0.153 +1,0.973,0.758,0.991,0,0,0,0,0.133,0.0383 +1,0.934,0.936,0.823,0,0,0,0,0,0.0383 +1,0.758,0.596,0.43,0,0,0,0,0,0.0859 +1,0.706,0.363,0.374,0,0,0,0,0,0.0383 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0458 +1,0.608,0.026,0.0833,0,0,0,0,0,0.168 +1,0.68,0.0551,0.253,0,0,0,0,0,0.246 +0.333,0.64,0.0449,0.183,0,0,0,0,0,0.274 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.19 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.382 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.16 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.282 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.153 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.306 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.115 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.318 +1,0.973,0.402,0.798,0,0,0,0,0,0.386 +1,0.993,0.541,0.979,0,0,0,0,0,0.364 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.326,0.267,0,0,0.25,0 +1,0.66,0.306,0.24,0.496,0,0,0,0,0 +1,0.634,0.189,0.212,0.69,0,0,0,0,0 +1,0.614,0.0879,0.116,0.46,0,0,0,0,0.13 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.104 +1,0.608,0.026,0.0833,0,0,0,0,0,0.328 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.115 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0383 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0383 +0.667,0.732,0.129,0.322,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.115 +0.667,0.732,0.153,0.311,0,0,0.347,0.483,0,0.0383 +0.667,0.732,0.162,0.315,0,0,0.38,0,0,0.497 +0.333,0.66,0.0982,0.196,0,0,0.474,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.157,0,0,0.0383 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.191 +0.333,0.705,0.191,0.359,0,0,0,0,0.517,0.36 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.306 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.355 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.41 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0383 +0.333,0.647,0.0604,0.196,0,0,0.116,0.133,0,0 +0.333,0.647,0.0664,0.192,0,0,0.796,0.35,0,0 +0.333,0.647,0.0724,0.186,0,0,0.71,0,0,0.0383 +0.333,0.647,0.0759,0.181,0,0,0.572,0,0,0.0383 +0.333,0.647,0.0845,0.18,0,0,0.685,0,0,0.115 +0.333,0.647,0.0888,0.182,0,0,0.199,0,0,0.23 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.191 +0.333,0.679,0.12,0.234,0,0,0,0,0.25,0.268 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0383 +1,0.993,0.541,0.979,0,0,0,0,0,0.0383 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0.0758 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0383 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.223 +1,0.732,0.198,0.334,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0.481,0.55,0.202,0.3,0,0.153 +0.667,0.732,0.233,0.313,0.239,0.517,0.36,0.417,0,0.0765 +0.667,0.732,0.274,0.311,0,0,0.774,0,0,0.153 +0.667,0.732,0.312,0.315,0,0,0.703,0,0,0.153 +0.667,0.758,0.343,0.343,0,0,0.587,0,0,0.23 +0.667,0.797,0.36,0.418,0,0,0.811,0,0,0.421 +1,0.973,0.549,0.798,0,0,0.499,0,0.25,0.268 +1,0.993,0.647,0.979,0,0,0.332,0,0,0.0383 +1,0.973,0.851,0.991,0,0,0.658,0,0,0.191 +1,0.934,1,0.823,0,0,0.116,0,0,0.181 +0.667,0.758,0.621,0.43,0,0,0,0,0,0.233 +1,0.779,0.582,0.536,0,0,0,0,0,0.236 +1,0.72,0.265,0.249,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.64,0.049,0.183,0,0,0,0,0.3,0 +0.333,0.647,0.0731,0.192,0,0,0,0,1,0.0383 +0.333,0.647,0.0928,0.196,0,0,0,0,0.25,0.268 +0.333,0.647,0.108,0.192,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0.0765 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.0383 +0.333,0.647,0.146,0.18,0,0,0.413,0.3,0,0.0383 +0.667,0.732,0.312,0.315,0,0,0.13,0.183,0,0.0765 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.306 +0.667,0.797,0.36,0.418,0,0,0,0,0.25,0.281 +1,0.973,0.549,0.798,0,0,0,0,0,0.0583 +1,0.993,0.647,0.979,0,0,0.555,0.55,0,0.0765 +1,0.973,0.851,0.991,0,0,0.966,0.167,0,0 +1,0.934,1,0.823,0,0,0.411,0,0,0 +1,0.857,0.923,0.621,0,0,0.0193,0,0,0 +1,0.706,0.394,0.374,0.267,0.3,0,0,0,0.0383 +1,0.614,0.101,0.116,0.494,0.583,0,0,0,0 +1,0.608,0.0424,0.0743,0.688,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.238 +1,0.68,0.0551,0.253,0,0,0,0,0,0.348 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.111 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.255 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0958 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0383 +0.333,0.647,0.0724,0.186,0,0,0,0,0.25,0.115 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.115 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.268 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0383 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.124 +0.667,0.849,0.366,0.669,0.568,0.633,0,0,0,0.0694 +1,0.973,0.758,0.991,0,0.167,0,0,0,0.0765 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.0956,0.183,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.231 +1,0.74,0.0747,0.355,0,0,0,0,0.133,0.625 +0.667,0.719,0.074,0.316,0,0,0.144,0.383,0.117,0.0765 +0.667,0.732,0.0895,0.334,0,0,0.281,0.1,0,0 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.191 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.251 +0.333,0.647,0.0724,0.186,0,0,0,0,0.133,0.171 +0.333,0.647,0.0759,0.181,0,0,0,0,0.117,0.0383 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.153 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.333,0.66,0.0982,0.196,0,0,0,0,0.25,0.421 +0.667,0.797,0.224,0.418,0,0,0,0,0,0 +1,0.973,0.402,0.798,0.667,0.267,0,0,0,0.115 +0.667,0.849,0.366,0.669,0.414,0,0,0,0,0.126 +1,0.973,0.758,0.991,0.396,0,0,0,0,0.0856 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.316 +1,0.68,0.0551,0.253,0,0,0,0,0.383,0.301 +1,0.798,0.103,0.449,0,0,0,0,0.383,0.251 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.306 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0383 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0765 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0383 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0383 +0.333,0.647,0.0888,0.182,0,0,0,0,0.25,0.0765 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.0984 +0.667,0.797,0.224,0.418,0,0,0,0,0.517,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.115 +1,0.993,0.541,0.979,0,0,0,0,0,0.0383 +1,0.973,0.758,0.991,0,0,0,0,0,0.11 +1,0.934,0.936,0.823,0,0,0,0,0,0.291 +1,0.857,0.887,0.621,0,0,0,0,0,0.346 +1,0.706,0.363,0.374,0,0,0,0,0,0.102 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.327 +1,0.621,0.0355,0.151,0,0,0,0,0,0.0383 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.334 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.29 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.257 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.469 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.258 +0.333,0.647,0.0845,0.18,0,0,0,0,0.133,0.153 +0.333,0.647,0.0888,0.182,0,0,0,0,0.117,0.0765 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.0383 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.115 +0.333,0.705,0.191,0.359,0,0,0.226,0.133,0,0.115 +1,0.973,0.758,0.991,0,0,0.536,0.35,0.133,0 +1,0.934,0.936,0.823,0,0,0,0,0.383,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.64,0.0449,0.183,0,0,0,0,0,0.428 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.268 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.206 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.366 +0.667,0.732,0.129,0.322,0,0,0,0,0,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.459 +0.667,0.732,0.153,0.311,0,0,0.522,0.483,0,0.153 +0.667,0.647,0.0888,0.182,0,0,0.374,0,0,0.0765 +0.667,0.66,0.0982,0.196,0,0,0.453,0,0.25,0 +1,0.797,0.224,0.418,0,0,0.222,0,0,0.115 +1,0.836,0.273,0.548,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0.0765 +1,0.836,0.51,0.677,0,0,0,0,0,0.268 +1,0.81,0.629,0.565,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.187 +1,0.647,0.0731,0.192,0,0,0,0,0,0.115 +1,0.647,0.0928,0.196,0,0,0,0,0,0.329 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.125 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.571 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.302 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.58 +1,0.818,0.459,0.448,0,0,0,0,0,0.436 +1,0.758,0.343,0.343,0,0,0,0,0,0.244 +1,0.797,0.36,0.418,0,0,0,0,0,0.227 +1,0.973,0.549,0.798,0,0,0,0,0,0.351 +1,0.993,0.647,0.979,0,0,0,0,0,0.474 +1,0.973,0.851,0.991,0,0,0,0,0,0.13 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.25,0.0765 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0.0765 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.153 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.191 +0.333,0.647,0.118,0.186,0,0,0,0,0.3,0.127 +0.667,0.732,0.233,0.313,0,0,0,0,0.217,0.306 +0.667,0.732,0.274,0.311,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0765 +0.333,0.679,0.189,0.234,0,0,0,0,0,0.459 +0.667,0.836,0.372,0.548,0,0,0,0,0,0.153 +0.667,0.849,0.437,0.669,0,0,0,0,0,0 +1,0.836,0.573,0.677,0,0,0,0,0,0.0383 +1,0.81,0.673,0.565,0,0,0,0,0,0.0439 +1,0.758,0.621,0.43,0,0,0,0,0,0.248 +1,0.634,0.206,0.212,0,0,0,0,0,0.0716 +1,0.614,0.101,0.116,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.261 +1,0.74,0.0747,0.355,0,0,0,0,0,0.65 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.209 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.557 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.125 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.245 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0765 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0765 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.667,0.758,0.181,0.343,0,0,0,0,0.133,0 +0.667,0.797,0.224,0.418,0,0,0,0,0.117,0 +0.667,0.836,0.273,0.548,0.154,0.133,0,0,0,0.116 +1,0.993,0.541,0.979,0.763,0.133,0,0,0,0.237 +1,0.973,0.758,0.991,0.175,0,0,0,0,0.0148 +1,0.934,0.936,0.823,0,0,0,0,0,0.258 +1,0.758,0.596,0.43,0,0,0,0,0,0.169 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +1,0.621,0.0355,0.151,0,0,0,0,0,0.405 +1,0.719,0.074,0.316,0,0,0,0,0,0.0765 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.153 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0765 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0765 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0765 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.191 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.191 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.0383 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.0383 +0.667,0.705,0.191,0.359,0.308,0.383,0,0,0,0 +0.667,0.699,0.263,0.363,0.473,0.15,0,0,0,0 +0.667,0.686,0.322,0.307,0,0,0,0,0,0.0765 +1,0.758,0.596,0.43,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.229 +1,0.68,0.0551,0.253,0,0,0,0,0,0.504 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.0759 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.115 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0.344 +0.667,0.679,0.12,0.234,0,0,0,0,0.767,0.0383 +0.667,0.836,0.273,0.548,0.308,0.267,0,0,0,0.23 +1,0.993,0.541,0.979,0.589,0,0,0,0,0.0383 +1,0.973,0.758,0.991,0.425,0,0,0,0,0.0111 +1,0.934,0.936,0.823,0,0,0,0,0,0.153 +1,0.758,0.596,0.43,0,0,0,0,0,0.113 +1,0.634,0.189,0.212,0,0,0,0,0,0.0753 +1,0.614,0.0879,0.116,0,0,0,0,0,0.106 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0.214 +1,0.68,0.0551,0.253,0,0,0,0,0.117,0.343 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.108 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0765 +0.333,0.647,0.0664,0.192,0,0,0,0,0.25,0.0765 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.191 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.191 +0.333,0.647,0.0845,0.18,0,0,0.0931,0.133,0,0.344 +0.667,0.732,0.162,0.315,0,0,0.605,0.35,0,0.191 +0.333,0.66,0.0982,0.196,0,0,0.587,0,0,0.0383 +0.333,0.679,0.12,0.234,0,0,0.758,0,0.133,0 +0.667,0.836,0.273,0.548,0,0,0.623,0,0.117,0.0765 +1,0.993,0.541,0.979,0.625,0.633,0.66,0,0,0.115 +1,0.973,0.758,0.991,0.145,0.433,0.271,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.15 +1,0.857,0.887,0.621,0,0,0,0,0,0.0835 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.166 +1,0.654,0.0362,0.117,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0.883,0.383 +0.667,0.719,0.074,0.316,0,0,0,0,0.15,0.26 +0.667,0.732,0.0895,0.334,0,0,0,0,0.517,0.0765 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0.133,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0.633,0.0765 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.115 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0383 +0.333,0.66,0.0982,0.196,0.322,0.267,0,0,0,0 +0.333,0.679,0.12,0.234,0.77,0,0,0,0.517,0.0383 +1,0.973,0.402,0.798,0.57,0,0,0,0,0.0383 +0.667,0.849,0.366,0.669,0,0,0,0,0.25,0.0383 +1,0.973,0.758,0.991,0,0,0,0,0,0.0383 +1,0.81,0.629,0.565,0,0,0,0,0,0.0383 +1,0.66,0.306,0.24,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.18 +1,0.64,0.049,0.183,0,0,0,0,0,0.202 +1,0.732,0.128,0.334,0,0,0,0,0.3,0.275 +1,0.818,0.242,0.49,0,0,0,0,0.467,0.166 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.243 +0.667,0.732,0.217,0.322,0,0,0,0,0.25,0.112 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.306 +0.667,0.732,0.274,0.311,0.4,0.267,0,0,0,0.459 +0.667,0.732,0.312,0.315,0.747,0,0,0,0,0.23 +0.667,0.758,0.343,0.343,0.448,0,0,0,0,0.115 +1,0.915,0.531,0.602,0,0,0,0,0.517,0.115 +1,0.973,0.549,0.798,0,0,0,0,0,0.152 +1,0.993,0.647,0.979,0,0,0,0,0,0.234 +1,0.973,0.851,0.991,0.221,0.05,0,0,0,0.0765 +1,0.934,1,0.823,0.722,0.75,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0.0383 +1,0.667,0.183,0.183,0,0,0,0,0,0.153 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.0765 +1,0.608,0.031,0.0578,0,0,0,0,0,0.0383 +1,0.608,0.0224,0.0495,0,0,0,0,0,0.0765 +1,0.608,0.019,0.0495,0,0,0,0,0,0.115 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.647,0.0731,0.192,0,0,0,0,0,0.126 +1,0.732,0.168,0.343,0,0,0,0,0,0.451 +0.667,0.647,0.108,0.192,0,0,0,0,0,0.315 +0.667,0.647,0.118,0.186,0,0,0,0,0.517,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0.0383 +0.667,0.647,0.146,0.18,0,0,0,0,0,0.153 +0.667,0.647,0.165,0.182,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.0383 +0.667,0.797,0.36,0.418,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0,0,0,0,0,0.115 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.166 +1,0.973,0.851,0.991,0,0,0,0,0,0.111 +1,0.934,1,0.823,0,0,0,0,0,0.102 +1,0.66,0.32,0.24,0,0,0,0,0,0.0383 +1,0.634,0.206,0.212,0,0,0,0,0,0.174 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.12 +1,0.608,0.02,0.0513,0,0,0,0,0,0.182 +0.667,0.608,0.026,0.0833,0,0,0,0,0,0.282 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.406 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.121 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0.117,0.191 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.191 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0765 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.191 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.191 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0383 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.0765 +0.667,0.836,0.273,0.548,0,0,0,0,0.25,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0383 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.0383 +1,0.608,0.026,0.0578,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.315 +1,0.74,0.0747,0.355,0,0,0,0,0,0.415 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.268 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0383 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.115 +0.333,0.679,0.12,0.234,0,0,0,0,0.133,0.344 +0.333,0.699,0.145,0.299,0.68,0.883,0,0,0.633,0.0383 +0.667,0.849,0.366,0.669,0.674,0.183,0,0,0,0 +0.667,0.836,0.51,0.677,0.77,0,0,0,0,0 +1,0.934,0.936,0.823,0.104,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.165 +1,0.608,0.026,0.0578,0,0,0,0,0,0.0713 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.128 +1,0.608,0.026,0.0833,0,0,0,0,0,0.454 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.119 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.0765 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.0765 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.153 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0383 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.23 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.191 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.115 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.331,0.267,0.265,0.383,0,0.0383 +1,0.973,0.402,0.798,0.483,0,0.526,0.333,0,0 +1,0.993,0.541,0.979,0.74,0,0.472,0,0.383,0.0765 +1,0.973,0.758,0.991,0.531,0,0.339,0,0.133,0.153 +0.667,0.81,0.629,0.565,0,0,0.652,0,0,0.199 +1,0.857,0.887,0.621,0,0,0.485,0,0,0.0458 +0.667,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.623,0.0353,0.15,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.268 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.268 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.115 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.383 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.23 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0779 +1,0.98,0.399,0.674,0,0,0,0,0,0.0383 +0.667,0.708,0.19,0.322,0,0,0,0,0,0.0383 +1,0.98,0.752,0.98,0,0,0,0,0,0.0383 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0777 +1,0.658,0.0241,0.053,0,0,0,0,0,0.287 +1,0.658,0.036,0.116,0,0,0,0,0.25,0.0383 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.0765 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.425,0.583,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0.294,0.2,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0383 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0765 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.23 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.268 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0765 +0.333,0.682,0.119,0.208,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0.0765 +0.667,0.854,0.364,0.595,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.25,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.155 +1,0.623,0.0326,0.15,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0765 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0,0,0,0.0765 +0.667,0.736,0.216,0.316,0,0,0,0,0.267,0 +0.667,0.736,0.231,0.307,0,0,0,0,0.5,0.115 +0.667,0.736,0.272,0.305,0,0,0,0,0,0.23 +0.667,0.736,0.31,0.307,0,0,0,0,0,0.23 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.0383 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.115 +0.333,0.701,0.194,0.258,0,0,0,0,0,0.0383 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +0.333,0.701,0.294,0.36,0,0,0,0,0,0.0383 +0.667,0.815,0.668,0.625,0.451,0.25,0,0,0,0.0765 +0.667,0.762,0.617,0.501,0.0938,0,0,0,0,0 +0.667,0.71,0.392,0.442,0,0,0,0,0,0 +0.667,0.616,0.1,0.116,0,0,0,0,0,0.0383 +0.667,0.61,0.0496,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.151 +1,0.649,0.0923,0.193,0,0,0,0,0,0.272 +0.667,0.649,0.108,0.189,0,0,0,0,0,0.0765 +0.667,0.649,0.117,0.183,0,0,0,0,0,0.459 +0.667,0.649,0.125,0.178,0,0,0,0,0,0.23 +1,0.736,0.272,0.305,0,0,0,0,0,0.115 +0.667,0.649,0.164,0.178,0,0,0,0,0,0.23 +0.667,0.662,0.179,0.186,0,0,0,0,0,0.237 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.608 +0.667,0.841,0.369,0.466,0,0,0,0,0.267,0.252 +1,1,0.642,0.868,0,0,0,0,1,0.079 +0.667,0.841,0.569,0.67,0,0,0,0,1,0.0383 +1,0.941,0.993,0.913,0,0,0,0,0.8,0.195 +1,0.863,0.916,0.727,0,0,0,0,0,0.169 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0.115 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.153 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.0765 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.109 +1,0.61,0.0259,0.0829,0,0,0,0,0.0833,0.824 +1,0.684,0.0548,0.251,0,0,0,0,0.417,0.295 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0.773,0.517,0,0,0,0.0765 +0.667,0.649,0.066,0.189,0.66,0,0,0,0,0.0383 +0.667,0.649,0.072,0.183,0.628,0,0,0,0,0 +0.667,0.736,0.135,0.307,0.642,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0.724,0,0,0,0,0.0765 +0.333,0.649,0.0882,0.178,0.644,0,0,0,0,0.0383 +0.667,0.762,0.179,0.322,0.488,0,0,0,0,0.0765 +0.667,0.802,0.222,0.367,0,0,0,0,0.0833,0 +1,0.98,0.399,0.674,0,0,0,0,0.933,0 +1,1,0.537,0.868,0,0,0,0,0,0.148 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.188 +1,0.815,0.625,0.625,0,0,0,0,0,0.0293 +1,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0721 +1,0.61,0.02,0.0513,0,0,0,0,0,0.0843 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.262 +1,0.623,0.0353,0.15,0,0,0,0,0,0.297 +1,0.642,0.0447,0.181,0,0,0,0,0.583,0.14 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.95,0.0765 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.333,0.0765 +0.667,0.736,0.152,0.305,0,0,0,0,0.433,0.153 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.115 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.191 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.23 +0.667,0.841,0.271,0.466,0,0,0,0,0,0 +1,1,0.537,0.868,0,0,0,0,0,0.0383 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0.0931,0.0833,0,0 +1,0.863,0.88,0.727,0,0,0.369,0.667,0,0 +1,0.784,0.532,0.638,0,0,0.708,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.312 +1,0.623,0.0353,0.15,0,0,0,0,0,0.503 +1,0.642,0.0447,0.181,0,0,0,0,0,0.0615 +0.667,0.562,0.0159,0.0495,0.113,0.0833,0,0,0,0.191 +0.667,0.649,0.0601,0.193,0.503,0.167,0,0,0,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.167 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.242 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.23 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0383 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0383 +0.667,0.802,0.222,0.367,0,0,0,0,0.5,0.0727 +1,0.98,0.399,0.674,0,0,0,0,0,0.211 +1,1,0.537,0.868,0.382,0.517,0,0,0,0.271 +1,0.98,0.752,0.98,0.685,0.333,0,0,0,0.281 +1,0.941,0.929,0.913,0.363,1,0,0,0,0.172 +1,0.762,0.592,0.501,0,0.25,0,0,0,0.109 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0955 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.61,0.0259,0.0829,0,0,0,0,0,0.153 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.0765 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.0383 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.0383 +0.333,0.649,0.0601,0.193,0.136,0.0833,0,0,0,0.0383 +0.333,0.649,0.066,0.189,0.673,0.167,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.153 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.115 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0765 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.268 +0.333,0.682,0.119,0.208,0,0,0,0,0.0833,0.0765 +0.667,0.841,0.271,0.466,0,0,0,0,0.683,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.115 +1,0.98,0.752,0.98,0.2,0.25,0,0,0,0 +1,0.941,0.929,0.913,0.29,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.586 +1,0.723,0.0735,0.313,0,0,0,0,0.0833,0.549 +1,0.736,0.0889,0.33,0,0,0,0,0.417,0.122 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.0765 +0.667,0.649,0.066,0.189,0,0,0,0,0.0833,0 +0.667,0.649,0.072,0.183,0,0,0,0,0.417,0.0765 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0383 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0765 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.23 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.191 +1,1,0.537,0.868,0,0,0,0,0,0.091 +1,0.98,0.752,0.98,0.593,0.25,0,0,0.0833,0.236 +1,0.941,0.929,0.913,0.501,0,0,0,0.167,0 +1,0.863,0.88,0.727,0.455,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.119 +1,0.642,0.0488,0.181,0,0,0,0,0,0.415 +1,0.649,0.0727,0.19,0,0,0,0,0,0.137 +1,0.736,0.166,0.337,0,0,0,0,0.767,0.25 +1,0.824,0.287,0.468,0,0,0,0,0.5,0.568 +1,0.824,0.315,0.449,0,0,0,0,0,0.252 +1,0.824,0.338,0.436,0,0,0,0,0.267,0.186 +0.667,0.736,0.272,0.305,0,0,0,0,0.233,0.0765 +0.667,0.736,0.31,0.307,0,0,0,0,0,0.0765 +1,0.863,0.502,0.458,0,0,0,0,0,0.115 +1,0.922,0.527,0.526,0,0,0,0,0,0.0383 +1,0.98,0.545,0.674,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0.0383 +1,0.98,0.845,0.98,0,0,0,0,0,0.0383 +1,0.941,0.993,0.913,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0.0383 +1,0.784,0.578,0.638,0,0,0,0,0,0.345 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.61,0.024,0.0829,0,0,0,0,0,0.115 +1,0.623,0.0326,0.15,0,0,0,0,0,0.268 +1,0.642,0.0488,0.181,0,0,0,0,0,0.198 +1,0.649,0.0727,0.19,0,0,0,0,0.5,0.169 +0.333,0.649,0.0923,0.193,0,0,0,0,0,0.445 +1,0.824,0.287,0.468,0.186,0.267,0.0835,0.0167,0,0.39 +1,0.824,0.315,0.449,0.671,0.25,0.657,1,0.25,0.115 +1,0.736,0.231,0.307,0,0,0.607,0.5,0,0 +1,0.736,0.272,0.305,0,0,0.49,0,0,0.0383 +1,0.649,0.164,0.178,0,0,0.561,0,0,0.115 +1,0.863,0.502,0.458,0,0,0.665,0,0,0.153 +1,0.922,0.527,0.526,0,0,0.584,0,0,0 +1,0.98,0.545,0.674,0,0,0.828,0,0,0.153 +1,1,0.642,0.868,0,0,0.268,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0.243 +1,0.941,0.993,0.913,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0.0859 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +1,0.61,0.02,0.0513,0,0,0,0,0,0.0765 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.695 +1,0.745,0.0742,0.351,0,0,0,0,0,0.174 +1,0.804,0.102,0.444,0,0,0,0,0.5,0.168 +1,0.824,0.125,0.47,0,0,0,0,0,0.256 +1,0.824,0.148,0.481,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0.0833,0.153 +0.667,0.736,0.128,0.316,0,0,0,0,0.167,0.0383 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.306 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.23 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.682,0.119,0.208,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.204 +1,1,0.537,0.868,0.512,0.25,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0.277 +1,0.815,0.625,0.625,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.087 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0.0383 +1,0.61,0.0259,0.0829,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0.0833,0.0765 +0.667,0.642,0.0447,0.181,0,0,0,0,0.417,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0833,0 +0.333,0.649,0.0601,0.193,0,0,0,0,0.167,0.0726 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.193 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.484 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.339 +0.333,0.649,0.0839,0.177,0,0,0,0,0.5,0.383 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.153 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0383 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.0765 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.153 +0.333,0.708,0.19,0.322,0,0,0,0,0,0.407 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.141 +0.333,0.688,0.32,0.337,0,0,0,0,0,0.079 +0.667,0.762,0.592,0.501,0,0,0,0,0,0.0316 +1,0.784,0.532,0.638,0,0,0,0,0,0.0792 +1,0.671,0.159,0.183,0,0,0,0,0,0.19 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.148 +1,0.61,0.02,0.0513,0,0,0,0,0,0.335 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.413 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.685 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.294 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0.354,0.25,0,0,0,0.191 +0,0.562,0.0159,0.0495,0.349,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.407 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.188 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0939 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.682,0.119,0.208,0,0,0,0,0.25,0.454 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.133 +1,1,0.537,0.868,0.127,0.0833,0,0,0,0.115 +1,0.98,0.752,0.98,0.701,0.167,0,0,0,0 +1,0.941,0.929,0.913,0.168,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.0734 +1,0.784,0.532,0.638,0,0,0,0,0,0.189 +1,0.671,0.159,0.183,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0.227 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.29 +1,0.684,0.0548,0.251,0,0,0.111,0.0833,0,0.261 +0.667,0.642,0.0447,0.181,0,0,0.366,0.667,0,0.198 +0.667,0.736,0.0889,0.33,0,0,0.592,0,0,0.296 +0.667,0.736,0.104,0.337,0,0,0.347,0,0,0.128 +0.667,0.736,0.116,0.328,0,0,0.258,0,0,0.113 +0.667,0.736,0.128,0.316,0,0,0.803,0,0,0.275 +0.667,0.736,0.135,0.307,0.85,0.517,0,0,0,0.253 +0.667,0.736,0.152,0.305,0.363,0,0,0,0,0.342 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.421 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0765 +0.667,0.802,0.222,0.367,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.268 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.0765 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.191 +0.667,0.815,0.625,0.625,0,0,0,0,0,0.218 +1,0.863,0.88,0.727,0,0,0,0,0,0.0934 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0.153 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.344 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.0383 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.153 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.115 +0.667,0.649,0.066,0.189,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.306 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.191 +0.333,0.682,0.119,0.208,0,0,0,0,0.333,0.0383 +0.333,0.701,0.144,0.258,0,0,0,0,1,0 +1,1,0.537,0.868,0.474,0.25,0,0,1,0.459 +1,0.98,0.752,0.98,0.639,0,0,0,0.217,0.0383 +1,0.941,0.929,0.913,0.535,0,0,0,0,0.0745 +1,0.863,0.88,0.727,0,0,0,0,0,0.207 +1,0.784,0.532,0.638,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.0223,0.0495,0,0,0,0,0,0.0383 +1,0.61,0.0189,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0.0383 +1,0.736,0.166,0.337,0,0,0,0,0,0.0383 +1,0.736,0.197,0.328,0,0,0,0,0,0.0383 +1,0.736,0.216,0.316,0,0,0,0,0,0.0765 +1,0.824,0.338,0.436,0,0,0,0,0,0.0765 +1,0.824,0.399,0.432,0,0,0,0,0,0.153 +0.667,0.736,0.31,0.307,0,0,0,0,0,0.331 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.222 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.278 +1,0.98,0.545,0.674,0,0,0,0,0,0.115 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.0383 +0.333,0.701,0.294,0.36,0,0,0,0,0,0 +0.333,0.688,0.343,0.337,0,0,0,0,0,0.0765 +1,0.863,0.916,0.727,0,0,0,0,0,0.202 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0.558,0.25,0,0,0,0 +1,0.61,0.0309,0.0578,0.814,0,0,0,0,0.0383 +1,0.61,0.0223,0.0495,0.72,0,0,0,0,0.0765 +1,0.61,0.0189,0.0495,0.542,0,0,0,0,0.0765 +1,0.562,0.0181,0.0495,0.221,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.383 +1,0.649,0.0727,0.19,0,0,0,0,0,0.32 +1,0.824,0.241,0.481,0.485,0.517,0.483,0.75,0,0.291 +1,0.824,0.287,0.468,0.75,0.267,0.625,0,0,0.0822 +1,0.824,0.315,0.449,0.586,0,0.593,0,0,0 +0.667,0.736,0.231,0.307,0.342,0,0.559,0,0,0.115 +0.667,0.736,0.272,0.305,0,0,0.543,0,0,0.0765 +0.667,0.736,0.31,0.307,0,0,0.332,0,0.25,0.459 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.0765 +0.667,0.802,0.358,0.367,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0.191 +0.667,0.854,0.434,0.595,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0.701,0.25,0,0,0,0.0765 +1,0.941,0.993,0.913,0.504,0,0,0,0,0 +1,0.762,0.617,0.501,0.313,0,0,0,0,0.234 +1,0.71,0.392,0.442,0,0,0.209,0.267,0,0 +1,0.671,0.182,0.183,0,0,0.148,0.483,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0.0383 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.115 +1,0.61,0.0165,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.322 +1,0.723,0.0735,0.313,0,0,0,0,0,0.353 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.191 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.191 +0.333,0.649,0.066,0.189,0.11,0.0833,0.0931,0.333,0,0.191 +0.333,0.649,0.072,0.183,0.616,0.433,0,1,0,0.0383 +0.333,0.649,0.0754,0.178,0.611,0,0.388,0.183,0,0.191 +0.333,0.649,0.0839,0.177,0,0,0.443,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0.475,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0.475,0,0,0.115 +0.333,0.682,0.119,0.208,0,0,0.642,0,0.0833,0.153 +1,0.98,0.399,0.674,0,0,0.565,0,0.417,0.472 +1,1,0.537,0.868,0,0,0.509,0,0,0.235 +1,0.98,0.752,0.98,0,0,0.38,0,0,0.0775 +1,0.941,0.929,0.913,0,0,0,0,0,0.031 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.201 +1,0.723,0.0735,0.313,0,0,0,0,0,0 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.115 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0383 +0.333,0.649,0.066,0.189,0,0,0.231,0.0833,0,0 +0.333,0.649,0.072,0.183,0,0,0.337,0.667,0,0.0383 +0.333,0.649,0.0754,0.178,0,0,0.578,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.342,0,0,0.0383 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0765 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.115 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.228 +0.667,0.841,0.271,0.466,0.729,0.833,0,0,0,0.297 +1,1,0.537,0.868,0.451,0.75,0,0,0,0.0383 +1,0.98,0.752,0.98,0.784,0.25,0,0,0,0.115 +1,0.941,0.929,0.913,0.496,0,0,0,0,0.185 +1,0.762,0.592,0.501,0,0,0,0,0,0.203 +1,0.636,0.188,0.246,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.249 +1,0.684,0.0548,0.251,0,0,0,0,0,0.386 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.326 +0.667,0.736,0.0889,0.33,0,0,0,0,0.583,0.229 +0.667,0.736,0.104,0.337,0,0,0.294,0.5,1,0.25 +0.667,0.736,0.116,0.328,0,0,0.714,0,0.2,0.23 +0.333,0.649,0.072,0.183,0,0,0.23,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.115 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.153 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0383 +0.667,0.841,0.271,0.466,0,0,0,0,0,0 +1,1,0.537,0.868,0.429,0.25,0,0,0,0.0765 +0.667,0.841,0.507,0.67,0.0858,0,0,0,0,0.0383 +0.667,0.815,0.625,0.625,0,0,0,0,0,0.16 +1,0.863,0.88,0.727,0,0,0,0,0,0.0145 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0.856,0.75,0,0.0383 +1,0.61,0.0259,0.0578,0.25,0.333,0.512,0,0,0.0765 +1,0.61,0.0183,0.0495,0.775,0.45,0,0,0,0.0383 +1,0.61,0.0165,0.0495,0.55,0,0,0,0,0.115 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0798 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.283 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.216 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.134 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.383 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.0765 +0.667,0.701,0.144,0.258,0.621,0.833,0,0,0,0.23 +0.333,0.708,0.19,0.322,0.712,0.483,0,0,0,0.153 +0.667,0.841,0.507,0.67,0.315,0,0,0,0,0.114 +1,0.941,0.929,0.913,0,0,0,0,0,0.205 +1,0.762,0.592,0.501,0,0,0,0,0,0.137 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.61,0.0259,0.0829,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0684 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.255 +0.667,0.736,0.0889,0.33,0.0885,0.0833,0,0,0,0.413 +0.667,0.736,0.104,0.337,0.508,0.167,0,0,0,0.0765 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.0383 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.0383 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0765 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0765 +0.333,0.662,0.0976,0.186,0,0,0,0,0.833,0.191 +0.667,0.802,0.222,0.367,0,0,0,0,0.183,0.306 +0.667,0.841,0.271,0.466,0.28,0.333,0,0,0,0.153 +1,1,0.537,0.868,0.0743,0.45,0,0,0.25,0 +1,0.98,0.752,0.98,0,0,0,0,0,0.0765 +1,0.941,0.929,0.913,0,0,0,0,0,0.115 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.171 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0.216 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.291 +1,0.824,0.287,0.468,0,0,0,0,0,0.68 +1,0.824,0.315,0.449,0,0,0,0,0,0.115 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.134 +0.667,0.682,0.188,0.208,0,0,0,0,0,0.189 +0.667,0.701,0.194,0.258,0,0,0,0,0,0.383 +0.667,0.708,0.226,0.322,0,0,0,0,0.5,0.115 +0.667,0.841,0.569,0.67,0,0,0,0,0,0.153 +0.667,0.815,0.668,0.625,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0.0765 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.658,0.0811,0.099,0,0,0,0,0,0 +1,0.658,0.0436,0.066,0,0,0,0,0,0.0765 +1,0.61,0.0223,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0.115 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0.25 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.314 +1,0.824,0.287,0.468,0,0,0,0,0,0.115 +1,0.824,0.315,0.449,0,0,0.257,0.267,0,0.0383 +0.667,0.736,0.231,0.307,0,0,0.242,1,0.767,0 +0.667,0.736,0.272,0.305,0,0,0,0.25,0.5,0.268 +0.333,0.649,0.164,0.178,0,0,0,0,0.767,0.268 +0.667,0.762,0.34,0.322,0,0,0,0,0.767,0.153 +0.667,0.802,0.358,0.367,0,0,0,0,1,0.0765 +0.667,0.841,0.369,0.466,0,0,0,0,0.0167,0.153 +1,1,0.642,0.868,0,0,0,0,0,0.0383 +1,0.98,0.845,0.98,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0 +1,0.762,0.617,0.501,0,0,0,0,0,0.24 +1,0.71,0.392,0.442,0,0,0,0,0,0.0781 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.067 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.074 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.499 +1,0.623,0.0353,0.15,0,0,0.13,0.0833,0,0.214 +1,0.642,0.0447,0.181,0,0,0,0.667,0,0.15 +1,0.736,0.0889,0.33,0,0,0,0,0,0.336 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.153 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.153 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0383 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0765 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.191 +0.333,0.701,0.144,0.258,0,0,0,0,0.0833,0.0765 +1,1,0.537,0.868,0,0,0,0,0.167,0.115 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.194 +1,0.762,0.592,0.501,0,0,0,0,0,0.184 +1,0.636,0.188,0.246,0,0,0,0,0,0.0277 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.26 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.333 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.197 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.153 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.153 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.191 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0383 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.191 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.16 +0.667,0.762,0.179,0.322,0,0,0.456,0.833,0,0.115 +0.667,0.802,0.222,0.367,0,0,0,0.683,0.0833,0.344 +0.667,0.841,0.271,0.466,0,0,0,0,1,0.0383 +0.333,0.708,0.19,0.322,0.805,0.25,0,0,0.183,0.153 +1,0.98,0.752,0.98,0.255,0.25,0.286,0.75,0,0.0383 +1,0.941,0.929,0.913,0.476,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0.0769 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0744 +1,0.623,0.0353,0.15,0,0,0,0,0,0.287 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.344 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.0383 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.23 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0765 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.383 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.115 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.153 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.421 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.0383 +1,1,0.537,0.868,0,0,0,0,0.0833,0 +1,0.98,0.752,0.98,0,0,0,0,0.167,0.0765 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.31 +1,0.571,0.0316,0.147,0,0,0,0,0,0.244 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.224 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.159 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0.445 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.423 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0.115 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.23 +1,0.728,0.277,0.464,0,0,0,0,0.233,0.153 +1,0.774,0.34,0.567,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0.0383 +1,0.744,0.791,0.928,0.766,0.25,0,0,0,0 +1,0.682,0.749,0.807,0.627,0,0,0,0,0 +1,0.6,0.307,0.35,0.616,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0.168 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.334 +0.667,0.559,0.0314,0.114,0,0,0,0,0,0.287 +0.667,0.58,0.0474,0.245,0,0,0,0,0.483,0.302 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0.0383 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.233 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0383 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.17,0,0,0,0,0.133,0 +0.667,0.642,0.153,0.298,0,0,0,0,0.35,0.23 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.153 +0.667,0.704,0.232,0.395,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0.133,0.0383 +1,0.774,0.64,0.895,0,0,0,0,0.1,0.0383 +1,0.744,0.791,0.928,0.598,0.25,0,0,0,0 +1,0.682,0.749,0.807,0.393,0,0,0,0,0 +1,0.62,0.453,0.5,0.434,0,0,0,0,0.0963 +1,0.565,0.0759,0.116,0.692,0,0,0,0,0 +1,0.56,0.044,0.0743,0.499,0,0,0,0,0.0383 +1,0.56,0.0281,0.0578,0.536,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.294,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.147 +1,0.621,0.109,0.318,0,0,0,0,0,0.3 +1,0.651,0.205,0.456,0,0,0,0,0,0.727 +1,0.651,0.244,0.443,0,0,0,0,0,0.408 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.112 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.23 +0.667,0.621,0.233,0.289,0,0,0,0,0.233,0.433 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.344 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.0765 +0.333,0.617,0.162,0.188,0,0,0.366,0.483,0,0.0765 +1,0.774,0.464,0.567,0,0,0.573,0,0,0 +1,0.79,0.547,0.736,0,0,0.49,0,0,0.153 +1,0.774,0.719,0.895,0,0,0.393,0,0,0.0765 +1,0.744,0.845,0.928,0,0,0.329,0,0,0.191 +1,0.642,0.526,0.555,0,0,0,0,0,0.0729 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.569,0.156,0.183,0.193,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0.2 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.0738 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0779 +1,0.571,0.0295,0.147,0,0,0,0,0,0.153 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.217,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0.0167,0.0383 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.344 +1,0.651,0.244,0.443,0,0,0.25,0.217,0,0 +1,0.651,0.268,0.426,0,0,0.311,0.517,0,0 +0.333,0.591,0.108,0.171,0,0,0.928,0,0,0.153 +0.333,0.591,0.125,0.169,0,0,0.406,0,0,0.153 +0.667,0.621,0.265,0.29,0,0,0.517,0,0,0 +0.667,0.642,0.291,0.298,0,0,0.231,0,0,0.268 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.0998 +1,0.774,0.464,0.567,0,0,0,0,0,0.242 +1,0.79,0.547,0.736,0,0,0,0,0,0.539 +1,0.774,0.719,0.895,0,0,0,0,0,0.0881 +1,0.744,0.845,0.928,0,0,0,0,0.217,0.191 +1,0.682,0.78,0.807,0,0,0,0,0.0167,0 +1,0.62,0.492,0.5,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.316 +0.333,0.571,0.0316,0.147,0,0,0,0,0,0.396 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0.0765 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.0765 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.153 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0383 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.167 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.17,0,0,0.254,0.633,0,0.268 +0.333,0.602,0.0846,0.174,0.706,0.25,0,0.85,0,0.153 +0.333,0.617,0.103,0.188,0.0726,0,0,0,0,0.0765 +1,0.774,0.34,0.567,0.851,0.767,0,0,0.717,0 +1,0.79,0.457,0.736,0.754,0.25,0,0,0,0.0765 +1,0.774,0.64,0.895,0.552,0,0,0,0,0.0383 +1,0.744,0.791,0.928,0.715,0,0,0,0,0 +0.667,0.642,0.505,0.555,0.396,0,0,0,0,0 +0.667,0.6,0.307,0.35,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.26,0.633,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0.1,0,0.501 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.399 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.161 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.153 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0.483,0.0765 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0765 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0765 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.268 +0.667,0.704,0.232,0.395,0,0,0,0,0.483,0.0765 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.153 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0.153 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.0891 +1,0.611,0.0634,0.305,0,0,0,0,0,0.293 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.181 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.115 +0.333,0.591,0.0578,0.181,0,0,0,0,0.233,0.0765 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0383 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.115 +0.667,0.642,0.153,0.298,0,0,0,0,0.133,0.191 +0.333,0.617,0.103,0.188,0,0,0,0,0.35,0.508 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.255 +1,0.79,0.457,0.736,0,0,0,0,0,0.148 +1,0.774,0.64,0.895,0,0,0,0,0,0.0765 +1,0.683,0.532,0.635,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.14,0.133,0,0,0,0.0765 +1,0.62,0.453,0.5,0.641,0.367,0,0,0,0.11 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.23 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.377 +1,0.56,0.0186,0.051,0,0,0,0,0,0.115 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0.554 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.4 +0.667,0.621,0.0764,0.318,0,0,0,0,0.233,0.115 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.0383 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.115 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0765 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0765 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.115 +0.333,0.633,0.124,0.222,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.136,0.133,0,0,0,0 +0.667,0.683,0.532,0.635,0.529,0.117,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0779 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.115 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.732 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.223 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.421 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.153 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.191 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.306 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.191 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.153 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.134 +1,0.744,0.791,0.928,0,0,0.841,0.733,0,0 +1,0.642,0.505,0.555,0,0,0.246,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.586,0.0433,0.177,0,0,0,0,0.233,0.306 +1,0.591,0.0636,0.184,0,0,0,0,0,0.344 +1,0.591,0.0803,0.185,0,0,0,0,0,0.0765 +1,0.621,0.169,0.312,0,0,0,0,0,0.0383 +0.667,0.591,0.101,0.175,0,0,0,0,0,0 +1,0.621,0.198,0.292,0,0,0,0,0,0.115 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.0383 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.197 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.115 +0.667,0.673,0.305,0.326,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0.233,0.0765 +1,0.79,0.547,0.736,0.513,0.467,0.236,0.733,0,0 +1,0.704,0.485,0.613,0.29,0.0333,0,0,0,0.0383 +0.667,0.683,0.57,0.635,0,0,0,0,0,0.0383 +1,0.682,0.78,0.807,0,0,0,0,0,0.13 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.0383 +1,0.56,0.0208,0.0495,0,0,0,0,0,0.0383 +1,0.56,0.0179,0.0495,0,0,0,0,0,0.268 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.586,0.0433,0.177,0,0,0,0,0,0.115 +1,0.591,0.0636,0.184,0,0,0,0,0,0.23 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.115 +0.333,0.591,0.141,0.17,0,0,0,0,0.217,0.383 +1,0.642,0.291,0.298,0,0,0,0,0.0167,0 +1,0.673,0.305,0.326,0,0,0,0,0,0.0383 +1,0.704,0.315,0.395,0,0,0,0,0,0.157 +1,0.714,0.371,0.507,0,0,0,0,0,0.153 +1,0.704,0.485,0.613,0,0,0,0,0,0.0383 +1,0.683,0.57,0.635,0,0,0,0,0,0.186 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.191 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.439 +1,0.611,0.0634,0.305,0,0,0,0,0.483,0.113 +1,0.651,0.107,0.452,0,0,0,0,0,0.279 +1,0.651,0.126,0.456,0,0,0,0,0,0.161 +0.667,0.621,0.0997,0.312,0,0,0.189,0.383,0,0.442 +0.333,0.591,0.0629,0.175,0,0,0.644,0.35,0,0.0765 +0.333,0.591,0.0658,0.171,0.581,0.25,0.758,0,0,0.0383 +0.667,0.621,0.13,0.289,0.455,0,0.864,0,0,0 +0.667,0.621,0.137,0.29,0.618,0,0.668,0,0,0.0765 +1,0.682,0.222,0.422,0,0,0.777,0,0.883,0.0383 +1,0.728,0.277,0.464,0,0,0.4,0,0.567,0.0765 +1,0.774,0.34,0.567,0,0,0.404,0,0,0.0383 +1,0.79,0.457,0.736,0,0,0,0,0,0.115 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.474,0.733,0,0.0383 +1,0.682,0.749,0.807,0,0,0,0,0.383,0 +1,0.581,0.162,0.2,0,0,0,0,0.583,0.115 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +1,0.571,0.0316,0.147,0,0,0,0,0,0.0765 +1,0.611,0.0634,0.305,0,0,0,0,0,0.228 +1,0.621,0.0764,0.318,0,0,0,0,0,0.205 +1,0.621,0.0895,0.321,0,0,0,0,0,0.184 +1,0.651,0.142,0.443,0,0,0,0,0,0.303 +1,0.651,0.157,0.426,0,0,0,0,0,0.211 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.374 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.23 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.115 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0383 +1,0.728,0.277,0.464,0,0,0,0,0.233,0 +1,0.774,0.34,0.567,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.183 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.408 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0531 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.311 +1,0.635,0.0871,0.433,0,0,0,0,0,0.453 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.224 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0765 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.191 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.23 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.502 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.151 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.0765 +0.667,0.704,0.232,0.395,0,0,0,0,0,0 +1,0.79,0.457,0.736,0.733,0.25,0,0,0,0.431 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.0989 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.423 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.0383 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.157 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.166 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.23 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.115 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0765 +0.333,0.617,0.103,0.188,0,0,0,0,0.133,0 +0.667,0.704,0.232,0.395,0,0,0,0,0.583,0.268 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0765 +1,0.774,0.64,0.895,0,0,0,0,0,0.27 +1,0.683,0.532,0.635,0,0,0,0,0,0.115 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0.176 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.262 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.0846 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0.0765 +1,0.58,0.0474,0.245,0,0,0,0,0.35,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.0383 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.237 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0.233,0.153 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.115 +0.333,0.591,0.073,0.169,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0383 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.191 +0.667,0.673,0.19,0.326,0,0,0,0,0.717,0.0765 +1,0.774,0.34,0.567,0,0,0,0,0,0.0765 +1,0.79,0.457,0.736,0,0,0,0,0,0.306 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0.33 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.219 +1,0.56,0.0223,0.0816,0,0,0,0,0,0.466 +1,0.571,0.0295,0.147,0,0,0,0,0,0.544 +1,0.586,0.0433,0.177,0,0,0,0,0.217,0.145 +1,0.621,0.109,0.318,0,0,0,0,0.0167,0.325 +1,0.621,0.143,0.321,0,0,0,0,0,0.37 +1,0.621,0.169,0.312,0,0,0,0,0,0.115 +0.667,0.621,0.185,0.3,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.191 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.0383 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.0383 +1,0.682,0.427,0.422,0,0,0,0,0,0.0383 +0.667,0.617,0.162,0.188,0,0,0,0,0,0 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.309 +0.667,0.714,0.371,0.507,0,0,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0,0,0.717,0.0765 +1,0.744,0.845,0.928,0,0,0,0,0.25,0 +1,0.642,0.526,0.555,0,0,0,0,0,0.0765 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.214,0.217,0,0,0,0 +0.667,0.621,0.143,0.321,0.253,0.0333,0.0514,0.217,0,0.23 +0.667,0.621,0.169,0.312,0,0,0.543,1,0,0.111 +0.667,0.621,0.185,0.3,0,0,0.538,0.267,0,0.174 +0.333,0.591,0.108,0.171,0,0,0.13,0,0,0.0383 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.0765 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.383 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.421 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.228 +0.667,0.704,0.315,0.395,0,0,0,0,0.217,0.388 +1,0.79,0.547,0.736,0,0,0,0,0.267,0.113 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.181 +0.333,0.622,0.294,0.342,0,0,0,0,0,0 +0.333,0.602,0.272,0.302,0,0,0,0,0,0.411 +1,0.62,0.492,0.5,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.589,0.0632,0.342,0,0,0.575,0.733,0,0.368 +0.667,0.611,0.0634,0.305,0,0,0.499,0,0,0.0383 +0.333,0.591,0.0462,0.184,0,0,0.467,0,0,0.191 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.115 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.153 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0383 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.23 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.115 +0.333,0.617,0.103,0.188,0,0,0,0,0.133,0.153 +1,0.774,0.34,0.567,0,0,0,0,0.833,0.347 +1,0.79,0.457,0.736,0,0,0,0,0,0.347 +1,0.774,0.64,0.895,0,0,0,0,0,0.109 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0.181 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0886 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.56,0.0236,0.0816,0.539,0.5,0,0,0,0.0765 +1,0.58,0.0474,0.245,0.332,0,0,0,0,0.112 +0.667,0.611,0.0634,0.305,0.418,0.383,0,0,0,0.0726 +0.333,0.591,0.0462,0.184,0.577,0.383,0,0,0,0.191 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.115 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.483,0.0765 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.191 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.115 +1,0.774,0.34,0.567,0,0,0,0,0.633,0.0765 +1,0.79,0.457,0.736,0,0,0,0,1,0.0383 +1,0.774,0.64,0.895,0.598,0.5,0,0,0.0667,0.23 +1,0.744,0.791,0.928,0.133,0,0,0,0.483,0 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.143 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233 +1,0.611,0.0634,0.305,0,0,0,0,0,0.221 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.153 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.191 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0383 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0383 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.191 +0.667,0.673,0.19,0.326,0,0,0,0,0.383,0.422 +0.667,0.704,0.232,0.395,0.17,0.133,0,0,0.833,0.0383 +0.667,0.714,0.31,0.507,0.74,0.117,0,0,0,0.257 +1,0.774,0.64,0.895,0.469,0,0,0,0,0.29 +1,0.744,0.791,0.928,0,0,0,0,0,0.254 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.05 +1,0.571,0.0316,0.147,0,0,0,0,0,0.46 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.191 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.153 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.236 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0383 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0383 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.39 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.186 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0383 +0.333,0.617,0.103,0.188,0.281,0.25,0,0,0,0.0383 +1,0.774,0.34,0.567,0.329,0,0,0,0,0.348 +1,0.79,0.457,0.736,0,0,0,0,0.233,0.0782 +1,0.774,0.64,0.895,0,0,0,0,0,0.495 +1,0.683,0.532,0.635,0,0,0,0,0,0.108 +1,0.642,0.505,0.555,0,0,0,0,0,0.119 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0213,0.0525,0,0,0,0,0.483,0.276 +0.667,0.56,0.0236,0.0816,0,0,0,0,0,0.296 +0.333,0.571,0.0316,0.147,0,0,0,0,0,0 +0.333,0.586,0.0396,0.177,0.101,0.133,0,0,0,0 +0.667,0.621,0.0764,0.318,0.398,0.117,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0765 +0.333,0.591,0.0629,0.175,0,0,0,0,0.633,0.153 +0.667,0.621,0.116,0.292,0,0,0,0,0.817,0.268 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.115 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0383 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0383 +1,0.728,0.277,0.464,0,0,0,0,0,0.115 +1,0.774,0.34,0.567,0,0,0,0,0,0.0765 +1,0.79,0.457,0.736,0,0,0,0,0,0.0383 +1,0.774,0.64,0.895,0,0,0,0,0,0.153 +1,0.744,0.791,0.928,0,0,0,0,0,0.153 +1,0.682,0.749,0.807,0,0,0,0,0,0.176 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0.123 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.311 +1,0.56,0.0208,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0.217,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0.0167,0.115 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0 +0.667,0.621,0.198,0.292,0,0,0,0,0,0 +0.667,0.621,0.233,0.289,0,0,0,0,0.233,0.153 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.191 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.496 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.191 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.0765 +1,0.79,0.547,0.736,0,0,0,0,0.967,0.0383 +1,0.774,0.719,0.895,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0.0383 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0.0383 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.217,0.0765 +1,0.571,0.0295,0.147,0,0,0,0,0.267,0.0383 +1,0.586,0.0433,0.177,0,0,0,0,0,0.0765 +1,0.591,0.0636,0.184,0,0,0,0,0,0.0383 +1,0.591,0.0803,0.185,0,0,0,0,0.217,0.184 +1,0.651,0.244,0.443,0,0,0,0,0.75,0.282 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.189 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.191 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.37 +0.667,0.591,0.141,0.17,0,0,0,0,0,0 +0.667,0.602,0.154,0.174,0,0,0,0,0,0.115 +0.667,0.617,0.162,0.188,0,0,0,0,0,0.153 +0.667,0.633,0.167,0.222,0,0,0,0,0,0 +0.667,0.638,0.194,0.278,0,0,0,0,0,0.153 +0.667,0.633,0.252,0.331,0,0,0,0,0,0.137 +1,0.683,0.57,0.635,0,0,0,0,0,0.0668 +1,0.642,0.526,0.555,0,0,0,0,0,0.491 +1,0.6,0.334,0.35,0,0,0,0,0,0.0934 +1,0.569,0.156,0.183,0,0,0,0,0,0.0934 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0726 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.223 +1,0.58,0.0474,0.245,0,0,0,0,0,0.29 +1,0.611,0.0634,0.305,0,0,0,0,0,0.21 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.15 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.268 +0.667,0.621,0.0997,0.312,0,0,0.17,0.133,0,0.192 +0.667,0.621,0.11,0.3,0,0,0.185,0.6,0,0.156 +0.667,0.621,0.116,0.292,0,0,0.724,0,0,0 +0.667,0.621,0.13,0.289,0,0,0.424,0,0,0.153 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0765 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0765 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.153 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.191 +0.333,0.638,0.163,0.278,0,0,0,0,0,0.153 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.332 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0676 +1,0.611,0.0634,0.305,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0.233,0.19 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.348 +0.667,0.621,0.0997,0.312,0,0,0.148,0.733,0,0.257 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.227 +0.667,0.621,0.116,0.292,0,0,0.348,0.633,0.233,0.124 +0.667,0.621,0.13,0.289,0,0,0.393,0.85,0,0.0765 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0383 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.23 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0.483,0.421 +1,0.79,0.457,0.736,0,0,0,0,0,0.268 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0.221 +1,0.6,0.307,0.35,0,0,0,0,0,0.0765 +1,0.565,0.0759,0.116,0,0,0,0,0,0.239 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.236 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.419 +1,0.58,0.0474,0.245,0,0,0,0,0,0.349 +1,0.635,0.0871,0.433,0,0,0,0,0,0.298 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0.229 +0.667,0.621,0.0895,0.321,0.173,0.133,0,0,0,0.166 +0.333,0.591,0.0578,0.181,0.752,1,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0.4,0.111,0.133,0,0 +0.333,0.591,0.0658,0.171,0,0,0.761,0.35,0,0.115 +0.333,0.591,0.073,0.169,0,0,0.125,0,0,0.153 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.0383 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0.383,0.115 +0.667,0.704,0.232,0.395,0.136,0.133,0,0,0.1,0 +0.667,0.714,0.31,0.507,0.545,0.117,0,0,0,0.644 +1,0.704,0.432,0.613,0,0,0,0,0,0.19 +1,0.622,0.274,0.342,0,0,0,0,0,0 +1,0.602,0.26,0.302,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0.597 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0.153 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0.233,0.153 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.124 +1,0.704,0.232,0.395,0,0,0,0,0,0.458 +1,0.714,0.31,0.507,0,0,0,0,0,0.428 +1,0.704,0.432,0.613,0,0,0,0,0,0.321 +1,0.683,0.532,0.635,0,0,0,0,0,0.0383 +1,0.642,0.505,0.555,0,0,0,0,0,0.257 +1,0.6,0.307,0.35,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.205 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0819 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.27 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.0383 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.191 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.0765 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.306 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0.23 +0.667,0.602,0.0846,0.174,0,0,0,0,0,0.23 +0.667,0.617,0.103,0.188,0,0,0,0,0,0.268 +0.667,0.704,0.232,0.395,0.478,0.5,0,0,0,0 +1,0.79,0.457,0.736,0.122,0,0,0,0.233,0 +1,0.774,0.64,0.895,0,0,0,0,0,0.172 +1,0.744,0.791,0.928,0.635,0.25,0,0,0,0.0673 +1,0.682,0.749,0.807,0.214,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.131 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0742 +1,0.591,0.0636,0.184,0,0,0,0,0,0.322 +1,0.621,0.143,0.321,0,0,0,0,0.717,0.115 +0.667,0.621,0.169,0.312,0,0,0,0,0.25,0 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.0383 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.517 +0.667,0.621,0.233,0.289,0,0,0,0,0.233,0.232 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.521 +1,0.682,0.427,0.422,0,0,0,0,0,0.0765 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.0765 +1,0.774,0.464,0.567,0,0,0,0,0,0 +1,0.79,0.547,0.736,0,0,0,0,0,0.0765 +0.667,0.704,0.485,0.613,0,0,0,0,0,0 +0.667,0.683,0.57,0.635,0,0,0,0,0,0.074 +0.667,0.642,0.526,0.555,0,0,0,0,0,0.208 +0.667,0.6,0.334,0.35,0,0,0,0,0,0.199 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0.233,0.153 +1,0.585,0.0436,0.172,0,0,0,0,0,0.0383 +1,0.59,0.0641,0.175,0,0,0,0,0.433,0.253 +1,0.648,0.206,0.424,0,0,0,0,0.467,0.261 +0.667,0.619,0.17,0.291,0,0,0,0,0.267,0.337 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.0765 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.115 +0.333,0.59,0.142,0.159,0,0,0,0,0.233,0.153 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.0383 +1,0.725,0.452,0.386,0,0,0,0,0,0.0383 +1,0.771,0.468,0.412,0,0,0,0,0.183,0.422 +0.333,0.637,0.196,0.194,0,0,0,0,0.983,0.251 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.0383 +1,0.741,0.852,0.783,0,0,0.148,0.183,0,0 +1,0.679,0.786,0.88,0,0,0.204,0.333,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0.0766 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.0383 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.289 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.794 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.341 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.181 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.328 +0.333,0.59,0.0662,0.16,0,0,0,0,0.383,0 +0.333,0.59,0.0735,0.159,0,0,0,0,1,0.0383 +0.333,0.59,0.0772,0.159,0,0,0,0,0.0333,0.0383 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.115 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.191 +0.333,0.631,0.125,0.17,0,0,0,0,0.133,0.0383 +1,0.787,0.461,0.484,0,0,0,0,0.1,0 +1,0.771,0.646,0.619,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.191 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.165 +0.667,0.599,0.31,0.415,0,0,0,0,0,0.193 +1,0.571,0.198,0.249,0,0,0,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.153 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.564 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.115 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.306 +0.333,0.616,0.104,0.162,0,0,0,0,0.883,0.153 +0.333,0.631,0.125,0.17,0,0,0,0,0.533,0.153 +0.667,0.637,0.164,0.194,0,0,0,0,0,0 +1,0.701,0.436,0.429,0,0,0,0,0,0.126 +1,0.681,0.537,0.538,0.361,0.233,0,0,0,0 +1,0.64,0.509,0.603,0.29,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.0333 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.161 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.245 +1,0.57,0.0318,0.143,0,0,0,0,0,0.226 +1,0.609,0.0639,0.295,0,0,0,0,0,0.19 +0.667,0.619,0.077,0.301,0,0,0,0,0.233,0.0765 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.153 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.0765 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.0765 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.515 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.278 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0765 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0383 +0.333,0.616,0.104,0.162,0,0,0,0,0.233,0.115 +1,0.771,0.343,0.412,0,0,0,0,0,0.0383 +1,0.787,0.461,0.484,0,0,0,0,0,0.153 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.0383 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0.138,0.133,0,0.0765 +1,0.599,0.31,0.415,0,0,0.0225,0.633,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +1,0.57,0.0318,0.143,0,0,0,0,0,0.0383 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.191 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.3 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0765 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.115 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.153 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0765 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0765 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0383 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0765 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.175 +1,0.787,0.461,0.484,0,0,0,0,0,0.14 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0.111,0.133,0,0.0383 +1,0.679,0.756,0.88,0,0,0.587,0.383,0,0 +1,0.599,0.31,0.415,0,0,0.194,0,0,0.114 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.0383 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.0383 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0765 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.153 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.191 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.115 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.115 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.23 +0.333,0.616,0.104,0.162,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.721,0.517,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0.143,0.183,0,0.268 +1,0.619,0.144,0.299,0,0,0.843,0.583,0,0.0383 +1,0.619,0.17,0.291,0,0,0.721,0,0,0.0383 +1,0.648,0.27,0.394,0,0,0.291,0,0,0.246 +1,0.648,0.29,0.382,0,0,0.637,0,0,0.351 +1,0.648,0.343,0.378,0,0,0.454,0,0,0.406 +1,0.648,0.391,0.378,0,0,0,0,0,0.278 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.305 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.206 +1,0.771,0.468,0.412,0,0,0,0,0,0.75 +1,0.787,0.551,0.484,0,0,0,0,0.183,0.207 +1,0.771,0.725,0.619,0,0,0,0,0.05,0.251 +1,0.741,0.852,0.783,0,0,0,0,0,0.21 +1,0.679,0.786,0.88,0,0,0,0,0,0.107 +1,0.617,0.496,0.597,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0.0383 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0.0383 +1,0.585,0.0436,0.172,0,0,0,0,0,0.0383 +1,0.619,0.11,0.301,0,0,0,0,0,0.215 +1,0.619,0.144,0.299,0,0,0,0,0,0.178 +1,0.648,0.246,0.411,0,0,0.13,0.433,0,0.294 +1,0.648,0.27,0.394,0,0,0.883,0.0833,0.183,0.202 +1,0.648,0.29,0.382,0,0,0,0,0.283,0.155 +1,0.619,0.234,0.269,0,0,0,0,0,0.309 +1,0.648,0.391,0.378,0,0,0,0,0.233,0.153 +1,0.679,0.431,0.379,0,0,0,0,0,0.0383 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.424 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.2 +0.667,0.712,0.374,0.339,0,0,0,0,0,0.423 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.133 +0.667,0.681,0.574,0.538,0,0,0,0,0,0.0955 +1,0.679,0.786,0.88,0,0,0,0,0,0.0859 +1,0.617,0.496,0.597,0,0,0,0,0,0.113 +0.667,0.565,0.0875,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.175 +0.333,0.56,0.0238,0.0798,0,0,0,0,0,0.261 +0.333,0.57,0.0318,0.143,0,0,0,0,0,0.0383 +0.333,0.585,0.0399,0.172,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.268 +0.667,0.64,0.155,0.269,0,0,0,0,0.133,0.383 +0.667,0.616,0.104,0.162,0,0,0,0,0.333,0.0383 +1,0.701,0.234,0.291,0,0,0,0,0,0.153 +1,0.712,0.313,0.339,0,0,0,0,0.383,0.0383 +1,0.701,0.436,0.429,0,0,0,0,0.0833,0.115 +1,0.681,0.537,0.538,0,0,0,0,0,0.223 +1,0.601,0.262,0.326,0,0,0,0,0,0.251 +1,0.58,0.163,0.232,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.268 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0.233,0.463 +1,0.633,0.0879,0.417,0,0,0,0,0,0.328 +1,0.648,0.108,0.427,0,0,0,0,0,0.283 +1,0.648,0.127,0.424,0,0,0,0,0,0.423 +1,0.648,0.143,0.411,0,0,0,0,0,0.0718 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.486 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.439 +0.333,0.59,0.0735,0.159,0,0,0.0562,0.133,0,0.465 +0.667,0.619,0.139,0.268,0,0,0.472,0.633,0,0.344 +0.333,0.601,0.0853,0.159,0,0,0.0642,0,0,0.127 +0.333,0.616,0.104,0.162,0,0,0,0,0,0 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.326,0.383,0,0,0,0 +0.667,0.701,0.436,0.429,0.487,1,0,0,0,0.161 +1,0.741,0.797,0.783,0,1,0,0,0,0.257 +1,0.679,0.756,0.88,0,1,0,0,0,0.0305 +1,0.617,0.457,0.597,0.469,0.85,0,0,0,0.135 +1,0.562,0.0159,0.0495,0.274,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.167 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.392 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.143 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.164 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.0471 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.282 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.339 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.343 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.0383 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0383 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.0383 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.191 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.153 +0.667,0.701,0.234,0.291,0,0,0,0,0.233,0.153 +1,0.787,0.461,0.484,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0.499,0.233,0,0,0,0.272 +1,0.679,0.756,0.88,0.529,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.15 +1,0.56,0.0238,0.0798,0,0,0.307,0.633,0,0.0765 +1,0.57,0.0318,0.143,0,0,0.457,0.133,0,0.153 +1,0.585,0.0399,0.172,0,0,0.746,0,0,0.191 +1,0.619,0.077,0.301,0,0,0.348,0,0,0.153 +0.667,0.619,0.0902,0.299,0,0,0.348,0,0.883,0 +0.667,0.619,0.1,0.291,0,0,0.53,0,0.05,0.0765 +0.667,0.619,0.111,0.279,0,0,0.721,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0.482,0,0,0.0765 +0.667,0.619,0.131,0.269,0,0,0.661,0,0,0.0383 +0.667,0.619,0.139,0.268,0,0,0.204,0,0,0.0383 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0383 +0.333,0.616,0.104,0.162,0,0,0,0,0.133,0 +0.667,0.701,0.234,0.291,0,0,0.0963,0.133,0.333,0.0765 +0.667,0.712,0.313,0.339,0,0,0.554,0.633,0,0.233 +0.667,0.701,0.436,0.429,0,0,0.559,0,0,0.266 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.231 +1,0.679,0.756,0.88,0,0,0,0,0,0.12 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.0383 +1,0.56,0.0172,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.191 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.153 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.0765 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0.115 +0.333,0.585,0.0399,0.172,0.588,0.733,0,0,0,0 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.0765 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.226 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0151 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0383 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0765 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.239 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.374 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0383 +0.667,0.701,0.234,0.291,0.26,0.233,0,0,0.133,0.0383 +0.667,0.712,0.313,0.339,0.421,0,0,0,0.333,0.153 +1,0.771,0.646,0.619,0,0,0.199,0.25,0,0 +1,0.741,0.797,0.783,0,0,0.364,0,0,0 +1,0.679,0.756,0.88,0,0,0.222,0,0,0 +1,0.617,0.457,0.597,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0.27 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.467,0.0383 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.648,0.206,0.424,0,0,0,0,0.233,0.31 +1,0.648,0.246,0.411,0,0,0,0,0,0.169 +1,0.648,0.27,0.394,0,0,0,0,0,0.479 +0.667,0.619,0.199,0.271,0,0,0,0,0,0.115 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.0383 +0.667,0.619,0.267,0.268,0,0,0,0,0,0.153 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.153 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.306 +0.667,0.701,0.318,0.291,0,0,0,0,0.233,0.0383 +1,0.787,0.551,0.484,0,0,0,0,0,0.0765 +1,0.771,0.725,0.619,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0.0383 +1,0.679,0.786,0.88,0,0,0,0,0,0.161 +1,0.599,0.337,0.415,0,0,0,0,0,0.107 +1,0.565,0.0875,0.116,0,0,0,0,0,0.133 +1,0.56,0.0443,0.0743,0,0,0,0,0,0.219 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0798,0,0,0,0,0,0 +1,0.578,0.0412,0.236,0,0,0,0,0,0.324 +1,0.609,0.069,0.295,0,0,0,0,0,0.335 +1,0.619,0.11,0.301,0,0,0,0,0,0.161 +1,0.619,0.144,0.299,0,0,0,0,0,0.141 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0.0383 +0.667,0.59,0.102,0.164,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.0383 +0.667,0.59,0.126,0.159,0,0,0,0,0,0.0383 +1,0.619,0.267,0.268,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.23 +0.667,0.671,0.308,0.274,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0.0383 +1,0.787,0.551,0.484,0,0,0.185,0.183,0,0.191 +1,0.771,0.725,0.619,0,0,0.819,0.333,0.467,0 +1,0.741,0.852,0.783,0.635,0.483,0.693,0,0,0 +1,0.679,0.786,0.88,0.287,0,0.49,0,0,0 +1,0.599,0.337,0.415,0,0,0.48,0,0,0 +1,0.568,0.157,0.183,0,0,0.657,0,0,0.0383 +1,0.56,0.0377,0.0743,0,0,0.0883,0,0,0.348 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.155 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.367 +1,0.57,0.0318,0.143,0,0,0,0,0.233,0.193 +1,0.585,0.0399,0.172,0,0,0,0,0,0.191 +1,0.59,0.0465,0.175,0,0,0,0,0,0.115 +1,0.59,0.053,0.174,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0.176 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.191 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.191 +0.333,0.631,0.125,0.17,0,0,0,0,0.233,0.0995 +0.333,0.637,0.164,0.194,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0.153 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.0936 +0.667,0.64,0.509,0.603,0.563,0.483,0,0,0,0 +1,0.617,0.457,0.597,0.552,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.294,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.578 +0.667,0.578,0.0478,0.236,0,0,0,0,0.467,0.269 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.385 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.0765 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.306 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0765 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.268 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0383 +0.333,0.616,0.104,0.162,0,0,0,0,0.383,0.191 +0.333,0.631,0.125,0.17,0,0,0,0,0.0833,0.241 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0,0,0,0.0383 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.067 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.167 +1,0.557,0.0316,0.11,0,0,0,0,0,0.318 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.0587 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.153 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0383 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.115 +0.667,0.619,0.139,0.268,0,0,0,0,0.383,0.136 +0.667,0.64,0.155,0.269,0,0,0,0,0.317,0.0765 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.115 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.191 +1,0.787,0.461,0.484,0,0,0,0,0.233,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.268 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.617,0.457,0.597,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0862 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0.364 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.188 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.368 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.181 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0.883,0.0765 +0.667,0.619,0.131,0.269,0,0,0,0,0.05,0.344 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.344 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.115 +1,0.671,0.191,0.274,0,0,0,0,0,0.115 +1,0.701,0.234,0.291,0,0,0,0,0,0.0383 +1,0.712,0.313,0.339,0,0,0,0,0.883,0.0383 +1,0.701,0.436,0.429,0,0,0,0,0.283,0.115 +1,0.681,0.537,0.538,0,0,0,0,0,0.317 +1,0.64,0.509,0.603,0,0,0,0,0,0.0348 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0.153 +0.667,0.557,0.0316,0.11,0.237,0.233,0,0,0,0.138 +0.667,0.578,0.0478,0.236,0.338,0,0,0,0.383,0.31 +0.333,0.585,0.0399,0.172,0,0,0,0,0.317,0.115 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.0383 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.289 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.102 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0383 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.0765 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.115 +0.333,0.601,0.0853,0.159,0,0,0,0,0.133,0 +0.333,0.616,0.104,0.162,0,0,0,0,0.333,0.115 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.153 +1,0.787,0.461,0.484,0,0,0,0,0,0.115 +1,0.771,0.646,0.619,0,0,0,0,0,0.129 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.617,0.457,0.597,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0.565,0.767,0,0.119 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.0506,0,0,0,0,0,0.327 +1,0.56,0.0223,0.0798,0,0,0,0,0,0.226 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.107 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.146 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.274 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.395 +0.667,0.619,0.199,0.271,0,0,0,0,0,0.067 +0.667,0.619,0.234,0.269,0,0,0,0,0.233,0.373 +0.667,0.619,0.267,0.268,0.644,0.233,0,0,0,0.258 +0.667,0.64,0.293,0.269,0.0956,0,0,0,0,0.379 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.631,0.254,0.239,0,0,0,0,0,0 +0.667,0.621,0.296,0.294,0,0,0,0,0,0 +0.667,0.64,0.53,0.603,0,0,0,0,0.467,0.0963 +0.667,0.599,0.337,0.415,0,0,0,0,0,0 +0.667,0.565,0.0875,0.116,0,0,0,0,0,0.186 +1,0.557,0.0705,0.099,0,0,0,0,0,0.189 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.476 +1,0.619,0.11,0.301,0,0,0,0,0,0.0149 +1,0.619,0.144,0.299,0,0,0,0,0.233,0.0383 +1,0.648,0.246,0.411,0,0,0,0,0,0.191 +1,0.648,0.27,0.394,0,0,0,0,0,0 +0.667,0.619,0.199,0.271,0,0,0,0,0,0.0765 +0.667,0.619,0.234,0.269,0,0,0.596,0.517,0,0.23 +1,0.619,0.267,0.268,0,0,0.538,0,0,0 +1,0.64,0.293,0.269,0,0,0.352,0,0,0.268 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.0765 +0.667,0.701,0.318,0.291,0.398,0.233,0,0,0,0.0765 +1,0.787,0.551,0.484,0.488,0,0,0,0,0.104 +1,0.771,0.725,0.619,0,0,0,0,0,0.235 +1,0.741,0.852,0.783,0,0,0,0,0,0.0383 +1,0.679,0.786,0.88,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.191 +1,0.56,0.0172,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.115 +1,0.56,0.0186,0.0506,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.0765 +1,0.586,0.0637,0.33,0,0,0,0,0,0.534 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.292 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.404 +0.333,0.59,0.053,0.174,0,0,0,0,0.7,0.0765 +0,0.562,0.0159,0.0495,0.124,0.133,0,0,0,0 +0.333,0.59,0.0633,0.164,0.409,0.85,0,0,0,0.0765 +0.667,0.619,0.117,0.271,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.115 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.115 +0.333,0.601,0.0853,0.159,0.312,0.233,0,0,0,0.0765 +0.333,0.616,0.104,0.162,0.669,0,0,0,0,0.0559 +0.667,0.701,0.234,0.291,0.704,0.133,0,0,0,0.213 +1,0.787,0.461,0.484,0.255,0.1,0,0,0,0 +0.333,0.631,0.226,0.239,0,0,0.563,0.767,0,0.0383 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0.716,0,0,0.0891 +1,0.617,0.457,0.597,0,0,0.531,0,0,0 +1,0.571,0.198,0.249,0,0,0.472,0,0,0 +1,0.557,0.0595,0.099,0,0,0.57,0,0,0 +1,0.557,0.0316,0.066,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0.108,0.133,0,0,0,0.202 +1,0.586,0.0637,0.33,0.651,1,0,0,0,0.294 +1,0.633,0.0879,0.417,0,0.85,0,0,0.467,0.142 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.218 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.268 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.138,0.133,0,0 +0.333,0.59,0.0735,0.159,0,0,0.135,1,0,0.0765 +0.333,0.59,0.0772,0.159,0,0,0,0.417,0,0.115 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.115 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.115 +0.333,0.631,0.125,0.17,0,0,0,0,0.383,0.268 +0.667,0.712,0.313,0.339,0,0,0,0,0.0833,0.0765 +1,0.771,0.646,0.619,0,0,0.25,0.383,0,0.0765 +1,0.741,0.797,0.783,0,0,0.356,0.383,0,0 +1,0.679,0.756,0.88,0,0,0.332,0,0,0.162 +1,0.617,0.457,0.597,0,0,0,0,0,0.14 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.237 +1,0.609,0.0639,0.295,0,0,0,0,0,0.386 +1,0.619,0.077,0.301,0,0,0,0,0.233,0.107 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.278 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.115 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.268 +0.333,0.59,0.0662,0.16,0,0,0,0,0.467,0.0383 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.0765 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.191 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0383 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0765 +1,0.771,0.343,0.412,0,0,0,0,0,0.157 +0.667,0.712,0.313,0.339,0,0,0,0,0.233,0.115 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0.268 +1,0.679,0.756,0.88,0,0,0,0,0,0.185 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.322 +1,0.578,0.0478,0.236,0,0,0.135,0.383,0,0.13 +0.667,0.585,0.0399,0.172,0,0,0,0.383,0,0.19 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0765 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0765 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.115 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.0765 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.115 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.344 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.157 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.667,0.637,0.164,0.194,0,0,0,0,0.1,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.0765 +1,0.741,0.797,0.783,0,0,0,0,0,0.182 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.383,0 +1,0.56,0.0172,0.0495,0,0,0.209,0.383,0.317,0 +1,0.56,0.0157,0.0495,0,0,0.544,0.383,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.348 +1,0.57,0.0318,0.143,0,0,0,0,0,0.161 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.157 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.416 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0.472,0.517,0,0.115 +0.333,0.59,0.0633,0.164,0,0,0.482,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0.419,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0.528,0,0,0.268 +0.333,0.59,0.0772,0.159,0,0,0.774,0,0,0.344 +0.333,0.601,0.0853,0.159,0,0,0.371,0,0,0.0383 +0.333,0.616,0.104,0.162,0,0,0.616,0,0,0.0765 +0.333,0.631,0.125,0.17,0,0,0.231,0,0,0.189 +1,0.787,0.461,0.484,0,0,0.276,0,0,0.17 +1,0.771,0.646,0.619,0.361,0.383,0.661,0,0,0 +1,0.741,0.797,0.783,0.795,1,0.894,0,0.233,0 +1,0.679,0.756,0.88,0.161,0.6,0.207,0.133,0,0 +1,0.599,0.31,0.415,0,0,0.352,0.633,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.299 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0.233,0 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0 +0.667,0.59,0.102,0.164,0,0,0,0,0,0.0383 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.15 +0.667,0.59,0.126,0.159,0,0,0,0,0,0.398 +0.667,0.619,0.267,0.268,0,0,0,0,0,1 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.203 +0.667,0.671,0.308,0.274,0,0,0,0,0.233,0.306 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.344 +0.667,0.712,0.374,0.339,0.159,0.183,0,0,0,0.115 +0.667,0.701,0.489,0.429,0.522,0.05,0,0,0,0.116 +1,0.681,0.574,0.538,0,0,0,0,0,0.153 +1,0.64,0.53,0.603,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0.0383 +1,0.619,0.144,0.299,0,0,0,0,0,0.263 +1,0.619,0.17,0.291,0,0,0,0,0,0 +1,0.619,0.186,0.279,0,0,0,0,0,0.306 +1,0.648,0.29,0.382,0,0,0,0,0,0.0383 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.0765 +0.667,0.619,0.267,0.268,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0.233,0.191 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.153 +1,0.771,0.468,0.412,0,0,0,0,0,0.363 +1,0.787,0.551,0.484,0,0,0,0,0,0.131 +1,0.771,0.725,0.619,0,0,0,0,0,0.191 +1,0.741,0.852,0.783,0,0,0,0,0,0.0765 +1,0.679,0.786,0.88,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0.317 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.11 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0.153 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.115 +0.333,0.59,0.0633,0.164,0,0,0,0,0.383,0.0383 +0.333,0.59,0.0662,0.16,0,0,0,0,0.0833,0.153 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.306 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.175 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.149 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.174 +0.667,0.701,0.234,0.291,0,0,0,0,0.467,0.0765 +1,0.787,0.461,0.484,0.558,0.233,0,0,0,0.0765 +0.667,0.701,0.436,0.429,0.464,0,0,0,0,0 +1,0.741,0.797,0.783,0.522,0,0,0,0,0 +1,0.679,0.756,0.88,0.57,0,0,0,0,0 +1,0.617,0.457,0.597,0.327,0,0,0,0.467,0 +1,0.568,0.137,0.183,0,0,0,0,0,0.237 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.268 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.0765 +1,0.58,0.0474,0.228,0,0,0,0,0,0.43 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0.305 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.109 +0.333,0.591,0.0527,0.164,0,0,0,0,0.383,0.246 +0.333,0.591,0.0578,0.16,0,0,0,0,0.0833,0.0765 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.23 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0383 +0.333,0.617,0.103,0.151,0,0,0,0,0.233,0.23 +1,0.774,0.34,0.371,0,0,0,0,0,0.0765 +1,0.79,0.457,0.42,0,0,0,0,0,0.0383 +1,0.774,0.64,0.523,0,0,0,0,0,0.115 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0.0383 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.415 +1,0.571,0.0316,0.139,0,0,0,0,0,0.383 +1,0.611,0.0634,0.284,0,0,0,0,0,0.595 +1,0.651,0.107,0.404,0,0,0,0,0,0.418 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.102 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.286 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.211 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0765 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.115 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.573 +0.667,0.633,0.124,0.157,0,0,0,0,0,0.0383 +0.667,0.638,0.163,0.173,0,0,0,0,0,0.191 +0.667,0.633,0.224,0.207,0,0,0,0,0,0.0383 +0.667,0.622,0.274,0.257,0,0,0,0,0,0.231 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.355 +1,0.589,0.0632,0.317,0,0,0.78,0.883,0,0.21 +0.667,0.611,0.0634,0.284,0,0,0.425,0.633,0,0.2 +0.667,0.621,0.0764,0.286,0,0,0.584,0,0,0.264 +0.667,0.621,0.0895,0.278,0,0,0.56,0,0,0.254 +0.333,0.591,0.0578,0.16,0,0,0.51,0,0,0.0383 +0.333,0.591,0.0629,0.154,0,0,0.482,0,0,0.153 +0.667,0.621,0.116,0.251,0,0,0.167,0,0,0.0765 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.268 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0383 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.239 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.284 +0.667,0.704,0.232,0.264,0,0,0,0,0.633,0.23 +1,0.79,0.457,0.42,0,0,0,0,0.8,0.235 +1,0.774,0.64,0.523,0.55,0.483,0,0,0.383,0 +1,0.744,0.791,0.671,0,0,0,0,0.0833,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0.354 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0578,0.16,0,0,0,0,0,0.0971 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0.133,0.497 +0.667,0.673,0.19,0.252,0,0,0,0,0.1,0.0383 +0.667,0.704,0.232,0.264,0,0,0,0,0.383,0.153 +0.667,0.714,0.31,0.296,0,0,0,0,0.0833,0.268 +1,0.774,0.64,0.523,0,0,0,0,0,0.268 +1,0.683,0.532,0.464,0,0,0,0,0,0.0765 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0.115 +1,0.565,0.0759,0.116,0,0,0,0,0,0.119 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0.0383 +1,0.56,0.0179,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.227 +1,0.621,0.109,0.286,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0.153 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.115 +0.667,0.621,0.185,0.259,0,0,0,0,0,0.482 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.221 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.268 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.0765 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.23 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.115 +0.667,0.704,0.315,0.264,0,0,0,0,0,0 +1,0.79,0.547,0.42,0.294,0.233,0,0,0,0 +1,0.774,0.719,0.523,0.579,0.383,0,0,0,0 +1,0.744,0.845,0.671,0.407,0.1,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0 +0.667,0.581,0.176,0.227,0,0,0,0,0,0.0849 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0.0604 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.56,0.0223,0.0781,0,0,0,0,0,0.115 +0.667,0.571,0.0295,0.139,0,0,0,0,0,0 +0.667,0.586,0.0433,0.167,0,0,0.0369,0.5,0,0.128 +1,0.651,0.155,0.404,0,0,0,0,0.233,0.204 +0.667,0.621,0.143,0.278,0,0,0.583,0.75,0,0 +0.667,0.621,0.169,0.27,0,0,0.49,0,0,0.306 +0.667,0.621,0.185,0.259,0,0,0.526,0,0.133,0 +0.333,0.591,0.108,0.15,0,0,0,0,0.1,0.0383 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.23 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.191 +0.667,0.642,0.291,0.249,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0.112,0.133,0,0,0.133,0 +1,0.774,0.464,0.371,0.614,0.35,0,0,0.1,0.23 +1,0.714,0.371,0.296,0,0,0,0,0,0 +1,0.704,0.485,0.365,0,0,0,0,0,0.0765 +1,0.683,0.57,0.464,0,0,0,0,0,0.091 +1,0.642,0.526,0.549,0,0,0,0,0,0.214 +1,0.6,0.334,0.405,0,0,0,0,0,0.0838 +1,0.569,0.156,0.183,0,0,0,0,0,0.256 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0147 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.0383 +1,0.56,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.203 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0.152 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.536 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0765 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0383 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.333,0.633,0.124,0.157,0,0,0,0,0.383,0 +1,0.79,0.457,0.42,0,0,0,0,0.717,0.0765 +0.667,0.704,0.432,0.365,0,0,0,0,1,0.153 +0.667,0.683,0.532,0.464,0,0,0,0,0.283,0.126 +0.667,0.602,0.26,0.299,0,0,0,0,0,0.0756 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.102 +1,0.571,0.0316,0.139,0,0,0,0,0,0.189 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.34 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.29 +0.333,0.591,0.0629,0.154,0,0,0,0,0.133,0.264 +0.333,0.591,0.0658,0.15,0,0,0,0,0.1,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0765 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.115 +0.667,0.642,0.153,0.249,0,0,0.579,0.883,0,0.23 +0.667,0.673,0.19,0.252,0,0,0.567,0.633,0,0.191 +1,0.774,0.34,0.371,0,0,0,0,0.233,0.153 +1,0.79,0.457,0.42,0,0,0,0,0,0.0765 +1,0.774,0.64,0.523,0,0,0,0,0,0.131 +1,0.744,0.791,0.671,0,0,0,0,0,0.0765 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0.335 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.106 +1,0.58,0.0474,0.228,0,0,0,0,0.133,0.384 +1,0.611,0.0634,0.284,0,0,0,0,0.817,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.191 +0.667,0.591,0.0527,0.164,0.188,0.133,0,0,0,0 +0.667,0.591,0.0578,0.16,0.23,0.35,0,0,0,0.191 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0.145 +1,0.673,0.19,0.252,0,0,0,0,0.133,0.456 +1,0.704,0.232,0.264,0,0,0,0,0.333,0.0765 +1,0.714,0.31,0.296,0,0,0,0,0.467,0.497 +1,0.704,0.432,0.365,0,0,0,0,0,0.0765 +1,0.683,0.532,0.464,0,0,0,0,0,0.0765 +1,0.602,0.26,0.299,0,0,0,0,0,0.0383 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.142 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0.307 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.187 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.0765 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.191 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0383 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.268 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.306 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.115 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.153 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0383 +1,0.774,0.34,0.371,0,0,0,0,0.133,0.115 +1,0.714,0.31,0.296,0,0,0,0,0.583,0.0765 +1,0.704,0.432,0.365,0,0,0,0,0,0 +1,0.622,0.274,0.257,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0.233,0.428 +1,0.611,0.0634,0.284,0,0,0,0,0,0.268 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.333,0.591,0.0658,0.15,0,0,0,0,1,0.115 +0.333,0.591,0.073,0.149,0,0,0,0,0.0667,0.0765 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.153 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.153 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.0383 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.115 +1,0.79,0.457,0.42,0,0,0,0,0,0.115 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0.0383 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.1 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.384 +1,0.571,0.0295,0.139,0,0,0,0,0,0.389 +1,0.586,0.0433,0.167,0,0,0,0,0.233,0.21 +1,0.651,0.155,0.404,0,0,0.236,0.383,0,0.341 +0.667,0.621,0.143,0.278,0,0,0.695,0.117,0,0.253 +0.333,0.591,0.0934,0.16,0,0,0.748,0,0.233,0.0383 +0.667,0.621,0.185,0.259,0,0,0.828,0,0,0.0765 +0.667,0.621,0.198,0.251,0,0,0.49,0,0,0.0383 +0.667,0.621,0.233,0.249,0,0,1,0,0,0.191 +0.667,0.591,0.141,0.149,0,0,0.464,0,0,0.0383 +0.667,0.602,0.154,0.149,0,0,0.636,0,0,0.299 +1,0.673,0.305,0.252,0,0,0.915,0,0,0.0535 +1,0.774,0.464,0.371,0,0,0.509,0,0,0.139 +1,0.79,0.547,0.42,0,0,0.12,0,0.633,0 +1,0.774,0.719,0.523,0,0,0,0,0.317,0.153 +1,0.744,0.845,0.671,0,0,0.175,0.383,0,0.115 +1,0.682,0.78,0.799,0,0,0,0.367,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0.177 +1,0.569,0.156,0.183,0,0,0,0,0,0.223 +1,0.56,0.044,0.0743,0,0,0,0,0,0.356 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.467,0.115 +1,0.621,0.109,0.286,0,0,0,0,0,0.366 +1,0.651,0.205,0.392,0,0,0,0,0,0.38 +1,0.651,0.244,0.381,0,0,0,0,0,0.115 +0.667,0.621,0.185,0.259,0,0,0,0,0.383,0.0765 +0.667,0.621,0.198,0.251,0,0,0,0,0.0833,0 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.0765 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.0383 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.153 +0.333,0.617,0.162,0.151,0,0,0,0,0,0.0765 +0.333,0.633,0.167,0.157,0,0,0,0,0,0.0383 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.0765 +1,0.774,0.719,0.523,0,0,0,0,0,0.0769 +1,0.744,0.845,0.671,0,0,0,0,0,0.0383 +1,0.682,0.78,0.799,0.692,0.233,0,0,0,0.0383 +1,0.6,0.334,0.405,0.354,0,0,0,0,0.202 +1,0.565,0.0869,0.116,0,0,0,0,0,0.0968 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.23 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0503 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.404 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.454 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.115 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.333,0.591,0.073,0.149,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0383 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.0765 +1,0.728,0.277,0.353,0,0,0,0,0.467,0.0765 +1,0.774,0.34,0.371,0,0,0,0,0,0.153 +1,0.79,0.457,0.42,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0.48,0.633,0,0 +0.667,0.683,0.532,0.464,0,0,0.472,0.117,0,0 +1,0.682,0.749,0.799,0,0,0.329,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.315 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.368 +1,0.571,0.0316,0.139,0,0,0,0,0,0.537 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.191 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0.717,0.23 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.268 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.0383 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0383 +0.667,0.704,0.232,0.264,0,0,0,0,0.467,0 +0.333,0.638,0.163,0.173,0,0,0,0,0,0.195 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0.233,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.115 +1,0.56,0.0236,0.0781,0,0,0,0,0.133,0.182 +1,0.589,0.0632,0.317,0.593,0.233,0,0,0.467,0.287 +1,0.635,0.0871,0.402,0.322,0,0,0,0.333,0.329 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.221 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.0383 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0383 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.115 +0.667,0.621,0.116,0.251,0,0,0,0,0,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.0383 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0383 +0.667,0.642,0.153,0.249,0,0,0,0,0,0 +1,0.728,0.277,0.353,0,0,0,0,0,0.0383 +1,0.774,0.34,0.371,0.336,0.233,0,0,0,0.153 +1,0.79,0.457,0.42,0.474,0,0,0,0,0.153 +1,0.774,0.64,0.523,0.448,0.883,0,0,0,0.0383 +1,0.744,0.791,0.671,0,0.333,0.555,0.75,0,0.452 +1,0.642,0.505,0.549,0,0,0.512,0,0,0.117 +1,0.6,0.307,0.405,0,0,0,0,0,0.133 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.136 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.104 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.322 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.182 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0718 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0942 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.127 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.316 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.191 +0.667,0.591,0.073,0.149,0,0,0,0,0,0.0383 +0.667,0.591,0.0767,0.149,0,0,0.717,0.633,0,0.191 +0.667,0.642,0.153,0.249,0,0,0.695,0.883,0,0.306 +0.667,0.673,0.19,0.252,0,0,0.565,0,0,0.0765 +0.333,0.633,0.124,0.157,0,0,0.509,0,0.233,0.115 +0.667,0.714,0.31,0.296,0,0,0.512,0,0,0.0765 +0.667,0.704,0.432,0.365,0,0,0.448,0,0,0 +0.667,0.683,0.532,0.464,0,0,0.318,0,0,0.519 +1,0.642,0.505,0.549,0,0,0,0,0,0.28 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0979 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.191 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.137 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.306 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.617,0.103,0.151,0,0,0,0,0.467,0.115 +0.333,0.633,0.124,0.157,0,0,0,0,0.233,0.306 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.174 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0.148 +1,0.682,0.749,0.799,0,0,0,0,0,0.0777 +1,0.581,0.162,0.227,0,0,0,0,0,0.115 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.153 +1,0.56,0.0201,0.0503,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.362 +1,0.571,0.0295,0.139,0,0,0,0,0,0.567 +1,0.611,0.0685,0.284,0,0,0,0,0,0.103 +1,0.621,0.109,0.286,0,0,0,0,0,0.141 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0 +0.667,0.621,0.169,0.27,0,0,0,0,0,0 +0.667,0.621,0.185,0.259,0,0,0,0,0,0.153 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.538 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.535 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.262 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.325 +0.667,0.673,0.305,0.252,0,0,0,0,0.467,0.163 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.112 +1,0.79,0.547,0.42,0,0,0,0,0,0.298 +1,0.774,0.719,0.523,0,0,0,0,0,0.156 +1,0.744,0.845,0.671,0,0,0,0,0,0.268 +1,0.682,0.78,0.799,0,0,0,0,0,0.233 +1,0.62,0.492,0.582,0,0,0,0,0,0.0676 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0.13 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0878 +1,0.571,0.0295,0.139,0.234,0.383,0,0,0,0.0765 +1,0.586,0.0433,0.167,0.37,0.1,0,0,0,0.373 +1,0.591,0.0636,0.168,0,0,0,0,0,0.157 +1,0.591,0.0803,0.164,0.143,0.133,0,0,0,0.239 +1,0.621,0.169,0.27,0.796,0.35,0,0,0,0.375 +1,0.621,0.185,0.259,0.731,0,0,0,0,0.133 +1,0.621,0.198,0.251,0.501,0,0,0,0,0.329 +1,0.621,0.233,0.249,0.706,0,0,0,0,0.153 +1,0.621,0.265,0.249,0.665,0,0,0,0,0 +1,0.642,0.291,0.249,0.443,0,0,0,0,0 +1,0.617,0.162,0.151,0.589,0,0,0,0,0.0383 +0.667,0.633,0.167,0.157,0.71,0,0,0,0,0.139 +1,0.714,0.371,0.296,0.763,0,0,0,0,0.188 +1,0.704,0.485,0.365,0,0,0,0,0,0.0383 +1,0.622,0.294,0.257,0,0,0,0,0,0 +1,0.602,0.272,0.299,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.0765 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.786 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.619 +1,0.559,0.0314,0.107,0,0,0,0,0,0.186 +0.333,0.571,0.0316,0.139,0,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0,0,0,0,0,0.0765 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.115 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0765 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0.467,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0.115 +1,0.79,0.457,0.42,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.531,0.717,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.209 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.166 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0765 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.115 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0383 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0765 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.153 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.23 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.153 +0.667,0.673,0.19,0.252,0,0,0,0,0.467,0 +0.667,0.704,0.232,0.264,0,0,0,0,0.233,0.0383 +1,0.79,0.457,0.42,0.281,0.383,0,0,0,0.527 +1,0.774,0.64,0.523,0.68,0.1,0.152,0.133,0,0.115 +1,0.744,0.791,0.671,0,0,0.283,0.617,0,0.334 +1,0.642,0.505,0.549,0,0,0,0,0,0.117 +1,0.581,0.162,0.227,0,0,0,0,0,0.0755 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.559,0.0213,0.0511,0,0,0,0,0,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.138,0.383,0,0.0383 +0.333,0.591,0.0462,0.168,0,0,0.315,0.117,0,0.115 +0.333,0.591,0.0527,0.164,0,0,0.501,0,0,0.268 +0.333,0.591,0.0578,0.16,0,0,0.917,0,0,0.0383 +0.333,0.591,0.0629,0.154,0,0,0.848,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.679,0,0,0.33 +0.667,0.621,0.13,0.249,0,0,0.385,0,0,0.131 +0.667,0.621,0.137,0.249,0,0,0.485,0,0,0.356 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.343 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.153 +0.667,0.704,0.232,0.264,0,0,0,0,0.233,0.241 +1,0.79,0.457,0.42,0,0,0,0,0.233,0.115 +1,0.774,0.64,0.523,0,0,0,0,0,0.0383 +1,0.744,0.791,0.671,0,0,0,0,0,0.385 +1,0.682,0.749,0.799,0.179,0.133,0,0,0,0 +1,0.6,0.307,0.405,0.749,0.1,0,0,0,0 +1,0.569,0.136,0.183,0.667,0,0,0,0,0 +1,0.56,0.0374,0.0743,0.202,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.398 +1,0.56,0.0236,0.0781,0,0,0,0,0.383,0.302 +1,0.589,0.0632,0.317,0,0,0,0,0.333,0.396 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.327 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.202 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.318 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0383 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.153 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0383 +0.667,0.673,0.19,0.252,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0.522,0.233,0,0,0,0.191 +1,0.79,0.457,0.42,0.312,0.383,0,0,0,0.23 +1,0.774,0.64,0.523,0.77,0.583,0,0,0,0.0383 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.625 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.386 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.231 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.306 +0.667,0.673,0.19,0.252,0,0,0,0,0.717,0.153 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.0383 +1,0.79,0.457,0.42,0,0,0,0,0,0.201 +1,0.774,0.64,0.523,0,0,0,0,0,0.423 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0765 +1,0.56,0.0201,0.0503,0,0,0,0,0,0 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.0615 +1,0.571,0.0295,0.139,0,0,0,0,0,0.151 +1,0.586,0.0433,0.167,0,0,0,0,0,0.405 +1,0.591,0.0636,0.168,0,0,0,0,0,0.35 +1,0.651,0.205,0.392,0,0,0,0,0.233,0.249 +1,0.651,0.244,0.381,0,0,0,0,0,0.0798 +1,0.651,0.268,0.364,0,0,0,0,0,0.119 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.249 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.196 +0.667,0.621,0.265,0.249,0,0,0,0,0,0.2 +0.667,0.642,0.291,0.249,0,0,0.425,0.383,0,0 +1,0.728,0.449,0.353,0,0,0.7,0.367,0,0 +1,0.774,0.464,0.371,0.117,0.133,0.719,0,0,0.115 +1,0.79,0.547,0.42,0.559,0.35,0,0,0,0.115 +1,0.774,0.719,0.523,0.807,0,0,0,0,0.322 +1,0.744,0.845,0.671,0.607,0,0,0,0,0.275 +1,0.682,0.78,0.799,0,0,0,0,0,0.0159 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0.126 +1,0.559,0.0699,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.586,0.0433,0.167,0,0,0,0,0,0 +1,0.591,0.0636,0.168,0,0,0,0,0,0.139 +0.667,0.621,0.143,0.278,0,0,0,0,0,0.0765 +0.333,0.591,0.0934,0.16,0,0,0,0,0.133,0.191 +0,0.562,0.0181,0.0495,0,0,0,0,0.1,0.456 +1,0.651,0.288,0.352,0,0,0,0,0.883,0.265 +1,0.651,0.34,0.349,0,0,0,0,1,0.292 +1,0.651,0.388,0.348,0,0,0,0,0.0333,0.153 +1,0.682,0.427,0.349,0,0,0,0,0.233,0.268 +1,0.673,0.305,0.252,0,0,0,0,0,0.153 +1,0.774,0.464,0.371,0,0,0,0,0,0.0765 +1,0.79,0.547,0.42,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0.153 +1,0.744,0.845,0.671,0,0,0,0,0,0.187 +1,0.682,0.78,0.799,0,0,0,0,0,0.11 +1,0.62,0.492,0.582,0,0,0,0,0,0.151 +1,0.565,0.0869,0.116,0,0,0,0,0,0.204 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.136 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0928 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.299 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.0765 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.115 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0765 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.191 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.191 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.153 +0.333,0.617,0.103,0.151,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +1,0.79,0.457,0.42,0.281,0.233,0,0,0.467,0 +1,0.774,0.64,0.523,0.543,0,0,0,0,0.118 +1,0.744,0.791,0.671,0,0,0,0,0,0.0971 +1,0.642,0.505,0.549,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.221 +0.667,0.58,0.0474,0.228,0,0,0,0,0.383,0.182 +0.333,0.586,0.0396,0.167,0,0,0,0,0.0833,0.299 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0383 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.459 +0.667,0.621,0.116,0.251,0,0,0,0,0.467,0.233 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.205 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.115 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0383 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.191 +1,0.774,0.34,0.371,0.281,0.233,0,0,0,0.0765 +1,0.79,0.457,0.42,0.545,0,0,0,0,0.0383 +0.667,0.704,0.432,0.365,0.23,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.62,0.453,0.582,0.646,0.233,0,0,0,0.0998 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0825 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.386 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.57 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.144 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.191 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.383,0.191 +0.667,0.673,0.19,0.252,0,0,0,0,1,0.115 +0.667,0.704,0.232,0.264,0,0,0,0,0.05,0.268 +1,0.79,0.457,0.42,0.319,0.233,0,0,0.633,0.128 +1,0.774,0.64,0.523,0.276,0,0,0,0.0833,0.43 +1,0.744,0.791,0.671,0,0,0,0,0,0.213 +1,0.682,0.749,0.799,0,0,0,0,0,0.058 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.191 +0.333,0.591,0.0462,0.168,0,0,0,0,0.233,0.0383 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.191 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0765 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0.23 +0.667,0.591,0.073,0.149,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.617,0.103,0.151,0,0,0,0,0,0.191 +0.333,0.633,0.124,0.157,0,0,0,0,0.383,0 +1,0.714,0.31,0.296,0,0,0,0,0.0833,0.153 +1,0.704,0.432,0.365,0,0,0,0,0.233,0.115 +1,0.683,0.532,0.464,0,0,0,0,0,0.0383 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.383,0.0383 +1,0.529,0.0241,0.0768,0,0,0,0,0.8,0.115 +1,0.514,0.0488,0.222,0,0,0,0,0,0.374 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.408 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.287 +0.667,0.548,0.0923,0.263,0.163,0.133,0,0,0,0.263 +0.333,0.555,0.0593,0.153,0.639,0.567,0,0,0,0.214 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0383 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.23 +1,0.606,0.286,0.332,0,0,0,0,0.467,0.0383 +1,0.645,0.351,0.345,0.124,0.133,0,0,0,0.115 +1,0.658,0.473,0.384,0.581,0.567,0,0,0,0.0383 +1,0.645,0.662,0.467,0.924,0,0,0,0,0 +0.667,0.6,0.55,0.413,0.092,0,0,0,0,0 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.0702 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0843 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.0721 +1,0.538,0.0301,0.136,0,0,0,0,0,0.293 +1,0.551,0.0444,0.163,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.233,0.115 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0.22 +0.667,0.548,0.191,0.245,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0.443,0.5,0,0.264 +0.667,0.548,0.24,0.235,0,0,0,0,0,0.383 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.153 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.0765 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.0765 +0.667,0.617,0.326,0.247,0,0,0,0,0,0 +0.667,0.626,0.383,0.273,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.152 +1,0.514,0.0421,0.222,0,0,0,0,0.467,0.0765 +0.667,0.551,0.0444,0.163,0,0,0,0,0,0.153 +0.667,0.555,0.0654,0.162,0,0,0,0,0,0.0765 +0.667,0.548,0.147,0.263,0.731,0.467,0,0,0,0.115 +0.667,0.548,0.174,0.256,0.6,0,0,0,0,0.0383 +0.667,0.548,0.191,0.245,0.725,0,0,0,0,0 +0.667,0.548,0.204,0.237,0.445,0,0,0,0,0.23 +0.667,0.548,0.24,0.235,0.411,0,0,0,0,0.0383 +0.667,0.548,0.273,0.235,0,0,0.388,0.75,0,0.0383 +1,0.568,0.441,0.328,0,0,0.785,0,0,0.0765 +0.667,0.591,0.315,0.238,0,0,0.499,0,0,0.601 +1,0.645,0.479,0.345,0,0,0,0,0.133,0.0913 +0.667,0.626,0.383,0.273,0,0,0,0,0.1,0 +1,0.645,0.743,0.467,0,0,0,0,0,0.505 +1,0.619,0.873,0.595,0.635,0.233,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.139 +1,0.551,0.0406,0.163,0,0,0,0,0,0.245 +1,0.555,0.0473,0.162,0,0,0,0,0,0.319 +1,0.555,0.0541,0.156,0,0,0,0,0,0 +0.667,0.555,0.0593,0.153,0,0,0,0,0,0.191 +0.667,0.555,0.0646,0.147,0,0,0,0,0,0.0383 +0.667,0.555,0.0676,0.143,0,0,0,0,0,0 +0.667,0.555,0.0751,0.142,0,0,0,0,0,0.191 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.268 +0.667,0.591,0.196,0.238,0,0,0,0,0,0 +0.667,0.617,0.239,0.247,0.297,0.233,0,0,0.633,0.0383 +1,0.658,0.473,0.384,0.65,0,0,0,1,0 +0.667,0.617,0.446,0.328,0.37,0,0,0,0.25,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0915 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.126 +1,0.538,0.0323,0.136,0,0,0,0,0,0.228 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.337 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.153 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.268 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.23 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0383 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0765 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.239 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.43 +0.667,0.617,0.239,0.247,0,0,0,0,0.467,0 +0.667,0.626,0.32,0.273,0.331,0.383,0,0,0,0 +1,0.645,0.662,0.467,0.48,0.317,0,0,0.233,0 +0.667,0.6,0.55,0.413,0.805,0,0,0,0,0 +0.667,0.564,0.269,0.275,0.535,0,0,0,0,0.0692 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.109 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0.467,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.54,0.0653,0.277,0,0,0,0,0.467,0.0765 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.191 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.257 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0869 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.214 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.112 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.142,0,0,0,0,0.233,0.191 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.153 +0.667,0.591,0.196,0.238,0,0,0,0,0.383,0.306 +0.333,0.589,0.128,0.148,0,0,0,0,0.317,0.115 +0.667,0.626,0.32,0.273,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0.112 +1,0.619,0.817,0.595,0,0,0,0,0,0.0912 +1,0.568,0.774,0.726,0,0,0,0,0,0.128 +1,0.531,0.317,0.388,0,0,0,0,0,0.0758 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.229 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0431 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0.172,0.133,0,0,0,0.383 +0.667,0.54,0.0653,0.277,0.611,0.8,0,0,0,0.0383 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.115 +0.667,0.548,0.0923,0.263,0,0,0,0,0.467,0.115 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.287 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.229 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.101 +0.667,0.548,0.134,0.235,0,0,0,0,0.467,0.111 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.263 +1,0.568,0.23,0.328,0.814,0.233,0.504,0.75,0,0.124 +1,0.606,0.286,0.332,0,0,0,0,0,0.23 +0.667,0.617,0.239,0.247,0,0,0,0,0,0 +0.667,0.594,0.168,0.161,0,0,0,0,0.467,0.0765 +1,0.617,0.446,0.328,0,0,0,0,0,0.2 +1,0.6,0.55,0.413,0,0,0,0,0,0.27 +1,0.566,0.521,0.501,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0904 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0.509 +1,0.54,0.0653,0.277,0,0,0,0,0.467,0.315 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.2 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.337 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.327 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0383 +0.333,0.555,0.0676,0.143,0,0,0,0,0.7,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.115 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0.0383 +1,0.606,0.286,0.332,0,0,0,0,0.133,0.269 +1,0.645,0.351,0.345,0,0,0,0,1,0.115 +0.667,0.626,0.32,0.273,0,0,0,0,0.283,0.0765 +1,0.645,0.662,0.467,0,0,0,0,0,0.0811 +1,0.6,0.55,0.413,0,0,0,0,0,0.152 +1,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.115 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0765 +1,0.529,0.0203,0.05,0,0,0,0,0,0.153 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.153 +1,0.538,0.0301,0.136,0,0,0,0,0,0.128 +1,0.54,0.0706,0.277,0,0,0,0,0,0.301 +1,0.548,0.113,0.274,0,0,0,0,0,0.0383 +1,0.548,0.147,0.263,0.294,0.233,0,0,0,0 +1,0.542,0.252,0.359,0.432,0,0,0,0,0.0383 +0.667,0.548,0.191,0.245,0,0,0.177,0.383,0,0.0765 +0.667,0.548,0.204,0.237,0,0,0.801,0.117,0,0.153 +0.667,0.548,0.24,0.235,0,0,0.576,0,0,0.268 +0.667,0.548,0.273,0.235,0,0,0.761,0,0,0.0418 +0.667,0.566,0.3,0.235,0,0,0.734,0,0,0.255 +1,0.606,0.464,0.332,0,0,0.352,0,0,0.255 +1,0.645,0.479,0.345,0,0,0.292,0,0,0.394 +1,0.658,0.565,0.384,0,0,0,0,0.883,0.247 +1,0.645,0.743,0.467,0,0,0,0,0.05,0.182 +1,0.619,0.873,0.595,0,0,0.392,0.383,0,0.129 +1,0.568,0.806,0.726,0,0,0.258,0.367,0,0.0891 +1,0.516,0.509,0.557,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0.0965 +1,0.497,0.0721,0.099,0,0,0,0,0,0 +1,0.497,0.0391,0.066,0,0,0,0,0,0.153 +1,0.497,0.0241,0.0495,0,0,0,0,0,0.0765 +1,0.497,0.018,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.555,0.0654,0.162,0,0,0.0931,0.133,0,0.47 +1,0.548,0.147,0.263,0,0,0.25,0.617,0.233,0.176 +1,0.542,0.252,0.359,0,0,0.347,0,0,0.347 +1,0.542,0.277,0.343,0,0,0.522,0,0,0.0955 +1,0.542,0.297,0.331,0,0,0.13,0,0,0.294 +1,0.542,0.351,0.328,0,0,0,0,0,0.158 +1,0.542,0.401,0.327,0,0,0,0,0,0.0383 +1,0.568,0.441,0.328,0,0,0,0,0,0.191 +1,0.591,0.315,0.238,0,0,0,0,0,0.0765 +1,0.617,0.326,0.247,0,0,0,0,0,0.186 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.283 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.0609 +1,0.619,0.873,0.595,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.191 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.197 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.298 +0.667,0.551,0.0406,0.163,0,0,0,0,0.383,0.171 +0.667,0.555,0.0473,0.162,0,0,0,0,0.8,0.133 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0765 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0765 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0383 +0.333,0.555,0.0751,0.142,0,0,0,0,0.233,0.459 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.107 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.153 +0.333,0.576,0.106,0.144,0,0,0,0,0.133,0.115 +1,0.645,0.351,0.345,0.161,0.133,0,0,1,0.0765 +1,0.658,0.473,0.384,0.382,0.8,0,0,0.283,0 +1,0.645,0.662,0.467,0.729,0.883,0,0,0,0 +1,0.619,0.817,0.595,0.126,0.05,0,0,0,0.114 +1,0.568,0.774,0.726,0,0,0,0,0,0.524 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.193 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.244 +1,0.497,0.0323,0.104,0,0,0,0,0,0.353 +1,0.514,0.0488,0.222,0,0,0,0,0,0.355 +1,0.54,0.0653,0.277,0,0,0,0,0,0.171 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.153 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.191 +0.667,0.589,0.128,0.148,0,0,0,0,0.233,0.115 +0.667,0.626,0.32,0.273,0,0,0,0,0.467,0.383 +1,0.645,0.662,0.467,0,0,0,0,0,0.0383 +1,0.6,0.55,0.413,0,0,0,0,0.233,0.0383 +1,0.566,0.521,0.501,0.561,0.233,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.44 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.461 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0.114 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0765 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0383 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.421 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0765 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0383 +0.333,0.589,0.128,0.148,0.12,0.133,0,0,0.233,0.191 +0.667,0.626,0.32,0.273,0.72,1,0,0,0,0.112 +0.667,0.617,0.446,0.328,0,0.0333,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0.217 +1,0.546,0.167,0.219,0,0,0,0,0,0.267 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.236 +1,0.49,0.0653,0.308,0,0,0,0,0,0.317 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0.378 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0383 +0.333,0.555,0.0593,0.153,0,0,0,0,0.233,0.115 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0765 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0383 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.23 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.153 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.368 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.357 +0.667,0.626,0.32,0.273,0,0,0,0,0.133,0.144 +0.667,0.617,0.446,0.328,0,0,0,0,0.1,0.286 +0.667,0.581,0.283,0.231,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.115 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.272 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.627 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.199 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.551,0.0406,0.163,0,0,0,0,0.233,0.459 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.192 +0.333,0.589,0.128,0.148,0,0,0,0,0.233,0.153 +1,0.658,0.473,0.384,0,0,0,0,0.7,0.0765 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.153 +0.667,0.581,0.283,0.231,0,0,0,0,0,0.0765 +1,0.564,0.269,0.275,0,0,0,0,0,0.0383 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.247 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.176 +1,0.551,0.0444,0.163,0,0,0,0,0,0.116 +1,0.555,0.0654,0.162,0,0,0.199,0.133,0,0.497 +1,0.548,0.147,0.263,0,0,0.738,0.367,0,0.176 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0.0383 +1,0.548,0.191,0.245,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.306 +0.667,0.548,0.24,0.235,0,0,0.148,0.133,0,0.0765 +0.667,0.555,0.146,0.142,0,0,0.809,1,0,0.0383 +0.667,0.564,0.159,0.142,0,0,0.385,0.383,0,0.459 +0.667,0.576,0.167,0.144,0,0,0.162,0,0.233,0.0765 +0.667,0.589,0.172,0.148,0,0,0,0,0,0.0765 +1,0.658,0.565,0.384,0,0,0,0,0,0.153 +1,0.645,0.743,0.467,0,0,0,0,0,0.0383 +1,0.619,0.873,0.595,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0.121 +1,0.516,0.509,0.557,0,0,0,0,0,0.0455 +1,0.533,0.0894,0.116,0,0,0,0,0,0.127 +1,0.529,0.0451,0.0743,0.639,1,0,0,0,0 +1,0.529,0.0286,0.0578,0.598,0.0333,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0.467,0 +1,0.555,0.0654,0.162,0.361,0.233,0,0,0,0.115 +1,0.555,0.0826,0.156,0.696,0,0,0,0,0.0765 +1,0.555,0.0961,0.153,0.547,0,0,0,0,0 +0.667,0.555,0.104,0.147,0,0,0,0,0.383,0.115 +0.667,0.548,0.204,0.237,0,0,0,0,0.0833,0.399 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.153 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.191 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.115 +0.333,0.576,0.167,0.144,0,0,0,0,0,0 +0.667,0.617,0.326,0.247,0,0,0,0,0,0 +0.333,0.594,0.2,0.161,0,0,0,0,0,0.197 +0.667,0.617,0.501,0.328,0.593,0.233,0,0,0,0 +0.667,0.6,0.588,0.413,0.713,0,0,0,0,0.105 +1,0.568,0.806,0.726,0.198,0,0,0,0,0.163 +1,0.516,0.509,0.557,0,0,0,0,0,0.141 +1,0.505,0.161,0.183,0.117,0.133,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0745 +0.667,0.529,0.0188,0.05,0,0,0,0,0,0.125 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0.467,0.0765 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0765 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0383 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.191 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0383 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0765 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0383 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.344 +0.333,0.594,0.168,0.161,0,0,0,0,0.883,0.0383 +0.333,0.589,0.231,0.189,0,0,0,0,0.533,0.0383 +1,0.619,0.817,0.595,0,0,0,0,0,0.264 +1,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.323 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.191 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.373 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0765 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0383 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.268 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0.153 +0.667,0.564,0.0871,0.142,0,0,0.356,0.383,0,0.23 +0.667,0.576,0.106,0.144,0,0,0.44,0.117,0,0.0765 +1,0.617,0.239,0.247,0,0,0.352,0,0,0 +1,0.626,0.32,0.273,0,0,0.295,0,0,0.115 +1,0.617,0.446,0.328,0,0,0.422,0,0,0 +1,0.6,0.55,0.413,0,0,0.438,0,0,0 +1,0.564,0.269,0.275,0,0,0.607,0,0,0.153 +1,0.546,0.167,0.219,0,0,0.172,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.497,0.0323,0.104,0,0,0,0,0,0.277 +1,0.514,0.0488,0.222,0,0,0,0,0,0.243 +0.667,0.54,0.0653,0.277,0,0,0.536,0.5,0,0.228 +0.667,0.548,0.0788,0.274,0,0,0.785,0,0,0.153 +0.333,0.555,0.0541,0.156,0,0,0.465,0,0,0.0383 +0.333,0.555,0.0593,0.153,0,0,0.689,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0.599,0,0,0.115 +0.333,0.555,0.0676,0.143,0,0,0.663,0,0,0.0383 +0.333,0.555,0.0751,0.142,0,0,0.546,0,0,0.153 +0.333,0.555,0.0789,0.142,0,0,0.334,0,0,0.191 +0.333,0.564,0.0871,0.142,0,0,0.563,0,0,0.23 +0.667,0.591,0.196,0.238,0,0,0.653,0,0,0 +1,0.617,0.239,0.247,0.57,0.233,0.244,0,0.133,0 +1,0.658,0.473,0.384,0.184,0,0,0,0.333,0.0765 +1,0.645,0.662,0.467,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.192 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0.45 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.484 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.262 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.2 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.23 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0383 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0765 +0.333,0.576,0.106,0.144,0,0,0,0,0.383,0.0383 +0.333,0.589,0.128,0.148,0.248,0.383,0,0,0.0833,0.115 +0.333,0.594,0.168,0.161,0.46,0.0833,0,0,0,0.153 +0.333,0.589,0.231,0.189,0,0,0,0,0,0.119 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.183 +0.667,0.566,0.521,0.501,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.667,0.514,0.0488,0.222,0,0,0,0,0,0.675 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0.405 +0.667,0.548,0.0788,0.274,0,0,0.106,0.133,0,0.303 +0.667,0.548,0.0923,0.263,0,0,0.852,0.617,0,0.444 +0.667,0.548,0.103,0.256,0,0,0.657,0,0,0.161 +0.333,0.555,0.0646,0.147,0,0,0.573,0,0,0.176 +0.333,0.555,0.0676,0.143,0,0,0.734,0,0,0.0765 +0.333,0.555,0.0751,0.142,0,0,0.106,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0765 +0.667,0.617,0.239,0.247,0.104,0.133,0,0,0.467,0.153 +0.667,0.626,0.32,0.273,0.77,0.333,0,0,0,0.153 +1,0.645,0.662,0.467,0.789,0,0,0,0,0.0765 +1,0.619,0.817,0.595,0,0,0.371,0.383,0,0 +1,0.566,0.521,0.501,0,0,0.477,0.117,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0.153 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.171 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.176 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.304 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.28 +1,0.538,0.0301,0.136,0,0,0,0,0,0.0993 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0.29,0.233,0,0,0,0.0383 +0.667,0.555,0.0826,0.156,0.531,0,0,0,0,0.271 +0.667,0.548,0.174,0.256,0,0,0,0,0.7,0.0765 +0.667,0.548,0.191,0.245,0,0,0,0,0,0 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.115 +1,0.542,0.351,0.328,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.0765 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.0765 +1,0.606,0.464,0.332,0,0,0,0,0,0.115 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.0995 +0.333,0.594,0.2,0.161,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0.219 +0.667,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +1,0.555,0.0826,0.156,0,0,0,0,0,0.0765 +1,0.555,0.0961,0.153,0,0,0,0,0,0.153 +1,0.548,0.191,0.245,0,0,0,0,0,0.0765 +0.667,0.548,0.204,0.237,0,0,0,0,0,0.0765 +0.667,0.548,0.24,0.235,0,0,0,0,0,0 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.0765 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.0383 +1,0.606,0.464,0.332,0,0,0,0,0,0.191 +1,0.645,0.479,0.345,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0.133,0 +0.667,0.617,0.501,0.328,0,0,0,0,0.1,0.115 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0.211 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.267 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0.133,0.0765 +1,0.529,0.0241,0.0768,0,0,0,0,0.1,0.0765 +1,0.538,0.0323,0.136,0,0,0,0,0,0.111 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.207 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.116 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.512,0.5,0,0.0383 +0.667,0.548,0.134,0.235,0,0,0.554,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.587,0,0,0.153 +0.667,0.564,0.0871,0.142,0,0,0.523,0,0,0 +0.667,0.576,0.106,0.144,0,0,0.451,0,0,0.191 +1,0.645,0.351,0.345,0,0,0.504,0,0,0.153 +1,0.658,0.473,0.384,0,0,0.472,0,0,0.0383 +1,0.645,0.662,0.467,0,0,0.717,0,0,0 +1,0.619,0.817,0.595,0,0,0.522,0,0,0 +1,0.568,0.774,0.726,0,0,0.144,0,0,0.0466 +1,0.531,0.317,0.388,0.809,0.233,0,0,0,0 +1,0.505,0.14,0.183,0.168,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.199 +1,0.514,0.0488,0.222,0,0,0,0,0.133,0.512 +0.667,0.551,0.0406,0.163,0,0,0,0,0.1,0.23 +0.333,0.555,0.0473,0.162,0,0,0,0,0.233,0.115 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.206 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.124 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.178 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.344 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0.133,0.0383 +0.667,0.617,0.239,0.247,0,0,0,0,0.333,0.0383 +1,0.658,0.473,0.384,0,0,0,0,0,0.114 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.23 +1,0.619,0.817,0.595,0,0,0,0,0,0.0383 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0.324,0.383,0,0.113 +1,0.505,0.14,0.183,0,0,0.841,1,0,0 +1,0.497,0.0608,0.099,0,0,0.526,0.133,0,0.0383 +1,0.529,0.0241,0.0578,0,0,0.504,0,0,0 +1,0.529,0.0173,0.0495,0,0,0.384,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0.247 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.217 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0896 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.496 +0.667,0.548,0.113,0.245,0,0,0,0,0.133,0.16 +0.667,0.548,0.119,0.237,0,0,0,0,1,0.297 +0.667,0.548,0.134,0.235,0,0,0,0,0.517,0.283 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0.467,0 +1,0.606,0.286,0.332,0,0,0,0,0,0.0383 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.158 +1,0.658,0.473,0.384,0.858,0.233,0,0,0,0.159 +0.667,0.617,0.446,0.328,0.219,0,0,0,0,0.163 +1,0.619,0.817,0.595,0,0,0,0,0,0.162 +1,0.566,0.521,0.501,0,0,0,0,0,0.183 +1,0.546,0.167,0.219,0,0,0,0,0,0.136 +1,0.533,0.0781,0.116,0,0,0,0,0,0.135 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.268 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.326 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.123 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.284 +1,0.548,0.0923,0.263,0,0,0,0,0,0.443 +1,0.548,0.103,0.256,0,0,0,0,0,0.435 +1,0.548,0.113,0.245,0,0,0,0,0,0.476 +0.667,0.555,0.0676,0.143,0,0,0,0,0,0.115 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.153 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.268 +0.667,0.591,0.196,0.238,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0.267 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.0383 +0.667,0.617,0.446,0.328,0,0,0,0,0.133,0 +1,0.619,0.817,0.595,0.315,0.383,0.205,0.5,0.1,0.0383 +1,0.568,0.774,0.726,0.605,0.0833,0.388,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0.233,0.268 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.153 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.0765 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.467 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.291 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.315 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.153 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0383 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.344 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.383 +0.333,0.589,0.128,0.148,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0.236,0.383,0,0.0383 +0.667,0.617,0.446,0.328,0,0,0.597,0.367,0,0 +1,0.6,0.55,0.413,0,0,0.404,0,0,0.153 +1,0.566,0.521,0.501,0,0,0.555,0,0,0 +1,0.546,0.167,0.219,0,0,0.167,0,0,0.119 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0745 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.383,0.46 +1,0.542,0.212,0.37,0,0,0,0,0.0833,0.409 +1,0.542,0.252,0.359,0,0,0,0,0,0.276 +0.667,0.548,0.191,0.245,0.241,0.383,0,0,0,0.147 +0.667,0.548,0.204,0.237,0.644,0.55,0,0,0,0.487 +0.667,0.548,0.24,0.235,0.614,0,0,0,0,0.145 +0.333,0.555,0.146,0.142,0.425,0,0,0,0,0.0383 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.191 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.23 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.191 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.191 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0.0383 +1,0.568,0.806,0.726,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0.0383 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0.0968 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.289 +0.667,0.546,0.175,0.25,0.227,0.217,0,0,0,0.458 +0.667,0.546,0.191,0.24,0.356,0.467,0,0,0,0.551 +0.667,0.546,0.205,0.232,0,0,0,0,0.233,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.0765 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.383 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.306 +1,0.602,0.465,0.324,0,0,0,0,0,0.0765 +1,0.64,0.481,0.338,0,0,0,0,0,0.0765 +1,0.653,0.567,0.377,0,0,0,0,0,0.292 +1,0.64,0.745,0.461,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0692 +1,0.537,0.0324,0.135,0,0,0,0,0,0.189 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0.193,0.383,0,0,0,0.0765 +0.667,0.546,0.0926,0.258,0.372,0.533,0,0,0,0.0765 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0383 +0.333,0.554,0.0648,0.145,0,0,0,0,0.383,0.0383 +1,0.546,0.12,0.232,0,0,0,0,0.55,0.115 +1,0.554,0.0753,0.14,0,0,0,0,0,0.115 +1,0.554,0.0791,0.14,0,0,0.526,0.783,0,0.381 +1,0.563,0.159,0.23,0,0,0,0,0,0.356 +1,0.588,0.196,0.233,0,0,0,0,0,0.146 +0.667,0.588,0.128,0.146,0,0,0,0,0,0.268 +0.667,0.592,0.169,0.159,0.2,0.133,0,0,0,0 +0.333,0.588,0.232,0.187,0.63,0.317,0,0,0,0.0765 +0.667,0.597,0.552,0.41,0.543,0.45,0,0,0,0 +0.667,0.563,0.523,0.496,0.623,0,0,0,0,0.231 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0708 +1,0.512,0.0489,0.22,0,0,0,0,0.233,0.647 +1,0.537,0.0655,0.274,0,0,0,0,0,0.2 +1,0.546,0.079,0.27,0,0,0,0,0,0.127 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.586 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0.425,0.633,0,0 +0,0.562,0.0159,0.0495,0,0,0,0.15,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.115 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.191 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.191 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.285 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.202 +0.333,0.592,0.169,0.159,0,0,0,0,0.383,0.0383 +0.667,0.614,0.448,0.324,0,0,0,0,0.0833,0.0383 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.0383 +0.667,0.545,0.167,0.218,0,0,0,0,0,0.182 +1,0.503,0.141,0.183,0,0,0,0,0,0.161 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.0774 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.422 +1,0.537,0.0324,0.135,0,0,0,0,0,0.421 +1,0.537,0.0655,0.274,0,0,0,0,0,0.619 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.23 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0765 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0765 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0383 +0.333,0.554,0.0678,0.141,0,0,0,0,0.883,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0.283,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0.264,0.217,0,0,0,0.153 +1,0.602,0.287,0.324,0.586,0,0,0,0,0.153 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0383 +1,0.653,0.474,0.377,0,0,0,0,0,0.0765 +0.667,0.614,0.448,0.324,0,0,0.246,0.133,0,0 +1,0.615,0.82,0.59,0,0,0.637,0.65,0,0.0809 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.268 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0.233,0.191 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0765 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0765 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.191 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.198 +1,0.614,0.24,0.242,0,0,0,0,0,0.0685 +1,0.653,0.474,0.377,0.766,0.45,0.135,0.133,0,0.153 +1,0.64,0.664,0.461,0.559,0,0.461,0.383,0,0.0383 +1,0.615,0.82,0.59,0.273,0,0.494,0,0,0 +1,0.563,0.777,0.72,0,0,0.859,0,0,0 +1,0.529,0.318,0.386,0.673,0.45,0.403,0,0,0 +0.667,0.562,0.0159,0.0495,0.135,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.375 +1,0.537,0.0324,0.135,0,0,0,0,0,0.363 +1,0.537,0.0655,0.274,0,0,0,0,0,0.179 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.413 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.23 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.266 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.054 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0.7,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0765 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.23 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.553 +1,0.64,0.352,0.338,0,0,0,0,0,0.0765 +0.667,0.623,0.321,0.268,0,0,0,0,0.233,0 +1,0.64,0.664,0.461,0.736,0.633,0,0,0,0.0383 +1,0.615,0.82,0.59,0.327,0.283,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.0383 +0.667,0.529,0.318,0.386,0,0,0,0,0,0.0854 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0.0383 +1,0.528,0.0226,0.0763,0,0,0,0,0,0.268 +1,0.512,0.0422,0.22,0.487,0.217,0,0,0,0.536 +1,0.537,0.0708,0.274,0.338,0,0,0,0,0.0765 +1,0.554,0.0655,0.16,0,0,0,0,0,0.0383 +1,0.546,0.148,0.258,0,0,0,0,0.233,0.0628 +1,0.538,0.253,0.351,0,0,0,0,0,0.148 +1,0.538,0.278,0.335,0,0,0,0,0,0.169 +0.667,0.546,0.205,0.232,0,0,0,0,0,0 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.23 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.0383 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.115 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.23 +0.333,0.588,0.172,0.146,0,0,0,0,0.467,0.0765 +0.667,0.592,0.201,0.159,0,0,0,0,0,0.115 +1,0.64,0.745,0.461,0,0,0.162,0.783,0,0.0383 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0.816,0.217,0,0,0,0.11 +1,0.512,0.51,0.554,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0.0867 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.12 +1,0.554,0.0655,0.16,0,0,0,0,0,0.203 +1,0.554,0.0828,0.154,0,0,0,0,0,0.204 +0.667,0.546,0.175,0.25,0,0,0.583,0.25,0,0.191 +0.667,0.546,0.191,0.24,0,0,0,0,0.233,0.321 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.465 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.401 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.306 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.268 +0.333,0.575,0.167,0.141,0,0,0,0,0.233,0.0765 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.162 +1,0.653,0.567,0.377,0,0,0,0,0,0.0765 +1,0.64,0.745,0.461,0,0,0,0,0,0.0383 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0.111 +1,0.512,0.51,0.554,0,0,0,0,0,0.24 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.549,0.0407,0.162,0.577,0.683,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0.844,0.783,0,0.0383 +0.333,0.554,0.0542,0.154,0,0,0.639,0,0,0.23 +0.333,0.554,0.0595,0.15,0,0,0.435,0,0,0.0383 +0.333,0.554,0.0648,0.145,0,0,0.494,0,0,0 +0.667,0.546,0.12,0.232,0,0,0.319,0,0,0.153 +0.667,0.546,0.135,0.23,0,0,0.461,0,0,0.0765 +0.667,0.546,0.142,0.23,0,0,0.202,0,0,0.0765 +0.667,0.562,0.0873,0.14,0,0,0,0,0,0.23 +0.667,0.575,0.106,0.141,0,0,0,0,0,0.241 +1,0.614,0.24,0.242,0,0,0.777,0.783,0.133,0.115 +1,0.653,0.474,0.377,0,0,0.318,0,0.1,0 +1,0.64,0.664,0.461,0,0,0.425,0,0,0.135 +1,0.615,0.82,0.59,0,0,0.0417,0,0,0.0992 +1,0.563,0.777,0.72,0,0,0.0369,0.633,0,0.418 +1,0.512,0.47,0.554,0,0,0,0.933,0,0.218 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.0383 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0765 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0765 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.458 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.103 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.306 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.229 +1,0.602,0.287,0.324,0,0,0,0,0,0.229 +1,0.64,0.352,0.338,0,0,0,0,0.883,0.0383 +1,0.653,0.474,0.377,0,0,0,0,0.75,0.0383 +1,0.64,0.664,0.461,0.54,0.45,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0.0765 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.167 +1,0.512,0.0489,0.22,0,0,0,0,0,0.178 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.302 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.115 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0765 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.11 +0.333,0.554,0.0648,0.145,0,0,0.467,0.633,0,0.0765 +0.333,0.554,0.0678,0.141,0,0,0.587,0.15,0,0.191 +0.333,0.554,0.0753,0.14,0,0,0.517,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0.639,0,0,0.115 +0.333,0.562,0.0873,0.14,0,0,0.507,0,0,0.268 +0.333,0.575,0.106,0.141,0,0,0.578,0,0,0.115 +0.667,0.614,0.24,0.242,0,0,0.116,0,0,0.177 +1,0.653,0.474,0.377,0,0,0,0,0,0.679 +1,0.64,0.664,0.461,0,0,0,0,0,0.145 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.249 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.431 +1,0.512,0.0489,0.22,0,0,0,0,0,0.471 +1,0.525,0.0903,0.386,0,0,0,0,0,0.487 +0.333,0.554,0.0475,0.16,0.773,0.217,0,0,0,0.268 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0383 +0.667,0.546,0.114,0.24,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0.233,0.153 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0765 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.23 +0.667,0.614,0.24,0.242,0,0,0,0,0.7,0.115 +1,0.653,0.474,0.377,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.0383 +1,0.615,0.82,0.59,0,0,0,0,0,0.0383 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0.367,0.106 +1,0.525,0.0903,0.386,0,0,0,0,0.1,0.51 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.43 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.492 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.339 +0.667,0.546,0.114,0.24,0.6,0.217,0,0,0,0.0765 +0.333,0.554,0.0678,0.141,0.255,0,0,0,0,0.191 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.268 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0383 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.126 +0.667,0.623,0.321,0.268,0,0,0,0,0.383,0.28 +1,0.64,0.664,0.461,0,0,0,0,0.0833,0.0383 +1,0.615,0.82,0.59,0,0,0,0,0.633,0 +1,0.563,0.523,0.496,0,0,0,0,0.0667,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0.113 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.191 +1,0.549,0.0444,0.162,0,0,0,0,0.233,0.456 +1,0.554,0.0655,0.16,0,0,0,0,0,0.355 +1,0.554,0.0828,0.154,0,0,0,0,0,0.273 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.281,0.467,0,0.19 +0.333,0.554,0.129,0.14,0,0,0,0.317,0,0.13 +0.667,0.546,0.274,0.23,0,0,0,0,0,0 +0.667,0.563,0.301,0.23,0,0,0,0,0.217,0.0383 +0.333,0.575,0.167,0.141,0,0,0,0,0.0167,0.268 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.153 +0.333,0.592,0.201,0.159,0.312,0.217,0,0,0,0 +0.333,0.588,0.26,0.187,0.63,0,0,0,0,0.344 +0.333,0.579,0.304,0.23,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.164 +0.667,0.529,0.346,0.386,0,0,0,0,0,0 +0.667,0.532,0.0896,0.116,0,0,0,0,0,0.0389 +0.667,0.528,0.0452,0.0743,0,0,0,0,0,0 +0.667,0.528,0.0286,0.0578,0,0,0,0,0,0 +0.667,0.528,0.0211,0.0495,0,0,0,0,0,0.0383 +0.667,0.528,0.0181,0.0495,0,0,0,0,0,0.0765 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.306 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.153 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0.268 +0.667,0.546,0.191,0.24,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.0383 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.306 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.0383 +0.667,0.588,0.316,0.233,0,0,0,0,0.217,0.0765 +0.667,0.614,0.327,0.242,0.676,0.45,0,0,0.483,0.0383 +0.667,0.623,0.384,0.268,0.49,0,0,0,0,0 +0.667,0.588,0.26,0.187,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +0.667,0.563,0.545,0.496,0,0,0,0,0,0.0383 +0.667,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.243 +1,0.512,0.0489,0.22,0,0,0,0,0,0.497 +1,0.537,0.0655,0.274,0,0,0,0,0,0.272 +0.333,0.562,0.0159,0.0495,0,0,0.222,0.383,0,0 +0.333,0.554,0.0542,0.154,0,0,0.461,0.133,0,0.115 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.153 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0383 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0765 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0765 +0.333,0.562,0.0873,0.14,0,0,0,0,0.233,0.0383 +0.333,0.575,0.106,0.141,0,0,0,0,0,0 +1,0.64,0.352,0.338,0.251,0.383,0,0,0,0.421 +1,0.653,0.474,0.377,0.352,0.0667,0.236,0.517,0,0.383 +1,0.64,0.664,0.461,0,0,0.199,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0.0833 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.512,0.47,0.554,0,0,0,0,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0.421 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.233 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.191 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0383 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0383 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0,0,0.467,0.471 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.105 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.288 +0.667,0.563,0.159,0.23,0,0,0.745,0.517,0,0.268 +1,0.602,0.287,0.324,0,0,0.592,0,0,0.0383 +1,0.64,0.352,0.338,0.66,0.883,0.135,0,0,0.0765 +0.667,0.623,0.321,0.268,0.106,1,0,0,0,0.0383 +0.667,0.614,0.448,0.324,0,0.167,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.383,0 +1,0.512,0.0489,0.22,0,0,0,0,0.0833,0.239 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.35 +0.667,0.546,0.079,0.27,0,0,0.73,0.517,0,0.423 +0.667,0.546,0.0926,0.258,0,0,0.403,0,0,0.5 +0.333,0.554,0.0595,0.15,0,0,0.327,0,0,0.191 +0.333,0.554,0.0648,0.145,0,0,0.751,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.347,0,0,0.0383 +0.333,0.554,0.0753,0.14,0,0,0.469,0,0,0.153 +0.333,0.554,0.0791,0.14,0,0,0.416,0,0,0.115 +0.333,0.562,0.0873,0.14,0,0,0.403,0,0,0.0383 +0.333,0.575,0.106,0.141,0,0,0.218,0,0,0.115 +0.333,0.588,0.128,0.146,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.295 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.0383 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.512,0.47,0.554,0,0,0,0,0,0.0833 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.277 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.0936 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.115 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0383 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0.467,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0765 +0.333,0.575,0.106,0.141,0,0,0,0,0.133,0.507 +1,0.64,0.352,0.338,0,0,0,0,0.567,0.441 +1,0.653,0.474,0.377,0,0,0,0,0,0.087 +1,0.64,0.664,0.461,0,0,0,0,0,0.472 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.292 +1,0.529,0.318,0.386,0,0,0,0,0,0.0383 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.305 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0.233,0.23 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0.0383 +0.667,0.512,0.0489,0.22,0,0,0,0,0.467,0.117 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.33 +0,0.562,0.0159,0.0495,0,0,0,0,0.133,0.0765 +0.333,0.554,0.0542,0.154,0,0,0,0,0.1,0.0383 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0383 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0383 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.191 +0.667,0.562,0.0873,0.14,0,0,0,0,0,0.153 +0.667,0.575,0.106,0.141,0,0,0,0,0.133,0 +1,0.614,0.24,0.242,0,0,0,0,0.1,0.115 +1,0.653,0.474,0.377,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.0765 +1,0.615,0.82,0.59,0.604,0.217,0,0,0,0 +1,0.563,0.777,0.72,0.115,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.115 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.191 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.221 +0.333,0.554,0.111,0.141,0,0,0.0369,0.217,0,0.261 +0.667,0.546,0.241,0.23,0,0,0.315,0.3,0,0.464 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.334 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.115 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.0383 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.153 +0.667,0.623,0.384,0.268,0,0,0,0,0.467,0 +1,0.64,0.745,0.461,0,0,0,0,0.467,0.437 +1,0.615,0.876,0.59,0,0,0,0,0,0.23 +1,0.563,0.808,0.72,0,0,0.125,0.467,0,0 +1,0.512,0.51,0.554,0,0,0.66,1,0,0 +1,0.503,0.161,0.183,0,0,0.236,0.1,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.0765 +1,0.554,0.0655,0.16,0,0,0,0,0,0.199 +0.667,0.554,0.0828,0.154,0,0,0.422,0.783,0,0.243 +0.667,0.554,0.0964,0.15,0,0,0.445,0,0,0.0383 +0.667,0.554,0.105,0.145,0,0,0.774,0,0,0.0765 +0.667,0.546,0.205,0.232,0,0,0.457,0,0.467,0.0383 +0.667,0.546,0.241,0.23,0,0,0.661,0,0,0.191 +0.667,0.546,0.274,0.23,0,0,0.681,0,0,0 +1,0.563,0.443,0.321,0,0,0.475,0,0,0.191 +1,0.602,0.465,0.324,0,0,0.555,0,0,0.0765 +1,0.64,0.481,0.338,0,0,0.756,0,0,0.153 +0.667,0.623,0.384,0.268,0.381,0.217,0.377,0,0,0.0383 +1,0.64,0.745,0.461,0.0903,0,0,0,0,0.0383 +1,0.615,0.876,0.59,0,0,0,0,0.467,0 +1,0.563,0.808,0.72,0.646,0.217,0,0,0,0 +1,0.529,0.346,0.386,0.579,0,0,0,0,0 +1,0.503,0.161,0.183,0.127,0,0,0,0,0.0676 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0.558,0.45,0,0,0.233,0.116 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.325 +1,0.512,0.0489,0.22,0,0,0,0,0,0.231 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.0383 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.268 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0.883,0.344 +0.333,0.554,0.0648,0.145,0,0,0,0,0.283,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0.383,0.117 +0.333,0.554,0.0753,0.14,0,0,0,0,0.0833,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0765 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.426 +1,0.64,0.352,0.338,0,0,0,0,0.233,0 +1,0.653,0.474,0.377,0,0,0,0,0,0.0765 +1,0.64,0.664,0.461,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.327 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.119 +1,0.487,0.0655,0.305,0.481,0.217,0,0,0,0.363 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.149 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.241 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.115 +0.333,0.562,0.0873,0.14,0.349,0.217,0,0,0,0.0765 +1,0.602,0.287,0.324,0.658,0.217,0,0,0.883,0.115 +0.667,0.614,0.24,0.242,0.446,0,0,0,0.517,0.0383 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.115 +1,0.64,0.664,0.461,0,0,0,0,0,0.0383 +1,0.615,0.82,0.59,0,0,0,0,0,0.153 +1,0.563,0.777,0.72,0.519,0.217,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0.207 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.235 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0.317 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.0383 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.0383 +0.667,0.554,0.0475,0.16,0,0,0.775,0.783,0,0 +0.667,0.554,0.0542,0.154,0,0,0.371,0,0,0.111 +0.667,0.546,0.103,0.25,0,0,0.302,0,0,0.164 +0.667,0.546,0.114,0.24,0,0,0.559,0,0,0.298 +0.667,0.546,0.12,0.232,0,0,0.343,0,0,0.127 +0.667,0.546,0.135,0.23,0,0,0.613,0,0,0.146 +0.667,0.546,0.142,0.23,0,0,0.655,0,0,0.177 +0.667,0.563,0.159,0.23,0,0,0.25,0,0,0.334 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.475 +1,0.64,0.352,0.338,0,0,0.138,0.133,0,0.272 +1,0.623,0.321,0.268,0,0,0.485,0.383,0,0.371 +1,0.614,0.448,0.324,0,0,0.573,0,0,0.2 +1,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.378 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.194 +1,0.487,0.0655,0.305,0,0,0,0,0,0.254 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.307 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.441 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.136 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0383 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.153 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0765 +0.333,0.554,0.0753,0.14,0,0,0,0,0.883,0.306 +0.333,0.554,0.0791,0.14,0,0,0,0,0.05,0.0765 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.153 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0765 +0.333,0.588,0.128,0.146,0,0,0,0,0,0 +0.333,0.592,0.169,0.159,0.276,0.383,0,0,0,0.0383 +1,0.64,0.664,0.461,0.469,0.0667,0,0,0.467,0 +1,0.615,0.82,0.59,0,0,0,0,0,0.0765 +1,0.563,0.777,0.72,0,0,0,0,0,0.118 +1,0.529,0.318,0.386,0,0,0,0,0,0.361 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0462 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0.202 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0.262 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.265 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0.233,0.0765 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0765 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.153 +0.667,0.588,0.196,0.233,0.0938,0.133,0,0,0,0.0765 +0.667,0.614,0.24,0.242,0.465,0.0833,0,0,0,0.191 +1,0.653,0.474,0.377,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0.0765 +1,0.563,0.523,0.496,0,0,0,0,0,0.274 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.197 +1,0.528,0.0226,0.0763,0,0,0,0,0,0.391 +1,0.512,0.0422,0.22,0,0,0,0,0.467,0 +1,0.537,0.0708,0.274,0,0,0,0,0,0.24 +1,0.546,0.113,0.27,0,0,0,0,0,0.0765 +0.667,0.546,0.148,0.258,0,0,0,0,0,0 +0.667,0.546,0.175,0.25,0,0,0,0,0.467,0 +0.667,0.546,0.191,0.24,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.0765 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.191 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.234 +1,0.563,0.443,0.321,0,0,0.596,0.783,0,0.148 +1,0.602,0.465,0.324,0,0,0.984,0,0,0.0765 +1,0.64,0.481,0.338,0,0,0.807,0,0.233,0.115 +1,0.653,0.567,0.377,0,0,0.578,0,0,0.191 +0.667,0.614,0.503,0.324,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0.464,0.217,0,0,0,0 +0.667,0.563,0.545,0.496,0.166,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0.206 +0.667,0.532,0.0896,0.116,0,0,0,0,0,0.223 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.467,0 +0.333,0.554,0.0828,0.154,0,0,0.12,0.467,0.933,0.0765 +0.667,0.546,0.175,0.25,0,0,0.34,0.317,0,0.23 +0.667,0.546,0.191,0.24,0,0,0,0,0.217,0 +0.667,0.546,0.205,0.232,0,0,0,0,0.25,0.115 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.268 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.454 +1,0.563,0.443,0.321,0,0,0,0,0,0.0765 +1,0.588,0.316,0.233,0,0,0.567,0.517,0,0.0383 +1,0.614,0.327,0.242,0,0,0.47,0,0.467,0.153 +1,0.623,0.384,0.268,0,0,0.231,0,0,0 +0.667,0.588,0.26,0.187,0,0,0,0,0.467,0.0383 +0.667,0.579,0.304,0.23,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0 +0.667,0.545,0.182,0.218,0,0,0,0,0,0 +0.667,0.532,0.0896,0.116,0,0,0,0,0,0.124 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.374 +1,0.528,0.0241,0.0578,0,0,0,0,0,0.079 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.0383 +1,0.495,0.0324,0.103,0,0,0,0,0,0.191 +0.667,0.512,0.0489,0.22,0,0,0,0,0,0.316 +0.667,0.537,0.0655,0.274,0,0,0.75,0.633,0,0.0383 +0.333,0.554,0.0475,0.16,0,0,0.677,0.15,0,0.0383 +0.333,0.554,0.0542,0.154,0,0,0.494,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0.39,0,0,0.0383 +0.333,0.554,0.0648,0.145,0,0,0.587,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0.602,0,0,0.0765 +0.333,0.554,0.0753,0.14,0,0,0.666,0,0,0.153 +0.667,0.546,0.142,0.23,0,0,0.541,0,0,0.153 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.0765 +0.667,0.588,0.196,0.233,0,0,0,0,0.233,0.459 +0.667,0.614,0.24,0.242,0,0,0,0,0,0 +0.333,0.592,0.169,0.159,0,0,0,0,0,0.344 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0.133 +1,0.563,0.777,0.72,0,0,0,0,0,0.254 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.383,0 +0.333,0.554,0.0648,0.145,0,0,0,0,1,0.23 +0.333,0.554,0.0678,0.141,0,0,0,0,0.0167,0.0765 +0.333,0.554,0.0753,0.14,0.317,0.383,0,0,0,0.115 +0.333,0.554,0.0791,0.14,0.312,1,0,0,0,0.23 +0.333,0.562,0.0873,0.14,0,0.217,0,0,0,0.191 +1,0.602,0.287,0.324,0.621,0.217,0,0,0.133,0.393 +1,0.64,0.352,0.338,0,0,0.337,0.633,0.8,0 +1,0.623,0.321,0.268,0,0,0.0193,0.15,0,0.0383 +1,0.64,0.664,0.461,0,0,0,0,0,0.182 +1,0.615,0.82,0.59,0,0,0,0,0,0.319 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0.0383 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.324 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.0978 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.191 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.306 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0383 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.115 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.667,0.563,0.153,0.236,0,0,0,0,0.583,0.115 +0.667,0.588,0.19,0.239,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.115 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.23 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.197 +1,0.597,0.532,0.462,0,0,0.0369,0.133,0,0.0383 +1,0.563,0.504,0.542,0,0,0,0.617,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.418 +1,0.495,0.0314,0.104,0,0,0,0,0,0.112 +0.667,0.512,0.0474,0.222,0,0,0,0,0.233,0.11 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.211 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.268 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.306 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0383 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0.383,0.23 +0.667,0.546,0.13,0.235,0,0,0,0,0.817,0.0765 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.115 +1,0.563,0.222,0.329,0,0,0.162,0.75,0,0.0383 +0.667,0.588,0.19,0.239,0,0,0,0,0.467,0.115 +1,0.64,0.339,0.353,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.0765 +1,0.615,0.79,0.668,0,0,0,0,0,0.0383 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0.0383 +1,0.528,0.0157,0.0495,0,0,0,0,0,0.0383 +1,0.528,0.0186,0.05,0,0,0,0,0,0.258 +1,0.528,0.0236,0.0768,0,0,0,0,0.633,0.0457 +1,0.537,0.0316,0.136,0,0,0,0,0.0833,0.435 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.231 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.546,0.0996,0.256,0,0,0,0,0,0.153 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0.0765 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.205 +0.667,0.546,0.13,0.235,0.619,0.217,0,0,0,0.319 +0.333,0.554,0.0766,0.142,0.127,0,0,0,0,0.0734 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.3 +1,0.602,0.276,0.334,0,0,0,0,0.233,0.199 +1,0.64,0.339,0.353,0,0,0,0,0,0.135 +1,0.653,0.457,0.408,0.138,0.133,0,0,0,0 +1,0.64,0.64,0.518,0.586,0.0833,0,0,0,0.115 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0 +1,0.528,0.0208,0.0495,0,0,0,0,0,0.0963 +1,0.528,0.0179,0.0495,0,0,0,0,0,0.191 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0636,0.162,0,0,0,0,0.717,0.115 +0.667,0.546,0.142,0.263,0,0,0,0,0,0.115 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.156 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0383 +0.667,0.546,0.264,0.235,0,0,0,0,0.883,0.23 +0.667,0.563,0.29,0.236,0,0,0,0,0.317,0.191 +1,0.602,0.448,0.334,0,0,0,0,0,0.167 +1,0.64,0.464,0.353,0,0,0,0,0,0.204 +1,0.653,0.546,0.408,0,0,0,0,0,0.152 +0.667,0.614,0.485,0.362,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0.202 +0.667,0.562,0.272,0.296,0,0,0,0,0,0.0734 +1,0.529,0.334,0.397,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0 +1,0.495,0.0699,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.546,0.169,0.256,0,0,0,0,0,0.184 +1,0.546,0.184,0.245,0,0,0,0,0,0.311 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0922 +0.667,0.554,0.125,0.142,0,0,0,0,0,0.235 +0.667,0.546,0.264,0.235,0,0,0.528,0.75,0,0.391 +0.667,0.563,0.29,0.236,0,0,0.12,0,0,0.3 +0.667,0.588,0.305,0.239,0,0,0,0,0.133,0.546 +0.667,0.614,0.315,0.252,0,0,0,0,0.1,0.221 +0.333,0.592,0.194,0.169,0,0,0,0,0,0.0383 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.0765 +0.667,0.597,0.569,0.462,0,0,0,0,0.383,0.191 +1,0.563,0.779,0.788,0,0,0,0,0.567,0 +1,0.512,0.492,0.571,0.51,0.217,0,0,0,0 +1,0.474,0.224,0.249,0,0,0,0,0,0 +1,0.461,0.0805,0.124,0,0,0,0,0,0 +1,0.495,0.0314,0.066,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0396 +1,0.549,0.0396,0.163,0,0,0,0,0,0.122 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.254 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0383 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0383 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.268 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0765 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.191 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.115 +1,0.64,0.339,0.353,0,0,0.101,0.383,0,0.191 +1,0.653,0.457,0.408,0,0,0,0.367,0,0.0765 +1,0.64,0.64,0.518,0,0,0,0,0.883,0.0383 +1,0.615,0.79,0.668,0,0,0,0,0.0667,0 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.499 +1,0.512,0.0474,0.222,0,0,0,0,0.233,0.206 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.249 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0.467,0.191 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.536 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.23 +0.667,0.614,0.232,0.252,0,0,0,0,0.233,0.344 +1,0.653,0.457,0.408,0,0,0,0,0,0.153 +1,0.64,0.64,0.518,0.481,0.883,0,0,0,0 +1,0.615,0.79,0.668,0,0.0333,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0.0694 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.117 +1,0.537,0.0316,0.136,0,0,0,0,0,0.644 +1,0.549,0.0396,0.163,0,0,0,0,0,0.224 +0.667,0.554,0.0461,0.162,0,0,0,0,0.383,0.131 +0.667,0.554,0.0526,0.156,0,0,0,0,0.0833,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0765 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.115 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0383 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.306 +0.333,0.575,0.103,0.144,0,0,0.486,0.5,0,0.0383 +0.667,0.614,0.232,0.252,0,0,0.872,0,0.233,0.0765 +0.667,0.623,0.31,0.289,0,0,0.207,0,0,0.0765 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.209 +1,0.563,0.749,0.788,0,0,0,0,0,0.0934 +1,0.529,0.307,0.397,0,0,0,0,0,0.0785 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.23 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.167 +1,0.487,0.0631,0.308,0,0,0,0,0,0.266 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.0765 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.0383 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.301 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.168 +0.333,0.554,0.0628,0.147,0,0,0.154,0.5,0,0.153 +0.333,0.554,0.0657,0.143,0,0,0.201,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0.0765 +0.667,0.546,0.137,0.235,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0383 +0.667,0.575,0.103,0.144,0,0,0,0,0,0 +1,0.614,0.232,0.252,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.258 +1,0.615,0.79,0.668,0,0,0,0,0,0.418 +1,0.563,0.749,0.788,0,0,0,0,0,0.239 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0.717,0.0383 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.191 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.191 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0383 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.115 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0765 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.268 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0765 +1,0.64,0.339,0.353,0,0,0,0,0.467,0.0383 +1,0.653,0.457,0.408,0.819,0.883,0.238,0.383,0,0.0765 +1,0.64,0.64,0.518,0.543,0.267,0.26,0.117,0,0 +1,0.615,0.79,0.668,0.573,0,0.536,0,0,0.0383 +1,0.563,0.504,0.542,0.194,0,0.425,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +1,0.549,0.0433,0.163,0,0,0,0,0,0.268 +1,0.554,0.0636,0.162,0,0,0,0,0,0.135 +1,0.554,0.0803,0.156,0,0,0,0,0,0.464 +1,0.546,0.169,0.256,0,0,0,0,0,0.273 +0.667,0.554,0.101,0.147,0,0,0,0,0,0.126 +0.667,0.546,0.198,0.237,0,0,0,0,0,0.527 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.218 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.0383 +0.333,0.562,0.154,0.143,0,0,0,0,0.233,0.0765 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.191 +0.667,0.588,0.167,0.151,0,0,0,0,0,0.23 +0.667,0.592,0.194,0.169,0,0,0,0,0,0.0383 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.0765 +0.667,0.597,0.569,0.462,0,0,0,0,0,0 +0.667,0.562,0.272,0.296,0,0,0,0,0,0.393 +0.667,0.545,0.176,0.223,0,0,0,0,0,0.0383 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0.114 +0.667,0.528,0.044,0.0743,0,0,0,0,0,0 +0.667,0.528,0.028,0.0578,0,0,0,0,0,0.153 +0.667,0.528,0.0208,0.0495,0,0,0,0,0,0.0912 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0.191 +1,0.554,0.0636,0.162,0.373,0.217,0,0,0,0.0383 +1,0.546,0.142,0.263,0.605,0,0,0,0.883,0 +1,0.546,0.169,0.256,0.407,0,0.485,0.75,0.0667,0.0765 +1,0.538,0.268,0.343,0,0,0.624,0,0,0.115 +1,0.538,0.287,0.331,0,0,0.286,0,0,0.0765 +1,0.538,0.339,0.328,0,0,0,0,0,0.265 +1,0.538,0.387,0.327,0,0,0,0,0,0 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.268 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.241 +1,0.64,0.464,0.353,0,0,0,0,0,0.18 +1,0.653,0.546,0.408,0,0,0,0,0,0.452 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.126 +0.667,0.597,0.569,0.462,0,0,0,0,0,0.225 +1,0.563,0.779,0.788,0,0,0,0,0,0.219 +1,0.529,0.334,0.397,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.262 +1,0.537,0.0316,0.136,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0.467,0.23 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.115 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.115 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.115 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.268 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.23 +0.333,0.562,0.0846,0.143,0,0,0,0,0.383,0.115 +0.667,0.588,0.19,0.239,0,0,0,0,0.0833,0.0765 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.0765 +1,0.653,0.457,0.408,0,0,0,0,0,0.0383 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.658 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.313 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.304 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.0383 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0383 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0383 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0383 +0.333,0.562,0.0846,0.143,0,0,0,0,0.467,0.23 +0.333,0.575,0.103,0.144,0,0,0,0,0,0 +1,0.64,0.339,0.353,0,0,0,0,0,0.0383 +1,0.653,0.457,0.408,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0.325 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.315 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.182 +0.333,0.537,0.0316,0.136,0,0,0,0,0,0.368 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.273 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.268 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0765 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.335 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0294 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.36,0.383,0,0.115 +0.333,0.562,0.0846,0.143,0,0,0.596,0.367,0,0 +1,0.602,0.276,0.334,0,0,0.167,0,0,0.0383 +0.333,0.588,0.124,0.151,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0.435,0.45,0,0,0,0 +0.667,0.614,0.432,0.362,0.876,0,0,0,0.883,0.222 +1,0.615,0.79,0.668,0,0,0,0,0.0667,0.176 +1,0.562,0.26,0.296,0,0,0,0,0,0.322 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.355 +1,0.512,0.0474,0.222,0,0,0,0,0,0.304 +1,0.537,0.0633,0.277,0,0,0,0,0,0.153 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.191 +0.333,0.554,0.0526,0.156,0,0,0,0,0.233,0.0383 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0383 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0383 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.191 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.23 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.153 +0.667,0.575,0.103,0.144,0,0,0,0,0.633,0 +1,0.64,0.339,0.353,0,0,0,0,0.0833,0.115 +1,0.653,0.457,0.408,0,0,0,0,0,0.115 +1,0.64,0.64,0.518,0,0,0,0,0.233,0.23 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0.112 +1,0.529,0.307,0.397,0,0,0,0,0,0.17 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0.233,0.264 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.17 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.158 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.446 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.153 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.289 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.55 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.511 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0765 +0.667,0.614,0.232,0.252,0,0,0,0,0.133,0.0383 +0.667,0.623,0.31,0.289,0,0,0,0,1,0.0383 +0.667,0.614,0.432,0.362,0,0,0,0,0.55,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0.233 +1,0.554,0.0636,0.162,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.0383 +0.667,0.546,0.184,0.245,0,0,0,0,0,0.375 +0.667,0.546,0.198,0.237,0,0,0,0,0,0.0383 +0.667,0.546,0.232,0.235,0,0,0.0642,0.133,0,0.115 +0.667,0.546,0.264,0.235,0,0,0.674,0.617,0,0.23 +1,0.563,0.427,0.329,0,0,0.522,0,0,0.191 +1,0.602,0.448,0.334,0,0,0.557,0,0,0.0765 +1,0.64,0.464,0.353,0,0,0.536,0,0,0.131 +1,0.653,0.546,0.408,0,0,0.518,0,0.467,0.159 +1,0.64,0.718,0.518,0,0,0.647,0,0,0.195 +1,0.615,0.844,0.668,0,0,0.514,0,0,0.0726 +1,0.563,0.779,0.788,0,0,0.605,0,0,0.111 +1,0.512,0.492,0.571,0,0,0.888,0,0,0.0753 +1,0.503,0.155,0.183,0,0,0.241,0,0.467,0.267 +1,0.528,0.044,0.0743,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.546,0.184,0.245,0,0,0,0,0,0.368 +0.667,0.554,0.108,0.143,0,0,0,0,0.383,0.153 +0.667,0.554,0.125,0.142,0,0,0,0,0.333,0.115 +0.667,0.554,0.141,0.142,0,0,0.565,0.383,0,0.191 +1,0.563,0.29,0.236,0,0,0.334,0.367,0,0.268 +1,0.602,0.448,0.334,0,0,0,0,0.233,0.217 +1,0.64,0.464,0.353,0,0,0,0,0,0.07 +0.667,0.623,0.37,0.289,0,0,0,0,0,0.18 +1,0.614,0.485,0.362,0,0,0,0,0,0.591 +1,0.597,0.569,0.462,0,0,0,0,0,0.0383 +1,0.563,0.525,0.542,0,0,0,0,0,0.107 +1,0.529,0.334,0.397,0,0,0,0,0,0.0689 +1,0.503,0.155,0.183,0,0,0,0,0,0.3 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.0744 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.391 +1,0.537,0.0316,0.136,0,0,0,0,0,0.179 +0.667,0.549,0.0396,0.163,0,0,0,0,0.233,0.306 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.0765 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0545 +0.333,0.554,0.0577,0.153,0,0,0.319,0.383,0,0.0765 +0.333,0.554,0.0628,0.147,0,0,0.38,0.367,0,0 +0.333,0.554,0.0657,0.143,0,0,0.56,0,0,0 +0.333,0.554,0.073,0.142,0,0,0.477,0,0,0.0765 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0383 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0765 +0.667,0.588,0.19,0.239,0,0,0,0,0.233,0.0383 +1,0.64,0.339,0.353,0,0,0,0,0,0.0383 +1,0.623,0.31,0.289,0,0,0,0,0.233,0.153 +1,0.614,0.432,0.362,0,0,0,0,0,0.191 +1,0.597,0.532,0.462,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.117 +1,0.512,0.0474,0.222,0,0,0,0,0,0.247 +1,0.537,0.0633,0.277,0,0,0,0,0,0.213 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.201 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.115 +0.667,0.546,0.0996,0.256,0.586,0.217,0.00963,0.133,0,0.0383 +0.667,0.546,0.11,0.245,0,0,0.785,0.617,0,0.0383 +0.667,0.546,0.116,0.237,0,0,0.305,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.536,0,0.233,0.344 +0.667,0.546,0.137,0.235,0,0,0.291,0,0,0.0383 +0.667,0.563,0.153,0.236,0,0,0.568,0,0,0 +0.667,0.588,0.19,0.239,0,0,0.652,0,0,0.0765 +1,0.64,0.339,0.353,0,0,0,0,0,0.0765 +1,0.653,0.457,0.408,0,0,0,0,0,0.0765 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0878 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0936 +1,0.512,0.0474,0.222,0,0,0,0,0,0.645 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.258 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.534 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.547 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.481 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.115 +0.333,0.554,0.0657,0.143,0,0,0,0,0.133,0 +0.333,0.554,0.073,0.142,0,0,0,0,1,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0.0667,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.115 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.191 +0.333,0.592,0.163,0.169,0,0,0,0,0.467,0.153 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.115 +1,0.615,0.79,0.668,0,0,0.157,0.383,0,0 +1,0.563,0.749,0.788,0,0,0.449,0.117,0,0.127 +1,0.545,0.161,0.223,0,0,0,0,0,0.109 +1,0.532,0.0759,0.116,0,0,0,0,0,0.114 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.512,0.0474,0.222,0,0,0,0,0,0.364 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.306 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0.115 +0.667,0.562,0.0846,0.143,0,0,0,0,0,0.153 +0.667,0.575,0.103,0.144,0,0,0,0,0,0.23 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.306 +1,0.623,0.31,0.289,0,0,0,0,0,0.0383 +1,0.64,0.64,0.518,0,0,0,0,0,0.115 +1,0.615,0.79,0.668,0,0,0,0,0,0.114 +1,0.563,0.504,0.542,0,0,0,0,0,0.0525 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0.171 +1,0.528,0.0157,0.0495,0,0,0,0,0,0.209 +1,0.528,0.0186,0.05,0,0,0,0,0,0.386 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.126 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.128 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.267 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.151 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.0383 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.511 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0.0534 +0.667,0.554,0.0657,0.143,0,0,0,0,0,0 +0.667,0.554,0.073,0.142,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0.115 +0.667,0.563,0.153,0.236,0,0,0,0,0.883,0.153 +0.667,0.588,0.19,0.239,0,0,0,0,1,0.191 +0.667,0.614,0.232,0.252,0,0,0,0,0.0333,0.23 +1,0.653,0.457,0.408,0,0,0,0,0.233,0.0765 +1,0.64,0.64,0.518,0,0,0,0,0,0.224 +1,0.615,0.79,0.668,0,0,0,0,0,0.0383 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.546,0.109,0.274,0,0,0,0,0.233,0.921 +1,0.538,0.205,0.37,0,0,0,0,0.233,0.189 +1,0.538,0.244,0.359,0,0,0,0,0,0.431 +1,0.538,0.268,0.343,0,0,0,0,0,0.187 +0.667,0.546,0.198,0.237,0.676,0.217,0,0,0,0.115 +0.667,0.546,0.232,0.235,0,0,0,0,0,0.191 +0.667,0.546,0.264,0.235,0,0,0,0,0,0.115 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.0765 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.0765 +1,0.64,0.464,0.353,0,0,0,0,0,0.0383 +1,0.653,0.546,0.408,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0.191 +1,0.512,0.492,0.571,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0.071 +1,0.495,0.0699,0.099,0,0,0,0,0,0 +1,0.495,0.038,0.066,0,0,0,0,0,0.0383 +1,0.528,0.0208,0.0495,0,0,0,0,0,0.191 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0684,0.277,0.2,0.133,0,0,0.467,0.0765 +1,0.538,0.155,0.387,0.71,0.317,0,0,0,0.106 +0.667,0.546,0.142,0.263,0,0,0,0,0,0.271 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.0383 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.965 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.203 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.244 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.26 +0.333,0.562,0.154,0.143,0,0,0,0,0.133,0.146 +0.667,0.588,0.305,0.239,0,0,0,0,0.333,0.401 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.23 +0.667,0.623,0.37,0.289,0,0,0,0,0,0.115 +1,0.64,0.718,0.518,0.704,0.217,0,0,0,0 +1,0.615,0.844,0.668,0.552,0,0,0,0,0.125 +1,0.563,0.779,0.788,0,0,0,0,0,0.078 +1,0.529,0.334,0.397,0,0,0,0,0,0.147 +1,0.503,0.155,0.183,0.242,0.383,0,0,0,0 +1,0.528,0.0374,0.0743,0.494,1,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.543 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.397 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.215 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.106 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.184 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.191 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.205 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.133 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0383 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.306 +0.667,0.588,0.19,0.239,0,0,0.356,0.633,0,0 +0.667,0.614,0.232,0.252,0,0,0.726,0.117,0.633,0.0383 +0.667,0.623,0.31,0.289,0,0,0.263,0,0.0833,0.0383 +1,0.64,0.64,0.518,0,0,0.578,0,0,0 +1,0.615,0.79,0.668,0,0,0.665,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0.0383 +1,0.545,0.161,0.223,0,0,0,0,0,0.254 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.383 +1,0.528,0.0236,0.0768,0,0,0,0,0.383,0.155 +1,0.512,0.0474,0.222,0,0,0,0,0.0833,0.128 +1,0.525,0.087,0.39,0,0,0,0,0.133,0.485 +0.667,0.546,0.0764,0.274,0,0,0,0,0.583,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.0383 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.115 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0383 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.153 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.268 +0.333,0.562,0.0846,0.143,0,0,0.125,0.133,0,0.115 +0.667,0.588,0.19,0.239,0,0,0.236,1,0.633,0 +1,0.64,0.339,0.353,0,0,0,0.367,0.0833,0.0765 +1,0.653,0.457,0.408,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.131 +0.667,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.352 +1,0.512,0.0474,0.222,0,0,0,0,0,0.213 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.115 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.624 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.13 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.191 +0.667,0.588,0.19,0.239,0,0,0,0,0.233,0.23 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.0765 +1,0.653,0.457,0.408,0,0,0,0,0,0.379 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0.0765 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.129 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.184 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.294 +1,0.512,0.0474,0.222,0,0,0,0,0,0.375 +1,0.537,0.0633,0.277,0,0,0,0,0,0.538 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.243 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0765 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0765 +1,0.64,0.339,0.353,0,0,0,0,0.633,0.0383 +1,0.653,0.457,0.408,0,0,0,0,1,0 +1,0.64,0.64,0.518,0,0,0,0,0.283,0.0765 +1,0.615,0.79,0.668,0,0,0,0,0,0.0383 +1,0.563,0.749,0.788,0,0,0,0,0,0.174 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.233 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.352 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.287 +0.333,0.554,0.0526,0.156,0,0,0,0,0.133,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0.583,0.0765 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.115 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.23 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.153 +0.333,0.575,0.103,0.144,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0.133,0.0765 +0.667,0.623,0.31,0.289,0,0,0,0,1,0.0383 +1,0.64,0.64,0.518,0,0,0,0,0.3,0 +1,0.615,0.79,0.668,0,0,0,0,0,0.127 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0.137 +1,0.529,0.0451,0.0743,0,0,0,0,0.55,0.0383 +1,0.529,0.0286,0.0578,0,0,0,0,0.167,0.0765 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.191 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.12,0.3,0,0.0383 +1,0.538,0.0301,0.139,0,0,0.616,0.45,0,0.0383 +1,0.551,0.0444,0.167,0,0,0.51,0,0.3,0.268 +1,0.548,0.113,0.286,0,0,0.721,0,0.183,0.115 +1,0.548,0.147,0.278,0,0,0.587,0,0,0.0383 +1,0.548,0.174,0.27,0,0,0.459,0,0,0.0765 +1,0.542,0.277,0.364,0,0,0.6,0,0,0.0383 +0.667,0.548,0.204,0.251,0,0,0.191,0,0,0 +0.667,0.548,0.24,0.249,0,0,0,0,0.233,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.536 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.0765 +1,0.617,0.326,0.286,0,0,0,0,0,0 +1,0.658,0.565,0.501,0.209,0.233,0,0,0,0 +0.667,0.617,0.501,0.454,0.444,0,0.222,0.3,0,0 +0.667,0.6,0.588,0.554,0,0,0.13,0.45,0,0.074 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0.152 +1,0.505,0.161,0.183,0,0,0,0,0,0.129 +1,0.497,0.0721,0.099,0,0,0,0,0,0.106 +1,0.529,0.0286,0.0578,0,0,0,0,0,0.119 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.469 +1,0.551,0.0444,0.167,0,0,0,0,0,0.405 +1,0.548,0.113,0.286,0,0,0,0,0,0.0765 +1,0.548,0.147,0.278,0,0,0,0,0,0.0765 +1,0.542,0.252,0.381,0.604,0.7,0,0,0,0.357 +1,0.542,0.277,0.364,0.565,0,0.157,0.05,0,0.139 +1,0.542,0.297,0.352,0,0,0.255,0.7,0,0 +1,0.548,0.24,0.249,0,0,0.246,0,0,0.0765 +0.667,0.548,0.273,0.249,0,0,0.499,0,0,0.0765 +0.667,0.566,0.3,0.251,0,0,0.787,0,0,0.0383 +0.333,0.576,0.167,0.154,0,0,0.205,0,0,0.0765 +0.667,0.617,0.326,0.286,0,0,0,0,0.483,0.153 +0.667,0.626,0.383,0.351,0,0,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0.459,0.75,0,0.0765 +0.667,0.6,0.588,0.554,0,0,0.766,0,0.3,0.153 +1,0.568,0.806,0.851,0,0,0.116,0,0.183,0 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0.0827 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.126 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.244 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.395 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.204 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.23 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.23 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.11 +0.667,0.617,0.239,0.286,0,0,0,0,0.233,0.441 +1,0.658,0.473,0.501,0,0,0,0,0,0.0765 +0.667,0.617,0.446,0.454,0.283,0.233,0,0,0,0.0383 +1,0.619,0.817,0.806,0.542,0,0,0,0,0.229 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.122 +1,0.514,0.0488,0.228,0,0,0,0,0,0.367 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0.27 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.298 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.277 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.115 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0383 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.331 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0795 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.674,0.5,0,0.23 +0.667,0.617,0.239,0.286,0,0,0.435,0,0,0.306 +1,0.658,0.473,0.501,0,0,0.421,0,0,0 +1,0.645,0.662,0.656,0,0,0.396,0,0,0.115 +1,0.619,0.817,0.806,0,0,0.273,0,0,0 +1,0.568,0.774,0.851,0,0,0.464,0,0,0.118 +1,0.531,0.317,0.391,0,0,0.762,0,0,0.139 +1,0.505,0.14,0.183,0,0,0.286,0,0,0.0649 +1,0.529,0.0383,0.0743,0,0,0.464,0,0,0 +1,0.529,0.0241,0.0578,0,0,0.526,0,0,0.0383 +1,0.529,0.0173,0.0495,0,0,0.62,0,0,0.115 +1,0.529,0.0158,0.0495,0,0,0.726,0,0,0.153 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.12 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.19 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.383 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0.786,0.467,0,0,0,0 +0.333,0.555,0.0646,0.154,0.131,0,0,0,0,0.23 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0383 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.115 +0.333,0.576,0.106,0.154,0,0,0,0,0.483,0.115 +1,0.645,0.351,0.404,0,0,0,0,0,0.115 +1,0.658,0.473,0.501,0.618,0.467,0,0,0,0 +1,0.645,0.662,0.656,0.517,0,0.356,0.633,0,0 +0.667,0.6,0.55,0.554,0,0,0,0.117,0,0.582 +1,0.566,0.521,0.584,0.646,0.233,0,0,0,0 +1,0.531,0.317,0.391,0.802,0,0,0,0,0 +1,0.533,0.0781,0.116,0.513,0,0.258,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.157 +1,0.538,0.0323,0.139,0,0,0,0,0,0.0297 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.153 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.115 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.153 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0765 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.191 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.115 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.23 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.0383 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.17 +0.667,0.626,0.32,0.351,0,0,0,0,0.233,0.117 +1,0.645,0.662,0.656,0,0,0,0,0,0.115 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0.0918 +1,0.516,0.468,0.561,0,0,0,0,0,0.095 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0718 +1,0.497,0.0323,0.107,0,0,0,0,0,0.181 +1,0.49,0.0653,0.317,0,0,0,0,0,0.559 +1,0.529,0.09,0.402,0,0,0.212,0.133,0,0.893 +0.667,0.548,0.0788,0.286,0.216,0.133,0.57,0.367,0,0.23 +0.333,0.555,0.0541,0.164,0.66,0.333,0,0,0,0.0765 +0.333,0.555,0.0593,0.16,0.274,0,0,0,0,0.0383 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.153 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.115 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.24 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.122 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0765 +0.667,0.617,0.239,0.286,0.457,0.633,0,0,0,0 +0.667,0.626,0.32,0.351,0.915,0.533,0,0,0,0.253 +1,0.645,0.662,0.656,0.15,0,0,0,0,0.0702 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0765 +1,0.555,0.0654,0.168,0,0,0,0,0,0.0383 +1,0.548,0.147,0.278,0,0,0,0,0,0.0383 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.0383 +0.667,0.548,0.191,0.259,0,0,0.661,0.55,0,0.279 +0.667,0.548,0.204,0.251,0,0,0.499,0.2,0,0 +0.333,0.555,0.129,0.149,0,0,0.587,0,0,0.115 +0.667,0.555,0.146,0.149,0,0,0.523,0,0,0.115 +0.667,0.566,0.3,0.251,0,0,0.337,0,0,0.334 +0.667,0.591,0.315,0.259,0,0,0.51,0,0,0.121 +0.333,0.589,0.172,0.168,0,0,0.546,0,0.05,0.459 +0.667,0.626,0.383,0.351,0,0,0.0225,0,0.183,0 +0.333,0.589,0.26,0.252,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0.201 +1,0.531,0.345,0.391,0,0,0.596,0.75,0,0.368 +1,0.533,0.0894,0.116,0,0,0.352,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0.153 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.555,0.0654,0.168,0,0,0,0,0.483,0.306 +1,0.548,0.147,0.278,0,0,0,0,0,0.191 +1,0.548,0.174,0.27,0,0,0,0,0,0.0383 +0.667,0.555,0.104,0.154,0,0,0,0,0,0.0383 +0.667,0.548,0.204,0.251,0,0,0,0,0.483,0.268 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.0383 +1,0.548,0.273,0.249,0,0,0,0,0,0.0383 +1,0.566,0.3,0.251,0,0,0,0,0,0.268 +0.667,0.591,0.315,0.259,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0.147 +1,0.645,0.743,0.656,0,0,0,0,0,0.183 +1,0.619,0.873,0.806,0,0,0,0,0,0.0912 +0.667,0.564,0.281,0.317,0,0,0,0,0,0.133 +1,0.531,0.345,0.391,0,0,0,0,0,0.153 +1,0.533,0.0894,0.116,0,0,0.13,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0936 +1,0.497,0.0218,0.0511,0,0,0,0,0.133,0.365 +1,0.497,0.0323,0.107,0,0,0,0,0.1,0.318 +0.667,0.538,0.0323,0.139,0,0,0,0,0.633,0.0383 +0.667,0.551,0.0406,0.167,0,0,0,0,1,0.191 +0.667,0.555,0.0473,0.168,0,0,0,0,0.05,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.191 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.306 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.0765 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.191 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.0765 +1,0.658,0.473,0.501,0,0,0,0,0.233,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.0765 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0.612,0.233,0,0,0,0.192 +1,0.531,0.317,0.391,0.168,0,0,0,0,0.617 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0.133,0.341 +1,0.514,0.0488,0.228,0,0,0,0,0.1,0.302 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0.408 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.17 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.185 +1,0.645,0.351,0.404,0,0,0,0,0,0.0765 +0.667,0.626,0.32,0.351,0.731,0.233,0.592,0.5,0,0.0765 +0.667,0.617,0.446,0.454,0.129,0,0.708,0,0,0.0383 +0.667,0.6,0.55,0.554,0,0,0.742,0,0.233,0 +1,0.566,0.521,0.584,0,0,0.0144,0,0,0.247 +1,0.531,0.317,0.391,0,0,0,0,0,0.167 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.229 +1,0.514,0.0488,0.228,0,0,0,0,0,0.322 +1,0.54,0.0653,0.284,0,0,0,0,0,0.273 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.0765 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.153 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.115 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.201 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.571 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.197 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.0423 +0.667,0.617,0.446,0.454,0,0,0,0,0.233,0 +1,0.619,0.817,0.806,0,0,0,0,0,0.191 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.135 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0692 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.631 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0.306 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.117 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.634 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0765 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0383 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.344 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.153 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.0765 +0.333,0.576,0.106,0.154,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.0765 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0.125 +1,0.546,0.167,0.22,0,0,0,0,0,0.0157 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0982 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.238 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.115 +1,0.551,0.0406,0.167,0,0,0,0,0,0.0383 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.115 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.0463 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.319 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.552,0.233,0,0,0,0.115 +0.333,0.555,0.0751,0.149,0.17,0,0,0,0,0.0765 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.115 +0.667,0.566,0.158,0.251,0,0,0,0,0.133,0.191 +0.667,0.591,0.196,0.259,0,0,0,0,1,0 +1,0.645,0.351,0.404,0,0,0,0,0.317,0.0765 +1,0.658,0.473,0.501,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.275 +1,0.619,0.817,0.806,0,0,0,0,0,0.0617 +1,0.566,0.521,0.584,0,0,0,0,0,0.163 +1,0.546,0.167,0.22,0,0,0,0,0,0.11 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.376 +1,0.551,0.0444,0.167,0,0,0,0,0,0.0383 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.8,0.23 +0.667,0.548,0.147,0.278,0,0,0,0,0.4,0.0765 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.108 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.305 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.0383 +0.667,0.548,0.24,0.249,0.418,0.7,0,0,0,0.0383 +0.667,0.548,0.273,0.249,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0.119,0.05,0.559,0.75,0,0.306 +1,0.606,0.464,0.363,0.699,0.883,0,0,0,0.0383 +1,0.645,0.479,0.404,0.58,0,0,0,0,0.209 +0.667,0.626,0.383,0.351,0.16,0,0,0,0,0.226 +0.667,0.617,0.501,0.454,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0.106,0.3,0,0.0473 +1,0.533,0.0894,0.116,0,0,0,0.2,0,0.126 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.3,0.203 +1,0.542,0.212,0.392,0,0,0,0,0.183,0.112 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.153 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.0765 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.268 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.243 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.594 +0.333,0.564,0.159,0.15,0,0,0,0,0,0 +0.333,0.576,0.167,0.154,0,0,0,0,0,0.123 +0.667,0.617,0.326,0.286,0.377,0.3,0,0,0,0.115 +0.667,0.626,0.383,0.351,0.503,0.167,0,0,0,0 +0.667,0.617,0.501,0.454,0.729,0,0,0,0,0 +1,0.619,0.873,0.806,0.593,0,0,0,0,0 +1,0.568,0.806,0.851,0.683,0,0,0,0,0 +1,0.516,0.509,0.561,0.545,0,0,0,0,0.0383 +1,0.477,0.232,0.249,0.119,0,0,0,0,0.231 +1,0.497,0.0608,0.099,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0.123 +1,0.497,0.0323,0.107,0,0,0,0,0.1,0.16 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.238 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.222 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0561 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.194 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.245 +0.333,0.555,0.0646,0.154,0,0,0,0,0.133,0.18 +0.333,0.555,0.0676,0.15,0,0,0,0,0.1,0.191 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.23 +1,0.542,0.205,0.349,0,0,0,0,0,0.191 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.268 +0.667,0.591,0.196,0.259,0,0,0,0,0.233,0 +1,0.645,0.351,0.404,0,0,0,0,0,0.0633 +1,0.658,0.473,0.501,0,0,0,0,0.233,0.128 +1,0.645,0.662,0.656,0,0,0,0,0,0.153 +1,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0.0987 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0436 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0383 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0.337 +1,0.54,0.0653,0.284,0,0,0,0,0,0.344 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.667,0.591,0.196,0.259,0,0,0.347,0.383,0.133,0 +1,0.645,0.351,0.404,0,0,0.684,0.367,0.1,0.153 +1,0.658,0.473,0.501,0,0,0.465,0,0,0 +1,0.645,0.662,0.656,0,0,0.0144,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.0383 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0.153 +1,0.497,0.0323,0.066,0,0,0,0,0,0.0383 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.0383 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.115 +1,0.529,0.0241,0.0781,0,0,0.167,0.383,0,0.0765 +1,0.514,0.0488,0.228,0,0,0.73,0.367,0,0.0383 +1,0.54,0.0653,0.284,0,0,0.161,0,0,0.103 +1,0.548,0.0788,0.286,0,0,0,0,0,0.392 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.24 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.23 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0383 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0765 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0,0,0,0,0,0.115 +0.667,0.617,0.239,0.286,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0.287,0.233,0,0,0.483,0.23 +1,0.645,0.662,0.656,0.384,0.133,0,0,0,0.261 +1,0.619,0.817,0.806,0.296,0.333,0,0,0,0.168 +1,0.568,0.774,0.851,0,0,0,0,0,0.0814 +1,0.531,0.317,0.391,0,0,0,0,0,0.244 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.326 +1,0.538,0.0323,0.139,0,0,0,0,0,0.403 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.0724 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.115 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.23 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.268 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.153 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0.115 +0.667,0.576,0.106,0.154,0,0,0,0,0.383,0.23 +0.667,0.617,0.239,0.286,0,0,0,0,0.1,0.0383 +1,0.658,0.473,0.501,0.0708,0.133,0,0,0,0 +1,0.645,0.662,0.656,0.458,0.333,0,0,0,0.191 +1,0.619,0.817,0.806,0,0,0,0,0,0.0383 +1,0.568,0.774,0.851,0,0,0,0,0,0.3 +1,0.531,0.317,0.391,0,0,0,0,0,0.116 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.152 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.133,0.19 +0.667,0.54,0.0653,0.284,0,0,0,0,0.35,0.115 +0.333,0.555,0.0473,0.168,0,0,0,0,0.233,0.115 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.0383 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.153 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.383 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0383 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.306 +0.333,0.555,0.0789,0.149,0,0,0.438,0.633,0,0 +0.667,0.566,0.158,0.251,0,0,0.528,0.117,0,0.0765 +0.667,0.591,0.196,0.259,0,0,0.66,0,0,0 +0.667,0.617,0.239,0.286,0,0,0.515,0,0,0 +0.667,0.626,0.32,0.351,0,0,0.774,0,0,0.0383 +0.667,0.617,0.446,0.454,0.513,0.233,0.217,0,0,0 +0.667,0.6,0.55,0.554,0.773,0,0,0,0,0.153 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0.133 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.279 +1,0.551,0.0444,0.167,0.159,0.05,0,0,0.233,0.154 +1,0.548,0.113,0.286,0.506,0.417,0,0,0,0.27 +1,0.542,0.212,0.392,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0.55,0.0383 +1,0.542,0.277,0.364,0,0,0,0,1,0.0765 +1,0.542,0.297,0.352,0,0,0,0,0.867,0.268 +1,0.548,0.24,0.249,0,0,0,0,0,0.0383 +1,0.555,0.146,0.149,0,0,0,0,0,0.115 +1,0.568,0.441,0.351,0,0,0,0,0,0.115 +1,0.606,0.464,0.363,0,0,0,0,0.8,0.115 +0.667,0.617,0.326,0.286,0,0,0,0,1,0.0383 +0.667,0.626,0.383,0.351,0,0,0,0,0.367,0.115 +0.667,0.617,0.501,0.454,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0.342,0.5,0,0 +1,0.568,0.806,0.851,0,0,0.971,0,0,0.0765 +1,0.516,0.509,0.561,0,0,0.472,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0.169 +1,0.497,0.0721,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0765 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.153 +1,0.551,0.0444,0.167,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.222 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.153 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.153 +0.333,0.555,0.104,0.154,0,0,0,0,0.55,0.0383 +0.667,0.548,0.204,0.251,0,0,0,0,1,0.0383 +0.667,0.548,0.24,0.249,0,0,0.541,0.5,0.133,0.0383 +1,0.542,0.401,0.349,0,0,0.573,0,0,0.459 +1,0.568,0.441,0.351,0,0,0,0,0,0.0765 +1,0.606,0.464,0.363,0,0,0,0,0,0.191 +0.667,0.589,0.172,0.168,0,0,0,0,0,0.0383 +0.667,0.594,0.2,0.2,0,0,0,0,0,0 +0.667,0.589,0.26,0.252,0,0,0,0,0,0.0383 +0.667,0.581,0.303,0.302,0,0,0,0,0,0 +0.667,0.564,0.281,0.317,0,0,0,0,0,0.0383 +1,0.531,0.345,0.391,0,0,0,0,0,0.192 +1,0.505,0.161,0.183,0,0,0,0,0,0.101 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0765 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.28 +1,0.497,0.0323,0.107,0,0,0,0,0,0.367 +1,0.514,0.0488,0.228,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0.133,0.0765 +0.667,0.548,0.0923,0.278,0,0,0,0,0.1,0.0383 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.115 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0.49,0.233,0,0,0,0.0383 +0.667,0.564,0.0871,0.15,0.255,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.153 +0.667,0.617,0.239,0.286,0,0,0,0,0.717,0.169 +1,0.658,0.473,0.501,0,0,0,0,0,0.416 +1,0.645,0.662,0.656,0,0,0,0,0,0.189 +1,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.264 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.189 +0.667,0.529,0.0241,0.0781,0,0,0,0,0,0.499 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0765 +0.333,0.555,0.0789,0.149,0,0,0,0,0.233,0.115 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.0383 +0.333,0.576,0.106,0.154,0.258,0.233,0,0,0.133,0.23 +0.667,0.617,0.239,0.286,0.584,0,0,0,0.583,0.153 +1,0.658,0.473,0.501,0,0,0,0,0,0.23 +1,0.645,0.662,0.656,0,0,0,0,0.383,0.23 +1,0.619,0.817,0.806,0,0,0.263,0.133,0.1,0.123 +1,0.568,0.774,0.851,0,0,0.345,0.617,0,0.154 +1,0.531,0.317,0.391,0,0,0,0,0,0.117 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.248 +1,0.514,0.0488,0.228,0,0,0,0,0,0.413 +0.667,0.551,0.0406,0.167,0,0,0,0,0.233,0.191 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.306 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.191 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.115 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0765 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.0765 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.153 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0.115 +0.333,0.576,0.106,0.154,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.0765 +0.667,0.626,0.32,0.351,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0765 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.2 +1,0.529,0.0188,0.0503,0,0,0,0,0.633,0.0383 +1,0.529,0.0241,0.0781,0,0,0,0,1,0.115 +1,0.538,0.0323,0.139,0,0,0,0,1,0.162 +0.667,0.54,0.0653,0.284,0,0,0,0,0.267,0.149 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.293 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.0934 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +0.333,0.555,0.0789,0.149,0,0,0.199,0.383,0.133,0.153 +0.667,0.566,0.158,0.251,0,0,0,0.367,0.35,0.115 +1,0.606,0.286,0.363,0,0,0,0,0.483,0.153 +1,0.645,0.351,0.404,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.115 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0625 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.232 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.254 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.391 +1,0.538,0.0323,0.139,0.573,0.467,0.167,0.133,0,0.0383 +0.667,0.54,0.0653,0.284,0,0,0.642,0.617,0.233,0.191 +0.333,0.555,0.0473,0.168,0.573,0.633,0,0,0,0 +0.333,0.555,0.0541,0.164,0.265,0.3,0,0,0,0.115 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.23 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.193 +0.667,0.548,0.134,0.249,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0.133,0.0383 +0.333,0.564,0.0871,0.15,0,0,0,0,0.1,0.36 +1,0.606,0.286,0.363,0,0,0,0,0,0.16 +0.667,0.617,0.239,0.286,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0.248 +1,0.645,0.662,0.656,0,0,0,0,0,0.129 +1,0.619,0.817,0.806,0,0,0,0,0,0.136 +1,0.568,0.774,0.851,0,0,0,0,0,0.53 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.145,0.05,0,0,0,0.555 +1,0.555,0.0654,0.168,0.552,0.183,0,0,0,0.118 +0.333,0.555,0.0826,0.164,0,0,0,0,0,0.268 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.153 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.0383 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.115 +1,0.542,0.351,0.349,0,0,0,0,0,0 +1,0.542,0.401,0.349,0,0,0,0,0,0.66 +1,0.568,0.441,0.351,0,0,0,0,0,0.214 +1,0.606,0.464,0.363,0,0,0,0,0.8,0.117 +0.667,0.617,0.326,0.286,0,0,0,0,0.4,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0.0383 +0.667,0.617,0.501,0.454,0,0,0,0,0,0 +0.667,0.581,0.303,0.302,0,0,0,0,0,0.115 +1,0.566,0.543,0.584,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0.22 +1,0.533,0.0894,0.116,0,0,0,0,0,0.106 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.3,0 +1,0.551,0.0444,0.167,0,0,0,0,0.417,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0.115 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.0383 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.268 +0.667,0.548,0.191,0.259,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0.483,0.0765 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.0765 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.23 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.0765 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.135 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.0362 +0.667,0.626,0.383,0.351,0.253,0.3,0,0,0,0.103 +1,0.645,0.743,0.656,0.292,1,0,0,0,0.31 +1,0.619,0.873,0.806,0,0.1,0,0,0,0.353 +1,0.568,0.806,0.851,0,0,0,0,0,0.0383 +1,0.516,0.509,0.561,0,0,0,0,0,0.0383 +1,0.477,0.232,0.249,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.0383 +1,0.56,0.0224,0.0578,0,0,0,0,0,0.153 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.383 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0.25,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.226 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.379 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.536 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.191 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.115 +1,0.772,0.578,0.829,0,0,0,0,0,0.275 +1,0.741,0.713,0.905,0,0,0,0,0,0.321 +0.667,0.601,0.236,0.307,0,0,0,0,0,0.195 +1,0.58,0.147,0.203,0,0,0,0,0,0.0726 +1,0.565,0.0695,0.116,0,0,0,0,0,0.099 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0.25 +0.667,0.585,0.0368,0.172,0,0,0,0,0.383,0.304 +0.333,0.591,0.0427,0.175,0,0,0,0,0.117,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.153 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0765 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.191 +1,0.788,0.413,0.655,0,0,0,0,0.5,0.191 +1,0.772,0.578,0.829,0,0,0,0,0,0.0383 +1,0.741,0.713,0.905,0,0,0,0,0,0.383 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0.0383 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.219 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.333 +1,0.578,0.0433,0.236,0,0,0,0,0,0.189 +1,0.633,0.0786,0.417,0,0,0,0,0,0.433 +1,0.649,0.0963,0.427,0,0,0,0,0,0.398 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.191 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0765 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0765 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.16 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.125 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0383 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0765 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.115 +1,0.788,0.413,0.655,0.699,0.233,0,0,0,0.115 +1,0.772,0.578,0.829,0.697,0,0,0,0,0 +1,0.741,0.713,0.905,0.467,0,0,0,0,0.0383 +1,0.601,0.236,0.307,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0.25,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0.25,0.331 +1,0.609,0.0577,0.295,0,0,0,0,0,0.19 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.48 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.242 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.564 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.27 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.115 +0.667,0.702,0.21,0.35,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0.883,0.191 +1,0.772,0.578,0.829,0,0,0,0,0.617,0 +1,0.741,0.713,0.905,0,0,0,0,0,0.0765 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.117 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.374 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.242 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.22 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0765 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0383 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.115 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.306 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.115 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.667,0.671,0.172,0.294,0,0,0,0,0.25,0.0765 +0.667,0.702,0.21,0.35,0,0,0,0,0,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.268 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0383 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0.136 +1,0.58,0.147,0.203,0,0,0,0,0,0.189 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.62,0.0991,0.301,0,0,0,0,0.25,0.282 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0.209 +0.667,0.62,0.153,0.291,0,0,0,0,0,0.142 +0.667,0.62,0.167,0.279,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0 +1,0.649,0.307,0.378,0,0,0,0,0,0.153 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.23 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.459 +1,0.726,0.405,0.417,0,0,0,0,0.5,0.0383 +0.667,0.702,0.285,0.35,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0.115 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.0383 +1,0.741,0.763,0.905,0,0,0,0,0,0.153 +1,0.679,0.704,0.821,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0.184 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.558,0.0637,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0.564 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0.339 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0.0763 +0.667,0.62,0.167,0.279,0,0,0,0,0,0.51 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.214 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.191 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.191 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.0383 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.0383 +0.667,0.702,0.285,0.35,0.115,0.133,0,0,0,0.393 +1,0.788,0.493,0.655,0.572,0.35,0,0,0,0.0999 +1,0.772,0.649,0.829,0,0,0,0,0,0.366 +0.667,0.681,0.514,0.62,0,0,0,0,0,0.415 +1,0.64,0.475,0.564,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0.105 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.16 +1,0.56,0.0224,0.0798,0,0,0,0,0.25,0.283 +1,0.587,0.057,0.33,0,0,0,0,0,0.223 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0.399 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.463 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.143 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.154 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0.883,0.115 +0.333,0.616,0.0938,0.172,0,0,0,0,0.117,0.0383 +0.333,0.632,0.113,0.2,0.706,0.733,0,0,0.133,0.0383 +0.667,0.712,0.28,0.453,0,0,0,0,0.117,0.0383 +0.667,0.702,0.39,0.569,0,0,0.457,0.467,0,0.0383 +1,0.741,0.713,0.905,0,0,0.327,0,0,0.0383 +1,0.679,0.676,0.821,0,0,0,0,0,0.13 +1,0.618,0.409,0.51,0,0,0,0,0,0.105 +1,0.571,0.177,0.249,0,0,0,0,0,0.215 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.219 +1,0.609,0.0577,0.295,0,0,0,0,0,0.152 +0.667,0.62,0.0695,0.301,0,0,0,0,0.5,0.427 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.115 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.153 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0383 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.23 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0383 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.308 +0.667,0.671,0.172,0.294,0,0,0,0,0.133,0.265 +1,0.772,0.307,0.501,0,0,0,0,1,0.153 +1,0.788,0.413,0.655,0,0,0,0,0.867,0.0765 +0.667,0.702,0.39,0.569,0.566,0.233,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0.264 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.186 +1,0.578,0.0433,0.236,0,0,0,0,0,0.291 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.0752 +0.667,0.62,0.0695,0.301,0,0,0,0,0.5,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.191 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0765 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.115 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.153 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.153 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0765 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.153 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.0765 +0.667,0.632,0.113,0.2,0,0,0.157,0.383,0,0.0765 +1,0.712,0.28,0.453,0,0,0.915,0.317,0,0 +1,0.702,0.39,0.569,0,0,0.416,0,0,0.0765 +1,0.741,0.713,0.905,0,0,0,0,0,0.33 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.187 +0.333,0.585,0.0368,0.172,0.0973,0.133,0,0,0,0.0765 +0.667,0.62,0.0695,0.301,0,0.6,0,0,0,0.153 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.153 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.191 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0.0765 +0.667,0.632,0.113,0.2,0,0,0,0,0,0.191 +0.667,0.637,0.148,0.251,0,0,0,0,0.25,0.306 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.173 +1,0.741,0.713,0.905,0,0,0,0,0,0.116 +1,0.64,0.456,0.564,0,0,0,0,0,0.121 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.371 +1,0.578,0.0433,0.236,0,0,0,0,0,0.161 +1,0.609,0.0577,0.295,0,0,0,0,0,0.153 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.312 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.355 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.396 +0.333,0.616,0.0938,0.172,0,0,0,0,0.133,0.0383 +0.333,0.632,0.113,0.2,0,0,0,0,0.117,0.0765 +1,0.788,0.413,0.655,0,0,0,0,0,0.115 +1,0.772,0.578,0.829,0,0,0.202,0.383,0,0.0383 +1,0.681,0.481,0.62,0,0,0.526,0.317,0,0.0383 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0.28 +1,0.585,0.0403,0.172,0,0,0,0,0,0.132 +1,0.591,0.0586,0.175,0,0,0,0,0,0.173 +1,0.62,0.129,0.299,0,0,0,0,0,0.427 +1,0.62,0.153,0.291,0,0,0,0,0,0.357 +1,0.62,0.167,0.279,0,0,0,0,0,0.234 +1,0.62,0.179,0.271,0,0,0,0,0.5,0.0716 +0.667,0.591,0.114,0.159,0,0,0,0,0.25,0.0383 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.383 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.315 +1,0.726,0.405,0.417,0,0,0,0,0,0.143 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.153 +0.333,0.637,0.177,0.251,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.0765 +1,0.741,0.763,0.905,0,0,0,0,0,0.159 +1,0.64,0.475,0.564,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0.25,0 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.558,0.0637,0.099,0,0,0,0,0,0 +1,0.558,0.0349,0.066,0,0,0,0,0,0 +1,0.558,0.0218,0.0495,0,0,0,0,0,0.0765 +1,0.558,0.0165,0.0495,0,0,0,0,0,0.0383 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0.284 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0.145 +0.667,0.62,0.153,0.291,0,0,0.13,0.383,0,0.115 +0.667,0.591,0.0927,0.164,0,0,0.305,0.0833,0,0.0383 +0.667,0.591,0.0986,0.16,0,0,0.319,0,0,0.0383 +0.667,0.591,0.114,0.159,0,0,0,0,0,0.191 +0.667,0.591,0.129,0.159,0,0,0,0,0.883,0 +0.667,0.601,0.14,0.162,0,0,0,0,0.617,0 +0.667,0.616,0.147,0.172,0,0,0,0,0,0.153 +0.667,0.632,0.152,0.2,0,0,0.302,0.633,0,0.115 +0.667,0.712,0.335,0.453,0,0,0.78,0.0667,0,0 +0.667,0.702,0.438,0.569,0,0,0.804,0,0,0.268 +1,0.741,0.763,0.905,0,0,0.26,0,0,0.124 +1,0.679,0.704,0.821,0,0,0.661,0,0,0.0311 +1,0.618,0.444,0.51,0,0,0.281,0,0,0 +1,0.568,0.141,0.183,0,0,0.371,0,0,0.126 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.0158 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.0765 +1,0.56,0.0152,0.0495,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0.0819 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.321 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.301 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0965 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.271 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.154 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.0765 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0765 +1,0.788,0.413,0.655,0,0,0,0,0.5,0.115 +1,0.772,0.578,0.829,0,0,0,0,0,0.153 +1,0.741,0.713,0.905,0.255,0.233,0,0,0,0.0383 +1,0.679,0.676,0.821,0.513,0,0,0,0,0 +1,0.58,0.147,0.203,0.25,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.11 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.111 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.0931 +1,0.578,0.0433,0.236,0,0,0,0,0.633,0.268 +0.667,0.609,0.0577,0.295,0,0,0,0,0.117,0.0383 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.191 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.191 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.161 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0765 +0.667,0.702,0.21,0.35,0,0,0,0,0.25,0.191 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.115 +1,0.772,0.578,0.829,0,0,0,0,0,0.303 +1,0.741,0.713,0.905,0,0,0,0,0,0.17 +1,0.64,0.456,0.564,0,0,0,0,0,0.0795 +1,0.58,0.147,0.203,0.565,0.483,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.125 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.137 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.198 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.458 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.408 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.335 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0801 +0.667,0.62,0.118,0.269,0,0,0.457,0.467,0,0.283 +0.667,0.62,0.125,0.269,0,0,0.437,0,0,0.235 +1,0.679,0.2,0.387,0,0,0.239,0,0.133,0.0765 +0.667,0.671,0.172,0.294,0,0,0,0,0.117,0 +1,0.772,0.307,0.501,0,0,0,0,0,0.0383 +1,0.788,0.413,0.655,0,0,0,0,0,0.115 +1,0.772,0.578,0.829,0.648,0.483,0,0,0,0.191 +1,0.741,0.713,0.905,0.839,0,0,0,0,0.0765 +1,0.64,0.456,0.564,0.276,0,0,0,0,0.132 +1,0.58,0.147,0.203,0,0,0,0,0,0.0838 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.558,0.0197,0.0518,0,0,0,0,0,0.145 +1,0.558,0.0289,0.11,0,0,0,0,0,0.277 +1,0.578,0.0433,0.236,0,0,0,0,0,0.56 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.105 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0765 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.0765 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0383 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.559 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.153 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0383 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.23 +0.333,0.616,0.0938,0.172,0,0,0,0,0.25,0.0383 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.153 +0.667,0.637,0.148,0.251,0,0,0,0,0,0.0771 +1,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.621,0.248,0.335,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0.0702 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0,0.448 +1,0.633,0.0786,0.417,0,0,0,0,0,0.346 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.238 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.334 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.163 +0.333,0.591,0.0577,0.164,0,0,0.361,0.383,0,0.425 +0.333,0.591,0.0604,0.16,0,0,0.567,0.317,0.25,0.191 +0.667,0.62,0.118,0.269,0,0,0.342,0,0,0.0765 +0.667,0.62,0.125,0.269,0,0,0.327,0,0,0.191 +0.667,0.64,0.139,0.274,0,0,0.615,0,0,0 +1,0.726,0.25,0.417,0,0,0.411,0,0,0.0765 +1,0.772,0.307,0.501,0,0,0.785,0,0.5,0.115 +1,0.712,0.28,0.453,0,0,0.177,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0.115 +1,0.64,0.456,0.564,0.255,0.383,0,0,0,0 +1,0.58,0.147,0.203,0.386,0.1,0,0,0,0.174 +1,0.565,0.0695,0.116,0,0,0,0,0,0.0987 +1,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0.295,0.633,0.383,0.268 +1,0.649,0.259,0.382,0,0,0.111,0.0667,0.867,0.0765 +1,0.649,0.307,0.378,0,0,0,0,0,0.0765 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.153 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.23 +0.667,0.671,0.276,0.294,0,0,0,0,0.25,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.191 +0.667,0.712,0.335,0.453,0,0,0,0,0,0.23 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.0765 +0.667,0.681,0.514,0.62,0,0,0,0,0.25,0.0765 +1,0.679,0.704,0.821,0,0,0,0,0,0 +1,0.618,0.444,0.51,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0 +1,0.609,0.0624,0.295,0,0,0,0,0,0.324 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0.162 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.075 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0.0383 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0.344 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.0765 +0.667,0.62,0.21,0.269,0,0,0,0,0.25,0 +1,0.649,0.35,0.379,0,0,0,0,0,0.0765 +1,0.679,0.385,0.387,0,0,0,0,0,0.115 +1,0.726,0.405,0.417,0,0,0,0,0,0.306 +1,0.772,0.419,0.501,0,0,0,0,0,0 +1,0.788,0.493,0.655,0.52,0.633,0,0,0,0.0765 +1,0.772,0.649,0.829,0,0.1,0,0,0,0.0383 +1,0.741,0.763,0.905,0,0,0,0,0,0.0383 +1,0.679,0.704,0.821,0,0,0,0,0,0.0765 +1,0.618,0.444,0.51,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.0854 +1,0.56,0.0224,0.0578,0,0,0,0,0,0.327 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.314 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0.38 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.204 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.149 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.137 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.115 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.23 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +1,0.671,0.172,0.294,0,0,0,0,0,0.0383 +1,0.632,0.113,0.2,0,0,0,0,0,0.0383 +1,0.712,0.28,0.453,0,0,0,0,0,0.23 +1,0.702,0.39,0.569,0,0,0,0,0,0.0383 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0.194,0.383,0,0.217 +1,0.58,0.147,0.203,0,0,0.194,0.317,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.189 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0.25,0.373 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.115 +0.333,0.591,0.0532,0.17,0,0,0,0,0.25,0.23 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.115 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0383 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0383 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.191 +0.333,0.601,0.0774,0.162,0,0,0,0,0.133,0.0383 +0.333,0.616,0.0938,0.172,0,0,0,0,0.367,0.0383 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.139 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0899 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0.18 +1,0.599,0.278,0.356,0,0,0,0,0,0.284 +1,0.565,0.0695,0.116,0,0,0,0,0,0.214 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.284 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.153 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.25,0.115 +0.667,0.632,0.113,0.2,0,0,0,0,0,0.191 +0.667,0.637,0.148,0.251,0,0,0,0,0,0.153 +1,0.702,0.39,0.569,0.552,0.883,0,0,0,0.0383 +1,0.621,0.248,0.335,0.533,0.1,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0.304 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.153 +1,0.57,0.0296,0.143,0,0,0,0,0,0.79 +1,0.633,0.0786,0.417,0.115,0.133,0,0,0.133,0.632 +1,0.649,0.0963,0.427,0.338,0.1,0,0,0.117,0.25 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.373 +0.667,0.62,0.0905,0.291,0,0,0,0,0.5,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0383 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.344 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0383 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0383 +0.333,0.616,0.0938,0.172,0,0,0,0,0.25,0.115 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.0383 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.115 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0765 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.184 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.227 +0.667,0.578,0.0433,0.236,0,0,0,0,0.133,0.346 +0.667,0.609,0.0577,0.295,0,0,0,0,1,0.276 +0.333,0.591,0.0427,0.175,0,0,0,0,0.617,0.115 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.0383 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.671,0.172,0.294,0,0,0,0,0.383,0.252 +0.667,0.702,0.21,0.35,0,0,0,0,0.117,0.23 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.0383 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.185 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.189 +1,0.58,0.147,0.203,0,0,0,0,0,0.583 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.151 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0,0.0765 +1,0.591,0.0586,0.175,0,0,0.297,0.633,0.383,0.115 +1,0.649,0.185,0.424,0,0,0.544,0.0667,0.367,0.265 +1,0.649,0.22,0.411,0,0,0.106,0,0,0.136 +1,0.649,0.242,0.394,0,0,0,0,0,0.153 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.153 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.191 +1,0.649,0.35,0.379,0,0,0,0,0,0.23 +1,0.64,0.263,0.274,0,0,0,0,0,0.0383 +1,0.671,0.276,0.294,0,0,0,0,0,0.191 +1,0.772,0.419,0.501,0.104,0.133,0,0,0,0 +0.667,0.712,0.335,0.453,0.517,0.1,0,0,0,0.115 +0.667,0.702,0.438,0.569,0.697,0,0,0,0.5,0 +1,0.741,0.763,0.905,0.873,0,0,0,0,0.0936 +1,0.64,0.475,0.564,0.575,0,0,0,0,0 +1,0.599,0.302,0.356,0.74,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0.221 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.147 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0737,0.174,0,0,0,0,0,0.414 +1,0.649,0.22,0.411,0,0,0,0,0,0.456 +1,0.649,0.242,0.394,0,0,0,0,0,0.492 +1,0.649,0.259,0.382,0,0,0,0,0,0.297 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.115 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.497 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.306 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.23 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.153 +0.667,0.712,0.335,0.453,0,0,0,0,0.25,0 +1,0.772,0.649,0.829,0.616,0.483,0,0,0,0.0383 +1,0.741,0.763,0.905,0.432,0,0,0,0,0 +1,0.679,0.704,0.821,0.195,0.133,0,0,0,0 +1,0.618,0.444,0.51,0.688,0.1,0,0,0,0.0383 +1,0.571,0.202,0.249,0.113,0,0,0,0,0.0694 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.558,0.0289,0.11,0,0,0,0,0.25,0.299 +1,0.578,0.0433,0.236,0,0,0,0,0.25,0.456 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0383 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0765 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.191 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.306 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0.383,0.23 +1,0.788,0.413,0.655,0,0,0.347,0.467,0.617,0.115 +1,0.772,0.578,0.829,0,0,0.0835,0,0,0.0765 +1,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0.115 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0779 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.124 +1,0.57,0.0296,0.143,0,0,0,0,0,0.429 +1,0.609,0.0577,0.295,0,0,0,0,0,0.317 +0.667,0.62,0.0695,0.301,0,0,0,0,0.25,0.0521 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.308 +0.667,0.62,0.0905,0.291,0,0,0,0,0.133,0.278 +0.667,0.62,0.0996,0.279,0,0,0,0,0.367,0.285 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.268 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.23 +0.667,0.671,0.172,0.294,0.133,0.133,0,0,0,0.0383 +1,0.772,0.307,0.501,0.821,1,0,0,0,0.153 +1,0.788,0.413,0.655,0,0.333,0,0,0.25,0.0383 +1,0.772,0.578,0.829,0,0,0,0,0,0.0383 +1,0.741,0.713,0.905,0,0,0,0,0,0.0765 +1,0.679,0.676,0.821,0,0,0,0,0,0.271 +1,0.599,0.278,0.356,0,0,0,0,0,0.246 +1,0.565,0.0695,0.116,0,0,0,0,0,0.0753 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0.323 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.142 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.0765 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0383 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.191 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.115 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.115 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.191 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.145 +1,0.726,0.25,0.417,0,0,0,0,0,0.483 +0.667,0.702,0.21,0.35,0,0,0.337,0.383,0,0.688 +1,0.788,0.413,0.655,0,0,0.645,0.317,0,0 +0.667,0.702,0.39,0.569,0,0,0.533,0,0,0.0765 +0.667,0.681,0.481,0.62,0,0,0.555,0,0,0.0383 +1,0.679,0.676,0.821,0,0,0,0,0.25,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0383 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.0765 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0.817,0.267 +0.667,0.569,0.0294,0.147,0,0,0.392,0.467,0,0.181 +0.333,0.585,0.0366,0.177,0,0,0,0,0,0.306 +0.333,0.59,0.0424,0.184,0,0,0,0,0.267,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.191 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0765 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.115 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.306 +0.667,0.67,0.17,0.425,0,0,0,0,0,0 +1,0.7,0.208,0.553,0,0,0,0,0,0.221 +1,0.711,0.278,0.647,0,0,0,0,0,0.205 +0.667,0.631,0.202,0.339,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.455 +0.667,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.616,0.405,0.493,0,0,0,0,0,0.148 +1,0.564,0.0691,0.116,0,0,0,0,0,0.0593 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.556 +0.333,0.585,0.0366,0.177,0,0,0,0,0.533,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.344 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0383 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0383 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0383 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0383 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0.191 +1,0.77,0.304,0.804,0,0,0,0,0.533,0.115 +1,0.785,0.409,0.946,0,0,0,0,0,0.0765 +1,0.77,0.573,0.919,0,0,0,0,0,0.0383 +1,0.68,0.477,0.515,0,0,0,0,0,0.0383 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.137 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.04,0.177,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0.268 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0.115 +0.667,0.618,0.152,0.312,0,0,0.302,0.7,0,0.0383 +0.333,0.59,0.092,0.175,0,0,0.429,0,0,0.0765 +0.333,0.59,0.0979,0.171,0,0,0.661,0,0.267,0.153 +0.667,0.618,0.209,0.289,0,0,0.557,0,0,0.0383 +0.667,0.618,0.237,0.297,0,0,0.536,0,0,0.115 +0.667,0.639,0.261,0.338,0,0,0.547,0,0,0 +0.667,0.67,0.274,0.425,0,0,0.212,0,0.533,0.115 +1,0.77,0.415,0.804,0,0,0,0,0,0.127 +1,0.785,0.489,0.946,0,0,0,0,0,0.355 +1,0.77,0.643,0.919,0,0,0,0,0,0.25 +1,0.739,0.756,0.747,0,0,0,0,0,0.0383 +1,0.677,0.698,0.566,0,0,0,0,0,0.0765 +1,0.598,0.3,0.345,0.556,0.25,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.383,0 +1,0.59,0.0582,0.184,0,0,0,0,0.15,0.309 +1,0.618,0.128,0.321,0.704,0.883,0,0,0,0.126 +1,0.618,0.152,0.312,0,0.433,0,0,0,0.425 +1,0.647,0.24,0.426,0,0,0,0,0,0.326 +1,0.647,0.257,0.413,0,0,0,0,0.533,0.542 +1,0.647,0.304,0.409,0,0,0,0,0,0.474 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.191 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.0765 +1,0.724,0.402,0.612,0,0,0,0,0.267,0.115 +0.667,0.7,0.283,0.553,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0.132 +1,0.77,0.643,0.919,0,0,0,0,0,0.0383 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0.0763 +1,0.616,0.441,0.493,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0537 +1,0.557,0.0287,0.114,0,0,0,0,0,0.364 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.165 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0383 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0765 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0765 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.268 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.115 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.235 +1,0.785,0.409,0.946,0,0,0,0,0,0.494 +1,0.77,0.573,0.919,0,0,0,0,0,0.172 +1,0.739,0.708,0.747,0,0,0,0,0,0.36 +1,0.677,0.671,0.566,0,0,0,0,0,0.115 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.752 +1,0.577,0.043,0.245,0,0,0,0,0,0.688 +1,0.608,0.0573,0.305,0,0,0,0,1,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0833,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0.267,0.0765 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.115 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.0765 +1,0.77,0.304,0.804,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.421 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.258 +1,0.677,0.671,0.566,0,0,0.189,1,0,0 +1,0.562,0.0159,0.0495,0,0,0,0.417,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.395 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.569,0.0294,0.147,0,0,0,0,0.817,0 +0.333,0.585,0.0366,0.177,0,0,0,0,0.267,0.0383 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.153 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0765 +0,0.562,0.0159,0.0495,0.586,0.25,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0383 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.268 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0765 +0.667,0.67,0.17,0.425,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.0765 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.123 +1,0.639,0.452,0.394,0,0,0,0,0,0.221 +1,0.58,0.146,0.197,0,0,0,0,0,0.0597 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0.57,0.7,0,0.0765 +0.667,0.577,0.043,0.245,0,0,0.302,0,0,0.265 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.401 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0383 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.0765 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.191 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.23 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.12 +1,0.724,0.248,0.612,0,0,0,0,0,0.246 +1,0.77,0.304,0.804,0,0,0.241,0.467,0,0.13 +0.667,0.711,0.278,0.647,0,0,0.827,0,0,0.153 +1,0.77,0.573,0.919,0,0,0.608,0,0,0 +1,0.739,0.708,0.747,0,0,0.305,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0.23 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.217 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.418 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.0529 +0.333,0.59,0.0483,0.185,0.55,0.25,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0383 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0383 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.344 +0.333,0.59,0.0697,0.173,0,0,0,0,0.5,0.23 +0.667,0.639,0.138,0.338,0,0,0,0,0.283,0.0383 +1,0.67,0.17,0.425,0,0,0,0,0.283,0.344 +1,0.7,0.208,0.553,0,0,0,0,0,0 +1,0.785,0.409,0.946,0.469,0.25,0.302,0.25,0.75,0.226 +1,0.77,0.573,0.919,0.262,0,0.0931,0.45,0.0667,0.17 +1,0.68,0.477,0.515,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.618,0.0983,0.318,0,0,0,0,0,0 +0.667,0.618,0.128,0.321,0,0,0,0,0,0.0765 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0.0383 +0.333,0.59,0.092,0.175,0,0,0,0,0,0.115 +0.333,0.59,0.0979,0.171,0,0,0,0,0.267,0.115 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.153 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.191 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.23 +1,0.724,0.402,0.612,0,0,0,0,0,0.0383 +1,0.77,0.415,0.804,0,0,0,0,0,0 +0.667,0.711,0.332,0.647,0,0,0,0,0,0 +0.667,0.7,0.435,0.629,0,0,0,0,0,0 +0.667,0.621,0.264,0.282,0,0,0,0,0,0.221 +0.667,0.6,0.245,0.222,0,0,0,0,0,0.269 +0.667,0.58,0.159,0.197,0,0,0,0,0,0.177 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.559,0.0407,0.0743,0,0,0,0,0,0 +0.667,0.559,0.0264,0.0578,0,0,0,0,0,0.153 +0.667,0.559,0.0199,0.0495,0,0,0,0,0,0.0383 +0.667,0.559,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.618,0.0983,0.318,0,0,0,0,0,0 +0.667,0.618,0.128,0.321,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0.194 +0.333,0.59,0.092,0.175,0,0,0,0,0,0.569 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.21 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.153 +0.667,0.618,0.237,0.297,0,0,0.753,0.633,0,0.0765 +0.667,0.639,0.261,0.338,0,0,0.446,0.0667,0.383,0.153 +0.667,0.67,0.274,0.425,0,0,0.38,0,0.15,0 +1,0.77,0.415,0.804,0,0,0,0,0,0.153 +1,0.785,0.489,0.946,0,0,0,0,0,0.0383 +1,0.77,0.643,0.919,0,0,0,0,0,0.259 +0.667,0.68,0.51,0.515,0,0,0,0,0,0.159 +0.667,0.639,0.471,0.394,0,0,0,0,0,0.192 +1,0.598,0.3,0.345,0,0,0,0,0,0.323 +1,0.567,0.14,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.079 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0986 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.296 +0.333,0.59,0.0424,0.184,0,0,0,0,0.25,0.0383 +0.333,0.59,0.0483,0.185,0,0,0,0,0.283,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.153 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.383 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.191 +0.667,0.67,0.17,0.425,0,0,0,0,0.25,0 +1,0.77,0.304,0.804,0,0,0.324,0.7,0.283,0.191 +1,0.785,0.409,0.946,0,0,0,0,0,0.0765 +1,0.77,0.573,0.919,0.219,0.25,0,0,0,0.0383 +1,0.739,0.708,0.747,0.158,0.267,0,0,0,0.191 +1,0.677,0.671,0.566,0,0,0,0,0,0.164 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.31 +1,0.608,0.0573,0.305,0,0,0,0,0,0.705 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.556 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.346 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.219 +0.333,0.59,0.0665,0.169,0.683,0.517,0,0,0,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0.267,0.252 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0.22 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.0383 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.153 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0.0383 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.159 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.445 +1,0.608,0.0573,0.305,0,0,0,0,0.533,0.381 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.337 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.38 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.364 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.113 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.174 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0765 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0765 +0.333,0.6,0.0769,0.194,0,0,0,0,0.25,0.0765 +0.667,0.67,0.17,0.425,0,0,0,0,0.0167,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.153 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.153 +1,0.639,0.452,0.394,0,0,0,0,0,0.0383 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.12 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0891 +0.667,0.608,0.0573,0.305,0,0,0,0,0.533,0.0765 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.325 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0716 +0.667,0.618,0.0898,0.312,0,0,0.295,0.7,0,0.115 +0.667,0.618,0.0989,0.3,0,0,0.454,0,0,0.0765 +0.667,0.618,0.104,0.292,0,0,0.831,0,0,0.0765 +0.333,0.59,0.0665,0.169,0,0,0.462,0,0,0.153 +0.667,0.618,0.124,0.297,0,0,0.746,0,0,0.115 +1,0.639,0.138,0.338,0,0,0.241,0,0,0.191 +1,0.67,0.17,0.425,0,0,0.518,0,0,0.0383 +1,0.77,0.304,0.804,0,0,0.713,0,0,0 +1,0.785,0.409,0.946,0,0,0.607,0,0,0.409 +1,0.77,0.573,0.919,0,0,0.514,0,0,0.0383 +1,0.739,0.708,0.747,0,0,0.305,0,0,0.0383 +1,0.677,0.671,0.566,0,0,0.963,0,0,0.191 +0.333,0.58,0.146,0.197,0,0,0.942,0,0,0 +0.667,0.564,0.0691,0.116,0,0,0.459,0,0,0 +0.667,0.559,0.0346,0.0743,0,0,0.3,0,0,0.207 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.21 +1,0.559,0.0164,0.0495,0,0,0,0,0,0.272 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.265 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.133 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.113 +1,0.577,0.043,0.245,0,0,0,0,0.267,0.375 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.679 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.158 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.318 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.292 +0.333,0.59,0.0574,0.175,0.634,0.25,0,0,0,0 +0.333,0.59,0.06,0.171,0.784,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0.168,0,0,0,0.267,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.667,0.639,0.138,0.338,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.0383 +1,0.77,0.304,0.804,0,0,0.352,0.5,0,0.375 +0.667,0.711,0.278,0.647,0,0,0.61,0.2,0,0.289 +1,0.77,0.573,0.919,0,0,0.421,0,0,0.228 +1,0.739,0.708,0.747,0,0,0.868,0,0,0.193 +1,0.639,0.452,0.394,0,0,0.209,0,0,0.0383 +1,0.598,0.276,0.345,0,0,0.514,0,0,0 +1,0.567,0.122,0.183,0,0,0.547,0,0,0 +1,0.559,0.0407,0.0743,0,0,0.27,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.125 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.264 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0917 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0.362 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0.135 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.153 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.0765 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.191 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.115 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.0765 +0.333,0.616,0.146,0.237,0,0,0,0,0,0.153 +0.333,0.631,0.15,0.301,0,0,0,0,0.533,0.0383 +0.667,0.711,0.332,0.647,0,0,0,0,0,0.115 +0.667,0.7,0.435,0.629,0.143,0.133,0,0,0,0 +0.667,0.68,0.51,0.515,0.627,0.65,0,0,0,0.435 +1,0.677,0.698,0.566,0.573,0,0,0,0,0.282 +1,0.616,0.441,0.493,0.818,0,0,0,0,0 +1,0.564,0.079,0.116,0.301,0,0.295,0,0,0 +1,0.559,0.0407,0.0743,0.736,0,0,0,0,0 +1,0.559,0.0264,0.0578,0.504,0,0,0,0,0 +1,0.559,0.0199,0.0495,0.819,0,0,0,0,0.383 +1,0.559,0.0173,0.0495,0.133,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +1,0.569,0.0277,0.147,0,0,0.377,0.633,0,0.0383 +1,0.585,0.04,0.177,0,0,0.862,0.0667,0,0.0765 +1,0.59,0.0582,0.184,0,0,0.236,0,0,0.383 +1,0.59,0.0732,0.185,0,0,0,0,0,0.22 +1,0.618,0.152,0.312,0,0,0,0,0,0.334 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.438 +0.333,0.59,0.0979,0.171,0.173,0.133,0,0,0,0.301 +0.333,0.59,0.113,0.169,0.513,0.117,0,0,0,0.0383 +1,0.647,0.347,0.421,0,0,0,0,0,0.152 +1,0.677,0.382,0.482,0,0,0,0,0,0.218 +0.667,0.67,0.274,0.425,0,0,0,0,0.883,0 +1,0.77,0.415,0.804,0,0,0,0,0.2,0.0765 +0.667,0.711,0.332,0.647,0,0,0,0,0,0.126 +1,0.77,0.643,0.919,0,0,0,0,0,0.242 +1,0.739,0.756,0.747,0,0,0,0,0,0.0383 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.616,0.441,0.493,0.257,0.25,0,0,0,0 +1,0.567,0.14,0.183,0.515,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.557,0.0196,0.0525,0,0,0,0,0,0.388 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0.115 +0.667,0.577,0.043,0.245,0,0,0,0,0,0.327 +0.667,0.608,0.0573,0.305,0,0,0.0883,0.7,0,0.0976 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.191 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0765 +0.333,0.59,0.0665,0.169,0,0,0.352,0.467,0,0 +0.333,0.59,0.0697,0.173,0,0,0.384,0,0,0.153 +0.333,0.6,0.0769,0.194,0,0,0.379,0,0,0.0383 +0.333,0.616,0.0931,0.237,0,0,0.406,0.467,0,0.191 +1,0.77,0.304,0.804,0,0,0.111,0,0,0.134 +1,0.785,0.409,0.946,0,0,0,0,0,0.0765 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.0383 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0.189 +1,0.598,0.276,0.345,0,0,0,0,0.267,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.151 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.0765 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.298 +1,0.577,0.043,0.245,0,0,0,0,0,0.349 +0.667,0.608,0.0573,0.305,0.581,0.517,0,0,0.5,0.244 +0.667,0.618,0.069,0.318,0.685,0,0,0,0.867,0.0383 +0.333,0.59,0.0483,0.185,0.805,0,0,0,0.25,0.0383 +0.333,0.59,0.0528,0.181,0,0,0,0,1,0.0383 +0.333,0.59,0.0574,0.175,0,0,0,0,0.117,0.153 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.115 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0383 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0383 +0.667,0.67,0.17,0.425,0,0,0,0,0.533,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.191 +1,0.785,0.409,0.946,0.549,0.75,0,0,0,0.0383 +1,0.77,0.573,0.919,0,0.567,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0.215 +1,0.598,0.276,0.345,0.464,0.75,0,0,0,0.29 +1,0.562,0.0159,0.0495,0.124,0.0333,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0.75,0.307 +1,0.557,0.0287,0.114,0,0,0,0,0.0667,0.175 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.44 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.145 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.299 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.19 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.259 +0.333,0.59,0.0574,0.175,0,0,0,0,0.533,0.0383 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0383 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.191 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.153 +0.667,0.7,0.208,0.553,0,0,0,0,0.533,0.0765 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0.153 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0.348 +1,0.598,0.276,0.345,0,0,0,0,0,0.145 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.276 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.376 +1,0.577,0.043,0.245,0,0,0,0,0,0.262 +0.667,0.585,0.0366,0.177,0.913,0.25,0,0,0,0 +0.667,0.618,0.069,0.318,0.136,0,0,0,0,0.191 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0861 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.45 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.172 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.191 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.115 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.153 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0.191 +0.667,0.67,0.17,0.425,0,0,0,0,0.817,0.115 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.0383 +1,0.785,0.409,0.946,0,0,0,0,0,0.0782 +1,0.77,0.573,0.919,0.497,0.517,0,0,0,0.11 +1,0.68,0.477,0.515,0.12,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.17 +1,0.557,0.0196,0.0525,0,0,0,0,0.267,0.115 +1,0.554,0.0351,0.146,0,0,0,0,0,0 +0.667,0.577,0.043,0.245,0.827,0.25,0,0,0,0.0383 +0.333,0.585,0.0366,0.177,0.14,0,0,0,0,0.29 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.177 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.153 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.0383 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.23 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.191 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.375 +0.667,0.7,0.208,0.553,0,0,0,0,0.533,0.272 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.23 +0.333,0.631,0.202,0.339,0,0,0,0,0.533,0.0383 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.111 +1,0.677,0.671,0.566,0,0,0,0,0,0.239 +1,0.58,0.146,0.197,0,0,0,0,0,0.122 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0.115 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0.191 +0.667,0.59,0.092,0.175,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.23 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.268 +0.667,0.67,0.274,0.425,0,0,0,0,0,0.803 +0.667,0.7,0.283,0.553,0,0,0,0,0.533,0.483 +0.667,0.711,0.332,0.647,0,0,0,0,0,0.115 +0.667,0.631,0.227,0.339,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0 +0.667,0.564,0.079,0.116,0,0,0,0,0,0 +0.667,0.559,0.0407,0.0743,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +1,0.559,0.0199,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.147 +1,0.585,0.04,0.177,0,0,0,0,0,0.144 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.383,0.0383 +0.667,0.59,0.0849,0.181,0.149,0.133,0,0,0.7,0.585 +0.667,0.618,0.166,0.3,0.738,0.117,0,0,0,0.192 +0.667,0.618,0.178,0.292,0.43,0,0,0,0,0.448 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.249 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.155 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.191 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.0383 +0.667,0.631,0.15,0.301,0,0,0,0,0,0.0383 +1,0.711,0.332,0.647,0,0,0,0,0,0.0383 +1,0.7,0.435,0.629,0,0,0,0,0,0.0765 +1,0.739,0.756,0.747,0.564,0.25,0,0,0,0.0383 +1,0.677,0.698,0.566,0.548,0,0,0,0,0.0383 +1,0.616,0.441,0.493,0.759,0,0,0,0,0 +1,0.57,0.201,0.249,0.255,0,0,0,0,0 +1,0.557,0.0534,0.099,0.766,0,0,0,0,0 +1,0.557,0.0287,0.066,0.784,0,0,0,0,0 +1,0.559,0.0164,0.0495,0.573,0,0,0,0,0.0383 +1,0.559,0.0151,0.0495,0.331,0,0,0,0,0.153 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0.267,0.26 +0.667,0.585,0.0366,0.177,0.327,0.25,0,0,0,0.0383 +0.667,0.618,0.069,0.318,0.356,0.533,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.153 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.23 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0.267,0.0765 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0765 +0.333,0.631,0.112,0.301,0,0,0,0,0.5,0.191 +0.667,0.711,0.278,0.647,0,0,0,0,0.0333,0.306 +1,0.77,0.573,0.919,0,0,0,0,0,0.0383 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.143 +1,0.577,0.043,0.245,0,0,0,0,0,0.153 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.5,0.115 +0.333,0.59,0.0483,0.185,0,0,0,0,0.0333,0.0383 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0383 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.421 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0383 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.191 +0.333,0.6,0.0769,0.194,0,0,0.352,0.233,0,0 +0.667,0.67,0.17,0.425,0,0,0.403,0,0,0.0383 +0.667,0.7,0.208,0.553,0,0,0.366,0,0,0.115 +1,0.785,0.409,0.946,0,0,0.836,0,0,0 +1,0.77,0.573,0.919,0,0,0.106,0,0,0.421 +1,0.739,0.708,0.747,0,0,0.106,0.25,0,0.451 +1,0.677,0.671,0.566,0,0,0.449,1,0,0.121 +1,0.598,0.276,0.345,0,0,0.467,0.167,0,0.0668 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.191 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0761 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.557,0.0287,0.114,0,0,0,0,0,0.806 +1,0.577,0.043,0.245,0,0,0,0,0,0.144 +1,0.631,0.078,0.433,0,0,0,0,0,0.38 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.326 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.107 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.148 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.115 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.344 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.115 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.153 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0383 +0.667,0.7,0.208,0.553,0,0,0,0,0.5,0.0383 +0.667,0.711,0.278,0.647,0,0,0,0,0.0333,0.0383 +1,0.77,0.573,0.919,0,0,0,0,0,0.115 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.58,0.146,0.197,0.722,0.25,0,0,0,0.0673 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0.267,0.23 +1,0.557,0.0287,0.114,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0.5,0.386 +0.667,0.608,0.0573,0.305,0,0,0,0,0.867,0.128 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.244 +0.667,0.618,0.0807,0.321,0,0,0.406,0.467,0,0.232 +0.667,0.618,0.0898,0.312,0,0,0.65,0,0,0.0447 +0.667,0.618,0.0989,0.3,0,0,0.575,0,0,0.0765 +0.667,0.59,0.06,0.171,0,0,0.376,0,0,0.153 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0.0383 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.0765 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0.383 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0.565,0.517,0,0,0,0 +0.333,0.636,0.147,0.348,0,0,0,0,0.267,0.344 +1,0.77,0.573,0.919,0,0,0,0,0,0.24 +1,0.739,0.708,0.747,0,0,0,0,0,0.126 +1,0.677,0.671,0.566,0,0,0,0,0,0.139 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.0765 +1,0.577,0.043,0.245,0,0,0,0,0,0.339 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.0383 +0.667,0.618,0.0807,0.321,0,0,0,0,0.533,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0.667,0.639,0.138,0.338,0,0,0,0,0.0167,0.306 +0.667,0.67,0.17,0.425,0.57,0.25,0,0,0,0.0383 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.0765 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.115 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0.153 +1,0.639,0.452,0.394,0,0,0,0,0,0.0765 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.49 +1,0.732,0.168,0.337,0,0,0,0,0,0.241 +1,0.818,0.289,0.468,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.191 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.383 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.115 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.23 +1,0.857,0.505,0.513,0,0,0,0,0.267,0.115 +1,0.915,0.531,0.661,0,0,0,0,0,0.145 +1,0.973,0.549,0.869,0,0,0,0,0,0.338 +0.667,0.849,0.437,0.683,0,0,0,0,0,0.339 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.403 +1,0.81,0.673,0.504,0,0,0,0,0,0.0765 +1,0.66,0.32,0.218,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0.779 +1,0.667,0.183,0.183,0,0,0,0,0,0.203 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.33 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0.383,0.153 +1,0.64,0.049,0.181,0,0,0,0,1,0 +1,0.647,0.0731,0.19,0,0,0,0,0.583,0.0383 +1,0.732,0.168,0.337,0.635,0.267,0,0,0,0.578 +1,0.732,0.198,0.328,0.545,0,0,0,0,0.0383 +1,0.732,0.217,0.316,1,0,0,0,0,0.419 +1,0.732,0.233,0.307,0,0,0.698,0.733,0,0.329 +0.667,0.732,0.274,0.305,0,0,0.514,0,0,0 +0.667,0.732,0.312,0.314,0,0,0.557,0,0,0.0383 +0.667,0.758,0.343,0.359,0,0,0.615,0,0,0 +0.667,0.797,0.36,0.457,0.538,0.267,0.634,0,0,0.0765 +0.667,0.836,0.372,0.596,0,0,0.388,0,0,0.0765 +0.333,0.705,0.228,0.366,0,0,0.172,0,0,0.115 +0.333,0.699,0.296,0.344,0,0,0,0,0.55,0.115 +0.667,0.81,0.673,0.504,0,0,0,0,0,0.0383 +1,0.857,0.923,0.554,0,0,0,0,0,0.0765 +1,0.779,0.582,0.488,0,0,0,0,0,0.0907 +1,0.667,0.183,0.183,0.835,0.533,0,0,0,0.25 +1,0.654,0.0689,0.099,0.6,0,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0.071 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.153 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.268 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0798 +0.667,0.68,0.0551,0.251,0,0,0,0,0.267,0.463 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.559 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.0765 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.274 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.191 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.261 +0.667,0.836,0.273,0.596,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0987 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.115 +0.333,0.686,0.322,0.277,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.166 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.115 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.361 +1,0.732,0.0895,0.33,0,0,0,0,0,0.198 +1,0.732,0.105,0.337,0,0,0,0,0,0.237 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.385 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0.267,0.0383 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.268 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0676 +1,0.915,0.327,0.661,0,0,0,0,0,0.113 +1,0.973,0.402,0.869,0.658,0.267,0,0,0,0.17 +1,0.993,0.541,1,0.683,0.267,0,0,0.267,0.294 +1,0.973,0.758,0.933,0.747,0,0,0,0,0.118 +1,0.934,0.936,0.732,0,0,0,0,0,0.254 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.278 +0.667,0.732,0.0895,0.33,0.244,0.267,0,0,0.883,0.0383 +0.667,0.732,0.105,0.337,0.825,0,0,0,0.8,0.115 +0.667,0.732,0.117,0.328,0.607,0,0,0,0,0.115 +0.333,0.647,0.0724,0.183,0.63,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0765 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.115 +0.667,0.836,0.273,0.596,0,0,0,0,0.267,0.261 +1,0.993,0.541,1,0,0,0,0,0,0.0765 +1,0.973,0.758,0.933,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0.54,0.267,0.18,0.383,0,0.235 +1,0.779,0.536,0.488,0.393,0,0,0.1,0.267,0.03 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.159 +1,0.732,0.0895,0.33,0,0,0,0,0,0.199 +1,0.732,0.105,0.337,0,0,0,0,0,0.115 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.191 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.0383 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.295 +0.667,0.732,0.162,0.314,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.232 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.401 +1,0.993,0.541,1,0,0,0,0,0.267,0.466 +1,0.973,0.758,0.933,0,0,0,0,0,0.157 +1,0.934,0.936,0.732,0,0,0,0,0,0.253 +1,0.857,0.887,0.554,0,0,0,0,0,0.115 +1,0.634,0.189,0.196,0,0,0,0,0,0.191 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.226 +1,0.68,0.0551,0.251,0,0,0,0,0.267,0.392 +1,0.798,0.103,0.444,0,0,0,0,0,0.0765 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.414 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.494 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.297 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.135 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.429 +0.333,0.647,0.0845,0.177,0,0,0,0,0.133,0.0926 +0.667,0.732,0.162,0.314,0,0,0,0,0.417,0.28 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.487 +0.667,0.679,0.12,0.253,0.285,0.383,0,0,0,0.204 +1,0.836,0.273,0.596,0.699,0.15,0,0,0.267,0.153 +1,0.993,0.541,1,0.642,0,0,0,0,0.0383 +1,0.973,0.758,0.933,0.609,0,0,0,0,0.0883 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0.364,0.733,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0383 +0.667,0.621,0.0327,0.15,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0.279 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.108 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.268 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.115 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.0383 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.251 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.224 +1,0.915,0.531,0.661,0.251,0.383,0,0,0,0.23 +1,0.836,0.372,0.596,0.391,0.283,0,0,0.55,0 +1,0.993,0.647,1,0.446,1,0,0,0,0.0383 +1,0.973,0.851,0.933,0,0.5,0,0,0,0.191 +1,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0.408 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0.55,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.732,0.128,0.33,0,0,0,0,0.55,0.404 +0.667,0.732,0.168,0.337,0,0,0,0,0,0.0765 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.153 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.383 +0.667,0.732,0.233,0.307,0,0,0.467,0.383,0,0.115 +0.667,0.732,0.274,0.305,0,0,0.69,0.35,0,0.0383 +0.667,0.732,0.312,0.314,0,0,0.191,0,0.383,0.0383 +0.667,0.758,0.343,0.359,0,0,0,0,0.733,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.0765 +0.667,0.836,0.372,0.596,0,0,0,0,0.4,0.0765 +0.667,0.849,0.437,0.683,0,0,0,0,0.133,0.23 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0.715 +1,0.857,0.923,0.554,0,0,0,0,0,0.351 +1,0.706,0.394,0.342,0,0,0,0,0,0.0154 +1,0.667,0.183,0.183,0,0,0,0,0,0.274 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.322 +1,0.608,0.026,0.0578,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0.267,0.0383 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.0383 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.268 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.191 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0383 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0383 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0765 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.191 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0765 +0.667,0.797,0.224,0.457,0,0,0,0,0.383,0.0765 +1,0.973,0.402,0.869,0,0,0,0,0.167,0.115 +0.667,0.849,0.366,0.683,0.673,0.267,0,0,0,0 +0.667,0.836,0.51,0.638,0.442,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.491 +1,0.68,0.0551,0.251,0.381,0.267,0,0,0,0.181 +0.667,0.64,0.0449,0.181,0.584,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0.735,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0.0973,0,0,0,0,0.0383 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.268 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0383 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.153 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.344 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.268 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.23 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.23 +0.333,0.699,0.145,0.323,0.393,0.383,0,0,0,0 +1,0.993,0.541,1,0.717,0.7,0,0,0,0 +1,0.973,0.758,0.933,0.593,0,0,0,0,0.0383 +1,0.934,0.936,0.732,0.926,0,0,0,0.267,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.129 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.0765 +1,0.608,0.026,0.0829,0,0,0,0,0,0.0383 +1,0.68,0.0551,0.251,0,0,0,0,0,0.45 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.423 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.357 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.324 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.144 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.112 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.156 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0765 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.153 +0.667,0.836,0.273,0.596,0,0,0,0,0.267,0.2 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0383 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.154 +1,0.934,0.936,0.732,0,0,0.241,0.383,0,0 +1,0.857,0.887,0.554,0,0,0.119,0.35,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.254 +1,0.68,0.0551,0.251,0,0,0,0,0,0.336 +1,0.719,0.074,0.313,0,0,0,0,0,0.564 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.31 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.121 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.374 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0,0,0,0.0383 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.23 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0.306 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.268 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.23 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.268 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0765 +0.667,0.836,0.51,0.638,0.179,0.133,0,0,0.133,0 +1,0.934,0.936,0.732,0.435,0.133,0,0,1,0.184 +1,0.857,0.887,0.554,0.696,0.267,0,0,0.55,0.103 +1,0.562,0.0159,0.0495,0.126,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.191 +1,0.621,0.0355,0.15,0,0,0,0,0,0.168 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.104 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.155 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0765 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.115 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0765 +0.333,0.647,0.0845,0.177,0,0,0,0,0.267,0.0765 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0765 +0.667,0.758,0.181,0.359,0.189,0.133,0,0,0.267,0 +0.667,0.797,0.224,0.457,0.577,0.683,0,0,0,0 +0.667,0.836,0.273,0.596,0.858,0,0,0,0,0.0383 +1,0.993,0.541,1,0.735,0,0,0,0,0.23 +1,0.836,0.51,0.638,0.653,0,0,0,0,0.0942 +1,0.686,0.322,0.277,0.299,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0.267,0.153 +1,0.608,0.0215,0.0513,0,0,0,0,0,0 +1,0.654,0.0301,0.116,0,0,0,0,0,0.387 +0.667,0.621,0.0327,0.15,0,0,0,0,0,0.0383 +0.667,0.64,0.049,0.181,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.335 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0.287 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.191 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.115 +0.667,0.732,0.312,0.314,0.264,0.267,0,0,0,0.23 +0.667,0.758,0.343,0.359,0.142,0,0,0,0,0.153 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.23 +1,0.973,0.549,0.869,0,0,0,0,0,0.0383 +1,0.993,0.647,1,0,0,0,0,0,0 +1,0.973,0.851,0.933,0.812,0.267,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0.0383 +1,0.779,0.582,0.488,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0.153 +1,0.608,0.0224,0.0495,0,0,0,0,0,0.0383 +1,0.608,0.019,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.191 +1,0.621,0.0327,0.15,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.171 +0.667,0.732,0.128,0.33,0,0,0,0,0,0.319 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0.153 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.346 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.235 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.0916 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.0383 +1,0.973,0.549,0.869,0,0,0,0,0.267,0.0765 +1,0.993,0.647,1,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0.118 +1,0.934,1,0.732,0,0,0,0,0,0.307 +1,0.857,0.923,0.554,0,0,0,0,0,0.278 +1,0.779,0.582,0.488,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.383 +1,0.608,0.026,0.0829,0,0,0,0,0,0.214 +0.667,0.68,0.0551,0.251,0,0,0,0,0.883,0.255 +0.667,0.719,0.074,0.313,0,0,0,0,0.8,0.207 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.176 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.357 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0.267,0.115 +1,0.732,0.136,0.307,0,0,0,0,0,0.153 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.383 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0 +0.667,0.679,0.12,0.253,0,0,0,0,0,0.0383 +1,0.973,0.402,0.869,0.143,0.133,0,0,0,0 +1,0.993,0.541,1,0.517,0.4,0,0,0,0.0383 +1,0.973,0.758,0.933,0.607,0,0,0,0,0.0765 +1,0.934,0.936,0.732,0.773,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0.55,0.317 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.191 +1,0.621,0.0355,0.15,0,0,0,0,0,0.218 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.191 +0.667,0.647,0.0527,0.19,0,0,0.0931,0.133,0,0 +0.667,0.647,0.0604,0.193,0,0,0.538,0.6,0,0.115 +0.667,0.647,0.0664,0.189,0,0,0.376,0,0,0.0765 +0.667,0.647,0.0724,0.183,0,0,0.485,0,0,0 +0.667,0.647,0.0759,0.178,0,0,0.74,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0.647,0,0,0.115 +0.667,0.647,0.0888,0.182,0,0,0.783,0,0,0.308 +0.667,0.758,0.181,0.359,0,0,0.408,0,0,0.368 +0.667,0.797,0.224,0.457,0,0,0.443,0,0,0.122 +0.667,0.836,0.273,0.596,0,0,0.315,0,0,0.0765 +0.667,0.849,0.366,0.683,0,0,0.43,0,0,0.0765 +0.667,0.699,0.263,0.344,0,0,0.512,0,0,0.0383 +0.667,0.686,0.322,0.277,0,0,0.607,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0.151 +1,0.614,0.0879,0.116,0,0,0,0,0,0.264 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.392 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.206 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0.267,0.115 +1,0.608,0.026,0.0829,0,0,0,0,0,0.374 +1,0.68,0.0551,0.251,0,0,0,0,0,0.102 +1,0.798,0.103,0.444,0,0,0,0,0,0.334 +1,0.818,0.126,0.47,0,0,0.111,0.133,0,0.33 +0.667,0.732,0.105,0.337,0,0,0.648,0.6,0,0.24 +0.667,0.732,0.117,0.328,0,0,0.657,0,0,0.23 +0.667,0.732,0.129,0.316,0,0,0.217,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0383 +0.667,0.732,0.162,0.314,0.257,0.383,0,0,0,0.115 +0.667,0.758,0.181,0.359,0.517,0.15,0,0,0,0.191 +1,0.915,0.327,0.661,0,0,0,0,0,0.214 +1,0.973,0.402,0.869,0,0,0,0,0,0 +1,0.849,0.366,0.683,0,0,0,0,0,0.361 +0.667,0.699,0.263,0.344,0,0,0,0,0.267,0.0383 +1,0.686,0.322,0.277,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0.267,0.267,0,0,0.267,0.416 +0.667,0.64,0.0449,0.181,0.662,0,0,0,0,0.0148 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0.0383 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0383 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.0765 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.0765 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.115 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.115 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.153 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.268 +0.667,0.797,0.224,0.457,0.543,0.883,0,0,0,0 +0.667,0.836,0.273,0.596,0,0.75,0,0,0,0 +0.667,0.849,0.366,0.683,0.818,0.817,0,0,0,0.0383 +0.667,0.836,0.51,0.638,0,0,0.138,0.383,0,0.0765 +1,0.934,0.936,0.732,0,0,0.49,0.35,0,0 +1,0.857,0.887,0.554,0,0,0.448,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0702 +1,0.608,0.026,0.0829,0,0,0,0,0,0.189 +1,0.68,0.0551,0.251,0,0,0,0,0,0.107 +0.667,0.64,0.0449,0.181,0,0,0,0,0.267,0.215 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0.504,0.733,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.191 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.191 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.115 +0.667,0.732,0.162,0.314,0,0,0.116,0.133,0,0.0383 +0.667,0.758,0.181,0.359,0,0,0.517,0.35,0,0.268 +0.667,0.797,0.224,0.457,0,0,0.639,0,0,0.115 +1,0.973,0.402,0.869,0,0,0.539,0,0.267,0 +1,0.993,0.541,1,0,0,0.116,0,0,0.282 +1,0.973,0.758,0.933,0,0,0,0,0,0.152 +1,0.934,0.936,0.732,0,0,0,0,0,0.156 +1,0.758,0.596,0.386,0.15,0.133,0,0,0,0.289 +1,0.706,0.363,0.342,0.74,0.133,0,0,0,0.127 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.132 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0843 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +0.667,0.647,0.118,0.183,0,0,0,0,0,0.191 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.153 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.0383 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.0383 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.306 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.0765 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.115 +1,0.993,0.647,1,0,0,0,0,0,0.394 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.115 +0.667,0.81,0.673,0.504,0.554,0.633,0,0,0,0 +0.667,0.758,0.621,0.386,0.382,1,0,0,0,0.268 +1,0.779,0.582,0.488,0,0,0,0,0,0.152 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.647,0.0928,0.193,0,0,0,0,0,0.153 +1,0.647,0.108,0.189,0,0,0,0,0,0.0383 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.306 +0.667,0.647,0.125,0.178,0,0,0,0,0,0.374 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.537 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.436 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.561 +0.667,0.797,0.36,0.457,0,0,0,0,0.267,0.0383 +1,0.973,0.549,0.869,0,0,0,0,0,0.0383 +1,0.993,0.647,1,0,0,0,0,0,0.0383 +1,0.973,0.851,0.933,0,0,0,0,0,0.115 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0.173 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.552 +1,0.74,0.0747,0.351,0,0,0,0,0.267,0.334 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.0692 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.374 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.247 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.293 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.539 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0527 +0.667,0.699,0.145,0.323,0,0,0,0,0,0.357 +0.667,0.705,0.191,0.366,0,0,0,0,0,0.114 +1,0.836,0.51,0.638,0,0,0,0,0.55,0.215 +1,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0.0383 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0.383,0.323 +1,0.701,0.0464,0.15,0,0,0,0,0.167,0.0765 +1,0.74,0.0747,0.351,0.65,0.267,0,0,0,0.133 +0.667,0.719,0.074,0.313,0.485,0,0.236,0.383,0,0 +0.333,0.647,0.0527,0.19,0.23,0,0.185,0.35,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.383 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.0383 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.191 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.268 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0383 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0765 +1,0.915,0.327,0.661,0.561,0.267,0,0,0,0.0765 +1,0.973,0.402,0.869,0,0,0,0,0.383,0.115 +1,0.993,0.541,1,0,0,0,0,0.733,0.0383 +1,0.973,0.758,0.933,0,0,0,0,0.383,0.0383 +0.667,0.81,0.629,0.504,0,0,0,0,0.167,0.179 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.306 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.125 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.282 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.156 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.115 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.23 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.306 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.23 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0383 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0893 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.0383 +0.667,0.705,0.191,0.366,0,0,0,0,0.383,0.0383 +0.667,0.836,0.51,0.638,0,0,0,0,1,0 +0.667,0.81,0.629,0.504,0,0,0,0,0.0167,0 +0.333,0.66,0.306,0.218,0,0,0,0,0,0.092 +0.667,0.706,0.363,0.342,0,0,0,0,0,0.27 +1,0.667,0.16,0.183,0,0,0,0,0,0.196 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.153 +1,0.608,0.026,0.0578,0,0,0,0,0,0.115 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.74,0.0747,0.351,0,0,0,0,0.55,0.397 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.705 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.199 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0765 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.153 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.153 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.261 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0383 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.176 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.191 +1,0.66,0.306,0.218,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.111 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.0971 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.273 +0.667,0.719,0.074,0.313,0,0,0,0,0,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.153 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.0383 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.153 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.383 +0.333,0.647,0.0888,0.182,0.69,0.533,0,0,0,0.153 +0.333,0.66,0.0982,0.204,0.106,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.115 +0.333,0.699,0.145,0.323,0,0,0,0,0.883,0.191 +0.333,0.705,0.191,0.366,0,0,0,0,0.517,0.115 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.0383 +0.667,0.81,0.629,0.504,0.255,0.267,0,0,0,0.118 +1,0.66,0.306,0.218,0.365,0,0,0,0,0.161 +1,0.634,0.189,0.196,0,0,0,0,0,0.105 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0.496 +1,0.64,0.049,0.181,0,0,0,0,0,0.534 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.383,0 +1,0.732,0.233,0.307,0,0,0,0,0.167,0 +1,0.732,0.274,0.305,0,0,0,0,0,0.117 +1,0.818,0.459,0.446,0,0,0,0,0,0.082 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.383 +0.667,0.797,0.36,0.457,0.618,0.533,0,0,0,0 +1,0.973,0.549,0.869,0,0,0,0,0,0.23 +1,0.993,0.647,1,0,0,0,0,0,0.0383 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0.0765 +1,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.0383 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.169 +1,0.621,0.0327,0.15,0,0,0,0,0,0.31 +1,0.64,0.049,0.181,0.14,0.133,0,0,0,0.26 +0.667,0.647,0.0731,0.19,0.437,0.133,0,0,0,0.23 +0.667,0.732,0.168,0.337,0,0,0,0,0.55,0 +0.667,0.732,0.198,0.328,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0 +1,0.818,0.34,0.436,0,0,0,0,0,0.165 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.0383 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.0383 +1,0.758,0.343,0.359,0,0,0,0,0,0 +1,0.797,0.36,0.457,0,0,0,0,0,0.115 +1,0.973,0.549,0.869,0,0,0.17,0.383,0.55,0.0765 +1,0.993,0.647,1,0,0,0.844,0.35,0,0.0383 +0.667,0.836,0.573,0.638,0,0,0.518,0,0,0.306 +0.667,0.81,0.673,0.504,0.329,0.267,0.528,0,0,0 +0.667,0.758,0.621,0.386,0.163,0,0.138,0,0,0 +0.667,0.634,0.206,0.196,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0.55,0.143 +1,0.621,0.0355,0.15,0,0,0,0,0,0.27 +1,0.64,0.0449,0.181,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0.883,0.306 +0.333,0.647,0.0664,0.189,0,0,0,0,1,0.153 +0.333,0.647,0.0724,0.183,0,0,0,0,0.367,0.0383 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0383 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.153 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.497 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0 +0.667,0.836,0.273,0.596,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.115 +1,0.973,0.758,0.933,0.596,0.267,0,0,0,0.4 +1,0.934,0.936,0.732,0,0,0,0,0,0.324 +1,0.758,0.596,0.386,0,0,0,0,0,0.535 +1,0.634,0.189,0.196,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_4.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_4.csv new file mode 100644 index 0000000000..050fd269ea --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_4.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.608,0.02,0.0513,0,0,0,0,0,0.069 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.207 +1,0.818,0.126,0.477,0,0,0,0,0,0.158 +1,0.818,0.149,0.49,0,0,0,0,0,0.153 +0.667,0.732,0.117,0.334,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.138 +0.667,0.732,0.136,0.313,0.719,0.8,0,0,0,0.0345 +0.667,0.732,0.153,0.311,0.556,0,0,0,0,0.276 +0.667,0.732,0.162,0.315,0.661,0,0,0,0,0.276 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.103 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.361 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.121 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.201 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.138 +0.667,0.81,0.629,0.565,0.252,0.383,0,0,0,0 +0.667,0.758,0.596,0.43,0.354,1,0,0,0.883,0 +1,0.779,0.536,0.536,0,0.233,0,0,1,0.155 +1,0.614,0.0879,0.116,0,0,0,0,0.183,0.0977 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.272 +1,0.719,0.074,0.316,0,0,0,0,0.883,0.172 +0.667,0.647,0.0527,0.192,0,0,0,0,0.4,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.203 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.131 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.127 +0.333,0.647,0.0759,0.181,0.519,0.533,0,0,0,0 +0.667,0.732,0.153,0.311,0.622,0,0,0,0,0.103 +0.667,0.732,0.162,0.315,0.575,0,0,0,0,0.31 +0.667,0.758,0.181,0.343,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.241 +0.667,0.836,0.273,0.548,0,0,0,0,0.133,0.103 +0.333,0.705,0.191,0.359,0,0,0,0,1,0.103 +0.333,0.699,0.263,0.363,0,0,0,0,0.15,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0.117 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.608,0.0183,0.0495,0,0,0,0,0,0.069 +0.667,0.608,0.0166,0.0495,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0.638,0.533,0,0,0,0.069 +1,0.647,0.0527,0.192,0.334,0,0,0,0,0.138 +0.667,0.732,0.105,0.343,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.069 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.345 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0345 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0345 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.103 +0.667,0.836,0.273,0.548,0,0,0,0,0.25,0 +0.333,0.705,0.191,0.359,0,0,0,0,0.517,0.0345 +0.333,0.699,0.263,0.363,0,0,0,0,0,0.069 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.103 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0916 +1,0.706,0.363,0.374,0,0,0,0,0,0.00883 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.64,0.0449,0.183,0,0,0,0,0,0.124 +1,0.732,0.0895,0.334,0,0,0,0,0,0.107 +1,0.732,0.105,0.343,0,0,0,0,0,0.259 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0 +0.667,0.647,0.0724,0.186,0,0,0,0,0,0.103 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0.0345 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0.103 +0.667,0.66,0.0982,0.196,0,0,0,0,0.517,0.172 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.103 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.0345 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.228 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +1,0.934,0.936,0.823,0.493,0.633,0,0,0,0.116 +1,0.758,0.596,0.43,0.478,0.167,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0.0345 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.64,0.0449,0.183,0,0,0,0,0,0.069 +1,0.818,0.126,0.477,0,0,0,0,0,0.138 +0.667,0.732,0.105,0.343,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0.25,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.069 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.172 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.103 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.276 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.069 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.298 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.146 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.323 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.181 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.079 +1,0.857,0.887,0.621,0,0,0,0,0,0.0931 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +1,0.64,0.049,0.183,0,0,0.425,0.483,0.25,0 +1,0.732,0.128,0.334,0,0,0.446,0,0,0.207 +0.667,0.732,0.168,0.343,0,0,0,0,0,0.103 +0.667,0.732,0.198,0.334,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0.0345 +0.333,0.647,0.125,0.181,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0.55,0.138 +0.333,0.647,0.165,0.182,0,0,0,0,0.217,0.138 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.069 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.31 +1,0.973,0.549,0.798,0,0,0,0,0,0.207 +1,0.993,0.647,0.979,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0.0519 +1,0.758,0.621,0.43,0,0,0,0,0,0.431 +1,0.634,0.206,0.212,0,0,0,0,0,0.143 +1,0.614,0.101,0.116,0,0,0,0,0,0.136 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0.069 +1,0.608,0.0224,0.0495,0,0,0,0,0,0.138 +1,0.608,0.019,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0.25,0.069 +0.667,0.64,0.049,0.183,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0,0.108 +1,0.818,0.242,0.49,0,0,0,0,0,0.218 +0.667,0.732,0.198,0.334,0.409,0.533,0,0,0,0.127 +0.667,0.732,0.217,0.322,0.14,0,0,0,0,0.198 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.187 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.0734 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.366 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.379 +0.333,0.679,0.189,0.234,0.105,0.05,0.0406,0.3,0,0.207 +0.667,0.836,0.372,0.548,0.537,0.483,0.253,0.183,0.05,0.207 +1,0.993,0.647,0.979,0.748,0,0,0,0.2,0 +1,0.973,0.851,0.991,0.141,0,0,0,0,0.069 +1,0.81,0.673,0.565,0,0,0,0,0,0.0709 +1,0.758,0.621,0.43,0,0,0,0,0,0.118 +1,0.706,0.394,0.374,0,0,0,0,0,0.0797 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.146 +1,0.818,0.126,0.477,0,0,0,0,0.767,0.143 +1,0.818,0.149,0.49,0,0,0,0,0,0.529 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.31 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0345 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.667,0.732,0.153,0.311,0,0,0,0,0.25,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.276 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.345 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0345 +0.667,0.836,0.273,0.548,0.455,0.533,0.101,0.133,0,0.0345 +0.667,0.849,0.366,0.669,0.269,0,0.39,0.35,0,0.162 +1,0.973,0.758,0.991,0,0,0.544,0,0,0 +1,0.934,0.936,0.823,0,0,0.315,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.779,0.536,0.536,0,0,0,0,0,0.0345 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.383,0.0345 +1,0.621,0.0355,0.151,0,0,0,0,0.65,0 +1,0.719,0.074,0.316,0,0,0,0,0,0.159 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.214 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +0.333,0.647,0.0724,0.186,0,0,0,0,0.133,0.135 +0.667,0.732,0.136,0.313,0,0,0,0,0.117,0.396 +0.667,0.732,0.153,0.311,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.0345 +1,0.857,0.263,0.49,0,0,0,0,0,0.207 +1,0.915,0.327,0.602,0.111,0.133,0,0,0,0.276 +0.667,0.836,0.273,0.548,0.405,0.4,0,0,0.383,0.0345 +1,0.993,0.541,0.979,0,0,0,0,0.9,0.069 +1,0.973,0.758,0.991,0,0,0,0,0,0.0345 +1,0.934,0.936,0.823,0,0,0,0,0,0.069 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0.105 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.172 +1,0.608,0.026,0.0833,0,0,0,0,0,0 +1,0.74,0.0747,0.355,0,0,0,0,0.767,0.194 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.0679 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.173 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.396 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.418 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.206 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.379 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.312 +0.667,0.732,0.162,0.315,0,0,0,0,0.517,0.0345 +0.333,0.66,0.0982,0.196,0.646,0.533,0,0,0,0.069 +0.667,0.797,0.224,0.418,0.686,0,0,0,0,0.0345 +0.667,0.836,0.273,0.548,0.52,0,0,0,0,0.0345 +0.333,0.705,0.191,0.359,0.807,0,0,0,0,0 +0.333,0.699,0.263,0.363,0.694,0,0,0,0,0.103 +0.667,0.81,0.629,0.565,0.125,0,0,0,0,0.069 +1,0.857,0.887,0.621,0,0,0,0,0,0.0549 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0 +1,0.68,0.0551,0.253,0,0,0,0,0,0.207 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.172 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.138 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.069 +0.667,0.732,0.136,0.313,0,0,0,0,0.383,0.103 +0.667,0.732,0.153,0.311,0,0,0,0,0.133,0.103 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.069 +0.667,0.758,0.181,0.343,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.138 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.069 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.069 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.103 +1,0.934,0.936,0.823,0,0,0,0,0,0.108 +1,0.857,0.887,0.621,0,0,0,0,0.25,0 +1,0.706,0.363,0.374,0,0,0,0,0,0.263 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0.272 +1,0.719,0.074,0.316,0,0,0,0,0.25,0.134 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.163 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.131 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0345 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.0345 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.103 +0.667,0.732,0.153,0.311,0,0,0,0,0,0 +0.667,0.732,0.162,0.315,0,0,0.249,0.383,0,0.069 +0.667,0.758,0.181,0.343,0,0,0.497,0.1,0,0.0345 +0.667,0.797,0.224,0.418,0,0,0.762,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.221,0,0.383,0.414 +0.667,0.849,0.366,0.669,0,0,0.0448,0,1,0.069 +0.667,0.836,0.51,0.677,0,0,0,0,0.683,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +0.667,0.758,0.596,0.43,0,0,0,0,0,0.103 +0.667,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.103 +1,0.608,0.0241,0.0833,0,0,0,0,0,0.0379 +1,0.621,0.0327,0.151,0,0,0.639,0.483,0,0.0253 +0.667,0.64,0.049,0.183,0,0,0.246,0,0,0.172 +0.667,0.647,0.0731,0.192,0,0,0.378,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.0345 +0.333,0.647,0.118,0.186,0,0,0,0,0,0.0345 +0.333,0.647,0.125,0.181,0,0,0,0,0.25,0.207 +0.333,0.647,0.146,0.18,0,0,0,0,0,0 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.276 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.103 +0.333,0.679,0.189,0.234,0,0,0,0,0,0 +0.667,0.836,0.372,0.548,0.183,0.55,0,0,0,0.414 +0.333,0.705,0.228,0.359,0,0.25,0,0,0,0 +1,0.973,0.851,0.991,0.483,0.533,0,0,0,0 +1,0.81,0.673,0.565,0.505,0,0,0,0,0.183 +1,0.758,0.621,0.43,0,0,0,0,0,0.419 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.05,0 +1,0.608,0.0215,0.0513,0,0,0,0,0.983,0.172 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.148 +1,0.64,0.049,0.183,0,0,0,0,0,0.266 +1,0.732,0.128,0.334,0.493,0.533,0,0,0,0.526 +0.667,0.732,0.168,0.343,0.62,0,0,0,0,0.359 +0.667,0.732,0.198,0.334,0.59,0,0,0,0,0.121 +0.333,0.647,0.118,0.186,0.752,0,0.178,0.05,0.767,0.069 +0.667,0.732,0.233,0.313,0.186,0,0.358,0.667,0,0.103 +0.333,0.647,0.146,0.18,0,0,0.366,0,0,0.386 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.138 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.069 +0.333,0.679,0.189,0.234,0,0,0,0,0,0.069 +0.667,0.836,0.372,0.548,0,0,0,0,0,0 +0.333,0.705,0.228,0.359,0,0,0,0,0,0.172 +0.667,0.836,0.573,0.677,0,0,0,0,0,0.0345 +0.667,0.81,0.673,0.565,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0.0797 +1,0.634,0.206,0.212,0,0,0,0,0,0.0368 +1,0.614,0.101,0.116,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.798,0.103,0.449,0,0,0,0,0.517,0.185 +1,0.818,0.126,0.477,0,0,0,0,0,0.138 +1,0.818,0.149,0.49,0,0,0,0,0,0.207 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.657 +0.667,0.732,0.129,0.322,0,0,0,0,0.383,0.103 +0.667,0.732,0.136,0.313,0,0,0,0,1,0.069 +0.667,0.732,0.153,0.311,0,0,0,0,0.167,0.0345 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0.069 +0.667,0.679,0.12,0.234,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0.103 +0.333,0.699,0.263,0.363,0,0,0,0,0,0.199 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.164 +0.667,0.758,0.596,0.43,0,0,0,0,0.517,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.104 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.0532 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.136 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.0345 +0.667,0.647,0.0604,0.196,0,0,0,0,0.383,0.172 +0.667,0.732,0.117,0.334,0,0,0,0,0.383,0.432 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.0931 +0.667,0.732,0.136,0.313,0,0,0,0,0.133,0.0345 +0.667,0.732,0.153,0.311,0,0,0,0,1,0.103 +1,0.818,0.235,0.448,0,0,0,0,0.15,0.069 +1,0.857,0.263,0.49,0,0,0,0,0,0.103 +1,0.915,0.327,0.602,0.153,0.133,0,0,0.133,0.31 +1,0.973,0.402,0.798,0.498,0.4,0,0,0.117,0.138 +0.667,0.849,0.366,0.669,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.178 +1,0.934,0.936,0.823,0,0,0,0,0,0.103 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.069 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.199 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.246 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.0345 +0.667,0.647,0.0604,0.196,0,0,0.436,0.483,0,0 +0.667,0.647,0.0664,0.192,0,0,0.422,0,0,0 +0.667,0.647,0.0724,0.186,0,0,0.512,0,0,0 +1,0.732,0.136,0.313,0,0,0.569,0,0,0.213 +0.667,0.647,0.0845,0.18,0,0,0.547,0,0,0.276 +0.667,0.647,0.0888,0.182,0,0,0.516,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0.552,0,0,0.138 +0.667,0.679,0.12,0.234,0,0,0.551,0,0,0.276 +0.667,0.836,0.273,0.548,0,0,0.576,0,0.25,0.0345 +0.333,0.705,0.191,0.359,0,0,0.169,0,0.633,0.138 +0.333,0.699,0.263,0.363,0,0,0,0,0.133,0 +0.667,0.81,0.629,0.565,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.594,0.483,0,0 +1,0.779,0.536,0.536,0,0,0.607,0,0,0.237 +1,0.72,0.232,0.249,0,0,0.436,0,0,0.271 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.0942 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.68,0.0551,0.253,0,0,0,0,0,0.181 +1,0.719,0.074,0.316,0,0,0,0,0,0.266 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.0345 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.53 +0.667,0.732,0.117,0.334,0,0,0.234,0.383,0,0.0127 +0.667,0.732,0.129,0.322,0,0,0.366,0.1,0,0.138 +0.667,0.732,0.136,0.313,0,0,0.39,0,0,0.103 +0.667,0.732,0.153,0.311,0,0,0.664,0,0,0.241 +0.667,0.732,0.162,0.315,0,0,0.941,0,0,0.069 +0.667,0.758,0.181,0.343,0,0,0.484,0,0,0.0345 +0.667,0.797,0.224,0.418,0,0,0.713,0,0,0.069 +0.667,0.836,0.273,0.548,0,0,0,0,0,0 +0.333,0.705,0.191,0.359,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0.069 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0.192 +1,0.614,0.0879,0.116,0,0,0.129,0,0,0.0862 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0.25,0.276 +1,0.732,0.0895,0.334,0,0,0,0,0,0.0345 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.0345 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.424 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.124 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.34 +0.667,0.732,0.153,0.311,0,0,0,0,0.25,0.172 +0.667,0.732,0.162,0.315,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.172 +1,0.797,0.224,0.418,0,0,0,0,0.383,0.0345 +0.667,0.836,0.273,0.548,0,0,0,0,0.383,0.138 +1,0.993,0.541,0.979,0,0,0,0,0,0.103 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.2 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.779,0.536,0.536,0,0,0,0,0,0 +1,0.72,0.232,0.249,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +1,0.621,0.0327,0.151,0,0,0,0,0,0.192 +0.667,0.64,0.049,0.183,0,0,0,0,0,0.069 +0.667,0.732,0.128,0.334,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0.0345 +0.333,0.647,0.108,0.192,0,0,0,0,0,0.207 +0.333,0.647,0.118,0.186,0,0,0,0,0,0.31 +0.667,0.732,0.233,0.313,0,0,0,0,0,0 +0.667,0.732,0.274,0.311,0,0,0,0,0,0.0345 +0.667,0.732,0.312,0.315,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0 +1,0.915,0.531,0.602,0,0,0,0,0,0.069 +1,0.973,0.549,0.798,0,0,0,0,0.517,0.0345 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.195 +0.667,0.836,0.573,0.677,0,0,0,0,0,0.266 +1,0.934,1,0.823,0.429,0.533,0,0,0,0.203 +1,0.758,0.621,0.43,0.244,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.138 +1,0.608,0.0241,0.0833,0,0,0,0,0,0.651 +1,0.621,0.0327,0.151,0,0,0,0,0,0.243 +1,0.64,0.049,0.183,0,0,0,0,0,0.069 +1,0.732,0.128,0.334,0,0,0,0,0,0.0345 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0,0,0,0.05,0 +0.333,0.647,0.125,0.181,0,0,0,0,0.983,0.103 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.069 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.103 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.241 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.103 +0.667,0.836,0.372,0.548,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0.517,0 +1,0.973,0.851,0.991,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.779,0.582,0.536,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0.383,0.246 +0.333,0.647,0.0527,0.192,0,0,0.0811,0.133,0.9,0 +0.333,0.647,0.0604,0.196,0,0,0.586,0.35,0,0.0345 +0.667,0.732,0.117,0.334,0,0,0.303,0,0,0.103 +0.667,0.732,0.129,0.322,0,0,0.885,0,0,0.207 +0.667,0.732,0.136,0.313,0,0,0.327,0,0,0.236 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0972 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.172 +0.667,0.758,0.181,0.343,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.355,0.483,0,0.276 +0.333,0.699,0.145,0.299,0,0,0.386,0,0,0 +0.667,0.849,0.366,0.669,0,0,0.456,0,0,0.138 +1,0.973,0.758,0.991,0,0,0.338,0,0,0 +1,0.934,0.936,0.823,0,0,0.523,0,0,0 +1,0.857,0.887,0.621,0,0,0.243,0,0,0 +1,0.779,0.536,0.536,0,0,0,0,0,0.266 +1,0.72,0.232,0.249,0,0,0,0,0,0.0996 +1,0.654,0.0689,0.099,0,0,0,0,0,0.0584 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.732,0.105,0.343,0,0,0,0,0.517,0.386 +1,0.818,0.168,0.477,0,0,0.0923,0.133,0.25,0.0584 +1,0.818,0.186,0.458,0,0,0.355,0.1,0,0.103 +1,0.818,0.196,0.445,0,0,0.329,0,0,0.0345 +1,0.732,0.153,0.311,0,0,0.403,0,0,0.103 +1,0.818,0.235,0.448,0,0,0.578,0,0,0.345 +1,0.857,0.263,0.49,0,0,0.31,0,0,0.0345 +1,0.915,0.327,0.602,0,0,0.222,0.483,0,0.19 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.276 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0345 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.172 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.069 +0.667,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.779,0.536,0.536,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0.0345 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.121 +1,0.64,0.0449,0.183,0,0,0,0,0,0.159 +1,0.647,0.0527,0.192,0,0,0,0,0,0.182 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0.255,0.383,0,0.192 +0.667,0.732,0.129,0.322,0,0,0.476,0.1,0,0.0345 +0.667,0.732,0.136,0.313,0,0,0.476,0,0,0.103 +0.667,0.732,0.153,0.311,0,0,0.422,0,0,0.241 +0.667,0.732,0.162,0.315,0,0,0.509,0,0,0 +0.667,0.758,0.181,0.343,0,0,0.582,0,0,0 +0.667,0.797,0.224,0.418,0,0,0.752,0,0.25,0.241 +0.667,0.836,0.273,0.548,0,0,0.445,0,0,0.241 +0.667,0.849,0.366,0.669,0,0,0.316,0,0,0.138 +1,0.973,0.758,0.991,0,0,0,0,0.25,0.172 +1,0.934,0.936,0.823,0.652,0.533,0,0,0,0.069 +1,0.857,0.887,0.621,0.252,0,0,0,0,0 +1,0.779,0.536,0.536,0,0,0,0,0,0 +1,0.72,0.232,0.249,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.199,0.383,0,0.0345 +1,0.621,0.0355,0.151,0,0,0,0.1,0,0.0345 +1,0.64,0.0449,0.183,0,0,0,0,0,0.239 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.309 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.195 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.0671 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.069 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.732,0.162,0.315,0,0,0,0,0,0.138 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0.155 +0.667,0.797,0.224,0.418,0,0,0,0,0.767,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.069 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.138 +0.333,0.699,0.263,0.363,0,0,0,0,0,0.103 +1,0.934,0.936,0.823,0,0,0,0,0,0.123 +1,0.857,0.887,0.621,0,0,0,0,0.517,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.193 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.0345 +1,0.621,0.0355,0.151,0,0,0,0,0,0.418 +1,0.719,0.074,0.316,0,0,0,0,0,0.069 +0.667,0.732,0.0895,0.334,0,0,0.269,0.233,0,0.284 +0.667,0.732,0.105,0.343,0,0,0.467,0,0,0.0345 +0.667,0.732,0.117,0.334,0,0,0.214,0,0.25,0.0345 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.103 +0.333,0.647,0.0759,0.181,0,0,0,0,0.383,0.0345 +0.667,0.732,0.153,0.311,0.126,0.133,0,0,0.133,0.0345 +0.667,0.732,0.162,0.315,0.364,0.933,0,0,0,0.138 +0.667,0.758,0.181,0.343,0.625,0.8,0,0,0,0.0345 +0.667,0.797,0.224,0.418,0.143,0,0,0,0.25,0.0345 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.0623 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.103 +0.667,0.836,0.51,0.677,0,0,0,0,0.767,0.0345 +1,0.934,0.936,0.823,0,0,0,0,0,0.249 +1,0.857,0.887,0.621,0,0,0,0,0,0.325 +1,0.779,0.536,0.536,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.103 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.069 +1,0.608,0.0241,0.0833,0,0,0,0,0,0.103 +1,0.621,0.0327,0.151,0,0,0,0,0,0.103 +1,0.64,0.049,0.183,0,0,0,0,0,0.107 +1,0.818,0.183,0.477,0,0,0.261,0.233,0,0.431 +1,0.818,0.242,0.49,0,0,0.525,0,0,0 +0.667,0.732,0.198,0.334,0,0,0.519,0,0,0 +0.333,0.647,0.118,0.186,0,0,0.467,0,0,0.069 +0.333,0.647,0.125,0.181,0,0,0.415,0,0,0.103 +0.667,0.732,0.274,0.311,0,0,0.609,0,0,0.0345 +0.667,0.732,0.312,0.315,0.468,0.55,0.608,0,0,0 +0.667,0.758,0.343,0.343,0.452,0.25,0.484,0,0,0.103 +0.667,0.797,0.36,0.418,0.585,0,0.467,0,0.05,0 +1,0.973,0.549,0.798,0.581,0,0.585,0,1,0.0345 +1,0.993,0.647,0.979,0.547,0.8,0.492,0,0.5,0.243 +1,0.973,0.851,0.991,0.174,0,0.31,0,0,0.0728 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0.423 +1,0.634,0.206,0.212,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.138 +1,0.608,0.0241,0.0833,0,0,0,0,0.05,0 +1,0.621,0.0327,0.151,0,0,0,0,0.717,0.103 +1,0.719,0.0799,0.316,0,0,0,0,0,0.0795 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0.115 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0.13 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.732,0.217,0.322,0,0,0,0,0.05,0.0753 +0.667,0.732,0.233,0.313,0,0,0,0,0.983,0.0976 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.103 +0.333,0.647,0.165,0.182,0,0,0.0811,0.05,0,0.069 +0.667,0.758,0.343,0.343,0,0,0.326,0.433,0,0.345 +0.667,0.797,0.36,0.418,0,0,0.439,0,0.3,0.31 +1,0.973,0.549,0.798,0,0,0,0,0.733,0.069 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.069 +1,0.973,0.851,0.991,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0.246 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.183,0,0,0,0,0,0 +1,0.732,0.0895,0.334,0.437,0.633,0,0,0.767,0.103 +0.667,0.732,0.105,0.343,0,0.167,0.386,0.483,0,0.069 +0.667,0.732,0.117,0.334,0,0,0.705,0,0,0.172 +0.667,0.732,0.129,0.322,0,0,0.634,0,0,0.0345 +0.667,0.732,0.136,0.313,0,0,0.729,0,0.25,0.182 +0.667,0.732,0.153,0.311,0,0,0.229,0,0,0.138 +0.667,0.732,0.162,0.315,0,0,0.394,0,0,0 +0.667,0.758,0.181,0.343,0,0,0.344,0.717,0,0.207 +0.667,0.797,0.224,0.418,0,0,0.615,0,0,0.0345 +0.667,0.836,0.273,0.548,0,0,0.182,0,0,0.103 +0.667,0.849,0.366,0.669,0,0,0,0,0.25,0.069 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.207 +1,0.934,0.936,0.823,0,0,0,0,0,0.069 +1,0.66,0.306,0.24,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0.133,0.0833 +1,0.719,0.074,0.316,0,0,0,0,0.117,0.0723 +1,0.732,0.0895,0.334,0,0,0,0,0,0.233 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.238 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.133 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.241 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.179 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.205 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.069 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.207 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.434 +0.333,0.705,0.191,0.359,0,0,0,0,0,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.48 +1,0.934,0.936,0.823,0,0,0,0,0,0.352 +1,0.857,0.887,0.621,0,0,0,0,0,0.56 +1,0.706,0.363,0.374,0,0,0,0,0,0.277 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.131 +1,0.719,0.074,0.316,0,0,0,0,0,0.117 +1,0.818,0.126,0.477,0,0,0,0,0.383,0.128 +0.667,0.732,0.105,0.343,0,0,0.527,0.483,0.9,0.103 +0.667,0.732,0.117,0.334,0,0,0.373,0,0,0.069 +0.667,0.732,0.129,0.322,0,0,0.554,0,0,0.0345 +0.667,0.732,0.136,0.313,0,0,0.617,0,0,0.103 +1,0.818,0.222,0.441,0,0,0.394,0,0,0 +1,0.818,0.235,0.448,0,0,0.702,0,0,0.138 +0.667,0.758,0.181,0.343,0,0,0.32,0,0,0.138 +0.667,0.797,0.224,0.418,0,0,0.508,0,0,0 +0.667,0.836,0.273,0.548,0,0,0.305,0,0,0.0345 +0.667,0.849,0.366,0.669,0,0,0.337,0,0,0.31 +1,0.973,0.758,0.991,0,0,0.906,0,0.517,0 +1,0.934,0.936,0.823,0,0,0.137,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0.0788 +1,0.706,0.363,0.374,0,0,0,0,0,0.107 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.723,0.0735,0.313,0.518,0.583,0,0,0,0.069 +1,0.736,0.0889,0.33,0.429,0.2,0,0,0,0.178 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.119 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0901 +0.667,0.649,0.072,0.183,0,0,0,0,0,0.069 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0.0345 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.069 +0.667,0.736,0.161,0.307,0.566,0.517,0,0,0,0 +0.667,0.762,0.179,0.322,0.568,0.783,0,0,0,0.172 +0.667,0.802,0.222,0.367,0.741,0,0,0,0.333,0.138 +0.667,0.841,0.271,0.466,0.218,0,0,0,0.5,0.069 +0.667,0.854,0.364,0.595,0,0,0,0,0.683,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.185 +0.667,0.815,0.625,0.625,0,0,0.229,0.333,0,0.069 +0.667,0.762,0.592,0.501,0,0,0,0.167,0.25,0 +0.667,0.71,0.36,0.442,0,0,0.327,0.5,0,0 +0.667,0.616,0.0874,0.116,0,0,0.12,0,0,0.069 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0833,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0.683,0.0345 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.21 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.124 +0.667,0.736,0.128,0.316,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0345 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0345 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.207 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.207 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.069 +0.333,0.701,0.144,0.258,0.282,0.333,0,0,0,0.103 +0.333,0.708,0.19,0.322,0.314,0.183,0,0,0,0.0345 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.172 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0 +0.667,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.725,0.23,0.249,0,0,0,0,0,0.3 +1,0.706,0.113,0.124,0,0,0,0,0,0.0345 +1,0.61,0.0309,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0.26 +1,0.61,0.024,0.0829,0,0,0,0,0,0.305 +1,0.623,0.0326,0.15,0,0,0,0,0,0.175 +1,0.642,0.0488,0.181,0,0,0,0,0,0.392 +1,0.736,0.127,0.33,0,0,0,0,0,0.154 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0.103 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.103 +0.333,0.649,0.117,0.183,0,0,0,0,0.0167,0.0345 +0.333,0.649,0.125,0.178,0,0,0,0,1,0.0345 +0.667,0.736,0.272,0.305,0,0,0,0,0.25,0.0345 +0.667,0.736,0.31,0.307,0.565,0.517,0,0,0,0.0345 +0.667,0.762,0.34,0.322,0,0,0,0,0,0 +0.667,0.802,0.358,0.367,0,0,0.33,0.5,0,0.0345 +1,0.98,0.545,0.674,0,0,0.906,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0.0345 +1,0.841,0.569,0.67,0,0,0,0,0,0 +1,0.815,0.668,0.625,0,0,0,0,0,0.0576 +1,0.762,0.617,0.501,0,0,0,0,0.0167,0.0129 +1,0.71,0.392,0.442,0,0,0,0,0.483,0.155 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.101 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0129 +1,0.642,0.0488,0.181,0,0,0,0,0,0.172 +0.667,0.649,0.0727,0.19,0,0,0,0,0.517,0 +0.667,0.649,0.0923,0.193,0,0,0,0,0.25,0.234 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.13 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.069 +0.667,0.736,0.31,0.307,0,0,0,0,0,0.103 +1,0.863,0.502,0.458,0,0,0,0,0,0.103 +1,0.922,0.527,0.526,0,0,0,0,0,0.0345 +1,0.98,0.545,0.674,0,0,0,0,0,0.172 +1,1,0.642,0.868,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0.069 +1,0.941,0.993,0.913,0,0,0,0,0,0.0345 +1,0.863,0.916,0.727,0,0,0,0,0,0.22 +1,0.636,0.205,0.246,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.333,0 +1,0.723,0.0735,0.313,0,0,0,0,0.433,0.23 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.145 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.169 +0.667,0.736,0.116,0.328,0,0,0,0,0.25,0.274 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.178 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.296 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.172 +0.667,0.736,0.161,0.307,0,0,0.589,0.5,0,0.249 +0.333,0.662,0.0976,0.186,0,0,0.533,0,0,0.103 +0.333,0.682,0.119,0.208,0.246,0.333,0.48,0,0,0.207 +0.333,0.701,0.144,0.258,0.452,0.45,0,0,0.25,0.103 +0.333,0.708,0.19,0.322,0,0,0,0,0,0.069 +0.333,0.701,0.261,0.36,0,0,0,0,0,0.172 +0.333,0.688,0.32,0.337,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0.0345 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.333,0 +1,0.623,0.0353,0.15,0,0,0,0,0.433,0.069 +1,0.723,0.0735,0.313,0,0,0,0,0,0.15 +1,0.824,0.125,0.47,0,0,0,0,0,0.244 +1,0.824,0.148,0.481,0,0,0,0,0,0.325 +1,0.824,0.166,0.468,0,0,0,0,0,0.111 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.117 +0.667,0.736,0.135,0.307,0,0,0,0,0.833,0.103 +0.667,0.736,0.152,0.305,0,0,0,0,0.7,0.103 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.379 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0345 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0345 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.138 +0.667,0.854,0.364,0.595,0.736,0.783,0,0,0,0.103 +0.667,0.841,0.507,0.67,0.688,0,0,0,0.833,0.069 +1,0.941,0.929,0.913,0.189,0,0,0,1,0.12 +1,0.863,0.88,0.727,0,0,0,0,0.217,0.0386 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.0875 +1,0.61,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.179 +1,0.623,0.0353,0.15,0,0,0,0,0,0.259 +1,0.723,0.0735,0.313,0,0,0,0,0.333,0.163 +1,0.824,0.125,0.47,0,0,0,0,0.433,0.18 +0.667,0.736,0.104,0.337,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.069 +0.667,0.736,0.135,0.307,0.163,0.0833,0,0,0,0.069 +0.667,0.736,0.152,0.305,0.48,0.433,0.359,0.583,0,0.103 +0.667,0.736,0.161,0.307,0,0,0.347,0.167,0,0.103 +0.333,0.662,0.0976,0.186,0,0,0.399,0,0,0.103 +0.667,0.802,0.222,0.367,0,0,0.641,0,0,0.069 +0.667,0.841,0.271,0.466,0,0,0.657,0,0,0 +0.667,0.854,0.364,0.595,0,0,0.529,0,0,0.0675 +1,0.98,0.752,0.98,0,0,0.252,0,0,0.239 +1,0.941,0.929,0.913,0,0,0.116,0,0,0.0345 +1,0.762,0.592,0.501,0,0,0,0,0,0.0345 +1,0.71,0.36,0.442,0,0,0,0,0,0.0664 +1,0.671,0.159,0.183,0,0,0,0,0,0.137 +1,0.658,0.0684,0.099,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0.0839,0.0833,0,0.069 +1,0.736,0.0889,0.33,0,0,0.302,0.167,0,0.0345 +1,0.824,0.148,0.481,0,0,0.443,0,0.5,0.207 +1,0.824,0.166,0.468,0,0,0.61,0,0,0.116 +1,0.824,0.184,0.449,0,0,0.285,0,0,0.178 +1,0.824,0.194,0.436,0,0,0,0,0.583,0.311 +0.667,0.736,0.152,0.305,0,0,0,0,1,0.241 +0.667,0.736,0.161,0.307,0,0,0,0,1,0.207 +0.333,0.662,0.0976,0.186,0,0,0,0,0.483,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.069 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.276 +0.333,0.708,0.19,0.322,0,0,0,0,0.333,0 +0.667,0.841,0.507,0.67,0,0,0,0,0.167,0.122 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.784,0.532,0.638,0,0,0,0,0,0 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.0345 +1,0.623,0.0353,0.15,0,0,0,0,0,0.103 +1,0.642,0.0447,0.181,0,0,0,0,0,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.241 +0.667,0.736,0.116,0.328,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.345 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.103 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.138 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.103 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.103 +0.333,0.701,0.144,0.258,0,0,0,0,0.333,0.207 +0.667,0.854,0.364,0.595,0,0,0,0,0.167,0 +1,0.98,0.752,0.98,0,0,0,0,0,0.069 +1,0.941,0.929,0.913,0.384,0.333,0.0811,0.0833,0,0.0558 +1,0.863,0.88,0.727,0.679,0.183,0.283,0.417,0,0.138 +1,0.71,0.36,0.442,0,0,0.54,0,0,0 +1,0.671,0.159,0.183,0,0,0.432,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0118 +1,0.61,0.0223,0.0495,0,0,0,0,0.0167,0.194 +1,0.61,0.0189,0.0495,0,0,0,0,0.483,0.0119 +1,0.61,0.0215,0.0513,0,0,0,0,0,0.271 +1,0.61,0.024,0.0829,0,0,0,0,0,0.269 +1,0.745,0.0614,0.351,0,0,0,0,0,0.133 +1,0.723,0.0794,0.313,0,0,0,0,0,0.538 +1,0.824,0.182,0.47,0,0,0,0,0,0.253 +1,0.824,0.241,0.481,0,0,0,0,0,0.648 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.0345 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.0345 +0.333,0.649,0.125,0.178,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0.767,0 +0.667,0.736,0.31,0.307,0,0,0,0,0.767,0.207 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.172 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.069 +1,0.98,0.545,0.674,0,0,0,0,0,0.0345 +1,1,0.642,0.868,0,0,0,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0,0,0.241 +1,0.941,0.993,0.913,0,0,0,0,0,0.306 +1,0.762,0.617,0.501,0,0,0,0,0,0.103 +1,0.636,0.205,0.246,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.0406,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.069 +1,0.61,0.0309,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0167,0.251 +1,0.723,0.0794,0.313,0,0,0,0,0.733,0.19 +1,0.736,0.127,0.33,0,0,0,0,0,0.338 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.171 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.15 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.103 +0.667,0.736,0.231,0.307,0,0,0,0,0,0.069 +0.667,0.736,0.272,0.305,0,0,0,0,0,0.207 +0.667,0.736,0.31,0.307,0,0,0.0503,0.0167,0,0.276 +0.667,0.762,0.34,0.322,0,0,0.264,0.483,0,0.069 +0.667,0.802,0.358,0.367,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0.069 +1,0.941,0.993,0.913,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0959 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0.833,0.15 +1,0.736,0.0889,0.33,0,0,0,0,0.183,0.0873 +0.667,0.736,0.104,0.337,0,0,0,0,0.833,0.151 +0.667,0.736,0.116,0.328,0,0,0,0,0.183,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.138 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.0345 +0.333,0.662,0.0976,0.186,0,0,0,0,0.25,0.069 +0.667,0.802,0.222,0.367,0.244,0.333,0,0,0.583,0.172 +1,0.98,0.399,0.674,0.312,0.183,0,0,0.183,0.491 +1,1,0.537,0.868,0,0,0,0,0,0.103 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.784,0.532,0.638,0,0,0,0,0,0 +1,0.671,0.159,0.183,0,0,0,0,0,0.0527 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.148 +1,0.723,0.0735,0.313,0,0,0,0,0,0.209 +1,0.736,0.0889,0.33,0,0,0,0,0,0.286 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.477 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.192 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0588 +0.333,0.649,0.0754,0.178,0.635,0.517,0,0,0,0.069 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.172 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.31 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.172 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.134 +0.667,0.841,0.271,0.466,0,0,0,0,0.333,0.138 +0.667,0.854,0.364,0.595,0,0,0,0,0.433,0 +0.667,0.841,0.507,0.67,0,0,0,0,0.5,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +0.667,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.671,0.159,0.183,0,0,0,0,0,0.069 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.151 +1,0.723,0.0735,0.313,0,0,0,0,0,0.255 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.189 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0855 +0.667,0.736,0.116,0.328,0,0,0.0448,0.0833,0,0.0345 +0.667,0.736,0.128,0.316,0,0,0.338,0.417,0,0 +0.667,0.736,0.135,0.307,0,0,0.379,0,0,0.138 +0.667,0.649,0.0839,0.177,0,0,0.464,0,0,0 +0.667,0.736,0.161,0.307,0,0,0.488,0,0,0.069 +0.667,0.762,0.179,0.322,0,0,0.6,0,0,0.0345 +0.333,0.682,0.119,0.208,0,0,0.793,0,0,0.0345 +0.333,0.701,0.144,0.258,0,0,0.379,0,0,0.069 +0.667,0.854,0.364,0.595,0,0,0.323,0,0,0.069 +1,0.98,0.752,0.98,0,0,0.295,0,0,0 +1,0.941,0.929,0.913,0,0,0.708,0,0,0.0345 +0.667,0.762,0.592,0.501,0,0,0.58,0,0,0.172 +1,0.784,0.532,0.638,0,0,0.495,0,0,0.0556 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.138 +1,0.623,0.0353,0.15,0,0,0,0,0,0.264 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.333 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0.232 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0345 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.0345 +0.667,0.736,0.135,0.307,0,0,0.173,0.333,0,0.069 +0.667,0.736,0.152,0.305,0,0,0.382,0.667,0,0.172 +0.667,0.736,0.161,0.307,0,0,0.516,0,0,0 +0.667,0.762,0.179,0.322,0,0,0.249,0,0,0.138 +0.667,0.802,0.222,0.367,0,0,0.541,0,0,0.103 +1,0.98,0.399,0.674,0,0,0.491,0,0,0.135 +0.667,0.854,0.364,0.595,0,0,0.471,0,0,0.384 +1,0.98,0.752,0.98,0,0,0.536,0,0,0 +1,0.941,0.929,0.913,0,0,0.508,0,0,0 +1,0.863,0.88,0.727,0,0,0.319,0,0,0 +1,0.71,0.36,0.442,0.151,0.0833,0.524,0,0,0 +1,0.671,0.159,0.183,0.553,0.433,0.0168,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0.0484 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.337 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.112 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0.767,0.0345 +1,0.723,0.0735,0.313,0,0,0,0,0,0 +1,0.824,0.125,0.47,0,0,0,0,0,0.565 +1,0.824,0.148,0.481,0,0,0,0,0,0.45 +1,0.824,0.166,0.468,0,0,0.579,0.5,0,0.238 +1,0.824,0.184,0.449,0,0,0.502,0,0,0.217 +1,0.824,0.194,0.436,0,0,0.435,0,0,0.0461 +0.667,0.736,0.152,0.305,0,0,0.611,0,0,0.103 +0.667,0.736,0.161,0.307,0,0,0,0,0,0 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0345 +0.667,0.802,0.222,0.367,0.58,0.783,0,0,0,0.103 +0.667,0.841,0.271,0.466,0.537,0,0,0,0,0.276 +1,1,0.537,0.868,0.616,0,0,0,0,0.207 +1,0.98,0.752,0.98,0.605,0,0,0,0,0 +0.667,0.815,0.625,0.625,0.641,0,0,0,0,0.0851 +1,0.863,0.88,0.727,0,0,0,0,0,0.137 +1,0.71,0.36,0.442,0,0,0,0,0,0.166 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0121 +1,0.642,0.0488,0.181,0,0,0,0,0,0.303 +1,0.736,0.127,0.33,0,0,0,0,0,0.595 +1,0.736,0.166,0.337,0,0,0,0,0,0.155 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.103 +0.333,0.649,0.125,0.178,0,0,0,0,0.767,0.172 +0.333,0.649,0.145,0.177,0,0,0,0,0.25,0.0345 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.0345 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.103 +0.667,0.802,0.358,0.367,0.0631,0.0167,0,0,0,0.0345 +0.667,0.841,0.369,0.466,0.646,0.5,0,0,0.5,0.069 +1,1,0.642,0.868,0.561,0,0,0,0,0.0345 +1,0.98,0.845,0.98,0.168,0,0.547,0.5,0,0.069 +1,0.941,0.993,0.913,0.551,0.517,0.878,0,0,0.0345 +1,0.863,0.916,0.727,0.101,0,0.484,0,0,0.0345 +1,0.636,0.205,0.246,0,0,0.0881,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0125 +1,0.623,0.0326,0.15,0,0,0,0,0,0.292 +1,0.642,0.0488,0.181,0,0,0,0,0,0.207 +1,0.736,0.127,0.33,0,0,0,0,0,0.0812 +1,0.824,0.241,0.481,0,0,0,0,0,0.284 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.31 +0.667,0.736,0.216,0.316,0,0,0,0,0.0167,0.227 +0.667,0.736,0.231,0.307,0,0,0,0,0.233,0.0345 +0.667,0.736,0.272,0.305,0,0,0,0,0,0 +0.667,0.736,0.31,0.307,0,0,0,0,0,0.069 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.207 +1,0.922,0.527,0.526,0,0,0,0,0,0.0345 +1,0.98,0.545,0.674,0,0,0,0,0.517,0 +1,1,0.642,0.868,0,0,0,0,0.25,0 +1,0.98,0.845,0.98,0.485,0.517,0,0,0,0 +1,0.941,0.993,0.913,0.341,0.533,0,0,0,0.013 +1,0.863,0.916,0.727,0.437,0.517,0,0,0,0.109 +1,0.636,0.205,0.246,0.286,0.267,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.069 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0671 +1,0.736,0.0889,0.33,0,0,0,0,0,0.151 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.0345 +1,0.824,0.166,0.468,0,0,0,0,0,0.119 +1,0.824,0.184,0.449,0,0,0,0,0,0.0345 +0.667,0.736,0.135,0.307,0,0,0,0,0.5,0.103 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.172 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.069 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.138 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.103 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.123 +0.667,0.854,0.364,0.595,0,0,0,0,0.25,0.0345 +1,0.841,0.507,0.67,0,0,0,0,0,0.103 +1,0.815,0.625,0.625,0,0,0,0,0,0.0345 +1,0.762,0.592,0.501,0,0,0,0,0,0.138 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.123 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0568 +1,0.804,0.102,0.444,0.375,0.517,0,0,0.25,0.218 +0.667,0.736,0.0889,0.33,0.267,0,0,0,0.5,0.103 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.103 +0.667,0.736,0.116,0.328,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0.333,0.172 +0.667,0.736,0.152,0.305,0,0,0,0,0.167,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.069 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.069 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.069 +1,0.841,0.271,0.466,0,0,0,0,0,0.069 +1,0.854,0.364,0.595,0,0,0,0,0,0.0345 +1,0.98,0.752,0.98,0,0,0,0,0,0.069 +1,0.941,0.929,0.913,0,0,0,0,0,0.0634 +1,0.863,0.88,0.727,0,0,0,0,0,0.213 +1,0.784,0.532,0.638,0,0,0,0,0,0.245 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.244 +1,0.649,0.0601,0.193,0,0,0,0,0,0.0807 +1,0.649,0.066,0.189,0,0,0,0,0,0.422 +1,0.649,0.072,0.183,0,0,0,0,0,0.13 +1,0.649,0.0754,0.178,0,0,0,0,0,0.305 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.138 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.207 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0345 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.103 +0.667,0.841,0.271,0.466,0.48,0.517,0,0,0,0.0345 +0.667,0.854,0.364,0.595,0.478,0,0,0,0.583,0.276 +0.667,0.841,0.507,0.67,0.566,0.333,0,0,0.433,0.0345 +0.667,0.688,0.32,0.337,0.492,0.183,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0 +0.667,0.616,0.0874,0.116,0,0,0,0,0,0.069 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.658,0.0241,0.053,0,0,0,0,0,0.512 +1,0.658,0.036,0.116,0,0,0,0,0,0.262 +1,0.684,0.0548,0.251,0,0,0,0,0,0.211 +1,0.804,0.102,0.444,0,0,0,0,0,0.217 +1,0.824,0.125,0.47,0,0,0,0,0,0.242 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.069 +0.667,0.736,0.116,0.328,0,0,0,0,0,0 +1,0.824,0.184,0.449,0,0,0,0,0,0 +1,0.824,0.194,0.436,0,0,0,0,0,0.247 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.552 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0345 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0345 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.069 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.195 +0.667,0.841,0.507,0.67,0,0,0,0,0.25,0.138 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0.0833,0.24 +1,0.642,0.0447,0.181,0,0,0,0,1,0.241 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.967,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.5,0.103 +0.667,0.736,0.152,0.305,0,0,0,0,0,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.103 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0.207 +0.667,0.682,0.119,0.208,0,0,0,0,0,0.345 +0.667,0.841,0.271,0.466,0,0,0,0,0.25,0 +0.667,0.854,0.364,0.595,0.189,0.0833,0,0,0,0.23 +0.667,0.841,0.507,0.67,0.59,0.433,0,0,0,0.0345 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.069 +1,0.784,0.532,0.638,0,0,0,0,0,0.105 +1,0.725,0.23,0.249,0,0,0,0,0,0.0761 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.0223,0.0495,0,0,0,0,0,0.0345 +1,0.61,0.0189,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.046 +1,0.623,0.0326,0.15,0,0,0,0,0,0.25 +1,0.723,0.0794,0.313,0,0,0,0,0,0.31 +1,0.824,0.182,0.47,0,0,0,0,0,0.189 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.654 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.113 +0.667,0.736,0.216,0.316,0,0,0,0,0,0.124 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.21 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.138 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.276 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.138 +0.333,0.701,0.194,0.258,0,0,0,0,0.25,0.21 +1,1,0.642,0.868,0,0,0,0,0,0.17 +1,0.98,0.845,0.98,0,0,0.2,0.5,0,0.0682 +1,0.941,0.993,0.913,0,0,0.648,0,0,0.0747 +1,0.762,0.617,0.501,0,0,0.129,0,0,0.0996 +0.667,0.636,0.205,0.246,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0167,0 +0.667,0.642,0.0488,0.181,0,0,0,0,0.483,0.069 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0.118 +0.333,0.649,0.0923,0.193,0,0,0,0,0,0.443 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.0892 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.336 +0.333,0.649,0.125,0.178,0,0,0,0,0,0 +0.333,0.649,0.145,0.177,0.193,0.267,0,0,0,0.103 +0.333,0.649,0.164,0.178,0.243,0.25,0,0,0,0.0345 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.069 +1,0.922,0.527,0.526,0,0,0,0,0,0.0345 +0.667,0.841,0.369,0.466,0,0,0,0,0,0.103 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.258 +1,0.98,0.845,0.98,0,0,0,0,0,0.335 +1,0.941,0.993,0.913,0,0,0,0,0,0.158 +1,0.762,0.617,0.501,0,0,0,0,0,0.132 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0.333,0 +0.667,0.723,0.0735,0.313,0,0,0,0,0.167,0.107 +0.667,0.736,0.0889,0.33,0,0,0,0,0.25,0.162 +1,0.824,0.148,0.481,0,0,0,0,0,0.216 +1,0.824,0.166,0.468,0,0,0,0,0.767,0.0864 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.276 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.31 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.172 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.0345 +0.667,0.762,0.179,0.322,0,0,0,0,0.767,0.0345 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0345 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.069 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.138 +1,0.98,0.752,0.98,0.321,0.333,0,0,0,0.0345 +1,0.941,0.929,0.913,0.49,0.45,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.069 +1,0.642,0.0447,0.181,0,0,0,0,0,0 +1,0.736,0.0889,0.33,0,0,0,0,0,0 +1,0.824,0.148,0.481,0,0,0,0,0,0.354 +1,0.824,0.166,0.468,0,0,0,0,0,0.19 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.15 +1,0.824,0.194,0.436,0,0,0,0,0,0.161 +1,0.824,0.22,0.432,0,0,0,0,0,0.207 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0.069 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.241 +0.333,0.708,0.19,0.322,0,0,0,0,0,0.103 +1,0.98,0.752,0.98,0,0,0,0,0,0.0345 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.784,0.532,0.638,0,0,0,0,0,0.0345 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.245 +1,0.642,0.0447,0.181,0,0,0,0,0,0.197 +1,0.736,0.0889,0.33,0,0,0,0,0.5,0.0345 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.109 +0.667,0.736,0.116,0.328,0,0,0.467,0.75,0.0833,0.141 +0.667,0.736,0.128,0.316,0,0,0.554,0,0.683,0.112 +0.667,0.736,0.135,0.307,0,0,0.74,0,0,0.069 +1,0.824,0.22,0.432,0,0,0.379,0,0,0.207 +0.667,0.736,0.161,0.307,0,0,0.404,0,0,0.069 +0.667,0.762,0.179,0.322,0,0,0.495,0,0,0.103 +0.667,0.802,0.222,0.367,0,0,0.351,0,0,0.276 +0.667,0.841,0.271,0.466,0,0,0.673,0,0,0.0345 +0.667,0.854,0.364,0.595,0,0,0.716,0,0,0.207 +1,0.98,0.752,0.98,0,0,0.646,0,0,0.0345 +1,0.941,0.929,0.913,0,0,0.364,0,0,0 +1,0.863,0.88,0.727,0,0,0.113,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0.172 +1,0.616,0.0874,0.116,0,0,0,0,0,0.0985 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0562 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0.633,0.229 +1,0.586,0.0396,0.177,0,0,0,0,0.817,0.209 +1,0.621,0.0764,0.318,0,0,0,0,0.233,0.0675 +1,0.651,0.126,0.456,0,0,0,0,0,0.138 +1,0.651,0.142,0.443,0,0,0,0,0,0.0345 +0.667,0.621,0.11,0.3,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0.687,0.483,0,0.0345 +0.667,0.621,0.13,0.289,0,0,0.653,0,0,0.0345 +0.667,0.621,0.137,0.29,0,0,0.503,0,0,0.103 +0.667,0.642,0.153,0.298,0,0,0.415,0,0,0.069 +0.667,0.673,0.19,0.326,0,0,0.338,0,0,0.207 +0.333,0.633,0.124,0.222,0,0,0.607,0,0.133,0.103 +0.667,0.714,0.31,0.507,0,0,0.39,0,0.35,0.103 +1,0.774,0.64,0.895,0,0,0.638,0,0,0 +1,0.744,0.791,0.928,0.108,0.133,0.0769,0,0.633,0 +1,0.682,0.749,0.807,0.586,0.367,0,0,0.0833,0 +1,0.6,0.307,0.35,0.138,0,0,0,0,0.154 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0976 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.292 +1,0.571,0.0316,0.147,0,0,0,0,0.233,0.134 +1,0.611,0.0634,0.305,0,0,0,0,0,0.313 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.161 +0.667,0.591,0.0527,0.185,0,0,0.182,0.633,0,0.0345 +0.667,0.621,0.0997,0.312,0,0,0.358,0.1,0,0.231 +1,0.621,0.11,0.3,0,0,0.464,0,0,0.187 +1,0.621,0.116,0.292,0,0,0.278,0,0.483,0.069 +0.333,0.591,0.073,0.169,0,0,0.53,0,0,0 +0.667,0.621,0.137,0.29,0,0,0.359,0,0,0.0345 +0.667,0.642,0.153,0.298,0,0,0.571,0,0,0.138 +1,0.673,0.19,0.326,0,0,0.46,0,0,0.0345 +0.667,0.704,0.232,0.395,0,0,0.343,0,0,0.0345 +0.667,0.714,0.31,0.507,0,0,0.832,0,0,0 +0.667,0.704,0.432,0.613,0,0,0.227,0,0,0 +1,0.744,0.791,0.928,0,0,0.503,0,0.483,0.069 +1,0.682,0.749,0.807,0,0,0.909,0,0,0.0345 +1,0.62,0.453,0.5,0,0,0.589,0,0,0 +1,0.569,0.136,0.183,0,0,0.317,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0.122 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0636,0.184,0,0,0,0,0.717,0.0345 +0.667,0.621,0.143,0.321,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0.0345 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.138 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.172 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.159 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.262 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.379 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.241 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.103 +0.667,0.714,0.371,0.507,0,0,0,0,0,0 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.0345 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0.0564 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0.141 +1,0.571,0.0295,0.147,0,0,0,0,0,0.152 +1,0.586,0.0433,0.177,0,0,0,0,0,0.216 +1,0.591,0.0636,0.184,0,0,0,0,0,0.311 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.069 +0.333,0.591,0.101,0.175,0,0,0,0,0,0.276 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.138 +0.667,0.621,0.233,0.289,0,0,0,0,0.717,0.241 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.276 +1,0.642,0.291,0.298,0,0,0,0,0,0.0345 +1,0.673,0.305,0.326,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0.233,0.069 +1,0.79,0.547,0.736,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0.235 +1,0.683,0.57,0.635,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.581,0.176,0.2,0,0,0,0,0,0.0996 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0.133,0.0974 +1,0.611,0.0634,0.305,0,0,0,0,0.35,0.107 +1,0.621,0.0764,0.318,0,0,0,0,0.133,0.379 +1,0.651,0.126,0.456,0,0,0,0,0.1,0.203 +1,0.651,0.142,0.443,0,0,0,0,0,0.358 +0.667,0.621,0.11,0.3,0,0,0,0,0.383,0.333 +0.667,0.621,0.116,0.292,0,0,0,0,0.1,0.246 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.133 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.198 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.118 +1,0.728,0.277,0.464,0,0,0,0,0,0.184 +0.667,0.704,0.232,0.395,0.179,0.133,0,0,0,0.103 +1,0.79,0.457,0.736,0.478,0.633,0,0,0,0.103 +1,0.774,0.64,0.895,0.317,0.383,0,0,0.133,0.103 +1,0.744,0.791,0.928,0.636,0.117,0,0,0.35,0.196 +1,0.682,0.749,0.807,0.743,0,0,0,0,0.133 +1,0.6,0.307,0.35,0.158,0,0,0,0,0.107 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.0345 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.241 +1,0.571,0.0316,0.147,0,0,0,0,0.233,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0 +1,0.591,0.0462,0.184,0,0,0,0,0,0.218 +1,0.621,0.0895,0.321,0,0,0,0,0,0.178 +1,0.651,0.142,0.443,0,0,0,0,0,0.0345 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.103 +0.667,0.621,0.116,0.292,0,0,0,0,0.483,0.069 +0.667,0.621,0.13,0.289,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.103 +0.667,0.642,0.153,0.298,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0.069 +1,0.774,0.64,0.895,0,0,0,0,0.233,0.0345 +1,0.744,0.791,0.928,0,0,0,0,0,0.0345 +1,0.642,0.505,0.555,0,0,0,0,0,0.0345 +1,0.6,0.307,0.35,0,0,0,0,0,0.103 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.235 +1,0.635,0.0871,0.433,0.209,0.133,0,0,0,0.105 +0.667,0.621,0.0764,0.318,0.693,0.367,0,0,0,0.186 +1,0.651,0.126,0.456,0.216,0,0,0,0,0.309 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.122 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0995 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.104 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.0345 +0.667,0.621,0.137,0.29,0,0,0,0,0.383,0.203 +0.667,0.642,0.153,0.298,0,0,0,0,0.1,0.326 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.138 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0345 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.069 +0.667,0.704,0.432,0.613,0.487,0.5,0.189,0.383,0,0.111 +0.667,0.683,0.532,0.635,0,0,0.526,0.35,0,0 +1,0.642,0.505,0.555,0,0,0.635,0,0,0 +1,0.581,0.162,0.2,0,0,0.422,0,0,0 +1,0.565,0.0759,0.116,0.586,0.5,0.172,0,0,0.103 +1,0.56,0.0374,0.0743,0.508,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.103 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.103 +1,0.571,0.0316,0.147,0,0,0,0,0,0.0892 +1,0.586,0.0396,0.177,0,0,0,0,0,0.251 +1,0.651,0.107,0.452,0,0,0,0,0.233,0.237 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.182 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0.133,0.207 +0.667,0.621,0.116,0.292,0,0,0,0,0.583,0.103 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.103 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0.0345 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.207 +0.333,0.617,0.103,0.188,0,0,0,0,0.233,0.138 +1,0.774,0.34,0.567,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0,0,0,0,0,0 +0.667,0.633,0.224,0.331,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0.233,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0 +0.667,0.6,0.307,0.35,0,0,0,0,0,0.282 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0874 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0345 +1,0.58,0.0474,0.245,0,0,0,0,0,0.168 +1,0.611,0.0634,0.305,0,0,0,0,0,0.465 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.0345 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.345 +0.667,0.621,0.11,0.3,0,0,0,0,0.133,0 +0.667,0.621,0.116,0.292,0,0,0,0,0.1,0.179 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.236 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.138 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.069 +0.333,0.617,0.103,0.188,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.333,0.638,0.163,0.278,0,0,0,0,0.483,0.069 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.438 +0.333,0.622,0.274,0.342,0,0,0,0,0,0.0345 +0.333,0.602,0.26,0.302,0,0,0,0,0,0 +0.667,0.581,0.162,0.2,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0.233,0.275 +0.667,0.621,0.109,0.318,0,0,0,0,0,0.0809 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.0252 +0.667,0.621,0.169,0.312,0,0,0,0,0,0.28 +0.333,0.591,0.101,0.175,0,0,0,0,0,0.379 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.0345 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.069 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.138 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.207 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.138 +0.667,0.714,0.371,0.507,0,0,0,0,0.967,0.0345 +1,0.774,0.719,0.895,0,0,0,0,0.25,0 +1,0.744,0.845,0.928,0,0,0,0,0,0.16 +1,0.682,0.78,0.807,0,0,0,0,0,0.0492 +1,0.62,0.492,0.5,0,0,0,0,0,0.0975 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.458 +1,0.586,0.0433,0.177,0,0,0,0,0,0.168 +1,0.621,0.109,0.318,0,0,0,0,0,0.0345 +1,0.591,0.0803,0.185,0,0,0,0,0,0.191 +1,0.651,0.244,0.443,0,0,0,0,0,0.329 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.26 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.246 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.255 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.138 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.0345 +1,0.728,0.449,0.464,0,0,0,0,0,0 +1,0.774,0.464,0.567,0,0,0,0,0.467,0.276 +1,0.79,0.547,0.736,0,0,0,0,0.25,0.215 +1,0.774,0.719,0.895,0,0,0,0,0.233,0.0345 +1,0.744,0.845,0.928,0,0,0,0,0,0.121 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0.0768 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.362 +1,0.621,0.0895,0.321,0,0,0,0,0.717,0.0682 +1,0.621,0.0997,0.312,0,0,0,0,0,0.253 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.0466 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.31 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.138 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0345 +1,0.728,0.277,0.464,0,0,0,0,0.233,0.276 +1,0.774,0.34,0.567,0,0,0,0,0,0.138 +1,0.79,0.457,0.736,0,0,0,0,0,0.138 +1,0.774,0.64,0.895,0,0,0,0,0,0.069 +1,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.602,0.26,0.302,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.1 +1,0.611,0.0634,0.305,0.088,0.133,0,0,0,0.235 +0.667,0.591,0.0462,0.184,0.653,0.367,0,0,0,0 +0.667,0.621,0.0895,0.321,0.407,0,0.298,0.633,0,0.241 +0.333,0.591,0.0578,0.181,0,0,0.58,0.6,0,0.138 +0.333,0.591,0.0629,0.175,0,0,0.203,0,0,0.0543 +0.667,0.621,0.116,0.292,0,0,0.45,0,0.633,0 +0.667,0.621,0.13,0.289,0,0,0.428,0,0.333,0.172 +0.667,0.591,0.0767,0.17,0,0,0.0923,0,0,0.276 +0.667,0.602,0.0846,0.174,0,0,0,0,0,0 +0.667,0.617,0.103,0.188,0,0,0,0,0,0.241 +0.667,0.633,0.124,0.222,0,0,0,0,0.133,0.0345 +1,0.714,0.31,0.507,0,0,0,0,0.583,0.0345 +0.667,0.633,0.224,0.331,0,0,0,0,0,0.069 +0.667,0.622,0.274,0.342,0,0,0,0,0,0.0345 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.334 +0.667,0.586,0.0396,0.177,0,0,0,0,0.133,0.163 +1,0.651,0.107,0.452,0,0,0,0,0.1,0.146 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.0345 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.299 +0.667,0.621,0.116,0.292,0,0,0,0,0.633,0.305 +0.667,0.621,0.13,0.289,0,0,0,0,1,0.345 +0.333,0.591,0.0767,0.17,0,0,0,0,1,0 +0.333,0.602,0.0846,0.174,0,0,0,0,1,0.487 +0.667,0.673,0.19,0.326,0,0,0,0,1,0.209 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.365 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.704,0.432,0.613,0,0,0,0,0.717,0.103 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.128 +1,0.682,0.749,0.807,0,0,0,0,0,0.359 +1,0.6,0.307,0.35,0,0,0,0,0,0.0996 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.066 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.14 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0957 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.0974 +1,0.611,0.0634,0.305,0,0,0,0,0,0.389 +1,0.621,0.0764,0.318,0,0,0,0,0,0.148 +0.667,0.621,0.0895,0.321,0,0,0,0,0.233,0.138 +0.667,0.621,0.0997,0.312,0,0,0.242,0.483,0,0.069 +0.667,0.621,0.11,0.3,0,0,0.58,0,0,0.069 +0.667,0.621,0.116,0.292,0,0,0.0042,0,0,0.138 +0.667,0.621,0.13,0.289,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.069 +0.667,0.642,0.153,0.298,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.0345 +0.667,0.704,0.232,0.395,0,0,0,0,0.133,0.138 +0.667,0.714,0.31,0.507,0,0,0,0,0.1,0.103 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.0345 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.0345 +1,0.682,0.749,0.807,0,0,0,0,0,0.0345 +1,0.6,0.307,0.35,0.578,0.5,0.168,0.383,0,0 +1,0.569,0.136,0.183,0.194,0,0.829,0.1,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0629 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0.633,0.187 +1,0.611,0.0634,0.305,0,0,0,0,0.333,0.312 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.333 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.138 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.172 +0.333,0.591,0.073,0.169,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.138 +0.333,0.617,0.103,0.188,0,0,0,0,0.133,0.345 +0.667,0.704,0.232,0.395,0,0,0,0,0.583,0.0345 +0.667,0.714,0.31,0.507,0.472,0.633,0,0,0,0 +0.667,0.704,0.432,0.613,0.694,0.133,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.0345 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.246 +1,0.611,0.0685,0.305,0,0,0,0,0,0.176 +0.667,0.621,0.109,0.318,0,0,0,0,0,0.207 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.0345 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.717,0.069 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.172 +0.333,0.591,0.125,0.169,0,0,0,0,0,0 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.207 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.207 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.103 +0.667,0.704,0.315,0.395,0,0,0,0,0,0 +0.667,0.714,0.371,0.507,0,0,0,0,0,0.103 +1,0.774,0.719,0.895,0,0,0.315,0.467,0,0.0345 +1,0.744,0.845,0.928,0,0,0.15,0.0167,0,0 +1,0.602,0.272,0.302,0,0,0.793,0,0,0 +1,0.581,0.176,0.2,0,0,0.302,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.069 +1,0.621,0.109,0.318,0,0,0,0,0,0.276 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.172 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0.0345 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.138 +1,0.651,0.34,0.409,0,0,0,0,0.233,0.425 +0.667,0.621,0.265,0.29,0,0,0,0,0,0.37 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.241 +0.667,0.673,0.305,0.326,0,0,0,0,0.467,0.103 +0.667,0.704,0.315,0.395,0,0,0,0,0.983,0.172 +1,0.79,0.547,0.736,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0 +1,0.744,0.845,0.928,0.593,0.717,0,0,0,0 +1,0.682,0.78,0.807,0.462,0.817,0,0,0,0 +1,0.581,0.176,0.2,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0.0575 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0.483,0.0571 +1,0.635,0.0871,0.433,0,0,0,0,0,0.107 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.0345 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.207 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.0345 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.138 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.069 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.069 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.103 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.103 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.207 +1,0.79,0.457,0.736,0,0,0,0,0.883,0 +1,0.774,0.64,0.895,0,0,0,0,0.817,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.069 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.0792 +1,0.62,0.453,0.5,0,0,0,0,0,0.0571 +1,0.573,0.196,0.249,0,0,0,0,0,0.254 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0.6,0.5,0,0,0,0 +1,0.571,0.0316,0.147,0.245,0,0.234,0.133,0,0.138 +1,0.611,0.0634,0.305,0,0,0.552,0.35,0,0 +1,0.621,0.0764,0.318,0,0,0.797,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0.38,0.133,0,0.345 +1,0.651,0.142,0.443,0,0,0.502,0.35,0,0.142 +1,0.651,0.157,0.426,0,0,0.456,0,0,0.274 +0.667,0.621,0.116,0.292,0,0,0.778,0,0,0.313 +1,0.651,0.187,0.409,0.111,0.133,0.227,0,0,0.107 +0.667,0.621,0.137,0.29,0.503,0.367,0,0,0.383,0.069 +0.667,0.642,0.153,0.298,0,0,0,0,0.333,0.138 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.138 +0.333,0.638,0.163,0.278,0,0,0,0,0,0.305 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.211 +1,0.744,0.791,0.928,0,0,0,0,0,0.0612 +1,0.642,0.505,0.555,0,0,0,0,0,0.23 +1,0.581,0.162,0.2,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0.233,0.0345 +1,0.586,0.0396,0.177,0,0,0,0,0,0 +1,0.651,0.107,0.452,0.365,0.383,0,0,0,0.097 +0.667,0.621,0.0895,0.321,0.193,1,0,0,0,0.069 +0.667,0.621,0.0997,0.312,0,0.15,0,0,0,0.069 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.069 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.172 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.103 +1,0.651,0.198,0.41,0,0,0,0,0,0 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.103 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.103 +0.333,0.633,0.124,0.222,0,0,0,0,0.233,0.069 +0.333,0.638,0.163,0.278,0,0,0,0,0,0.0345 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.288 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0.0538 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0432 +1,0.571,0.0316,0.147,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.621,0.0764,0.318,0,0,0,0,0,0.362 +1,0.621,0.0895,0.321,0,0,0,0,0,0.274 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.244 +1,0.651,0.157,0.426,0,0,0,0,0,0.257 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.185 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.103 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.103 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.172 +0.667,0.673,0.19,0.326,0.239,0.383,0,0,0,0.241 +0.667,0.704,0.232,0.395,0.404,0.383,0,0,0.383,0.103 +0.333,0.638,0.163,0.278,0,0,0,0,0.333,0.069 +0.333,0.633,0.224,0.331,0.551,0.5,0,0,0,0 +0.333,0.622,0.274,0.342,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0.0931 +1,0.581,0.162,0.2,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.0345 +1,0.559,0.0314,0.114,0,0,0,0,0,0.245 +1,0.58,0.0474,0.245,0,0,0,0,0,0.126 +1,0.611,0.0634,0.305,0,0,0.0685,0.133,0.483,0.0891 +1,0.621,0.0764,0.318,0,0,0.14,0.35,0,0.273 +1,0.651,0.126,0.456,0,0,0,0,0,0.351 +1,0.651,0.142,0.443,0,0,0,0,0,0.154 +1,0.651,0.157,0.426,0,0,0,0,0,0.117 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0345 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.138 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.138 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0345 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.172 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0345 +1,0.79,0.457,0.736,0,0,0,0,0,0.069 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.069 +1,0.642,0.505,0.555,0,0,0,0,0,0.0345 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.196 +0.667,0.586,0.0433,0.177,0,0,0,0,0.483,0.0345 +1,0.621,0.109,0.318,0,0,0,0,0,0 +1,0.621,0.143,0.321,0,0,0,0,0,0 +0.667,0.621,0.169,0.312,0,0,0,0,0,0.0547 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.138 +0.333,0.591,0.108,0.171,0,0,0,0,0.233,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.0345 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.207 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.138 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.103 +0.667,0.704,0.315,0.395,0,0,0,0,0.467,0.069 +1,0.79,0.547,0.736,0,0,0,0,0.5,0.138 +1,0.774,0.719,0.895,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0.225 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.103 +1,0.611,0.0685,0.305,0,0,0,0,0.7,0.255 +0.667,0.621,0.109,0.318,0,0,0,0,0.0167,0 +0.667,0.621,0.143,0.321,0.455,0.467,0,0,0.233,0.069 +0.333,0.591,0.0934,0.181,0.571,0.3,0,0,0,0.241 +0.333,0.591,0.101,0.175,0.392,0,0,0,0,0.103 +0.333,0.591,0.108,0.171,0,0,0,0,0,0 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.069 +0.333,0.591,0.141,0.17,0,0,0,0,0.483,0 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.0345 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.138 +0.333,0.633,0.167,0.222,0,0,0,0,0,0.0345 +0.667,0.714,0.371,0.507,0,0,0.162,0.467,0,0.241 +1,0.774,0.719,0.895,0,0,0.715,0.0167,0,0 +1,0.744,0.845,0.928,0,0,0.531,0,0,0.0345 +1,0.642,0.526,0.555,0,0,0,0,0,0.0365 +1,0.581,0.176,0.2,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0.171 +1,0.621,0.0764,0.318,0,0,0,0,0,0.672 +1,0.651,0.126,0.456,0,0,0.049,0.233,0,0.151 +1,0.651,0.142,0.443,0,0,0,0,0,0.204 +1,0.651,0.157,0.426,0,0,0,0,0,0.169 +1,0.651,0.166,0.413,0,0,0,0,0,0.116 +1,0.651,0.187,0.409,0,0,0,0,0.233,0.0953 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.138 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.103 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.207 +0.667,0.704,0.232,0.395,0,0,0,0,0.233,0.0345 +1,0.79,0.457,0.736,0,0,0,0,0,0.241 +1,0.774,0.64,0.895,0,0,0,0,0,0.0345 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.682,0.749,0.807,0.646,0.5,0,0,0,0.224 +1,0.6,0.307,0.35,0.407,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.193 +1,0.621,0.0764,0.318,0,0,0,0,0,0.23 +1,0.621,0.0895,0.321,0,0,0,0,0,0.0345 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.138 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.0345 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0.103 +0.667,0.591,0.073,0.169,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0345 +0.333,0.617,0.103,0.188,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0.133,0.0805 +1,0.79,0.457,0.736,0,0,0,0,0.35,0.069 +1,0.774,0.64,0.895,0,0,0,0,0,0.207 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.103 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0,0.256 +1,0.591,0.0462,0.184,0,0,0,0,0,0.33 +1,0.621,0.0895,0.321,0,0,0,0,0,0.0968 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.069 +0.333,0.591,0.0629,0.175,0.57,0.5,0,0,0,0.413 +0.667,0.621,0.116,0.292,0.502,0,0,0,0,0.069 +0.667,0.591,0.073,0.169,0.601,0,0,0,0,0.103 +1,0.621,0.137,0.29,0.693,0,0,0,0,0.103 +0.333,0.602,0.0846,0.174,0.748,0,0,0,0,0.103 +0.333,0.617,0.103,0.188,0,0,0,0,0.233,0.172 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.103 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0345 +1,0.774,0.64,0.895,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.0373 +1,0.62,0.453,0.5,0,0,0,0,0,0.0729 +1,0.565,0.0759,0.116,0,0,0,0,0,0.1 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0485 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +1,0.586,0.0396,0.177,0,0,0,0,0.35,0.17 +1,0.621,0.0764,0.318,0,0,0,0,0,0.223 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.19 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.655 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.069 +0.667,0.621,0.116,0.292,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.069 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.069 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.103 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.172 +0.333,0.633,0.124,0.222,0.249,0.133,0.466,0.733,0,0 +0.333,0.638,0.163,0.278,0.653,0.633,0.207,0,0,0.31 +0.333,0.633,0.224,0.331,0.728,0,0,0,0,0.117 +1,0.744,0.791,0.928,0,0,0,0,0,0.258 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0345 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.2 +1,0.571,0.0316,0.147,0,0,0,0,0,0.395 +1,0.611,0.0634,0.305,0,0,0,0,0,0.575 +1,0.621,0.0764,0.318,0,0,0,0,0,0.135 +1,0.621,0.0895,0.321,0,0,0,0,0,0.461 +1,0.651,0.142,0.443,0,0,0.373,0.633,0,0.273 +0.667,0.621,0.11,0.3,0,0,0.327,0.1,0,0.069 +0.333,0.591,0.0658,0.171,0,0,0.47,0,0,0.0345 +0.667,0.621,0.13,0.289,0,0,0.571,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.103 +0.333,0.602,0.0846,0.174,0,0,0,0,0.233,0.069 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0.133,0 +0.333,0.638,0.163,0.278,0,0,0,0,0.583,0 +0.333,0.633,0.224,0.331,0,0,0,0,0.383,0 +1,0.744,0.791,0.928,0,0,0,0,0.1,0 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.051,0,0,0,0,0,0.172 +1,0.56,0.0223,0.0816,0,0,0,0,0,0.069 +1,0.571,0.0295,0.147,0,0,0,0,0,0.103 +1,0.586,0.0433,0.177,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0.0345 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0931 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.214 +0.333,0.591,0.101,0.175,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.069 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.103 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.069 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.069 +0.333,0.617,0.162,0.188,0,0,0.285,0.467,0,0.172 +0.667,0.704,0.315,0.395,0,0,0.586,0.0167,0,0 +1,0.79,0.547,0.736,0,0,0.362,0,0,0.138 +1,0.704,0.485,0.613,0,0,0.101,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0.103 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0.133 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0798,0,0,0,0,0,0.0781 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.273 +1,0.609,0.069,0.295,0,0,0,0,0,0.357 +1,0.648,0.156,0.427,0,0,0,0,0,0.34 +1,0.648,0.206,0.424,0,0,0,0,0,0.277 +0.667,0.619,0.17,0.291,0,0,0,0,0,0.295 +0.667,0.619,0.186,0.279,0,0,0,0,0.683,0.2 +0.333,0.59,0.109,0.16,0,0,0,0,1,0.0345 +0.333,0.59,0.126,0.159,0,0,0,0,1,0 +0.333,0.59,0.142,0.159,0,0,0,0,1,0.31 +0.333,0.601,0.156,0.159,0,0,0,0,0.8,0.0345 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.0345 +0.333,0.631,0.168,0.17,0,0,0,0,0,0.069 +1,0.787,0.551,0.484,0.159,0.183,0,0,0.233,0.207 +1,0.771,0.725,0.619,0.359,0.3,0.306,0.433,0,0.069 +1,0.741,0.852,0.783,0,0,0.485,0.85,0,0.0345 +0.667,0.64,0.53,0.603,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0.115 +0.667,0.565,0.0875,0.116,0,0,0,0,0,0.0504 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.288 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0124 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0797 +1,0.57,0.0318,0.143,0,0,0,0,0,0.418 +1,0.585,0.0399,0.172,0,0,0,0,0,0.242 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0.0345 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0.211 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0.069 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.138 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.276 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.138 +1,0.787,0.461,0.484,0,0,0,0,0.233,0.241 +1,0.771,0.646,0.619,0,0,0,0,0,0.131 +1,0.741,0.797,0.783,0,0,0,0,0,0.187 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0.0851 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.138 +1,0.557,0.0155,0.0495,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.619,0.077,0.301,0,0,0.27,0.25,0,0.0942 +0.667,0.619,0.0902,0.299,0,0,0.12,0,0,0.158 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.116 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +0.333,0.59,0.0735,0.159,0,0,0,0,0.133,0.207 +1,0.619,0.139,0.268,0,0,0,0,0.567,0.0345 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.103 +0.667,0.671,0.191,0.274,0,0,0.715,0.883,0,0.0345 +0.667,0.701,0.234,0.291,0,0,0.551,0.4,0,0.276 +0.667,0.712,0.313,0.339,0,0,0.491,0,0,0 +0.667,0.701,0.436,0.429,0,0,0.687,0,0,0.103 +1,0.741,0.797,0.783,0,0,0.473,0,0,0.0345 +1,0.679,0.756,0.88,0,0,0.789,0,0,0.242 +1,0.58,0.163,0.232,0,0,0.652,0,0,0.0345 +1,0.565,0.0765,0.116,0,0,0.455,0,0,0.103 +1,0.56,0.0377,0.0743,0,0,0.648,0,0,0 +1,0.56,0.0238,0.0578,0,0,0.334,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.281,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.103 +1,0.585,0.0399,0.172,0,0,0,0,0,0 +1,0.619,0.077,0.301,0,0,0.189,0.383,0,0.347 +1,0.648,0.127,0.424,0,0,0.708,0.383,0,0.432 +0.333,0.59,0.0582,0.17,0,0,0.302,0,0,0.345 +0.333,0.59,0.0633,0.164,0,0,0.351,0,0,0.241 +0.333,0.59,0.0662,0.16,0,0,0.403,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0.323,0,0,0.0345 +0.333,0.59,0.0772,0.159,0,0,0.622,0,0,0.103 +0.333,0.601,0.0853,0.159,0,0,0.523,0,0,0.103 +0.667,0.671,0.191,0.274,0.588,0.633,0.58,0,0,0.172 +0.667,0.701,0.234,0.291,0.269,0.1,0.817,0,0,0 +0.667,0.712,0.313,0.339,0,0,0.358,0,0,0.069 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.256,0.383,0,0,0,0.0345 +1,0.679,0.756,0.88,0.588,0.1,0,0,0,0 +1,0.58,0.163,0.232,0.515,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.0345 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.138 +1,0.585,0.0399,0.172,0,0,0,0,0,0.203 +0.667,0.59,0.0465,0.175,0,0,0,0,0.383,0.222 +0.667,0.619,0.0902,0.299,0,0,0,0,0.317,0 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.069 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.0345 +0.333,0.59,0.0662,0.16,0,0,0,0,0.133,0.138 +0.667,0.619,0.131,0.269,0,0,0,0,0.333,0.103 +0.667,0.619,0.139,0.268,0.648,0.483,0,0,0.133,0 +0.667,0.64,0.155,0.269,0.219,0,0,0,0.333,0.172 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.069 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.149 +0.333,0.637,0.164,0.194,0,0,0,0,0,0.069 +0.333,0.631,0.226,0.239,0,0,0,0,0,0.0345 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.0558 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.172 +0.667,0.599,0.31,0.415,0,0,0,0,0,0.0972 +0.667,0.568,0.137,0.183,0,0,0,0,0,0.281 +0.667,0.56,0.0377,0.0743,0,0,0,0,0,0.053 +1,0.557,0.0316,0.066,0,0,0,0,0,0.204 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.187 +1,0.585,0.0399,0.172,0,0,0,0,0,0.069 +1,0.619,0.077,0.301,0,0,0,0,0.133,0 +1,0.619,0.0902,0.299,0,0,0,0,0.8,0 +1,0.619,0.1,0.291,0.131,0.133,0,0,0,0 +1,0.619,0.111,0.279,0.5,0.35,0.262,0.383,0,0.138 +1,0.648,0.167,0.382,0,0,0.456,0.9,0.883,0.342 +1,0.648,0.189,0.378,0,0,0.422,0,1,0.164 +1,0.648,0.2,0.378,0,0,0,0,0.467,0.521 +0.667,0.64,0.155,0.269,0,0,0.109,0.133,0,0.172 +0.667,0.616,0.104,0.162,0,0,0.593,0.383,0,0.069 +0.667,0.701,0.234,0.291,0,0,0.394,0,0,0.069 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.103 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.11 +0.667,0.681,0.537,0.538,0.472,0.483,0,0,0,0.142 +1,0.679,0.756,0.88,0.507,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0.233,0.069 +1,0.619,0.11,0.301,0,0,0,0,0,0.138 +0.333,0.59,0.0809,0.174,0,0,0,0,0,0.103 +0.667,0.619,0.17,0.291,0,0,0,0,0,0.0345 +0.667,0.619,0.186,0.279,0,0,0,0,0.467,0.28 +0.667,0.619,0.199,0.271,0,0,0,0,0.467,0.138 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.0345 +0.667,0.619,0.267,0.268,0,0,0,0,0,0.138 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.379 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.103 +0.667,0.701,0.318,0.291,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0.0649 +1,0.741,0.852,0.783,0,0,0,0,0,0.0543 +1,0.64,0.53,0.603,0,0,0,0,0,0.1 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.568,0.157,0.183,0,0,0,0,0,0.0844 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.56,0.0209,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.557,0.0222,0.0518,0,0,0,0,0,0.372 +1,0.557,0.0265,0.11,0,0,0,0,0,0.483 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0.346 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0.268 +0.667,0.619,0.11,0.301,0,0,0,0,0,0.234 +0.667,0.619,0.144,0.299,0,0,0,0,0,0.069 +0.667,0.619,0.17,0.291,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.069 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.138 +0.667,0.701,0.318,0.291,0,0,0,0,0,0 +0.667,0.712,0.374,0.339,0,0,0,0,0,0.069 +1,0.771,0.725,0.619,0,0,0,0,0,0.0345 +0.667,0.681,0.574,0.538,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0.141 +1,0.599,0.337,0.415,0.427,0.683,0,0,0,0.216 +1,0.565,0.0875,0.116,0.252,0.05,0,0,0,0.231 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.116 +1,0.578,0.0478,0.236,0,0,0,0,0,0.138 +1,0.609,0.0639,0.295,0.0864,0.133,0,0,0,0.276 +0.667,0.619,0.077,0.301,0.648,0.35,0,0,0,0.138 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.13 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.0345 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.138 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.103 +0.667,0.619,0.131,0.269,0,0,0,0,0.233,0.069 +1,0.648,0.2,0.378,0,0,0,0,0,0.103 +1,0.679,0.224,0.379,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0345 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.103 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.276 +1,0.771,0.646,0.619,0,0,0,0,0.467,0 +1,0.741,0.797,0.783,0.0963,0.133,0,0,0,0 +1,0.679,0.756,0.88,0.389,0.35,0,0,0,0.0345 +1,0.599,0.31,0.415,0,0,0,0,0,0.0671 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.201 +1,0.609,0.0639,0.295,0,0,0,0,0,0.296 +1,0.619,0.077,0.301,0,0,0,0,0,0.43 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.275 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.125 +0.667,0.619,0.111,0.279,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.069 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.069 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.138 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.0345 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.069 +1,0.771,0.646,0.619,0,0,0,0,0,0.103 +1,0.741,0.797,0.783,0,0,0,0,0,0.069 +1,0.679,0.756,0.88,0,0,0,0,0.133,0 +1,0.599,0.31,0.415,0,0,0,0,0.333,0 +0.667,0.565,0.0765,0.116,0,0,0,0,0,0 +0.667,0.56,0.0377,0.0743,0,0,0,0,0,0 +0.667,0.56,0.0238,0.0578,0,0,0,0,0,0 +0.667,0.56,0.0172,0.0495,0,0,0,0,0,0.103 +0.667,0.56,0.0157,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0.284 +1,0.648,0.108,0.427,0,0,0,0,0,0.208 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.343 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.138 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.138 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.0345 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.0345 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.069 +0.667,0.64,0.155,0.269,0,0,0,0,0.467,0.069 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0345 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.0755 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.138 +0.667,0.64,0.509,0.603,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.1 +1,0.57,0.0318,0.143,0,0,0,0,0,0.157 +1,0.609,0.0639,0.295,0,0,0,0,0,0 +1,0.619,0.077,0.301,0,0,0,0,0,0.069 +1,0.619,0.0902,0.299,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0.133,0.0345 +0.667,0.619,0.111,0.279,0,0,0,0,0.1,0.276 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.0345 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.138 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0.467,0.103 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.172 +1,0.771,0.343,0.412,0,0,0,0,0,0.069 +0.667,0.712,0.313,0.339,0,0,0,0,0,0 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0.467,0.116 +1,0.617,0.457,0.597,0,0,0,0,0,0.107 +1,0.565,0.0765,0.116,0,0,0,0,0,0.247 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.172 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.103 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.103 +1,0.57,0.0318,0.143,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0.133,0.154 +0.667,0.619,0.077,0.301,0,0,0,0,0.8,0.306 +1,0.648,0.127,0.424,0,0,0,0,0,0.103 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0.0345 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.0345 +0.667,0.619,0.117,0.271,0,0,0,0,0.633,0.069 +0.333,0.59,0.0735,0.159,0,0,0,0,0.0667,0.172 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.241 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0345 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +1,0.787,0.461,0.484,0,0,0,0,0.133,0.0345 +1,0.771,0.646,0.619,0,0,0,0,0.333,0 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.617,0.457,0.597,0,0,0,0,0,0 +1,0.571,0.198,0.249,0,0,0,0,0,0.0547 +1,0.557,0.0705,0.099,0.0864,0.183,0,0,0,0 +1,0.56,0.0282,0.0578,0.623,0.3,0,0,0,0.0345 +1,0.56,0.0209,0.0495,0.651,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +1,0.59,0.0809,0.174,0,0,0.0839,0.183,0,0.0345 +0.667,0.562,0.0181,0.0495,0,0,0.0727,0.0667,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0482 +0.667,0.619,0.199,0.271,0,0,0.466,0.433,0,0.207 +0.667,0.619,0.234,0.269,0,0,0.266,0.0833,0,0.276 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.241 +0.333,0.601,0.156,0.159,0,0,0,0,0,0 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.196 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.103 +0.667,0.712,0.374,0.339,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.0345 +1,0.741,0.852,0.783,0,0,0,0,0,0.0478 +1,0.64,0.53,0.603,0,0,0,0,0,0.353 +1,0.599,0.337,0.415,0,0,0,0,0,0.363 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.0619 +1,0.648,0.156,0.427,0,0,0,0,0,0.442 +1,0.648,0.206,0.424,0.51,0.483,0,0,0,0.365 +0.667,0.619,0.17,0.291,0.555,0,0,0,0,0.0742 +0.333,0.59,0.102,0.164,0.605,0,0,0,0,0.103 +0.333,0.59,0.109,0.16,0.439,0,0,0,0,0.207 +0.333,0.59,0.126,0.159,0.404,0,0,0,0,0.241 +0.333,0.59,0.142,0.159,0,0,0,0,0,0 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.214 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.395 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.359 +0.333,0.637,0.196,0.194,0,0,0,0,0,0.106 +0.667,0.701,0.489,0.429,0,0,0,0,0.183,0.183 +1,0.741,0.852,0.783,0,0,0,0,0.283,0 +1,0.679,0.786,0.88,0,0,0,0,0,0.138 +1,0.58,0.178,0.232,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.138 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.0345 +0.667,0.619,0.0902,0.299,0,0,0.101,0.133,0,0.241 +0.667,0.619,0.1,0.291,0,0,0.343,0.383,0,0.069 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.13,0.133,0,0,0,0.132 +0.667,0.619,0.131,0.269,0.578,0.35,0,0,0,0.233 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.118 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0964 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.273 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.269 +0.667,0.712,0.313,0.339,0.133,0.133,0,0,0,0.314 +0.667,0.701,0.436,0.429,0.664,0.6,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.103 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.0345 +1,0.609,0.0639,0.295,0,0,0,0,0,0.193 +1,0.648,0.108,0.427,0,0,0,0,0,0.488 +1,0.648,0.127,0.424,0,0,0,0,0,0.138 +0.667,0.619,0.1,0.291,0.593,0.483,0.214,0.383,0,0 +0.667,0.619,0.111,0.279,0.319,0,0.669,0.133,0,0.069 +0.667,0.619,0.117,0.271,0,0,0.411,0,0,0.0345 +0.667,0.619,0.131,0.269,0,0,0.291,0,0,0.069 +0.667,0.619,0.139,0.268,0,0,0.645,0,0,0.069 +0.667,0.64,0.155,0.269,0,0,0.585,0,0,0.103 +0.667,0.671,0.191,0.274,0,0,0.464,0,0,0.0345 +0.667,0.701,0.234,0.291,0,0,0,0,0.883,0.172 +0.333,0.637,0.164,0.194,0,0,0,0,0.683,0.069 +0.667,0.701,0.436,0.429,0,0,0,0,0.0667,0.0345 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0399,0.172,0,0,0,0,0,0.0992 +1,0.59,0.0465,0.175,0,0,0,0,0,0.216 +0.667,0.59,0.053,0.174,0,0,0,0,0.633,0.128 +0.667,0.619,0.1,0.291,0,0,0,0,1,0 +0.667,0.619,0.111,0.279,0,0,0,0,0.717,0.0345 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.235 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.166 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.15 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.241 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.204 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.103 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.069 +1,0.681,0.537,0.538,0,0,0,0,0,0.069 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.111 +1,0.648,0.108,0.427,0,0,0,0,0.383,0.299 +1,0.648,0.127,0.424,0,0,0,0,0.55,0.316 +1,0.648,0.143,0.411,0,0,0,0,0,0.121 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.103 +0.667,0.619,0.117,0.271,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0.674,0.483,0,0,0,0.138 +0.667,0.619,0.139,0.268,0.11,0,0.0392,0.383,0.233,0.103 +0.667,0.64,0.155,0.269,0,0,0.628,0.383,0,0.0345 +0.667,0.671,0.191,0.274,0,0,0.306,0,0,0 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.069 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0345 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +1,0.741,0.797,0.783,0.734,0.733,0,0,0,0.161 +1,0.64,0.509,0.603,0.171,0,0,0,0,0.084 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.59,0.0465,0.175,0,0,0,0,0,0.341 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +0.667,0.619,0.1,0.291,0,0,0,0,0.233,0.138 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.103 +0.667,0.619,0.117,0.271,0.689,0.733,0,0,0,0 +0.667,0.619,0.131,0.269,0.42,0,0,0,0,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.103 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.138 +1,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.637,0.164,0.194,0,0,0,0,0,0.0345 +1,0.771,0.646,0.619,0.467,0.633,0,0,0,0.159 +1,0.741,0.797,0.783,0.583,0.1,0,0,0,0.0115 +0.667,0.64,0.509,0.603,0,0,0,0,0,0.0345 +0.667,0.599,0.31,0.415,0,0,0,0,0,0.0896 +0.667,0.568,0.137,0.183,0,0,0,0,0,0.0777 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.0506,0,0,0,0,0,0.489 +1,0.557,0.0265,0.11,0,0,0,0,0,0.129 +0.333,0.57,0.0297,0.143,0,0,0,0,0,0.38 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.069 +0.333,0.59,0.0641,0.175,0,0,0,0,0,0.0345 +0.333,0.59,0.0809,0.174,0,0,0,0,0,0.254 +0.333,0.59,0.0941,0.17,0,0,0,0,0,0.159 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.0345 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.138 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.0345 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.0345 +0.333,0.631,0.168,0.17,0,0,0,0,0,0.0345 +0.667,0.712,0.374,0.339,0.125,0.183,0,0,0,0.207 +1,0.771,0.725,0.619,0.439,0.55,0,0,0,0.069 +1,0.741,0.852,0.783,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0.069 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.0345 +1,0.619,0.11,0.301,0,0,0,0,0,0.0376 +1,0.648,0.206,0.424,0,0,0,0,0.183,0.138 +0.333,0.59,0.0941,0.17,0,0,0,0,0.05,0.0345 +0.333,0.59,0.102,0.164,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.0345 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.069 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.165 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.469 +0.333,0.631,0.168,0.17,0,0,0,0,0,0.0345 +1,0.787,0.551,0.484,0,0,0,0,0.467,0 +1,0.771,0.725,0.619,0,0,0,0,0,0.138 +1,0.741,0.852,0.783,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0.0345 +1,0.58,0.178,0.232,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0903 +1,0.609,0.0639,0.295,0,0,0,0,0,0.134 +1,0.648,0.108,0.427,0,0,0,0,0,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.138 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.619 +0.667,0.619,0.111,0.279,0,0,0.0238,0.383,0,0.0345 +0.333,0.59,0.0662,0.16,0,0,0,0.383,0,0.103 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.241 +0.667,0.619,0.139,0.268,0,0,0,0,0,0 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.069 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.103 +0.667,0.701,0.234,0.291,0.799,0.733,0,0,0,0.069 +0.667,0.712,0.313,0.339,0.699,0,0,0,0,0.172 +0.667,0.701,0.436,0.429,0.532,0,0,0,0,0 +0.667,0.681,0.537,0.538,0.616,0,0,0,0,0.241 +1,0.679,0.756,0.88,0.757,0,0,0,0,0.113 +1,0.599,0.31,0.415,0,0,0,0,0,0.0794 +1,0.568,0.137,0.183,0,0,0,0,0,0.244 +1,0.557,0.0595,0.099,0,0,0,0,0,0.0247 +1,0.557,0.0316,0.066,0,0,0,0,0,0.0345 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.0345 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.344 +1,0.619,0.077,0.301,0,0,0,0,0,0.156 +1,0.619,0.0902,0.299,0,0,0,0,0,0.211 +1,0.619,0.1,0.291,0,0,0,0,0,0.117 +1,0.648,0.158,0.394,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.103 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.069 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.069 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.329 +0.667,0.671,0.191,0.274,0,0,0,0,0.233,0.238 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.069 +1,0.771,0.646,0.619,0,0,0,0,0,0.172 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0.0903 +1,0.617,0.457,0.597,0,0,0,0,0,0.0692 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0519 +1,0.585,0.0399,0.172,0,0,0,0,0,0.069 +1,0.619,0.077,0.301,0,0,0,0,0,0.246 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.188 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0.172 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0.241 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.411 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.349 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.103 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.103 +0.667,0.631,0.125,0.17,0,0,0,0,0,0.0345 +0.667,0.637,0.164,0.194,0,0,0,0,0,0 +0.667,0.631,0.226,0.239,0.613,0.483,0.178,0.133,0,0.069 +1,0.681,0.537,0.538,0.683,0,0.593,0.633,0,0 +1,0.64,0.509,0.603,0.121,0,0,0,0,0.0345 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.0936 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.0911 +1,0.585,0.0399,0.172,0,0,0,0,0.133,0 +1,0.619,0.077,0.301,0,0,0,0,0.1,0.119 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.4 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.675 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.102 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.333 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.138 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.379 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.448 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.069 +0.667,0.701,0.234,0.291,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.138 +1,0.771,0.646,0.619,0,0,0,0,0,0.0345 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0.16 +1,0.648,0.108,0.427,0,0,0,0,0.633,0 +0.667,0.619,0.0902,0.299,0,0,0.645,0.517,0.3,0.0345 +0.667,0.619,0.1,0.291,0.133,0.133,0.572,0,0.233,0.0345 +1,0.648,0.158,0.394,0.392,0.6,0.594,0,0.467,0.414 +1,0.648,0.167,0.382,0,0,0.677,0,0,0.391 +1,0.648,0.189,0.378,0,0,0.488,0,0,0.464 +1,0.648,0.2,0.378,0,0,0.366,0,0,0.0345 +0.667,0.64,0.155,0.269,0,0,0.0839,0,0,0.069 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.069 +0.667,0.701,0.234,0.291,0.513,0.633,0,0,0,0 +0.667,0.712,0.313,0.339,0.462,0.85,0.343,0.517,0,0.103 +0.333,0.631,0.226,0.239,0,0,0.129,0,0,0.207 +0.667,0.681,0.537,0.538,0,0,0.315,0,0.233,0 +1,0.679,0.756,0.88,0,0,0.564,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0.138 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0.14 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.609,0.069,0.295,0.0864,0.183,0,0,0.683,0.233 +1,0.648,0.156,0.427,0.729,0.3,0,0,0.0167,0.246 +1,0.648,0.206,0.424,0,0,0,0,0,0.112 +1,0.648,0.246,0.411,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.207 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.103 +0.333,0.59,0.126,0.159,0,0,0.246,0.517,0,0.103 +0.667,0.59,0.142,0.159,0,0,0.471,0,0,0.069 +0.667,0.601,0.156,0.159,0,0,0.552,0,0,0.0345 +0.667,0.671,0.308,0.274,0,0,0.411,0,0,0.207 +0.667,0.701,0.318,0.291,0,0,0.287,0,0,0.103 +1,0.787,0.551,0.484,0.0864,0.183,0.0811,0,0,0.069 +1,0.771,0.725,0.619,0.387,0.55,0,0,0,0.0345 +1,0.681,0.574,0.538,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0.0964 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.578,0.0412,0.236,0,0,0,0,0.683,0.069 +0.667,0.585,0.0436,0.172,0,0,0,0,0.0167,0.103 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.207 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.0345 +0.333,0.59,0.0941,0.17,0,0,0,0,0,0.138 +0.333,0.59,0.102,0.164,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0.477,0.733,0,0,0,0.103 +0.667,0.619,0.267,0.268,0,0,0,0,0,0.151 +0.667,0.64,0.293,0.269,0,0,0,0,0,0.227 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.138 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.0345 +1,0.787,0.551,0.484,0.548,0.683,0,0,0.467,0 +1,0.771,0.725,0.619,0.684,0.05,0,0,0,0.172 +1,0.681,0.574,0.538,0.286,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0.213 +1,0.58,0.178,0.232,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.121 +1,0.609,0.0639,0.295,0,0,0,0,0,0.456 +1,0.648,0.108,0.427,0,0,0,0,0,0.294 +0.667,0.619,0.0902,0.299,0,0,0.343,0.517,0,0.128 +0.333,0.59,0.0582,0.17,0,0,0.645,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.456,0,0,0.0345 +0.667,0.619,0.117,0.271,0,0,0.424,0,0.633,0.103 +0.667,0.619,0.131,0.269,0.141,0.133,0.411,0,0.783,0.138 +0.667,0.619,0.139,0.268,0.533,0.35,0,0,0,0.0714 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0976 +0.333,0.616,0.104,0.162,0,0,0,0,0.133,0.408 +0.333,0.631,0.125,0.17,0,0,0,0,0.333,0.276 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.069 +0.333,0.631,0.226,0.239,0,0,0,0,0.233,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0 +0.667,0.64,0.509,0.603,0,0,0,0,0,0 +0.667,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0.133,0.394 +1,0.651,0.107,0.404,0,0,0,0,0.1,0.383 +1,0.651,0.126,0.392,0,0,0,0,0,0.069 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.172 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.125 +0.333,0.591,0.0658,0.15,0,0,0,0,0.383,0.269 +0.333,0.591,0.073,0.149,0,0,0,0,0.333,0.069 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0 +1,0.682,0.222,0.349,0,0,0,0,0,0.138 +1,0.728,0.277,0.353,0,0,0,0,0,0.069 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +0.333,0.638,0.163,0.173,0,0,0,0,0.233,0.069 +0.333,0.633,0.224,0.207,0.625,0.483,0,0,0.383,0 +0.667,0.683,0.532,0.464,0,0,0.662,0.883,1,0.172 +0.667,0.642,0.505,0.549,0,0,0.453,0.383,1,0 +1,0.6,0.307,0.405,0,0,0.382,0,1,0 +1,0.565,0.0759,0.116,0,0,0.322,0,1,0.127 +1,0.56,0.0374,0.0743,0,0,0,0,0.2,0.0389 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.138 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0.467,0.103 +1,0.611,0.0634,0.284,0,0,0,0,0,0.526 +1,0.651,0.107,0.404,0,0,0,0,0,0.234 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.138 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.069 +0.667,0.621,0.13,0.249,0.239,0.383,0,0,0,0.103 +0.667,0.621,0.137,0.249,0.251,0.333,0,0,0,0.0345 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0.0345 +0.667,0.617,0.103,0.151,0,0,0,0,0.633,0.138 +0.667,0.633,0.124,0.157,0,0,0,0,1,0.0345 +0.667,0.714,0.31,0.296,0,0,0,0,1,0 +0.667,0.704,0.432,0.365,0,0,0,0,1,0 +1,0.744,0.791,0.671,0.0864,0.133,0,0,0.95,0 +1,0.682,0.749,0.799,0.51,0.35,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.183 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.0614 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.069 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.069 +0.667,0.621,0.11,0.259,0.578,0.483,0.0839,0.133,0,0.207 +0.667,0.621,0.116,0.251,0.128,0,0.366,0.367,0,0.276 +0.667,0.621,0.13,0.249,0,0,0.597,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0.51,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0.467,0.207 +0.333,0.617,0.103,0.151,0,0,0,0,0.133,0.069 +0.667,0.704,0.232,0.264,0.289,0.383,0,0,0.1,0.0345 +0.667,0.714,0.31,0.296,0.435,0.1,0,0,0,0.069 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.622,0.274,0.257,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0.222 +1,0.565,0.0759,0.116,0,0,0,0,0,0.197 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.333,0 +1,0.586,0.0396,0.167,0,0,0,0,0,0.0345 +1,0.621,0.0764,0.286,0,0,0,0,0,0.408 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.226 +0.667,0.621,0.0997,0.27,0.568,0.483,0,0,0,0.103 +0.667,0.621,0.11,0.259,0.507,0,0,0,0,0.31 +0.667,0.621,0.116,0.251,0.274,0,0,0,0.883,0 +0.667,0.621,0.13,0.249,0,0,0,0,0.317,0.168 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.316 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.214 +0.667,0.673,0.19,0.252,0,0,0,0,0.133,0.203 +0.667,0.704,0.232,0.264,0,0,0,0,0.817,0.172 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.069 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0.407,0.383,0,0.102 +1,0.565,0.0759,0.116,0,0,0.262,0.117,0,0.0127 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.0503,0,0,0,0,0,0.31 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.0345 +1,0.571,0.0295,0.139,0,0,0,0,0,0 +0.667,0.586,0.0433,0.167,0,0,0,0,0,0.207 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0 +0.333,0.591,0.0803,0.164,0,0,0,0,0,0.513 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.233,0.215 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.0345 +0.333,0.591,0.125,0.149,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.172 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.638,0.194,0.173,0,0,0,0,0,0 +0.667,0.704,0.485,0.365,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0 +0.667,0.642,0.526,0.549,0,0,0,0,0,0.0458 +0.667,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0.0965,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.133,0 +0.667,0.621,0.143,0.278,0,0,0,0,0.817,0.0345 +0.667,0.621,0.169,0.27,0,0,0,0,0,0.0345 +0.667,0.621,0.185,0.259,0,0,0,0,0,0 +1,0.621,0.198,0.251,0,0,0,0,0,0.241 +1,0.621,0.233,0.249,0,0,0,0,0,0.241 +0.667,0.591,0.141,0.149,0,0,0,0,0,0.138 +0.667,0.602,0.154,0.149,0.573,0.483,0,0,0,0.207 +0.667,0.673,0.305,0.252,1,0,0,0,0,0.0345 +1,0.774,0.464,0.371,0.394,0,0,0,0,0.0345 +1,0.79,0.547,0.42,0.61,0,0,0,0,0.598 +1,0.774,0.719,0.523,0.588,0,0,0,0,0.364 +1,0.744,0.845,0.671,0.706,0,0,0,0,0.0731 +1,0.642,0.526,0.549,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.204 +1,0.611,0.0634,0.284,0,0,0,0,0,0.207 +1,0.651,0.107,0.404,0.586,0.717,0,0,0.233,0.102 +1,0.651,0.126,0.392,0.839,0,0,0,0,0.213 +1,0.651,0.142,0.381,0,0,0,0,0,0.138 +1,0.651,0.157,0.364,0,0,0,0,0.633,0.069 +1,0.651,0.166,0.352,0,0,0,0,0.0833,0.242 +1,0.651,0.187,0.349,0,0,0,0,0,0.211 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0.133,0.103 +0.333,0.633,0.124,0.157,0,0,0,0,1,0.138 +0.667,0.714,0.31,0.296,0,0,0,0,0.55,0.207 +0.667,0.704,0.432,0.365,0,0,0,0,0.133,0.069 +1,0.744,0.791,0.671,0,0,0,0,0.467,0 +1,0.682,0.749,0.799,0,0,0,0,1,0 +1,0.581,0.162,0.227,0,0,0,0,0.0667,0.0608 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.207 +0.667,0.591,0.0527,0.164,0,0,0,0,0.133,0.103 +0.667,0.621,0.0997,0.27,0,0,0,0,0.1,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.333,0.5,0.133,0.069 +0.667,0.621,0.13,0.249,0,0,0.334,0,0.1,0.241 +0.667,0.621,0.137,0.249,0,0,0.487,0,0,0.069 +0.667,0.642,0.153,0.249,0,0,0.67,0,0,0.0345 +0.667,0.673,0.19,0.252,0,0,0.519,0,0,0.069 +0.667,0.704,0.232,0.264,0,0,0.415,0,0,0.0345 +0.667,0.714,0.31,0.296,0.0748,0.133,0.58,0,0,0.0345 +0.667,0.704,0.432,0.365,0.279,0.583,0.378,0,0,0 +0.333,0.622,0.274,0.257,0,0,0,0,0,0.172 +0.667,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.62,0.453,0.582,0,0,0,0,0,0.0929 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.128 +1,0.571,0.0316,0.139,0,0,0,0,0,0.348 +1,0.611,0.0634,0.284,0,0,0,0,0.133,0.34 +0.667,0.591,0.0462,0.168,0,0,0,0,0.1,0.069 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.241 +0.667,0.621,0.0997,0.27,0,0,0,0,0.633,0 +0.667,0.621,0.11,0.259,0,0,0,0,0.0833,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.103 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.0345 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.138 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.0345 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0345 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.0345 +0.667,0.714,0.31,0.296,0,0,0,0,0.633,0 +0.667,0.704,0.432,0.365,0.673,0.883,0,0,0.567,0.0998 +1,0.744,0.791,0.671,0.166,0.567,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.62,0.453,0.582,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.103 +1,0.611,0.0634,0.284,0,0,0,0,0,0.12 +1,0.621,0.0764,0.286,0,0,0,0,0,0.298 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.132 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.383 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0315 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.168 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.379 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.379 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.667,0.633,0.124,0.157,0,0,0,0,0,0.138 +0.667,0.714,0.31,0.296,0,0,0,0,0.383,0 +1,0.774,0.64,0.523,0,0,0,0,0.333,0 +1,0.744,0.791,0.671,0,0,0.317,0.5,0,0.0345 +1,0.642,0.505,0.549,0,0,0,0,0,0.0949 +1,0.6,0.307,0.405,0,0,0,0,0,0.0506 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0695 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.265 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.0792 +1,0.611,0.0634,0.284,0,0,0,0,0,0.241 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.103 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.0345 +1,0.651,0.142,0.381,0,0,0,0,0,0.231 +1,0.651,0.157,0.364,0,0,0,0,0,0.108 +1,0.651,0.166,0.352,0,0,0,0,0.467,0.128 +1,0.651,0.187,0.349,0,0,0,0,0,0.0128 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.276 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.138 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.241 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.241 +0.667,0.714,0.31,0.296,0.509,0.483,0,0,0.633,0 +0.667,0.704,0.432,0.365,0.0656,0,0,0,0.0833,0.0345 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.128 +0.667,0.602,0.26,0.299,0,0,0,0,0,0.0653 +0.667,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.169 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0179,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.883,0.272 +0.667,0.591,0.0934,0.16,0,0,0,0,0.55,0.366 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0.246,0.383,0,0.138 +0.667,0.621,0.233,0.249,0,0,0.362,0.117,0,0.138 +0.667,0.621,0.265,0.249,0,0,0.347,0,0,0.379 +0.667,0.642,0.291,0.249,0,0,0.341,0,0,0.0345 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.332 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.251 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.0345 +0.667,0.704,0.485,0.365,0,0,0,0,0.233,0 +1,0.744,0.845,0.671,0,0,0.4,0.383,0,0 +1,0.682,0.78,0.799,0,0,0.508,0.117,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0818 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.227 +1,0.571,0.0295,0.139,0,0,0,0,0.133,0.0996 +1,0.635,0.0937,0.402,0.663,0.717,0,0,1,0.0985 +1,0.651,0.155,0.404,0.596,0,0,0,0.55,0.215 +0.667,0.621,0.143,0.278,0.324,0,0,0,0,0.138 +0.667,0.621,0.169,0.27,0,0,0,0,0,0.103 +0.667,0.621,0.185,0.259,0,0,0,0,0,0.203 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.0721 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.193 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.138 +0.667,0.642,0.291,0.249,0,0,0,0,0,0 +1,0.728,0.449,0.353,0,0,0,0,0,0.103 +1,0.774,0.464,0.371,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0.0345 +1,0.774,0.719,0.523,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0.411 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.161 +1,0.591,0.0462,0.168,0,0,0,0,0,0.0606 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.262 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.299 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.328 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.382 +0.667,0.591,0.073,0.149,0,0,0,0,0,0.172 +0.667,0.591,0.0767,0.149,0,0,0,0,0,0 +0.667,0.602,0.0846,0.149,0,0,0.194,0.133,0,0.0345 +0.667,0.617,0.103,0.151,0,0,0.666,0.367,0,0.138 +0.667,0.704,0.232,0.264,0,0,0.428,0,0,0.207 +1,0.79,0.457,0.42,0,0,0.295,0,0,0.0345 +0.667,0.704,0.432,0.365,0,0,0.745,0,0.233,0.0345 +1,0.744,0.791,0.671,0,0,0.52,0,0,0.069 +1,0.682,0.749,0.799,0,0,0.558,0,0,0 +1,0.6,0.307,0.405,0,0,0.476,0,0,0.0723 +1,0.569,0.136,0.183,0,0,0.508,0,0,0 +1,0.559,0.059,0.099,0,0,0.35,0,0,0 +1,0.56,0.0236,0.0578,0,0,0.622,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.47,0,0,0.207 +1,0.56,0.0157,0.0495,0,0,0.617,0,0,0.138 +1,0.56,0.0186,0.0503,0,0,0.201,0,0,0.0345 +1,0.56,0.0236,0.0781,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.191 +1,0.586,0.0396,0.167,0,0,0,0,0,0.317 +1,0.591,0.0462,0.168,0,0,0,0,0,0.162 +1,0.651,0.126,0.392,0,0,0,0,0,0.076 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.138 +1,0.651,0.166,0.352,0,0,0,0,0,0.069 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.069 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.069 +0.667,0.642,0.153,0.249,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.103 +1,0.774,0.34,0.371,0,0,0,0,0,0.069 +0.667,0.714,0.31,0.296,0,0,0,0,0.233,0.0345 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0.633,0.0345 +1,0.6,0.307,0.405,0,0,0,0,0.0833,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.106 +1,0.571,0.0316,0.139,0,0,0,0,0,0.222 +1,0.586,0.0396,0.167,0,0,0,0,0,0.305 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.069 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0.181,0.133,0,0,0,0.103 +0.667,0.591,0.0658,0.15,0.654,0.35,0,0,0,0 +0.667,0.591,0.073,0.149,0.154,0,0,0,0,0.0345 +0.667,0.591,0.0767,0.149,0,0,0,0,0,0.0345 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.172 +0.667,0.673,0.19,0.252,0,0,0.0923,0.133,0,0 +0.667,0.704,0.232,0.264,0,0,0.313,1,0.133,0.069 +0.667,0.714,0.31,0.296,0,0,0.413,0.133,0.333,0.311 +0.667,0.704,0.432,0.365,0,0,0.58,0,0,0.103 +0.667,0.683,0.532,0.464,0,0,0.625,0,0,0.0595 +1,0.682,0.749,0.799,0,0,0.579,0,0,0.0438 +1,0.62,0.453,0.582,0,0,0.404,0,0,0.0814 +1,0.569,0.136,0.183,0,0,0.271,0,0,0.211 +1,0.559,0.059,0.099,0,0,0,0,0,0.161 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0642 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0.233,0.332 +1,0.589,0.0632,0.317,0,0,0,0,0.133,0.069 +1,0.635,0.0871,0.402,0,0,0,0,0.1,0.295 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.409 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.243 +0.667,0.621,0.0997,0.27,0,0,0,0,0.133,0.123 +0.667,0.621,0.11,0.259,0,0,0.249,0.5,0.333,0.103 +0.667,0.621,0.116,0.251,0,0,0.634,0,0,0 +0.667,0.621,0.13,0.249,0,0,0.625,0,0,0.31 +0.667,0.621,0.137,0.249,0,0,0.515,0,0,0 +0.667,0.642,0.153,0.249,0,0,0.498,0,0.633,0.103 +0.667,0.673,0.19,0.252,0,0,0.306,0,0.0833,0 +0.667,0.704,0.232,0.264,0,0,0.101,0,0,0.241 +0.667,0.714,0.31,0.296,0,0,0,0,0.233,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0345 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.0345 +0.667,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0.392,0.383,0,0,0.883,0.069 +1,0.586,0.0396,0.167,0.558,0.333,0,0,1,0.129 +1,0.591,0.0462,0.168,0,0,0,0,1,0.0581 +0.667,0.591,0.0527,0.164,0,0,0,0,1,0.0345 +0.667,0.621,0.0997,0.27,0,0,0.214,0.133,0.217,0 +0.667,0.621,0.11,0.259,0,0,0.4,0.117,0,0 +1,0.651,0.166,0.352,0,0,0.509,0,0.633,0.069 +1,0.651,0.187,0.349,0,0,0.221,0,0.467,0 +1,0.651,0.198,0.348,0,0,0,0,0.567,0.345 +1,0.682,0.222,0.349,0,0,0,0,0,0.103 +1,0.728,0.277,0.353,0,0,0,0,0,0.069 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.069 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0.069 +1,0.642,0.505,0.549,0,0,0,0,0,0.0842 +1,0.6,0.307,0.405,0.0864,0.133,0,0,0.233,0.218 +1,0.569,0.136,0.183,0.716,0.583,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.376 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.281 +1,0.571,0.0295,0.139,0,0,0,0,0.133,0.347 +1,0.611,0.0685,0.284,0,0,0,0,0.333,0.372 +1,0.621,0.109,0.286,0,0,0,0,0,0.22 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.069 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.0345 +0,0.562,0.0181,0.0495,0,0,0,0,0.383,0.103 +0.667,0.621,0.233,0.249,0,0,0,0,0.0833,0.0345 +0.667,0.621,0.265,0.249,0.643,0.483,0,0,0,0.31 +0.667,0.642,0.291,0.249,0.209,0,0,0,0,0.0345 +1,0.728,0.449,0.353,0,0,0,0,0,0.0345 +1,0.774,0.464,0.371,0,0,0,0,0,0 +1,0.79,0.547,0.42,0,0,0,0,0,0.0345 +1,0.774,0.719,0.523,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0.069 +0.667,0.642,0.526,0.549,0,0,0,0,0,0 +0.667,0.6,0.334,0.405,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0.307,0,0,0,0,0.071 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.094 +1,0.591,0.0636,0.168,0,0,0,0,0.133,0.415 +0.667,0.621,0.143,0.278,0,0,0,0,0.1,0.171 +0.667,0.621,0.169,0.27,0,0,0,0,0.467,0.0345 +0.667,0.621,0.185,0.259,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.0345 +0.667,0.621,0.233,0.249,0,0,0,0,0,0.069 +1,0.651,0.388,0.348,0,0,0,0,0,0.103 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.069 +0.667,0.617,0.162,0.151,0,0,0,0,0,0.629 +1,0.774,0.464,0.371,0,0,0,0,0.467,0.211 +1,0.79,0.547,0.42,0,0,0,0,0,0.207 +1,0.774,0.719,0.523,0.359,0.483,0,0,0,0.105 +1,0.744,0.845,0.671,0.547,0,0,0,0,0.0903 +1,0.682,0.78,0.799,0.233,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +1,0.611,0.0634,0.284,0,0,0,0,0.817,0.376 +1,0.621,0.0764,0.286,0,0,0,0,0,0.316 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.306 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0.207 +0.667,0.591,0.073,0.149,0,0,0,0,0,0.0345 +0.667,0.591,0.0767,0.149,0,0,0,0,0,0.103 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.069 +0.667,0.673,0.19,0.252,0,0,0,0,0.633,0.069 +0.667,0.704,0.232,0.264,0,0,0,0,0.567,0.069 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0.138 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.207 +1,0.56,0.0236,0.0781,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.103 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.324 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.31 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.103 +0.333,0.591,0.0578,0.16,0,0,0.15,0.133,0,0 +0.667,0.621,0.11,0.259,0,0,0.632,0.367,0,0 +0.667,0.621,0.116,0.251,0,0,0.255,0,0,0.069 +0.667,0.621,0.13,0.249,0,0,0.587,0,0,0.0345 +0.667,0.621,0.137,0.249,0,0,0.474,0,0,0.0345 +1,0.682,0.222,0.349,0,0,0.547,0,0,0.069 +0.667,0.673,0.19,0.252,0,0,0.389,0,0,0.103 +0.667,0.704,0.232,0.264,0,0,0.382,0,0,0.0345 +1,0.79,0.457,0.42,0,0,0.399,0,0,0.138 +0.667,0.704,0.432,0.365,0,0,0.375,0,0.233,0.144 +1,0.744,0.791,0.671,0,0,0.484,0,0,0.0564 +1,0.682,0.749,0.799,0,0,0.394,0,0,0 +1,0.6,0.307,0.405,0,0,0.527,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.144 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.081 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.0345 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.138 +0.667,0.621,0.13,0.249,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0.201,0.5,0,0.138 +0.333,0.602,0.0846,0.149,0,0,0.596,0,0,0.207 +0.667,0.673,0.19,0.252,0,0,0.306,0,0,0.069 +0.333,0.633,0.124,0.157,0,0,0,0,0.133,0.138 +0.333,0.638,0.163,0.173,0,0,0,0,0.333,0.0345 +0.667,0.704,0.432,0.365,0.512,0.717,0.235,0.133,0,0.13 +1,0.744,0.791,0.671,0.608,0,0.566,0.367,0,0.277 +0.667,0.642,0.505,0.549,0.538,0,0.474,0,0,0 +0.667,0.581,0.162,0.227,0,0,0.499,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.317,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0.24 +1,0.651,0.107,0.404,0.503,0.483,0,0,0,0.17 +1,0.651,0.126,0.392,0.289,0,0,0,0,0.406 +1,0.621,0.0997,0.27,0,0,0,0,0,0.289 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.387 +1,0.651,0.166,0.352,0,0,0,0,0,0.179 +0.667,0.591,0.073,0.149,0,0,0,0,0,0.0345 +0.667,0.591,0.0767,0.149,0,0,0,0,0,0.241 +0.333,0.602,0.0846,0.149,0.427,0.633,0.283,0.383,0,0.172 +0.667,0.617,0.103,0.151,0.243,0.0833,0.491,0.117,0,0.0345 +0.667,0.633,0.124,0.157,0,0,0.459,0,0,0.0345 +0.667,0.638,0.163,0.173,0,0,0.291,0,0,0 +0.667,0.633,0.224,0.207,0,0,0.611,0,0,0 +0.667,0.622,0.274,0.257,0,0,0.305,0,0,0.0345 +0.667,0.602,0.26,0.299,0,0,0,0,0,0.0986 +0.667,0.581,0.162,0.227,0,0,0,0,0,0.283 +1,0.565,0.0759,0.116,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0.133,0.102 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0.397 +0.333,0.591,0.0462,0.168,0,0,0,0,0.783,0.172 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.069 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.0345 +0.667,0.621,0.11,0.259,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0.256,0.383,0,0,0,0.207 +0.667,0.621,0.13,0.249,0.525,0.333,0,0,0,0.103 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.069 +0.333,0.602,0.0846,0.149,0,0,0.113,0.133,0,0.069 +0.667,0.673,0.19,0.252,0,0,0.401,0.367,0,0.172 +0.667,0.704,0.232,0.264,0,0,0.415,0,0,0 +0.667,0.714,0.31,0.296,0,0,0.664,0,0,0 +0.667,0.704,0.432,0.365,0,0,0.364,0,0,0 +0.667,0.683,0.532,0.464,0,0,0.503,0,0,0.069 +1,0.682,0.749,0.799,0,0,0.607,0,0,0 +0.667,0.6,0.307,0.405,0,0,0.403,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.069 +1,0.621,0.109,0.286,0,0,0,0,0,0.243 +0.333,0.591,0.0803,0.164,0,0,0,0,0,0.191 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.138 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.172 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.172 +0.333,0.591,0.125,0.149,0,0,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.238,0.25,0,0.103 +0.667,0.642,0.291,0.249,0,0,0.499,0,0,0 +0.667,0.673,0.305,0.252,0,0,0.354,0,0,0.069 +1,0.774,0.464,0.371,0,0,0.47,0,0,0.0345 +1,0.79,0.547,0.42,0,0,0.408,0,0,0 +1,0.774,0.719,0.523,0,0,0.144,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0.117 +1,0.6,0.334,0.405,0,0,0,0,0,0.14 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.156 +1,0.651,0.155,0.404,0,0,0,0,0.133,0.134 +1,0.651,0.205,0.392,0,0,0,0,1,0.261 +1,0.651,0.244,0.381,0,0,0,0,0.2,0.297 +0.667,0.621,0.185,0.259,0,0,0,0,0.583,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0.069 +0.667,0.621,0.233,0.249,0,0,0,0,0,0 +1,0.621,0.265,0.249,0,0,0,0,0.133,0.069 +1,0.642,0.291,0.249,0,0,0,0,1,0 +0.667,0.673,0.305,0.252,0,0,0,0,0.3,0.138 +0.667,0.633,0.167,0.157,0,0,0,0,0.133,0.0345 +0.667,0.638,0.194,0.173,0,0,0,0,1,0.31 +1,0.704,0.485,0.365,0.0864,0.133,0,0,0.0667,0.172 +1,0.744,0.845,0.671,0.326,0.35,0.0685,0.133,0.133,0.0129 +1,0.682,0.78,0.799,0,0,0.601,0.367,0.1,0.289 +1,0.62,0.492,0.582,0,0,0,0,0,0.0847 +1,0.569,0.156,0.183,0,0,0,0,0,0.307 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.0877 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0786 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.069 +1,0.586,0.0396,0.167,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0.633,0.069 +1,0.651,0.126,0.392,0,0,0,0,0.0833,0.178 +1,0.651,0.142,0.381,0,0,0,0,0,0.0874 +1,0.651,0.157,0.364,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.103 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.207 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0345 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.31 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.069 +0.333,0.633,0.124,0.157,0,0,0,0,0.133,0.069 +0.667,0.714,0.31,0.296,0,0,0,0,1,0.0345 +0.667,0.704,0.432,0.365,0,0,0,0,0.0667,0.0853 +1,0.744,0.791,0.671,0,0,0,0,0,0.0918 +1,0.682,0.749,0.799,0,0,0,0,0,0.121 +1,0.62,0.453,0.582,0.784,0.717,0,0,0,0 +1,0.569,0.136,0.183,0.467,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.103 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.138 +1,0.571,0.0316,0.139,0,0,0,0,0,0.138 +1,0.586,0.0396,0.167,0,0,0,0,0,0.277 +1,0.651,0.107,0.404,0,0,0,0,0,0.127 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.18 +0.333,0.591,0.0578,0.16,0.171,0.133,0,0,0,0.069 +0.333,0.591,0.0629,0.154,0.645,0.35,0,0,0,0 +0.333,0.591,0.0658,0.15,0.561,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.667,0.591,0.0767,0.149,0,0,0,0,0.1,0.138 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0345 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0345 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +0.333,0.622,0.274,0.257,0,0,0,0,0,0.103 +0.667,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0.467,0.241 +1,0.611,0.0634,0.284,0,0,0.246,0.25,0,0.173 +0.667,0.621,0.0764,0.286,0,0,0.396,0,0,0.0725 +0.667,0.621,0.0895,0.278,0,0,0.565,0,0.883,0 +0.667,0.621,0.0997,0.27,0,0,0.197,0,0.55,0.0345 +0.333,0.591,0.0629,0.154,0,0,0.0643,0,0,0.0345 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.138 +0.333,0.591,0.073,0.149,0,0,0,0,0.133,0.069 +0.333,0.591,0.0767,0.149,0,0,0,0,0.333,0.241 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.207 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.069 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.0345 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0345 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0.277,0.383,0,0,0,0.069 +1,0.682,0.749,0.799,0.312,0.333,0,0,0,0.099 +1,0.62,0.453,0.582,0,0,0,0,0,0.0462 +1,0.569,0.136,0.183,0,0,0,0,0,0.195 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.331 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0.633,0 +0.667,0.591,0.0462,0.168,0,0,0.266,0.75,0.0833,0 +0.667,0.591,0.0527,0.164,0,0,0.421,0,0,0.0345 +0.667,0.621,0.0997,0.27,0,0,0.366,0,0,0.135 +0.667,0.621,0.11,0.259,0,0,0.497,0,0,0.343 +0.667,0.621,0.116,0.251,0,0,0.722,0,0,0 +0.333,0.591,0.073,0.149,0,0,0.306,0,0,0.103 +0.333,0.591,0.0767,0.149,0,0,0.347,0,0,0.069 +0.333,0.602,0.0846,0.149,0,0,0,0,0.233,0.345 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.069 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0.133,0.197 +1,0.774,0.64,0.523,0,0,0.217,0.633,0.583,0.207 +1,0.744,0.791,0.671,0,0,0.469,0.117,0,0 +1,0.682,0.749,0.799,0,0,0.571,0,0,0 +1,0.6,0.307,0.405,0,0,0.618,0,0,0.0345 +1,0.565,0.0759,0.116,0,0,0.519,0,0,0 +1,0.529,0.0383,0.0743,0,0,0.201,0,0,0.114 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0.237 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.124 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.232 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.212 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.215 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.197 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.276 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0345 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.345 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.0345 +0.333,0.594,0.168,0.161,0,0,0,0,0.467,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.207 +1,0.516,0.468,0.557,0,0,0,0,0,0 +1,0.477,0.203,0.249,0,0,0,0,0,0.144 +1,0.497,0.0721,0.099,0,0,0,0,0,0.0842 +1,0.529,0.0286,0.0578,0,0,0,0,0,0.0345 +1,0.529,0.0211,0.0495,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0.241 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.555,0.0654,0.162,0,0,0,0,0,0.0345 +0.667,0.548,0.147,0.263,0,0,0,0,0,0.181 +0.667,0.548,0.174,0.256,0,0,0,0,0,0.104 +0.667,0.548,0.191,0.245,0,0,0,0,0,0.0556 +0.667,0.548,0.204,0.237,0,0,0.568,0.25,0,0.294 +0.667,0.548,0.24,0.235,0,0,0.39,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.883,0.103 +0.333,0.564,0.159,0.142,0,0,0,0,0.05,0.276 +0.333,0.576,0.167,0.144,0,0,0,0,0,0.0345 +0.333,0.589,0.172,0.148,0,0,0.15,0.383,0,0.0345 +1,0.658,0.565,0.384,0,0,0.503,0.367,0,0.103 +1,0.645,0.743,0.467,0,0,0.48,0,0,0.0345 +1,0.619,0.873,0.595,0,0,0.126,0,0,0 +1,0.564,0.281,0.275,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.192 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.102 +1,0.538,0.0301,0.136,0,0,0,0,0.133,0.47 +1,0.54,0.0706,0.277,0,0,0,0,0.8,0.437 +0.667,0.548,0.113,0.274,0,0,0,0,0.133,0.393 +0.667,0.548,0.147,0.263,0,0,0,0,0.1,0.0959 +0.667,0.548,0.174,0.256,0,0,0,0,0,0.37 +0.333,0.555,0.104,0.147,0,0,0,0,0,0.0345 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.0345 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.207 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.0345 +0.667,0.591,0.315,0.238,0,0,0,0,0.633,0.229 +1,0.645,0.479,0.345,0,0,0,0,0.55,0.172 +1,0.658,0.565,0.384,0,0,0,0,0,0.172 +1,0.645,0.743,0.467,0,0,0,0,0,0.0345 +1,0.619,0.873,0.595,0,0,0,0,0,0.14 +1,0.566,0.543,0.501,0,0,0,0,0,0.168 +1,0.546,0.182,0.219,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0.0345 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.548,0.0788,0.274,0,0,0,0,0,0.103 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.0792 +0.667,0.548,0.103,0.256,0,0,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.138 +0.667,0.548,0.119,0.237,0,0,0,0,0.467,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.172 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.172 +0.667,0.566,0.158,0.235,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.276 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.103 +0.667,0.626,0.32,0.273,0.709,0.7,0,0,0,0.0345 +0,0.562,0.0159,0.0495,0.164,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0868 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0642 +1,0.551,0.0406,0.163,0,0,0,0,0.133,0.575 +0.333,0.555,0.0473,0.162,0,0,0,0,0.333,0.0803 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0345 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0345 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.138 +0.333,0.555,0.0676,0.143,0,0,0,0,0.883,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0.3,0.241 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.172 +0.667,0.566,0.158,0.235,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.138 +0.333,0.589,0.128,0.148,0,0,0,0,0.133,0.138 +1,0.658,0.473,0.384,0,0,0,0,0.567,0 +1,0.645,0.662,0.467,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.226 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0 +1,0.551,0.0406,0.163,0,0,0,0,0,0.138 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.132 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0122 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.103 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.069 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.138 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0345 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.138 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.138 +1,0.645,0.351,0.345,0,0,0,0,0,0.069 +1,0.658,0.473,0.384,0,0,0,0,0,0.153 +1,0.645,0.662,0.467,0,0,0,0,0,0.293 +1,0.6,0.55,0.413,0,0,0,0,0,0.245 +1,0.566,0.521,0.501,0,0,0.15,0.383,0,0.138 +1,0.531,0.317,0.388,0,0,0.636,0.117,0,0.0951 +1,0.533,0.0781,0.116,0,0,0.555,0,0,0 +1,0.529,0.0383,0.0743,0,0,0.808,0,0,0 +1,0.529,0.0241,0.0578,0,0,0.583,0,0,0 +1,0.529,0.0173,0.0495,0,0,0.483,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.555,0.0473,0.162,0,0,0,0,0,0.38 +0.667,0.555,0.0541,0.156,0,0,0,0,0,0.103 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.069 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.0345 +0.667,0.548,0.119,0.237,0,0,0,0,0.233,0.207 +0.667,0.548,0.134,0.235,0.478,0.467,0,0,0,0.345 +1,0.542,0.205,0.327,0.334,0,0,0,0,0.0345 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.241 +0.333,0.576,0.106,0.144,0,0,0,0,0,0 +0.333,0.589,0.128,0.148,0,0,0.362,0.5,0,0 +0.667,0.626,0.32,0.273,0,0,0.375,0,0,0.0814 +0.333,0.589,0.231,0.189,0,0,0.484,0,0,0.135 +1,0.619,0.817,0.595,0,0,0.309,0,0,0.166 +1,0.568,0.774,0.726,0,0,0.674,0,0,0.0951 +1,0.516,0.468,0.557,0,0,0.189,0,0,0.18 +1,0.533,0.0781,0.116,0,0,0.313,0,0,0.153 +1,0.529,0.0383,0.0743,0,0,0.305,0,0,0.103 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.0129 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.0345 +1,0.538,0.0323,0.136,0,0,0,0,0,0 +1,0.529,0.09,0.39,0,0,0,0,0,0.261 +0.667,0.548,0.0788,0.274,0,0,0.173,0.25,0,0.126 +0.667,0.548,0.0923,0.263,0,0,0.129,0,0.383,0.194 +0.667,0.548,0.103,0.256,0,0,0,0,0.0833,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.0345 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.069 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.138 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.53 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.299 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.21 +0.667,0.617,0.239,0.247,0.628,0.633,0,0,0.233,0.138 +0.667,0.626,0.32,0.273,0.528,0.0667,0,0,0,0.138 +0.667,0.617,0.446,0.328,0.498,0.383,0,0,0,0.0345 +1,0.619,0.817,0.595,0.452,0.317,0.495,0.5,0,0 +1,0.566,0.521,0.501,0,0,0.635,0,0,0.167 +1,0.546,0.167,0.219,0,0,0.27,0,0,0 +1,0.533,0.0781,0.116,0,0,0.389,0,0,0 +1,0.529,0.0451,0.0743,0,0,0.565,0,0,0 +1,0.529,0.0286,0.0578,0,0,0.117,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +1,0.551,0.0444,0.163,0,0,0,0,0,0.0345 +1,0.548,0.113,0.274,0,0,0,0,0,0.304 +0.667,0.548,0.147,0.263,0,0,0,0,0,0.114 +0.667,0.548,0.174,0.256,0,0,0,0,0,0.069 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.138 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.069 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.103 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.172 +0.667,0.566,0.3,0.235,0,0,0,0,0.383,0.0345 +0.667,0.591,0.315,0.238,0,0,0.193,0.383,0.317,0.138 +0.667,0.617,0.326,0.247,0,0,0.392,0.117,0,0.069 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.069 +1,0.645,0.743,0.467,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0.204 +1,0.568,0.806,0.726,0,0,0,0,0,0.103 +1,0.516,0.509,0.557,0,0,0,0,0,0.129 +1,0.533,0.0894,0.116,0,0,0.133,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.675 +1,0.54,0.0706,0.277,0,0,0,0,0,0.421 +1,0.542,0.16,0.387,0,0,0,0,0.133,0.168 +0.667,0.548,0.147,0.263,0,0,0,0,0.567,0.18 +0.333,0.555,0.0961,0.153,0,0,0,0,0,0.207 +0.333,0.555,0.104,0.147,0,0,0,0,0,0.069 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.0345 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.207 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.0345 +0.333,0.564,0.159,0.142,0,0,0,0,0,0 +0.333,0.576,0.167,0.144,0.676,0.7,0.0322,0.133,0,0.103 +0.667,0.617,0.326,0.247,0.203,0,0.558,0.367,0,0.128 +1,0.658,0.565,0.384,0,0,0.291,0,0,0.103 +1,0.645,0.743,0.467,0,0,0.572,0,0,0 +1,0.619,0.873,0.595,0.714,0.467,0.242,0,0,0.0345 +1,0.568,0.806,0.726,0.65,0,0.439,0,0,0 +0.667,0.531,0.345,0.388,0,0,0.58,0,0,0.144 +0.667,0.533,0.0894,0.116,0,0,0.488,0,0,0 +1,0.529,0.0383,0.0743,0,0,0.271,0,0,0.0971 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0485 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.0345 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.138 +1,0.529,0.09,0.39,0,0,0,0,0.133,0 +0.667,0.548,0.0788,0.274,0,0,0,0,0.333,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.069 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0345 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.138 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.138 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.069 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.276 +0.333,0.564,0.0871,0.142,0,0,0.12,0.133,0,0.172 +0.333,0.576,0.106,0.144,0,0,0.443,0.367,0,0.0345 +0.333,0.589,0.128,0.148,0,0,0.234,0,0,0.069 +0.333,0.594,0.168,0.161,0,0,0.503,0,0,0.069 +0.667,0.617,0.446,0.328,0,0,0.842,0,0.633,0 +0.667,0.6,0.55,0.413,0,0,0.459,0,0.0667,0.0345 +0.667,0.566,0.521,0.501,0,0,0.424,0,0,0 +0.667,0.546,0.167,0.219,0,0,0.262,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.237 +1,0.551,0.0406,0.163,0,0,0,0,0.383,0.113 +0.667,0.548,0.0788,0.274,0,0,0,0,0.55,0.455 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.162 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.069 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.172 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.16 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.379 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.172 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0345 +1,0.606,0.286,0.332,0,0,0,0,0.383,0 +1,0.645,0.351,0.345,0,0,0,0,0.317,0.0345 +1,0.658,0.473,0.384,0.434,0.467,0,0,0.233,0.0345 +1,0.645,0.662,0.467,0.794,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0.369,0.383,0,0,0,0 +1,0.531,0.317,0.388,0.214,0.317,0,0,0,0.0677 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0601 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.138 +1,0.551,0.0406,0.163,0,0,0,0,0,0.184 +1,0.542,0.11,0.387,0,0,0,0,0,0.069 +1,0.542,0.131,0.37,0,0,0,0,0,0.069 +1,0.542,0.146,0.359,0,0,0,0,0,0.102 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.24 +0.333,0.555,0.0676,0.143,0,0,0,0,0.467,0.103 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.069 +0.667,0.548,0.142,0.235,0,0,0.221,0.5,0,0.103 +0.667,0.566,0.158,0.235,0.111,0.133,0.394,0,0,0.103 +0.667,0.591,0.196,0.238,0.734,0.567,0.355,0,0,0.172 +0.667,0.617,0.239,0.247,0,0,0.0448,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.0345 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.0725 +1,0.619,0.817,0.595,0,0,0,0,0,0.164 +1,0.566,0.521,0.501,0,0,0,0,0,0.103 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0963 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.194 +1,0.551,0.0406,0.163,0,0,0,0,0,0.103 +1,0.542,0.11,0.387,0,0,0,0,0,0.343 +1,0.542,0.131,0.37,0,0,0,0,0.633,0.125 +0.667,0.548,0.103,0.256,0,0,0,0,0.0667,0.069 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.0345 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0345 +0.333,0.555,0.0751,0.142,0,0,0.29,0.5,0,0.0345 +0.667,0.548,0.142,0.235,0,0,0,0,0.233,0.069 +1,0.566,0.158,0.235,0,0,0,0,0,0.138 +1,0.606,0.286,0.332,0,0,0,0,0,0.103 +1,0.645,0.351,0.345,0,0,0,0,0,0.069 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.103 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.125 +1,0.516,0.468,0.557,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0.133,0.152 +1,0.54,0.0653,0.277,0,0,0,0,0.567,0.283 +1,0.542,0.11,0.387,0,0,0,0,0.133,0.294 +0.667,0.548,0.0923,0.263,0.244,0.383,0,0,0.567,0.163 +0.667,0.548,0.103,0.256,0.437,0.317,0,0,0,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.276 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.172 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.276 +0.667,0.566,0.158,0.235,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.103 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.207 +0.333,0.594,0.168,0.161,0,0,0,0,0,0.138 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0.194 +1,0.566,0.521,0.501,0,0,0,0,0,0.0895 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.133,0 +1,0.529,0.0203,0.05,0,0,0,0,0.1,0.0345 +1,0.529,0.0226,0.0768,0,0,0,0,0.633,0.241 +1,0.538,0.0301,0.136,0,0,0,0,0.0667,0.138 +1,0.551,0.0444,0.163,0,0,0,0,0.633,0.0345 +1,0.548,0.113,0.274,0,0,0,0,0.0667,0.227 +1,0.542,0.212,0.37,0,0,0,0,0,0.244 +1,0.542,0.252,0.359,0,0,0,0,0,0.13 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0.252,0.383,0,0,0.233,0.31 +0.667,0.548,0.24,0.235,0.231,0.0833,0.366,0.383,0,0 +1,0.542,0.401,0.327,0,0,0.459,0.117,0,0.0345 +1,0.568,0.441,0.328,0,0,0.169,0,0,0 +1,0.591,0.315,0.238,0,0,0.52,0,0,0.241 +1,0.617,0.326,0.247,0,0,0.568,0,0,0.207 +1,0.658,0.565,0.384,0,0,0.488,0,0,0.0345 +1,0.645,0.743,0.467,0,0,0.347,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0.098 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0511 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0868 +1,0.551,0.0444,0.163,0,0,0,0,0,0.0875 +0.667,0.548,0.113,0.274,0,0,0,0,0,0.492 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0.386 +0.333,0.555,0.0961,0.153,0,0,0,0,0,0.284 +0.333,0.555,0.104,0.147,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.633,0.138 +0.667,0.548,0.24,0.235,0,0,0,0,0.3,0 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.069 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.207 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.138 +1,0.645,0.479,0.345,0,0,0,0,0,0.0345 +1,0.658,0.565,0.384,0,0,0,0,0,0 +1,0.645,0.743,0.467,0,0,0,0,0,0.0345 +1,0.619,0.873,0.595,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0.181 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.207 +1,0.542,0.131,0.37,0,0,0,0,0,0.349 +0.667,0.548,0.103,0.256,0,0,0,0,0.133,0.182 +0.667,0.548,0.113,0.245,0,0,0,0,0.1,0.0345 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.172 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.138 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.0345 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.172 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.379 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.069 +0.667,0.594,0.168,0.161,0,0,0,0,0.133,0.0345 +0.667,0.617,0.446,0.328,0,0,0,0,0.567,0.17 +1,0.6,0.55,0.413,0,0,0,0,0,0.0345 +1,0.566,0.521,0.501,0,0,0,0,0,0.0345 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.0345 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0647 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.103 +0.333,0.555,0.0646,0.147,0.495,0.633,0,0,0,0.172 +0.667,0.548,0.119,0.237,0.533,0.0667,0,0,0,0.0345 +0.333,0.555,0.0751,0.142,0.267,0,0,0,0,0 +0.667,0.548,0.142,0.235,0,0,0.306,0.5,0,0.0345 +0.667,0.566,0.158,0.235,0,0,0.0559,0,0,0.421 +0.667,0.591,0.196,0.238,0,0,0,0,0.133,0.466 +0.667,0.617,0.239,0.247,0,0,0,0,0.1,0.532 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.25 +1,0.617,0.446,0.328,0,0,0,0,0,0.0129 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.182 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.551,0.0406,0.163,0,0,0,0,0,0.169 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.225 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.0345 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.103 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.0345 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.317 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.207 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.298 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.103 +0.667,0.617,0.239,0.247,0,0,0,0,0.233,0.069 +1,0.658,0.473,0.384,0.203,0.383,0,0,0,0.0345 +1,0.645,0.662,0.467,0.518,0.0833,0,0,0,0.207 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0.596,0.633,0,0,0,0.166 +1,0.546,0.167,0.219,0.277,0.0667,0,0,0,0.0121 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.138 +1,0.54,0.0653,0.277,0,0,0,0,0.133,0.0868 +1,0.542,0.11,0.387,0,0,0,0,0.1,0.21 +1,0.542,0.131,0.37,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.194 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.069 +1,0.542,0.171,0.331,0,0,0,0,0,0.273 +1,0.542,0.194,0.328,0,0,0,0,0,0.247 +1,0.542,0.205,0.327,0,0,0,0,0,0.402 +1,0.568,0.23,0.328,0,0,0,0,0,0.207 +1,0.606,0.286,0.332,0,0,0,0,0.467,0 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.0345 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.167 +1,0.617,0.446,0.328,0,0,0,0,0.7,0.0345 +1,0.619,0.817,0.595,0,0,0.113,0.133,0,0 +1,0.568,0.774,0.726,0,0,0.48,0.367,0,0 +1,0.516,0.468,0.557,0,0,0,0,0,0.117 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.0716 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0.103 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.103 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0.393,0.5,0,0.069 +0.667,0.548,0.113,0.245,0,0,0.527,0,0,0.0345 +0.667,0.548,0.119,0.237,0,0,0.411,0,0,0.0345 +0.667,0.548,0.134,0.235,0,0,0.648,0,0,0.207 +0.667,0.548,0.142,0.235,0,0,0.548,0,0,0.069 +0.667,0.566,0.158,0.235,0,0,0.366,0,0,0.069 +0.667,0.591,0.196,0.238,0,0,0.368,0,0,0.069 +0.667,0.617,0.239,0.247,0,0,0.477,0,0,0.45 +0.667,0.626,0.32,0.273,0,0,0.455,0,0,0.263 +0.667,0.617,0.446,0.328,0,0,0.414,0,0,0.305 +0.667,0.6,0.55,0.413,0,0,0.129,0,0,0.197 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.0998 +0.667,0.531,0.317,0.388,0,0,0,0,0,0.0896 +0.667,0.533,0.0781,0.116,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0.138 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.185 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.36 +1,0.538,0.0301,0.136,0,0,0,0,0,0.145 +1,0.529,0.0968,0.39,0,0,0,0,0.233,0.349 +1,0.542,0.16,0.387,0,0,0,0,0,0.259 +1,0.542,0.212,0.37,0,0,0,0,0,0.2 +1,0.542,0.252,0.359,0,0,0,0,0,0.335 +0.667,0.548,0.191,0.245,0,0,0,0,0,0.192 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.422 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.0345 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.276 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.241 +0.333,0.576,0.167,0.144,0,0,0,0,0,0.0345 +0.333,0.589,0.172,0.148,0,0,0,0,0,0.0345 +0.333,0.594,0.2,0.161,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0.174 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.133,0.069 +1,0.538,0.0301,0.136,0,0,0,0,0.467,0.207 +1,0.529,0.0968,0.39,0,0,0,0,0.333,0.105 +0.667,0.548,0.113,0.274,0,0,0,0,0,0.0948 +0.667,0.548,0.147,0.263,0,0,0,0,0,0.133 +0.667,0.548,0.174,0.256,0,0,0,0,0,0 +0.333,0.555,0.104,0.147,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.233,0.207 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.345 +0.333,0.564,0.159,0.142,0.148,0.467,0,0,0,0.138 +0.333,0.576,0.167,0.144,0,0,0,0,0.383,0.069 +0.333,0.589,0.172,0.148,0,0,0,0,0.317,0.207 +1,0.658,0.565,0.384,0,0,0,0,0,0.134 +1,0.645,0.743,0.467,0,0,0,0,0,0.238 +1,0.619,0.873,0.595,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0345 +1,0.54,0.0653,0.277,0,0,0,0,0,0.153 +1,0.548,0.0788,0.274,0,0,0,0,0.383,0.0946 +0.667,0.555,0.0541,0.156,0,0,0,0,0.8,0.243 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.143 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.069 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0345 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.0345 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.276 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.667,0.591,0.196,0.238,0,0,0,0,0.633,0.0345 +0.667,0.617,0.239,0.247,0,0,0,0,0.0667,0.069 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.103 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0.241 +1,0.568,0.774,0.726,0,0,0,0,0,0.0345 +1,0.516,0.468,0.557,0,0,0,0,0,0.0345 +1,0.505,0.14,0.183,0,0,0,0,0,0.103 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.551,0.0406,0.163,0,0,0,0,0,0 +1,0.548,0.0788,0.274,0,0,0,0,0,0.138 +1,0.548,0.0923,0.263,0,0,0,0,0,0.069 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.0322,0.133,0.233,0 +1,0.548,0.134,0.235,0.158,0.133,0.597,0.367,0,0 +1,0.542,0.205,0.327,0.463,0.333,0.785,0,0,0.103 +0.667,0.566,0.158,0.235,0.57,0.633,0.355,0,0,0.069 +0.667,0.591,0.196,0.238,0.513,0.0667,0.319,0,0,0.069 +0.667,0.617,0.239,0.247,0.65,0,0.432,0,0,0 +1,0.658,0.473,0.384,0.379,0,0.41,0,0,0.069 +0.667,0.617,0.446,0.328,0,0,0,0,0.383,0.0345 +1,0.619,0.817,0.595,0,0,0,0,0.0833,0.103 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.516,0.468,0.557,0,0,0,0,0,0 +1,0.477,0.203,0.249,0,0,0,0,0,0.0345 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0.246 +0.667,0.551,0.0406,0.163,0,0,0.281,0.133,0,0.117 +1,0.548,0.0788,0.274,0,0,0.45,0.117,0,0.258 +0.667,0.548,0.0923,0.263,0,0,0.512,0,0,0.172 +0.667,0.548,0.103,0.256,0,0,0.484,0,0,0.069 +0.667,0.548,0.113,0.245,0,0,0.101,0,0,0.31 +0.667,0.548,0.119,0.237,0,0,0,0,0,0 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.0345 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0.103 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0.172 +0.667,0.576,0.106,0.144,0,0,0,0,0.133,0 +0.667,0.617,0.239,0.247,0,0,0,0,1,0.069 +0.667,0.626,0.32,0.273,0,0,0,0,0.517,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.0942 +1,0.6,0.55,0.413,0,0,0,0,0,0.298 +1,0.566,0.521,0.501,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.54,0.0653,0.277,0,0,0,0,0,0.346 +1,0.548,0.0788,0.274,0,0,0,0,0,0.398 +1,0.548,0.0923,0.263,0,0,0,0,0,0.14 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.241 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0.133,0.138 +0.667,0.548,0.134,0.235,0,0,0,0,0.333,0.138 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.0345 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.069 +0.667,0.591,0.196,0.238,0,0,0,0,0.133,0.0345 +1,0.645,0.351,0.345,0,0,0,0,0.1,0.069 +0.667,0.626,0.32,0.273,0.407,0.633,0,0,0,0 +1,0.645,0.662,0.467,0.551,0.0667,0,0,0,0.069 +1,0.619,0.817,0.595,0.286,0.383,0,0,0,0 +1,0.568,0.774,0.726,0.439,0.0833,0,0,0,0 +1,0.516,0.468,0.557,0.434,0,0,0,0,0.0447 +1,0.477,0.203,0.249,0,0,0,0,0,0.106 +1,0.497,0.0608,0.099,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.102 +1,0.514,0.0488,0.222,0,0,0,0,0,0.0458 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0.033 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0,0,0.133,0 +0.667,0.548,0.103,0.256,0,0,0,0,0.1,0.103 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.172 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.069 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.103 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.0345 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.138 +0.667,0.591,0.196,0.238,0,0,0,0,0.233,0.069 +0.667,0.617,0.239,0.247,0,0,0,0,0,0 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.207 +0.667,0.617,0.446,0.328,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.516,0.468,0.557,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.133,0.0998 +1,0.54,0.0706,0.277,0,0,0,0,0.1,0.213 +1,0.548,0.113,0.274,0,0,0,0,0,0.397 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0.159 +0.333,0.555,0.0961,0.153,0,0,0,0,0.133,0.18 +0.333,0.555,0.104,0.147,0,0,0,0,0.1,0.0345 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.103 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.207 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.0551 +0.667,0.566,0.3,0.235,0,0,0,0,0,0.0721 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.276 +0.667,0.617,0.326,0.247,0,0,0,0,0,0.172 +0.667,0.626,0.383,0.273,0,0,0,0,0,0 +1,0.617,0.501,0.328,0,0,0,0,0,0.0949 +1,0.6,0.588,0.413,0.15,0.133,0,0,0,0.107 +1,0.566,0.543,0.501,0.57,0.567,0,0,0,0 +1,0.531,0.345,0.388,0.636,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0.0345 +1,0.528,0.0211,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0.0818 +1,0.495,0.0271,0.103,0,0,0,0,0,0.331 +0.667,0.537,0.0302,0.135,0,0,0,0,0,0.176 +0.667,0.549,0.0444,0.162,0,0,0,0,0.217,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0.717,0.329 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.215 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.554,0.105,0.145,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.0345 +0.667,0.546,0.241,0.23,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.0345 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.109 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.164 +0.333,0.588,0.172,0.146,0,0,0,0,0,0.207 +0.333,0.592,0.201,0.159,0,0,0,0,0,0.0345 +0.333,0.588,0.26,0.187,0,0,0,0,0,0 +0.333,0.579,0.304,0.23,0,0,0,0,0,0 +0.333,0.562,0.282,0.273,0,0,0,0,0,0.123 +1,0.529,0.346,0.386,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.152 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.069 +0.667,0.537,0.0655,0.274,0,0,0,0,0.633,0 +1,0.538,0.111,0.381,0,0,0,0,0.0667,0.069 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0.633,0.0345 +0.667,0.546,0.114,0.24,0,0,0,0,0.0667,0.188 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.069 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.103 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.103 +0.667,0.563,0.159,0.23,0,0,0,0,0.133,0.069 +0.667,0.588,0.196,0.233,0,0,0,0,0.8,0.103 +0.667,0.614,0.24,0.242,0,0,0,0,0.133,0.069 +1,0.653,0.474,0.377,0,0,0,0,0.333,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.273 +1,0.615,0.82,0.59,0,0,0,0,0,0.236 +1,0.563,0.523,0.496,0,0,0,0,0,0.159 +1,0.529,0.318,0.386,0,0,0,0,0,0.15 +1,0.532,0.0783,0.116,0,0,0,0,0,0.264 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.113 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.599 +1,0.538,0.131,0.362,0,0,0,0,0.233,0.345 +1,0.538,0.147,0.351,0.738,0.45,0,0,0,0.11 +0.667,0.546,0.114,0.24,0.575,0,0,0,0.233,0.457 +0.667,0.546,0.12,0.232,0.399,0,0,0,0,0.161 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.138 +1,0.563,0.23,0.321,0,0,0,0,0,0.212 +1,0.602,0.287,0.324,0,0,0,0,0,0.178 +1,0.64,0.352,0.338,0,0,0,0,0.7,0.331 +0.667,0.623,0.321,0.268,0,0,0,0,0.133,0.147 +1,0.64,0.664,0.461,0,0,0,0,0.1,0.102 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.149 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.512,0.47,0.554,0.628,0.45,0,0,0,0.0959 +1,0.532,0.0783,0.116,0,0,0,0,0.133,0 +1,0.528,0.0384,0.0743,0,0,0,0,0.1,0.207 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.0805 +1,0.512,0.0489,0.22,0,0,0.341,0.25,0,0.313 +1,0.537,0.0655,0.274,0,0,0.435,0,0.133,0.069 +1,0.538,0.111,0.381,0,0,0,0,1,0.117 +1,0.538,0.131,0.362,0,0,0,0,0.0333,0.0629 +1,0.538,0.147,0.351,0,0,0,0,0,0.11 +1,0.538,0.163,0.335,0,0,0,0,0,0.263 +1,0.546,0.12,0.232,0,0,0,0,0,0.251 +1,0.538,0.194,0.32,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.103 +1,0.563,0.23,0.321,0,0,0,0,0,0.0345 +0.667,0.588,0.196,0.233,0,0,0,0,0.467,0.241 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.113 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.069 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.138 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.315 +1,0.512,0.47,0.554,0,0,0.487,0.517,0,0 +1,0.503,0.141,0.183,0,0,0.996,0,0,0 +1,0.495,0.061,0.099,0,0,0.653,0,0,0 +1,0.495,0.0324,0.066,0,0,0.242,0,0,0.0345 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.276 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +1,0.549,0.0407,0.162,0,0,0,0,0.333,0.172 +1,0.554,0.0475,0.16,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.0345 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.069 +0.667,0.546,0.114,0.24,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.238 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.0974 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.333,0.562,0.0873,0.14,0,0,0,0,0.233,0.345 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.0345 +0.667,0.614,0.24,0.242,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.241 +0.667,0.614,0.448,0.324,0,0,0,0,0.233,0 +1,0.615,0.82,0.59,0,0,0,0,0,0.0827 +1,0.563,0.777,0.72,0,0,0,0,0,0.113 +1,0.529,0.318,0.386,0,0,0,0,0,0.0718 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0771 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0.0836 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.212 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +0.667,0.528,0.0189,0.0499,0,0,0,0,0,0.127 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0.228 +0.667,0.537,0.0324,0.135,0,0,0,0,0.133,0.0499 +1,0.525,0.0903,0.386,0.638,0.45,0,0,0.333,0.103 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.105 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0345 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.207 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.172 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.264 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.145 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.216 +1,0.64,0.352,0.338,0,0,0,0,0.633,0.429 +1,0.653,0.474,0.377,0,0,0,0,1,0.175 +1,0.64,0.664,0.461,0.103,0.133,0,0,0.933,0.069 +1,0.615,0.82,0.59,0.581,0.317,0,0,0,0.103 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.512,0.47,0.554,0,0,0,0,0,0.222 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.069 +1,0.537,0.0708,0.274,0,0,0,0,0,0.139 +1,0.546,0.113,0.27,0,0,0,0,0,0.245 +1,0.538,0.212,0.362,0,0,0,0,0.467,0.0334 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.069 +0.667,0.546,0.191,0.24,0,0,0,0,0,0.069 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.0345 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.0345 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.414 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.0345 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.103 +1,0.64,0.481,0.338,0,0,0,0,0.233,0 +1,0.653,0.567,0.377,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0.172 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.171 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.184 +1,0.538,0.16,0.381,0,0,0,0,0.467,0 +0.667,0.546,0.148,0.258,0,0,0.31,0.517,0,0 +0.333,0.554,0.0964,0.15,0,0,0.404,0,0,0.069 +0.333,0.554,0.105,0.145,0,0,0.217,0,0,0.0345 +0.333,0.554,0.111,0.141,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.069 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.631 +0.333,0.562,0.16,0.14,0,0,0,0,0.217,0.207 +1,0.602,0.465,0.324,0,0,0,0,0.25,0.202 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.0532 +1,0.653,0.567,0.377,0,0,0,0,0,0.103 +1,0.64,0.745,0.461,0,0,0,0,0,0.103 +1,0.615,0.876,0.59,0,0,0,0,0,0.0766 +1,0.562,0.282,0.273,0.613,0.45,0,0,0,0 +1,0.545,0.182,0.218,0.595,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.207 +1,0.528,0.0241,0.0763,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0,0,0,0.0345 +1,0.537,0.0655,0.274,0,0,0,0,0,0.311 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.391 +0.667,0.546,0.0926,0.258,0,0,0,0,0.383,0.19 +0.333,0.554,0.0595,0.15,0,0,0,0,0.55,0.069 +0.667,0.546,0.114,0.24,0,0,0,0,0.383,0.103 +0.667,0.546,0.12,0.232,0,0,0,0,0.317,0.103 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.0345 +0.667,0.546,0.142,0.23,0,0,0,0,0.467,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.138 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.0345 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0345 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.138 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0.0685,0.133,0,0.0753 +1,0.512,0.47,0.554,0,0,0.559,1,0,0.255 +1,0.532,0.0783,0.116,0,0,0.0238,0.167,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0,0,0,0.176 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0595,0.15,0,0,0,0,0.133,0 +0.667,0.546,0.114,0.24,0,0,0,0,0.333,0.207 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.069 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.069 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0.069 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.276 +0.667,0.588,0.196,0.233,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.0979 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.189 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.221 +0.667,0.563,0.523,0.496,0,0,0,0,0,0.233 +1,0.512,0.47,0.554,0,0,0.101,0.133,0,0.256 +1,0.532,0.0783,0.116,0,0,0,0.383,0,0.223 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.171 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.107 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.209 +1,0.537,0.0324,0.135,0,0,0,0,0,0.168 +1,0.549,0.0407,0.162,0,0,0,0,0,0.069 +1,0.538,0.111,0.381,0,0,0,0,0,0.13 +1,0.538,0.131,0.362,0,0,0,0,0,0.187 +1,0.538,0.147,0.351,0,0,0,0,0.467,0.331 +1,0.538,0.163,0.335,0,0,0,0,0,0.209 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.069 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.0345 +0.667,0.546,0.142,0.23,0,0,0,0,0.233,0.172 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.103 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.103 +0.667,0.614,0.24,0.242,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0.0519 +1,0.563,0.523,0.496,0,0,0,0,0,0.101 +1,0.529,0.318,0.386,0,0,0,0,0,0.109 +1,0.474,0.203,0.249,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0.233,0.172 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0.467,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0345 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0345 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.103 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.172 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.103 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.172 +0.667,0.588,0.196,0.233,0,0,0,0,0.133,0.0345 +1,0.64,0.352,0.338,0,0,0,0,0.567,0.235 +1,0.653,0.474,0.377,0,0,0,0,0,0.112 +1,0.64,0.664,0.461,0,0,0,0,0,0 +1,0.597,0.552,0.41,0,0,0,0,0,0.069 +1,0.563,0.523,0.496,0,0,0,0,0,0.138 +1,0.545,0.167,0.218,0,0,0,0,0,0.112 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.104 +1,0.537,0.0655,0.274,0,0,0,0,0,0.127 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.374 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.207 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.138 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.31 +0.333,0.554,0.0678,0.141,0,0,0.00839,0.133,0,0.069 +0.667,0.546,0.135,0.23,0,0,0.101,0.65,0,0.138 +0.667,0.546,0.142,0.23,0,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.0345 +0.667,0.588,0.196,0.233,0,0,0.306,0.383,0,0.0345 +0.667,0.614,0.24,0.242,0,0,0.455,0.133,0,0.35 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.39 +0.333,0.588,0.232,0.187,0,0,0,0,0,0.0368 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.0345 +0.667,0.563,0.523,0.496,0,0,0.0126,0.517,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0.0345 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0.217,0.122 +0.667,0.546,0.175,0.25,0,0,0,0,0.483,0.172 +0.667,0.546,0.191,0.24,0,0,0,0,0,0.172 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.103 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.184 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.218 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.069 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.588,0.172,0.146,0,0,0,0,0.233,0.172 +0.333,0.592,0.201,0.159,0,0,0,0,0,0.133 +0.667,0.614,0.503,0.324,0,0,0,0,0,0.165 +1,0.615,0.876,0.59,0,0,0,0,0,0.213 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0.217,0 +1,0.549,0.0444,0.162,0,0,0,0,0.0167,0 +1,0.546,0.113,0.27,0,0,0,0,0.467,0.4 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.233 +0.667,0.554,0.0964,0.15,0,0,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0,0,0.217,0.241 +0.333,0.554,0.111,0.141,0,0,0,0,0.717,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.269 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.452 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.241 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.103 +1,0.64,0.481,0.338,0,0,0,0,0,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0.138 +1,0.64,0.745,0.461,0,0,0,0,0,0.109 +1,0.615,0.876,0.59,0,0,0,0,0,0.159 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.235 +1,0.512,0.0489,0.22,0,0,0,0,0,0.0901 +1,0.525,0.0903,0.386,0,0,0.137,0.517,0,0.236 +1,0.538,0.111,0.381,0,0,0.287,0,0,0.069 +1,0.538,0.131,0.362,0,0,0.291,0,0,0.103 +1,0.538,0.147,0.351,0,0,0.558,0,0,0.196 +0.667,0.546,0.114,0.24,0,0,0.45,0,0,0.0936 +0.333,0.554,0.0678,0.141,0,0,0,0,0.383,0.103 +0.667,0.546,0.135,0.23,0,0,0,0,1,0 +0.667,0.546,0.142,0.23,0.13,0.133,0,0,0.0167,0.241 +0.667,0.563,0.159,0.23,0.689,0.317,0,0,0,0.241 +0.667,0.588,0.196,0.233,0.565,0,0,0,0,0.069 +0.667,0.614,0.24,0.242,0.736,0.45,0,0,0,0.172 +0.667,0.623,0.321,0.268,0.588,0,0,0,0,0 +1,0.64,0.664,0.461,0.504,0,0,0,0.883,0 +1,0.615,0.82,0.59,0.236,0,0,0,0.75,0.103 +1,0.563,0.777,0.72,0,0,0,0,0.233,0 +1,0.512,0.47,0.554,0,0,0,0,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.215 +1,0.537,0.0324,0.135,0,0,0,0,0,0.353 +1,0.549,0.0407,0.162,0,0,0,0,0,0.154 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.269 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.451 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0345 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0.0564 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.34 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0244 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.069 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0345 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.138 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.103 +1,0.615,0.82,0.59,0,0,0,0,0.467,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +0.667,0.545,0.167,0.218,0,0,0,0,0,0.245 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0.146,0.133,0,0,0,0.0345 +0.667,0.546,0.079,0.27,0.842,0.55,0,0,0,0.0345 +0.667,0.546,0.0926,0.258,0.101,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0345 +0.667,0.546,0.114,0.24,0,0,0.515,0.517,0.467,0 +0.667,0.546,0.12,0.232,0,0,0.463,0,0,0.069 +0.667,0.546,0.135,0.23,0,0,0.334,0,0,0.103 +0.667,0.546,0.142,0.23,0,0,0.624,0,0,0.138 +0.667,0.563,0.159,0.23,0,0,0.596,0,0,0.0345 +0.667,0.588,0.196,0.233,0,0,0.547,0,0,0.401 +0.667,0.614,0.24,0.242,0,0,0.422,0,0,0.162 +1,0.653,0.474,0.377,0,0,0.517,0,0.467,0.103 +1,0.64,0.664,0.461,0,0,0.453,0,0,0.0345 +0.667,0.597,0.552,0.41,0,0,0,0,0,0.0345 +1,0.563,0.777,0.72,0.103,0.133,0,0,0,0 +1,0.512,0.47,0.554,0.603,0.317,0,0,0.383,0.361 +0.667,0.503,0.141,0.183,0.884,0,0.448,0.517,0.317,0.0345 +0.667,0.528,0.0384,0.0743,0.146,0,0.0448,0,0,0 +0.667,0.528,0.0241,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0.182 +1,0.546,0.079,0.27,0,0,0,0,0,0.244 +1,0.538,0.131,0.362,0,0,0,0,0,0.185 +1,0.538,0.147,0.351,0,0,0,0,0,0.383 +1,0.538,0.163,0.335,0,0,0,0,0,0 +1,0.538,0.172,0.324,0,0,0,0,0.467,0.138 +1,0.538,0.194,0.32,0,0,0,0,0,0.0345 +1,0.538,0.205,0.32,0,0,0.315,0.517,0,0.118 +0.667,0.563,0.159,0.23,0,0,0.435,0,0,0 +0.667,0.588,0.196,0.233,0,0,0.359,0,0,0 +0.333,0.588,0.128,0.146,0,0,0.625,0,0,0.103 +0.667,0.623,0.321,0.268,0,0,0.613,0,0,0.489 +0.667,0.614,0.448,0.324,0,0,0.572,0,0,0.162 +0.667,0.597,0.552,0.41,0,0,0.319,0,0,0.207 +1,0.563,0.523,0.496,0,0,0,0,0,0.0829 +1,0.529,0.318,0.386,0,0,0,0,0,0.0345 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +1,0.537,0.0655,0.274,0,0,0,0,0,0.171 +1,0.546,0.079,0.27,0,0,0,0,0,0.147 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.21 +0.667,0.546,0.142,0.23,0,0,0.354,0.25,0,0.318 +0.667,0.563,0.159,0.23,0,0,0.656,0,0,0.0345 +0.667,0.588,0.196,0.233,0,0,0.0839,0,0.233,0.172 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0345 +1,0.653,0.474,0.377,0.556,0.45,0.512,0.517,0,0.069 +1,0.64,0.664,0.461,0.455,0,0.379,0,0,0.172 +0.667,0.597,0.552,0.41,0.55,0,0.471,0,0,0.103 +0.667,0.563,0.523,0.496,0.651,0,0.4,0,0,0 +1,0.529,0.318,0.386,0.121,0,0.459,0,0,0.15 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.267 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0.33 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.146 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.11 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.207 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.03 +0.333,0.554,0.105,0.145,0,0,0.51,0.517,0,0.0345 +0.333,0.554,0.111,0.141,0,0,0.594,0,0,0.0345 +0.333,0.554,0.129,0.14,0,0,0.561,0,0,0.276 +0.333,0.554,0.146,0.14,0,0,0.523,0,0,0 +0.333,0.562,0.16,0.14,0,0,0.813,0,0,0.069 +0.333,0.575,0.167,0.141,0,0,0.709,0,0,0.103 +0.333,0.588,0.172,0.146,0,0,0.631,0,0,0.345 +0.667,0.623,0.384,0.268,0.256,0.45,0.538,0,0,0 +1,0.64,0.745,0.461,0.168,0,0.428,0,0,0 +1,0.615,0.876,0.59,0,0,0.731,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0.0436 +1,0.532,0.0896,0.116,0,0,0,0,0,0.164 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0.233,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.0345 +1,0.538,0.16,0.381,0,0,0,0,0.717,0.138 +0.667,0.546,0.148,0.258,0,0,0,0,0.45,0.138 +0.667,0.546,0.175,0.25,0,0,0,0,0.233,0.103 +0.667,0.546,0.191,0.24,0,0,0,0,0,0.103 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.0345 +1,0.538,0.352,0.32,0,0,0,0,0,0.103 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.172 +0.667,0.563,0.301,0.23,0,0,0,0,0,0 +0.667,0.588,0.316,0.233,0,0,0,0,0.217,0.103 +1,0.64,0.481,0.338,0,0,0,0,0.233,0.311 +1,0.653,0.567,0.377,0,0,0,0,0.0167,0.258 +1,0.64,0.745,0.461,0,0,0,0,0,0.138 +1,0.615,0.876,0.59,0,0,0,0,0,0.138 +1,0.563,0.808,0.72,0.658,0.45,0,0,0,0.0421 +1,0.545,0.182,0.218,0.135,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0,0,0,0.41 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.0124 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.0866 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.138 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.0345 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.138 +0.333,0.554,0.0753,0.14,0,0,0.0364,0.133,0,0.0345 +0.667,0.546,0.142,0.23,0,0,0.529,0.383,0,0.103 +0.667,0.563,0.159,0.23,0,0,0.399,0,0,0.138 +0.667,0.588,0.196,0.233,0,0,0.117,0,0.133,0 +0.667,0.614,0.24,0.242,0,0,0,0,1,0.069 +0.667,0.623,0.321,0.268,0,0,0,0,0.267,0.103 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.0345 +1,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0.134 +1,0.545,0.167,0.218,0,0,0,0,0,0.0723 +1,0.532,0.0783,0.116,0,0,0,0,0,0.101 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0979 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0.1 +1,0.537,0.0655,0.274,0,0,0,0,0.233,0.23 +0.667,0.546,0.079,0.27,0,0,0.262,0.517,0.633,0.069 +0.667,0.546,0.0926,0.258,0,0,0.414,0,0.3,0.138 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0345 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.103 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.069 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.207 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.0345 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.31 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.0345 +0.667,0.614,0.24,0.242,0,0,0,0,0.467,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.0951 +1,0.64,0.664,0.461,0.603,0.683,0,0,0,0.0345 +1,0.615,0.82,0.59,0.613,0,0,0,0,0 +1,0.563,0.777,0.72,0.502,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0798 +1,0.549,0.0407,0.162,0,0,0,0,0,0 +1,0.554,0.0475,0.16,0,0,0,0,0,0.069 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0648,0.145,0,0,0,0,0.233,0.103 +0.667,0.554,0.0678,0.141,0,0,0,0,0,0 +0.667,0.554,0.0753,0.14,0.47,0.633,0,0,0,0.069 +0.333,0.562,0.0159,0.0495,0,0.05,0,0,0,0 +0.667,0.562,0.0873,0.14,0,0,0,0,0,0.276 +0.667,0.575,0.106,0.141,0,0,0,0,0,0.241 +0.667,0.588,0.128,0.146,0,0,0,0,0,0.0345 +0.667,0.592,0.169,0.159,0,0,0,0,0,0 +0.667,0.588,0.232,0.187,0,0,0,0,0.233,0.069 +0.667,0.579,0.284,0.23,0,0,0,0,0,0.0949 +1,0.563,0.523,0.496,0,0,0,0,0,0.2 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0345 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.512,0.0489,0.22,0,0,0.267,0.633,0,0.244 +1,0.537,0.0655,0.274,0,0,0.435,0.15,0,0.163 +0.667,0.554,0.0475,0.16,0,0,0.615,0,0,0.138 +0.667,0.546,0.0926,0.258,0,0,0.488,0,0,0.0345 +0.333,0.554,0.0595,0.15,0,0,0.101,0,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.108 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.551 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.276 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.103 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.103 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.207 +0.333,0.588,0.232,0.187,0,0,0,0,0,0.207 +0.667,0.597,0.552,0.41,0,0,0,0,0.233,0.0345 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.172 +1,0.546,0.079,0.27,0,0,0,0,0,0.317 +1,0.546,0.0926,0.258,0,0,0,0,0,0.293 +1,0.538,0.147,0.351,0,0,0,0,0,0.257 +1,0.538,0.163,0.335,0,0,0,0,0.233,0.144 +0.667,0.546,0.12,0.232,0,0,0,0,0.467,0.0345 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.207 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.138 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.138 +0.667,0.588,0.196,0.233,0,0,0,0,0.233,0.0345 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.069 +0.667,0.623,0.321,0.268,0.53,0.45,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.138 +1,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0.199 +1,0.537,0.0708,0.274,0,0,0,0,0,0.385 +1,0.546,0.113,0.27,0,0,0,0,0,0.181 +0.333,0.554,0.0828,0.154,0,0,0,0,0,0.301 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.32 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.207 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.172 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.103 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.276 +0.333,0.562,0.16,0.14,0,0,0,0,0,0 +0.333,0.575,0.167,0.141,0,0,0,0,0,0.0345 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.103 +0.667,0.623,0.384,0.268,0,0,0,0,0,0.31 +1,0.64,0.745,0.461,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0.228 +1,0.563,0.808,0.72,0,0,0,0,0,0.0434 +1,0.545,0.182,0.218,0,0,0,0,0,0.217 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0.0345 +1,0.537,0.0708,0.274,0,0,0,0,0,0.368 +1,0.546,0.113,0.27,0,0,0,0,0.717,0.0496 +1,0.538,0.212,0.362,0,0,0,0,0.217,0.332 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.219 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.138 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.0345 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.0345 +0.667,0.546,0.274,0.23,0,0,0,0,0,0.172 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.103 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.0345 +1,0.64,0.481,0.338,0,0,0.133,0.467,0,0.201 +0.667,0.623,0.384,0.268,0,0,0.449,0.05,0,0.0495 +1,0.64,0.745,0.461,0,0,0.916,0,0,0.345 +1,0.615,0.876,0.59,0,0,0.53,0,0,0.138 +1,0.563,0.808,0.72,0,0,0.456,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0.147 +0.667,0.532,0.0896,0.116,0,0,0,0,0,0.066 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0.233,0.0345 +1,0.537,0.0324,0.135,0,0,0,0,0,0.172 +1,0.549,0.0407,0.162,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.554,0.0542,0.154,0,0,0,0,0,0.273 +1,0.554,0.0595,0.15,0,0,0,0,0.233,0.0127 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.105 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.33 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.103 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.138 +0.667,0.563,0.159,0.23,0.538,0.45,0,0,0,0.103 +0.667,0.588,0.196,0.233,0.218,0,0,0,0,0.251 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.069 +1,0.653,0.474,0.377,0,0,0,0,0,0.138 +1,0.64,0.664,0.461,0,0,0,0,0,0.0345 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0.133,0 +1,0.529,0.318,0.386,0,0,0,0,0.8,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.172 +1,0.537,0.0324,0.135,0,0,0,0,0,0.103 +1,0.525,0.0903,0.386,0,0,0,0,0.633,0.0978 +1,0.538,0.111,0.381,0,0,0,0,1,0.183 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0,0,0.133,0.069 +0.667,0.546,0.114,0.24,0,0,0,0,0.1,0.456 +0.333,0.554,0.0678,0.141,0,0,0.225,0.383,0,0 +0.667,0.546,0.135,0.23,0,0,0.537,0.917,0,0.103 +0.667,0.546,0.142,0.23,0,0,0.792,0,0,0.0345 +0.667,0.563,0.159,0.23,0,0,0.678,0,0,0.0345 +0.667,0.588,0.196,0.233,0,0,0.471,0,0,0.0345 +0.667,0.614,0.24,0.242,0,0,0.547,0,0,0.172 +0.667,0.623,0.321,0.268,0,0,0.6,0,0,0.0345 +0.667,0.614,0.448,0.324,0,0,0.719,0,0,0.241 +1,0.615,0.82,0.59,0,0,0.498,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.512,0.47,0.554,0,0,0,0,0,0.099 +1,0.503,0.141,0.183,0,0,0,0,0,0.187 +1,0.528,0.0374,0.0743,0,0,0,0,0.233,0.0716 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.554,0.0461,0.162,0,0,0,0,0,0.069 +1,0.554,0.0526,0.156,0,0,0,0,0,0.0345 +1,0.554,0.0577,0.153,0,0,0,0,0,0.138 +1,0.538,0.157,0.343,0,0,0,0,0,0.448 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.165 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0345 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.276 +0.333,0.562,0.0846,0.143,0,0,0,0,0.233,0.103 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.103 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.069 +0.667,0.623,0.31,0.289,0.106,0.133,0,0,0.633,0 +0.333,0.588,0.224,0.206,0.355,0.317,0,0,0.0833,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.128 +1,0.563,0.749,0.788,0,0,0,0,0,0.448 +1,0.545,0.161,0.223,0,0,0,0,0,0.18 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.138 +1,0.537,0.0633,0.277,0,0,0,0,0,0.165 +1,0.546,0.0764,0.274,0,0,0,0,0,0.37 +1,0.546,0.0894,0.263,0,0,0,0,0,0.0243 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.0345 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0 +0.667,0.554,0.0657,0.143,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0766,0.142,0,0,0,0,0,0.0345 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.207 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.207 +0.667,0.614,0.232,0.252,0.118,0.133,0,0,0,0.103 +1,0.653,0.457,0.408,0.601,0.317,0,0,0,0.0867 +0.667,0.614,0.432,0.362,0,0,0,0,0.233,0.19 +0.667,0.597,0.532,0.462,0.148,0.133,0,0,0,0.456 +1,0.563,0.504,0.542,0.518,0.317,0,0,0,0.0345 +1,0.529,0.307,0.397,0.832,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.132 +1,0.554,0.0461,0.162,0,0,0,0,0,0.0959 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.138 +0.667,0.546,0.0996,0.256,0,0,0,0,0.233,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.172 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0345 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.138 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.069 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.069 +1,0.64,0.339,0.353,0,0,0,0,0,0.138 +0.667,0.623,0.31,0.289,0,0,0,0,0.367,0.533 +0.667,0.614,0.432,0.362,0,0,0,0,1,0.123 +1,0.615,0.79,0.668,0,0,0,0,0.0667,0.0345 +1,0.563,0.749,0.788,0,0,0,0,0,0.0857 +1,0.512,0.453,0.571,0,0,0,0,0,0.146 +1,0.532,0.0759,0.116,0,0,0,0,0,0.0536 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0.467,0.207 +1,0.537,0.0684,0.277,0,0,0,0,0.633,0.069 +1,0.546,0.109,0.274,0.673,0.45,0,0,1,0.0345 +1,0.538,0.205,0.37,0.098,0,0,0,0.533,0.26 +1,0.538,0.244,0.359,0,0,0,0,0,0.11 +1,0.538,0.268,0.343,0,0,0,0,0,0.0345 +1,0.538,0.287,0.331,0,0,0,0,0,0.185 +0.667,0.546,0.232,0.235,0,0,0,0,0,0.216 +0.333,0.554,0.141,0.142,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.134 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.255 +0.333,0.588,0.167,0.151,0,0,0,0,0,0.103 +0.667,0.623,0.37,0.289,0,0,0,0,0.717,0.207 +1,0.64,0.718,0.518,0,0,0,0,0,0.0345 +1,0.597,0.569,0.462,0,0,0,0,0.633,0.0345 +1,0.562,0.272,0.296,0,0,0,0,0.0833,0.0345 +1,0.545,0.176,0.223,0,0,0,0,0,0.053 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0,0.273 +0.667,0.549,0.0433,0.163,0,0,0,0,0.467,0.0345 +0.667,0.546,0.109,0.274,0,0,0.193,0.133,0,0.103 +0.667,0.546,0.142,0.263,0,0,0.566,0.117,0,0.0345 +0.667,0.546,0.169,0.256,0,0,0.366,0,0,0 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.069 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.0345 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.069 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.103 +0.333,0.562,0.154,0.143,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.172 +1,0.64,0.464,0.353,0,0,0,0,0,0.205 +1,0.653,0.546,0.408,0,0,0,0,0,0.151 +1,0.64,0.718,0.518,0,0,0.345,0.633,0,0 +1,0.615,0.844,0.668,0,0,0.476,0.117,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0.229 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.172 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.518 +1,0.549,0.0396,0.163,0,0,0,0,0,0.362 +1,0.546,0.0764,0.274,0,0,0,0,0,0.103 +1,0.546,0.0894,0.263,0.719,0.45,0,0,0,0 +1,0.546,0.0996,0.256,0.447,0,0,0,0,0.172 +1,0.546,0.11,0.245,0.498,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0.233,0.0345 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.103 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.172 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.103 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.103 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.241 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.069 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.169,0.133,0,0 +0.667,0.546,0.0764,0.274,0,0,0.62,1,0,0.0345 +0.667,0.546,0.0894,0.263,0,0,0.417,0.117,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.0345 +0.667,0.546,0.11,0.245,0,0,0,0,0.717,0.0345 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.103 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.103 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.138 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.31 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.207 +1,0.64,0.339,0.353,0.518,0.633,0,0,0,0.069 +0.667,0.623,0.31,0.289,0.565,0.683,0,0,0,0.277 +0.667,0.614,0.432,0.362,0.502,0.05,0,0,0,0.0345 +1,0.597,0.532,0.462,0.465,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0.0996 +1,0.529,0.307,0.397,0,0,0,0,0,0.279 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.109 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.218 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.369 +1,0.512,0.0474,0.222,0,0,0,0,0,0.355 +1,0.537,0.0633,0.277,0,0,0,0,0,0.367 +1,0.546,0.0764,0.274,0,0,0,0,0,0.056 +0.667,0.554,0.0526,0.156,0,0,0.0517,0.133,0,0.142 +0.667,0.554,0.0577,0.153,0,0,0.319,1,0,0 +0.667,0.554,0.0628,0.147,0,0,0.15,0.117,0,0.0345 +0.667,0.554,0.0657,0.143,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.575,0.103,0.144,0,0,0,0,0,0.103 +0.667,0.588,0.124,0.151,0,0,0,0,0.467,0.069 +0.667,0.592,0.163,0.169,0,0,0,0,0,0.069 +1,0.614,0.432,0.362,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0.159 +1,0.532,0.0759,0.116,0,0,0,0,0,0.105 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0862 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0,0,0,0.172 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.069 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.186 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.102 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.0473 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.138 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0.233,0.31 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.069 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.276 +0.667,0.623,0.31,0.289,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.322 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0.358 +1,0.546,0.0764,0.274,0,0,0,0,0,0.318 +1,0.546,0.0894,0.263,0,0,0,0,0,0.0801 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.28 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.172 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.069 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.069 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.069 +0.667,0.575,0.103,0.144,0,0,0,0,0,0.103 +0.667,0.588,0.124,0.151,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.614,0.432,0.362,0,0,0,0,0,0.612 +1,0.597,0.532,0.462,0,0,0,0,0,0.157 +1,0.563,0.504,0.542,0,0,0.213,0.383,0,0.0679 +1,0.529,0.307,0.397,0,0,0.161,0.117,0,0.0454 +0.667,0.532,0.0759,0.116,0,0,0,0,0,0.113 +0.667,0.495,0.0699,0.099,0,0,0,0,0,0.0636 +1,0.528,0.028,0.0578,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0956 +0.667,0.549,0.0433,0.163,0,0,0,0,0,0.387 +0.667,0.546,0.109,0.274,0,0,0,0,0,0 +0.333,0.554,0.0803,0.156,0,0,0.713,0.5,0,0.0345 +0.333,0.554,0.0933,0.153,0,0,0.217,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.069 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.138 +0.667,0.554,0.141,0.142,0,0,0,0,0,0.0345 +1,0.563,0.29,0.236,0,0,0,0,0.467,0 +1,0.588,0.305,0.239,0,0,0,0,0,0.069 +1,0.588,0.167,0.151,0,0,0,0,0,0.207 +1,0.592,0.194,0.169,0,0,0,0,0,0 +1,0.614,0.485,0.362,0,0,0,0,0,0.0345 +1,0.597,0.569,0.462,0,0,0,0,0,0.0345 +1,0.563,0.525,0.542,0,0,0,0,0,0.0345 +1,0.529,0.334,0.397,0,0,0,0,0,0.069 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.133,0.069 +1,0.549,0.0433,0.163,0.387,0.383,0,0,0.817,0 +0.667,0.554,0.0636,0.162,0.488,0.0667,0,0,0,0.138 +0.667,0.554,0.0803,0.156,0,0,0,0,0.233,0.069 +0.667,0.554,0.0933,0.153,0,0,0,0,0,0.069 +0.667,0.554,0.101,0.147,0,0,0,0,0,0.103 +0.333,0.554,0.108,0.143,0,0,0,0,0.633,0.138 +0.333,0.554,0.125,0.142,0,0,0,0,0.317,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.138 +0.333,0.562,0.154,0.143,0,0,0,0,0,0 +0.667,0.588,0.305,0.239,0,0,0,0,0,0 +1,0.64,0.464,0.353,0,0,0,0,0,0.0345 +1,0.653,0.546,0.408,0,0,0,0,0.883,0.0345 +1,0.64,0.718,0.518,0,0,0,0,1,0.0345 +1,0.615,0.844,0.668,0,0,0,0,0.283,0.069 +1,0.563,0.779,0.788,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +1,0.525,0.087,0.39,0,0,0,0,0.1,0.137 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.241 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0345 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.207 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.069 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.103 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.069 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.103 +0.333,0.588,0.124,0.151,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +0.333,0.588,0.224,0.206,0,0,0,0,0,0.069 +0.667,0.597,0.532,0.462,0.453,0.45,0,0,0.133,0.202 +1,0.563,0.749,0.788,0.246,0,0,0,0.333,0.0936 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.15 +1,0.537,0.0633,0.277,0,0,0,0,0,0.347 +1,0.538,0.107,0.387,0,0,0,0,0,0.256 +1,0.538,0.126,0.37,0,0,0,0,0,0.139 +1,0.538,0.141,0.359,0,0,0,0,0,0 +1,0.538,0.157,0.343,0,0,0,0,0,0.0345 +1,0.538,0.165,0.331,0,0,0,0,0,0 +1,0.538,0.187,0.328,0,0,0,0,0,0.138 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.172 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.172 +0.667,0.588,0.19,0.239,0,0,0,0,0.467,0.103 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.172 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0345 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.103 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.138 +0.667,0.529,0.307,0.397,0,0,0,0,0,0 +0.667,0.532,0.0759,0.116,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0.133,0.241 +1,0.528,0.0236,0.0768,0,0,0,0,0.1,0.138 +1,0.537,0.0316,0.136,0,0,0,0,0,0.241 +1,0.537,0.0633,0.277,0,0,0,0,0,0.0382 +1,0.538,0.107,0.387,0,0,0,0,0,0.241 +1,0.538,0.126,0.37,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0.129,0.133,0,0.0968 +0.667,0.546,0.11,0.245,0,0,0.281,0.367,0,0.417 +0.667,0.546,0.116,0.237,0,0,0.294,0.5,0,0.0907 +0.667,0.546,0.13,0.235,0,0,0.645,0,0,0 +0.667,0.546,0.137,0.235,0,0,0.425,0,0,0.069 +0.667,0.563,0.153,0.236,0,0,0.319,0,0,0.207 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0345 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.103 +0.667,0.623,0.31,0.289,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.0345 +1,0.615,0.79,0.668,0.103,0.133,0,0,0,0.0345 +1,0.563,0.749,0.788,0.565,0.317,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.102 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.166 +1,0.549,0.0396,0.163,0,0,0,0,0,0.113 +1,0.546,0.0764,0.274,0,0,0,0,0,0.114 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.172 +1,0.546,0.0996,0.256,0,0,0,0,0,0.138 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.069 +0.333,0.554,0.0657,0.143,0.57,0.683,0,0,0,0.132 +1,0.538,0.187,0.328,0,0,0,0,0,0.286 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.373 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.16 +0.667,0.588,0.19,0.239,0,0,0.45,0.5,0,0 +0.667,0.614,0.232,0.252,0,0,0.736,0,0.717,0.0345 +0.667,0.623,0.31,0.289,0,0,0.157,0,0,0.0345 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.138 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0.233,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.336 +0.667,0.537,0.0316,0.136,0,0,0,0,0.467,0.161 +1,0.537,0.0633,0.277,0,0,0,0,0,0.0575 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.285 +0.667,0.546,0.0894,0.263,0,0,0,0,0.467,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.0345 +0.667,0.546,0.11,0.245,0,0,0.392,0.383,0,0.276 +0.667,0.546,0.116,0.237,0,0,0.456,0.117,0,0.0345 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.103 +0.667,0.546,0.137,0.235,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0.383,0.0345 +0.667,0.588,0.19,0.239,0,0,0,0,0.0833,0.0345 +0.667,0.614,0.232,0.252,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0.717,0.069 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0.069 +0.667,0.563,0.504,0.542,0.264,0.383,0,0,0,0.247 +1,0.512,0.453,0.571,0.274,0.0667,0.379,0.75,0,0.194 +1,0.503,0.136,0.183,0,0,0.0811,0,0,0.174 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.512,0.0409,0.222,0,0,0,0,0.233,0.17 +1,0.537,0.0684,0.277,0,0,0,0,0.633,0.297 +1,0.546,0.109,0.274,0,0,0,0,0.0833,0.223 +0.333,0.554,0.0803,0.156,0,0,0,0,0,0.403 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0.231 +1,0.538,0.268,0.343,0,0,0,0,0,0.15 +1,0.538,0.287,0.331,0,0,0,0,0,0.069 +0.667,0.554,0.125,0.142,0,0,0,0,0,0.0345 +0.667,0.554,0.141,0.142,0,0,0,0,0,0.207 +0.667,0.562,0.154,0.143,0,0,0,0,0,0.138 +0.667,0.575,0.162,0.144,0,0,0,0,0,0.069 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.0345 +0.667,0.623,0.37,0.289,0,0,0,0,0,0.103 +1,0.64,0.718,0.518,0,0,0.29,0.383,0,0.0345 +1,0.597,0.569,0.462,0,0,0.355,0.117,0,0 +1,0.563,0.525,0.542,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0684,0.277,0,0,0,0,0,0.069 +0.667,0.546,0.109,0.274,0,0,0,0,0.467,0.138 +0.333,0.554,0.0803,0.156,0,0,0,0,0,0 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.207 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.0982 +0.667,0.546,0.232,0.235,0,0,0,0,0.233,0.485 +0.667,0.546,0.264,0.235,0,0,0,0,0,0.133 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.207 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.069 +0.667,0.614,0.315,0.252,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0,0.069 +1,0.64,0.718,0.518,0,0,0,0,0,0.316 +1,0.615,0.844,0.668,0,0,0,0,0,0.255 +1,0.562,0.272,0.296,0,0,0,0,0,0 +1,0.545,0.176,0.223,0,0,0,0,0,0.0814 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0.233,0 +1,0.537,0.0316,0.136,0,0,0,0,0.133,0.197 +1,0.537,0.0633,0.277,0,0,0,0,0.333,0.138 +1,0.538,0.107,0.387,0,0,0,0,0,0.191 +1,0.538,0.126,0.37,0,0,0,0,0.233,0.317 +1,0.538,0.141,0.359,0,0,0.54,0.633,0,0.279 +1,0.538,0.157,0.343,0,0,0.368,0.617,0,0.222 +0.667,0.546,0.116,0.237,0,0,0.6,0,0,0.0345 +0.667,0.546,0.13,0.235,0,0,0.713,0,0,0.069 +0.667,0.546,0.137,0.235,0,0,0.575,0,0,0 +0.667,0.563,0.153,0.236,0,0,0.483,0,0.133,0.345 +0.667,0.588,0.19,0.239,0,0,0.512,0,0.817,0.0345 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.103 +0.667,0.623,0.31,0.289,0.135,0.133,0,0,0,0.198 +0.667,0.614,0.432,0.362,0.638,0.55,0,0,0,0.0764 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0.069 +0.667,0.545,0.161,0.223,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0979 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0771 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +1,0.549,0.0396,0.163,0,0,0,0,0,0.25 +1,0.546,0.0764,0.274,0,0,0,0,0.717,0.138 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.107 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.345 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.069 +0.667,0.546,0.116,0.237,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0.0965,0.133,0,0 +0.667,0.546,0.137,0.235,0,0,0.516,0.367,0.133,0.345 +0.667,0.563,0.153,0.236,0,0,0,0,0.333,0.069 +0.667,0.588,0.19,0.239,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.141 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.069 +0.667,0.588,0.224,0.206,0,0,0,0,0,0.0345 +1,0.597,0.532,0.462,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0.138 +1,0.529,0.307,0.397,0,0,0,0,0,0.163 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.525,0.087,0.39,0,0,0,0,0,0.172 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.345 +0.667,0.546,0.0894,0.263,0,0,0.00839,0.5,0.383,0.0785 +0.667,0.546,0.0996,0.256,0,0,0,0,0.567,0.205 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.19 +0.667,0.546,0.116,0.237,0,0,0,0,0.133,0.0345 +0.667,0.546,0.13,0.235,0,0,0,0,0.333,0.0345 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.267 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.196 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0345 +0.333,0.588,0.124,0.151,0,0,0.218,0.133,0,0.0345 +0.667,0.623,0.31,0.289,0,0,0,0.367,0,0.263 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +1,0.597,0.532,0.462,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0.229 +1,0.545,0.161,0.223,0,0,0,0,0,0.165 +1,0.532,0.0759,0.116,0,0,0,0,0,0.241 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.0538 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.0432 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.549 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.0887 +1,0.538,0.126,0.37,0,0,0,0,0,0.189 +1,0.538,0.141,0.359,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.0345 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.332 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.069 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0.523,0.633,0.274,0.5,0,0.069 +0.667,0.588,0.19,0.239,0.684,0.05,0,0,0,0.172 +0.667,0.614,0.232,0.252,0.394,0,0.0126,0.133,0,0.103 +0.667,0.623,0.31,0.289,0,0,0.366,0.367,0,0.0345 +0.667,0.614,0.432,0.362,0,0,0.0126,0.133,0,0.103 +0.667,0.597,0.532,0.462,0,0,0.467,0.367,0,0.0345 +0.667,0.563,0.504,0.542,0,0,0.49,0,0,0 +1,0.529,0.307,0.397,0,0,0.0923,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.103 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0,0,0,0.069 +1,0.554,0.0461,0.162,0,0,0,0,0,0.103 +1,0.554,0.0526,0.156,0,0,0,0,0.133,0 +1,0.546,0.0996,0.256,0,0,0,0,0.333,0.257 +1,0.546,0.11,0.245,0,0,0,0,0,0.299 +1,0.538,0.165,0.331,0,0,0,0,0,0.111 +1,0.538,0.187,0.328,0,0,0,0,0,0.138 +1,0.538,0.198,0.327,0,0,0.161,0.133,0,0.103 +0.667,0.563,0.153,0.236,0,0,0.424,0.617,0,0.103 +0.667,0.588,0.19,0.239,0,0,0.39,0,0,0.0345 +1,0.64,0.339,0.353,0,0,0.35,0,0,0.069 +1,0.653,0.457,0.408,0,0,0.608,0,0,0.138 +0.667,0.614,0.432,0.362,0,0,0.411,0,0,0 +0.667,0.597,0.532,0.462,0,0,0.0965,0,0.233,0.0345 +1,0.563,0.504,0.542,0,0,0,0,0,0 +0.667,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.512,0.0409,0.222,0,0,0,0,0.633,0.138 +0.333,0.562,0.0181,0.0495,0,0,0.00839,0.133,0.317,0 +0.333,0.554,0.0636,0.162,0,0,0.755,0.367,0,0.0345 +0.333,0.554,0.0803,0.156,0,0,0.576,0,0,0.069 +0.333,0.554,0.0933,0.153,0,0,0.343,0,0,0.276 +0.333,0.554,0.101,0.147,0,0,0.358,0,0,0.0345 +0.667,0.546,0.198,0.237,0,0,0.478,0,0,0.103 +0.667,0.554,0.125,0.142,0,0,0.434,0,0,0.0345 +0.667,0.554,0.141,0.142,0,0,0.561,0,0,0.207 +1,0.563,0.29,0.236,0,0,0.33,0,0,0.0345 +1,0.588,0.305,0.239,0,0,0.344,0,0,0.345 +0.667,0.588,0.167,0.151,0,0,0.59,0,0.133,0.069 +1,0.653,0.546,0.408,0,0,0.21,0,0.1,0 +1,0.64,0.718,0.518,0,0,0,0,0,0.138 +1,0.615,0.844,0.668,0,0,0,0,0,0.166 +1,0.563,0.779,0.788,0.116,0.133,0.13,0.5,0,0.182 +1,0.545,0.176,0.223,0.452,0.317,0,0,0,0.137 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0,0.0469 +0.667,0.549,0.0433,0.163,0,0,0,0,0,0.463 +0.667,0.546,0.109,0.274,0,0,0.2,0.5,0,0.201 +0.333,0.554,0.0803,0.156,0,0,0.724,0,0,0.172 +0.333,0.554,0.0933,0.153,0,0,0.492,0,0,0.069 +0.333,0.554,0.101,0.147,0,0,0.471,0,0,0 +0.333,0.554,0.108,0.143,0,0,0.613,0,0,0.069 +0.667,0.554,0.125,0.142,0,0,0.255,0,0,0.217 +0.667,0.554,0.141,0.142,0,0,0,0,0,0.138 +0.667,0.562,0.154,0.143,0,0,0,0,0,0.241 +0.667,0.575,0.162,0.144,0,0,0,0,0,0.103 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.32 +0.333,0.592,0.194,0.169,0,0,0,0,0,0 +0.333,0.588,0.251,0.206,0,0,0,0,0.383,0.0345 +0.667,0.597,0.569,0.462,0,0,0,0,1,0.172 +0.667,0.563,0.525,0.542,0,0,0,0,0.05,0 +1,0.545,0.176,0.223,0,0,0,0,0,0.159 +1,0.532,0.0868,0.116,0,0,0,0,0,0.221 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0.103 +1,0.549,0.0396,0.163,0,0,0,0,0.817,0.241 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.134 +1,0.546,0.0894,0.263,0,0,0,0,0,0.188 +1,0.546,0.0996,0.256,0,0,0,0,0,0.225 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0.369 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.101,0.133,0,0.069 +0.667,0.554,0.0766,0.142,0,0,0.347,0.367,0,0.103 +0.667,0.563,0.153,0.236,0,0,0.531,0,0,0.069 +1,0.602,0.276,0.334,0,0,0.455,0,0,0.069 +1,0.64,0.339,0.353,0,0,0.403,0,0.883,0.0345 +0.667,0.623,0.31,0.289,0,0,0.548,0,1,0.0345 +0.667,0.614,0.432,0.362,0,0,0.313,0,0.0333,0.103 +1,0.615,0.79,0.668,0,0,0.343,0,0,0 +1,0.563,0.749,0.788,0,0,0.491,0,0,0 +1,0.512,0.453,0.571,0,0,0.249,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.538,0.107,0.387,0,0,0,0,0,0.183 +1,0.538,0.126,0.37,0,0,0,0,0,0.212 +1,0.538,0.141,0.359,0,0,0,0,0,0.0345 +1,0.538,0.157,0.343,0,0,0,0,0.233,0.285 +1,0.538,0.165,0.331,0,0,0,0,0,0.209 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.172 +0.667,0.546,0.137,0.235,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0.133,0.207 +0.667,0.588,0.19,0.239,0,0,0,0,0.333,0.0345 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.0345 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.345 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0.134 +1,0.563,0.504,0.542,0,0,0,0,0,0.372 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0,0,0,0.337 +1,0.554,0.0461,0.162,0,0,0,0,0,0.146 +1,0.554,0.0526,0.156,0,0,0,0,0,0.189 +1,0.538,0.141,0.359,0,0,0,0,0,0.464 +1,0.538,0.157,0.343,0,0,0,0,0,0.203 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.128 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.069 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.138 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.207 +0.667,0.588,0.19,0.239,0,0,0,0,0.233,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.207 +1,0.653,0.457,0.408,0,0,0,0,0,0.276 +0.333,0.588,0.224,0.206,0,0,0,0,0,0.103 +0.667,0.597,0.532,0.462,0.472,0.45,0,0,0.633,0 +0.667,0.563,0.504,0.542,0.472,0,0,0,0.567,0.116 +1,0.512,0.453,0.571,0,0,0,0,0,0.236 +1,0.503,0.136,0.183,0,0,0,0,0,0.13 +1,0.495,0.059,0.099,0.463,0.633,0,0,0,0.0797 +1,0.562,0.0159,0.0495,0,0.05,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0.069 +1,0.528,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.069 +1,0.537,0.0316,0.136,0,0,0,0,0.133,0 +1,0.537,0.0633,0.277,0.164,0.133,0,0,0.817,0.235 +0.333,0.554,0.0461,0.162,0.744,0.55,0,0,0.633,0.069 +0.333,0.554,0.0526,0.156,0,0,0,0,1,0.172 +0.333,0.554,0.0577,0.153,0,0,0,0,0.533,0.276 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.172 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.257 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.31 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0345 +0.667,0.614,0.232,0.252,0,0,0,0,0.633,0 +0.667,0.623,0.31,0.289,0,0,0,0,0.567,0.103 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0.633,0.069 +1,0.512,0.453,0.571,0.532,0.45,0,0,0.317,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.123 +1,0.537,0.0633,0.277,0,0,0,0,0,0.294 +1,0.546,0.0764,0.274,0,0,0,0,0,0.157 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.268 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.122 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0.159 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.181 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.167 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.207 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0345 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.138 +0.333,0.588,0.124,0.151,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0.103 +1,0.64,0.64,0.518,0,0,0,0,0.633,0 +1,0.615,0.79,0.668,0,0,0,0,0.0833,0 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.109 +1,0.551,0.0444,0.167,0,0,0,0,0,0.46 +1,0.548,0.113,0.286,0,0,0,0,0,0.193 +1,0.548,0.147,0.278,0,0,0,0,0,0.421 +1,0.548,0.174,0.27,0,0,0,0,0,0.0692 +0.667,0.555,0.104,0.154,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +0.667,0.555,0.129,0.149,0,0,0,0,0,0 +0.667,0.555,0.146,0.149,0,0,0,0,0,0.0345 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.103 +1,0.606,0.464,0.363,0,0,0,0,0,0.172 +0.667,0.617,0.326,0.286,0,0,0,0,0.233,0.103 +1,0.658,0.565,0.501,0,0,0,0,0,0.103 +1,0.645,0.743,0.656,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0.069 +1,0.568,0.806,0.851,0,0,0,0,0,0.0345 +1,0.546,0.182,0.22,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0.0864 +1,0.542,0.16,0.404,0,0,0,0,0,0.142 +0.333,0.555,0.0826,0.164,0,0,0,0,0.233,0.208 +0.333,0.555,0.0961,0.16,0,0,0,0,0.3,0 +0.333,0.555,0.104,0.154,0,0,0,0,0.417,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.122 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.138 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.207 +0.333,0.576,0.167,0.154,0,0,0,0,0.05,0.0345 +0.333,0.589,0.172,0.168,0,0,0,0,0.183,0.241 +0.333,0.594,0.2,0.2,0,0,0,0,0,0.069 +0.667,0.617,0.501,0.454,0,0,0,0,0,0.139 +1,0.619,0.873,0.806,0,0,0,0,0.05,0.177 +1,0.566,0.543,0.584,0,0,0,0,0.483,0.0758 +1,0.546,0.182,0.22,0,0,0,0,1,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.583,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.283,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0.883,0.069 +1,0.529,0.09,0.402,0.503,0.633,0,0,0.0833,0.138 +0.667,0.548,0.0788,0.286,0.198,0.0667,0,0,0,0.0345 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.303 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.373 +0.667,0.548,0.113,0.259,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.0345 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.103 +0.667,0.548,0.142,0.249,0,0,0,0,0,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0345 +0.333,0.576,0.106,0.154,0,0,0,0,0.483,0.138 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.172 +0.667,0.626,0.32,0.351,0,0,0,0,0.383,0.448 +0.667,0.617,0.446,0.454,0,0,0,0,1,0.069 +1,0.619,0.817,0.806,0,0,0,0,0.0667,0.0345 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0.25,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.31 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.103 +1,0.538,0.0323,0.139,0,0,0,0,0,0.122 +1,0.54,0.0653,0.284,0,0,0,0,0,0.437 +0.667,0.548,0.0788,0.286,0.581,0.6,0,0,0.717,0.172 +1,0.542,0.131,0.392,0.593,0.333,0,0,0,0.069 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.203 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.131 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.172 +0.667,0.548,0.134,0.249,0,0,0.425,0.5,0,0.276 +0.667,0.548,0.142,0.249,0,0,0.269,0,0,0.0345 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0.138 +0.667,0.576,0.106,0.154,0,0,0,0,0,0.103 +0.667,0.589,0.128,0.168,0,0,0,0,0.717,0.125 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.255 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0.165 +1,0.505,0.14,0.183,0,0,0,0,0,0.101 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.227 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.538,0.0323,0.139,0,0,0,0,0.233,0.0345 +1,0.54,0.0653,0.284,0.367,0.383,0,0,0,0.192 +1,0.548,0.0788,0.286,0.61,0.317,0,0,0,0.127 +0.667,0.548,0.0923,0.278,0.601,0,0,0,0,0.138 +0.667,0.548,0.103,0.27,0.581,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0.0797,0,0,0,0,0.414 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0345 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.333,0.564,0.0871,0.15,0,0,0.117,0.133,0.233,0.172 +0.667,0.591,0.196,0.259,0,0,0.564,0.367,0,0.172 +0.667,0.617,0.239,0.286,0,0,0.12,0,0.233,0 +1,0.658,0.473,0.501,0,0,0,0,0,0.207 +1,0.645,0.662,0.656,0.57,0.467,0,0,0,0 +1,0.619,0.817,0.806,0.199,0,0,0,0,0.069 +1,0.568,0.774,0.851,0,0,0,0,0,0.101 +1,0.531,0.317,0.391,0,0,0,0,0,0.0744 +0.667,0.533,0.0781,0.116,0,0,0,0,0,0.0254 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.383,0.369 +1,0.548,0.0788,0.286,0,0,0,0,0.817,0.352 +0.333,0.555,0.0541,0.164,0,0,0.0559,0.133,0,0.103 +0.333,0.555,0.0593,0.16,0,0,0.557,0.367,0,0.069 +0.333,0.555,0.0646,0.154,0,0,0.576,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.407,0,0,0.0345 +0.667,0.548,0.134,0.249,0,0,0.779,0,0,0.31 +0.667,0.555,0.0789,0.149,0.191,0.383,0.683,0,0,0.241 +0.667,0.566,0.158,0.251,0.342,0.317,0.503,0,0,0.414 +0.333,0.576,0.106,0.154,0,0,0.0811,0,0.133,0.0345 +0.333,0.589,0.128,0.168,0,0,0,0,0.1,0.374 +0.667,0.626,0.32,0.351,0.638,0.467,0,0,0,0.139 +0.667,0.617,0.446,0.454,0,0,0,0,0.633,0.112 +1,0.619,0.817,0.806,0.234,0.383,0,0,0.817,0.235 +1,0.568,0.774,0.851,0.596,0.0833,0,0,0,0.0345 +1,0.531,0.317,0.391,0.41,0,0,0,0,0.0762 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.54,0.0653,0.284,0,0,0,0,0.233,0.0345 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.0345 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0 +0.667,0.555,0.0593,0.16,0,0,0,0,0,0.103 +0.667,0.548,0.113,0.259,0,0,0,0,0.617,0.0345 +0.667,0.548,0.119,0.251,0,0,0,0,0.1,0.414 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.138 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0345 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0345 +0.667,0.591,0.196,0.259,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0.133,0.199 +1,0.645,0.662,0.656,0,0,0,0,0.35,0.0345 +1,0.619,0.817,0.806,0,0,0,0,0,0.135 +1,0.568,0.774,0.851,0,0,0,0,0,0.228 +1,0.531,0.317,0.391,0,0,0,0,0,0.138 +1,0.533,0.0781,0.116,0,0,0,0,0,0.193 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.069 +1,0.529,0.0181,0.0495,0,0,0,0,0,0.194 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0718 +1,0.514,0.0421,0.228,0,0,0,0,0,0.141 +1,0.54,0.0706,0.284,0,0,0,0,0.55,0.103 +1,0.542,0.16,0.404,0,0,0,0,0.417,0.0345 +1,0.542,0.212,0.392,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.138 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.0345 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.069 +0.333,0.555,0.129,0.149,0.432,0.467,0,0,0,0 +0.333,0.555,0.146,0.149,0.837,0,0,0,0,0.069 +0.333,0.564,0.159,0.15,0.224,0,0,0,0,0.207 +0.667,0.591,0.315,0.259,0,0,0,0,0,0 +1,0.645,0.479,0.404,0,0,0,0,0.233,0.0345 +1,0.658,0.565,0.501,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0.0723 +1,0.619,0.873,0.806,0,0,0,0,0,0.216 +1,0.568,0.806,0.851,0,0,0,0,0.05,0.183 +1,0.531,0.345,0.391,0,0,0,0,0.667,0.0501 +1,0.533,0.0894,0.116,0,0,0,0,0,0.0682 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0358 +1,0.529,0.0226,0.0781,0,0,0,0,0,0.455 +0.667,0.538,0.0301,0.139,0,0,0.141,0.5,0,0 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0.343 +0.667,0.555,0.0654,0.168,0,0,0,0,0.233,0.196 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.0118 +0,0.562,0.0181,0.0495,0,0,0,0,0.233,0.0345 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.172 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.171 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.0345 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.069 +0.333,0.564,0.159,0.15,0,0,0.193,0.3,0,0.172 +0.667,0.591,0.315,0.259,0,0,0.527,0.2,0,0.0345 +0.667,0.617,0.326,0.286,0,0,0.295,0,0,0.0345 +1,0.658,0.565,0.501,0.538,0.55,0.473,0,0,0.069 +1,0.645,0.743,0.656,0.399,0.15,0.627,0,0,0.172 +1,0.619,0.873,0.806,0,0,0.536,0,0,0.0345 +1,0.566,0.543,0.584,0,0,0.559,0,0,0 +1,0.531,0.345,0.391,0,0,0.329,0,0,0.0883 +1,0.505,0.161,0.183,0,0,0.351,0,0,0.234 +1,0.529,0.0383,0.0743,0,0,0.422,0,0,0 +1,0.529,0.0241,0.0578,0,0,0.105,0,0,0.0345 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.143 +1,0.551,0.0406,0.167,0,0,0,0,0,0.116 +1,0.555,0.0473,0.168,0,0,0,0,0,0.306 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.154 +0.667,0.548,0.103,0.27,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0.513,0.7,0,0,0.633,0.0345 +0.667,0.548,0.134,0.249,0,0,0,0,0.0833,0 +0.333,0.555,0.0789,0.149,0,0,0.129,0.133,0,0.069 +0.667,0.566,0.158,0.251,0,0,0.443,0.367,0,0.207 +0.667,0.591,0.196,0.259,0,0,0.334,0,0,0.207 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.241 +1,0.658,0.473,0.501,0.148,0.133,0,0,0,0.069 +1,0.617,0.446,0.454,0.5,0.567,0,0,0,0.0775 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0.113,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.138 +1,0.529,0.09,0.402,0,0,0,0,0,0.0857 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.266 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.361 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.386 +0.667,0.548,0.113,0.259,0,0,0,0,0.133,0.154 +0.667,0.548,0.119,0.251,0,0,0,0,0.583,0.0799 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.241 +0.333,0.555,0.0789,0.149,0,0,0.221,0.133,0,0.345 +0.667,0.566,0.158,0.251,0,0,0.622,0.617,0,0.414 +1,0.606,0.286,0.363,0,0,0.463,0,0.133,0 +1,0.645,0.351,0.404,0,0,0.613,0,0.1,0 +1,0.658,0.473,0.501,0,0,0.217,0,0,0.0345 +0.333,0.589,0.231,0.252,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0.335 +1,0.531,0.317,0.391,0,0,0,0,0,0.182 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0983 +1,0.497,0.0323,0.107,0,0,0,0,0.233,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0.189 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.256 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.103 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0 +0.667,0.555,0.0593,0.16,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.103 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.0345 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.0345 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.115 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.373 +0.667,0.591,0.196,0.259,0,0,0.221,0.25,0.383,0.0345 +0.667,0.617,0.239,0.286,0,0,0,0,0.333,0 +1,0.658,0.473,0.501,0,0,0,0,0,0.172 +1,0.645,0.662,0.656,0,0,0,0,0,0.0345 +1,0.619,0.817,0.806,0,0,0,0,0,0.0345 +1,0.566,0.521,0.584,0,0,0,0,0,0.0467 +1,0.546,0.167,0.22,0,0,0,0,0,0.22 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.667,0.551,0.0406,0.167,0,0,0,0,0.483,0 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.207 +0.667,0.548,0.103,0.27,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0.0811,0.5,0,0.138 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.103 +0.667,0.548,0.142,0.249,0,0,0,0,0.233,0.172 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0.172 +0.667,0.591,0.196,0.259,0,0,0,0,0.233,0.31 +1,0.645,0.351,0.404,0,0,0,0,0,0.069 +0.667,0.626,0.32,0.351,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0.0903 +1,0.566,0.521,0.584,0,0,0,0,0,0.0892 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0,0,0.233,0.287 +1,0.542,0.11,0.404,0,0,0,0,0,0.0809 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.23 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.295 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.069 +0.667,0.548,0.119,0.251,0,0,0.677,0.5,0,0.138 +0.667,0.548,0.134,0.249,0,0,0.799,0,0,0.0345 +0.667,0.548,0.142,0.249,0,0,0.531,0,0,0.103 +1,0.568,0.23,0.351,0,0,0.319,0,0,0.0345 +0.667,0.591,0.196,0.259,0,0,0.439,0,0,0.356 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.207 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.0345 +1,0.645,0.662,0.656,0,0,0,0,0,0.196 +0.667,0.6,0.55,0.554,0.609,0.633,0,0,0,0 +1,0.568,0.774,0.851,0.335,0.0667,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0.138 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.15 +1,0.555,0.0654,0.168,0,0,0,0,0,0.086 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.138 +0.333,0.555,0.104,0.154,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0372 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.268 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.207 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.069 +0.333,0.576,0.167,0.154,0,0,0,0,0.05,0.0345 +0.333,0.589,0.172,0.168,0,0,0,0,0.917,0.172 +1,0.658,0.565,0.501,0.482,0.467,0,0,0,0.141 +1,0.645,0.743,0.656,0.407,0,0,0,0.233,0.372 +1,0.619,0.873,0.806,0,0,0,0,0,0.241 +1,0.566,0.543,0.584,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.8,0.103 +1,0.54,0.0706,0.284,0,0,0,0,1,0.0345 +0.667,0.548,0.113,0.286,0,0,0,0,0.133,0.103 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.107 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.423 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.162 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.103 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.103 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.069 +0.333,0.564,0.159,0.15,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.297,0.5,0,0 +0.667,0.617,0.326,0.286,0,0,0.78,0,0,0.241 +0.667,0.626,0.383,0.351,0,0,0.28,0,0,0 +1,0.617,0.501,0.454,0,0,0,0,0,0.0377 +1,0.619,0.873,0.806,0,0,0,0,0,0.088 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0.0794 +1,0.505,0.161,0.183,0,0,0,0,0,0.0684 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0.0345 +1,0.551,0.0406,0.167,0,0,0,0,0,0.069 +1,0.548,0.0788,0.286,0,0,0,0,0,0.169 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.182 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.218 +0.667,0.548,0.113,0.259,0,0,0,0,0.483,0.172 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.103 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.069 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0345 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0.0345 +0.667,0.576,0.106,0.154,0,0,0,0,0,0.069 +0.667,0.589,0.128,0.168,0,0,0,0,0.883,0.103 +0.667,0.594,0.168,0.2,0,0,0,0,0.317,0 +0.667,0.589,0.231,0.252,0,0,0,0,0,0.069 +1,0.6,0.55,0.554,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.203 +1,0.538,0.0323,0.139,0,0,0,0,0,0.132 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.337 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.069 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0345 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.0345 +0.667,0.548,0.119,0.251,0,0,0,0,0.233,0 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.0345 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.266,0.5,0,0.379 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0345 +0.667,0.617,0.239,0.286,0,0,0,0,0.133,0.069 +0.667,0.626,0.32,0.351,0,0,0,0,0.1,0.0345 +1,0.645,0.662,0.656,0,0,0,0,0,0.22 +1,0.619,0.817,0.806,0,0,0,0,0,0.111 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0.483,0.0345 +1,0.551,0.0406,0.167,0,0,0,0,0,0.069 +1,0.548,0.0788,0.286,0,0,0,0,0,0.271 +1,0.548,0.0923,0.278,0,0,0,0,0,0.238 +1,0.548,0.103,0.27,0,0,0,0,0,0.181 +1,0.548,0.113,0.259,0,0,0,0,0,0.178 +0.667,0.555,0.0676,0.15,0,0,0,0,0,0.069 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.172 +0.667,0.555,0.0789,0.149,0,0,0,0,0,0.0345 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.31 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.138 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.069 +0.667,0.594,0.168,0.2,0,0,0,0,0,0 +0.667,0.589,0.231,0.252,0,0,0,0,0,0 +0.667,0.581,0.283,0.302,0,0,0,0,0,0 +0.667,0.564,0.269,0.317,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0.204 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.22 +1,0.529,0.0173,0.0495,0,0,0,0,0,0.069 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.276 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0.0801 +0.667,0.551,0.0406,0.167,0,0,0,0,0.833,0.138 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.172 +0.333,0.562,0.0159,0.0495,0,0,0.049,0.133,0,0.103 +0.333,0.555,0.0593,0.16,0,0,0.481,0.367,0,0 +0.333,0.555,0.0646,0.154,0,0,0.764,0,0,0.0345 +0.333,0.555,0.0676,0.15,0,0,0.459,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0.559,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.452,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0.554,0,0,0.0345 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.207 +0.333,0.594,0.168,0.2,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.172 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0.233,0.172 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.0345 +1,0.538,0.0323,0.139,0,0,0,0,0,0 +1,0.54,0.0653,0.284,0,0,0.31,0.5,0,0.235 +0.667,0.555,0.0473,0.168,0,0,0.383,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0.394,0,0,0.138 +0.667,0.548,0.103,0.27,0,0,0.484,0,0,0.0988 +0.667,0.548,0.113,0.259,0,0,0.324,0,0.383,0.069 +0.667,0.548,0.119,0.251,0,0,0,0,0.333,0.0345 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.276 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.138 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0345 +0.667,0.591,0.196,0.259,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.069 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0.069 +1,0.568,0.774,0.851,0,0,0,0,0,0.145 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0314 +1,0.529,0.0203,0.0503,0,0,0,0,0,0.224 +1,0.529,0.0226,0.0781,0,0,0,0,0,0.0953 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.05,0 +0.667,0.54,0.0706,0.284,0,0,0,0,1,0.305 +0.667,0.548,0.113,0.286,0,0,0,0,0.4,0.174 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.338 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.245 +0.333,0.555,0.104,0.154,0,0,0,0,0,0 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.069 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.241 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.069 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.069 +0.333,0.576,0.167,0.154,0,0,0,0,0,0.069 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.0345 +0.667,0.626,0.383,0.351,0,0,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0.717,0.069 +1,0.619,0.873,0.806,0,0,0,0,0,0 +1,0.568,0.806,0.851,0.515,0.467,0,0,0,0 +1,0.546,0.182,0.22,0.644,0,0,0,0,0 +1,0.533,0.0894,0.116,0.44,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0.183,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0.0345 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.172 +1,0.529,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.05,0 +1,0.538,0.0301,0.139,0,0,0,0,0.183,0.0345 +1,0.551,0.0444,0.167,0,0,0,0,0,0.069 +1,0.555,0.0654,0.168,0,0,0,0,0,0.069 +1,0.555,0.0826,0.164,0,0,0,0,0,0.0601 +1,0.555,0.0961,0.16,0,0,0,0,0,0.314 +1,0.548,0.191,0.259,0,0,0,0,0,0.12 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.212 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.103 +0.333,0.555,0.146,0.149,0,0,0,0,0,0 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.31 +0.333,0.576,0.167,0.154,0,0,0,0,0,0 +0.333,0.589,0.172,0.168,0,0,0,0,0.233,0.268 +0.667,0.626,0.383,0.351,0,0,0,0,0,0 +1,0.617,0.501,0.454,0,0,0,0,0,0.069 +1,0.6,0.588,0.554,0,0,0,0,0,0.277 +1,0.566,0.543,0.584,0,0,0,0,0,0.194 +1,0.546,0.182,0.22,0,0,0,0,0,0.0864 +1,0.533,0.0894,0.116,0.0905,0,0,0,0.3,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0.408 +0.667,0.551,0.0406,0.167,0,0,0.0406,0.133,0,0.153 +1,0.548,0.0788,0.286,0,0,0,0.617,0.233,0.212 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.261 +0.667,0.548,0.103,0.27,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0499 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.103 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.069 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0345 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.069 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.138 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.103 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.0345 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.0345 +0.333,0.581,0.283,0.302,0,0,0,0,0,0.069 +1,0.568,0.774,0.851,0,0,0,0,0,0.168 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.295 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.192 +1,0.538,0.0323,0.139,0,0,0,0,0,0.101 +1,0.54,0.0653,0.284,0,0,0,0,0,0.31 +1,0.548,0.0788,0.286,0,0,0,0,0,0.147 +1,0.548,0.0923,0.278,0,0,0.33,0.383,0,0.171 +1,0.548,0.103,0.27,0,0,0.634,0.117,0,0.165 +1,0.542,0.162,0.364,0,0,0.424,0,0,0 +1,0.542,0.171,0.352,0,0,0.508,0,0,0.103 +1,0.542,0.194,0.349,0,0,0.306,0,0,0 +1,0.542,0.205,0.349,0,0,0.443,0,0,0.211 +1,0.568,0.23,0.351,0,0,0.603,0,0,0.138 +1,0.606,0.286,0.363,0,0,0.266,0,0,0.278 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.207 +0.333,0.594,0.168,0.2,0.596,0.7,0,0,0,0 +0.667,0.617,0.446,0.454,0.299,0,0,0,0.383,0 +1,0.619,0.817,0.806,0,0,0.201,0.133,0.1,0 +1,0.568,0.774,0.851,0,0,0.124,0.367,0,0.071 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0573 +1,0.54,0.0653,0.284,0,0,0,0,0,0.446 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.215 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.353 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.11 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0495 +0.333,0.555,0.0676,0.15,0,0,0,0,0.717,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.207 +0.667,0.548,0.142,0.249,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0.483,0.103 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.241 +1,0.645,0.351,0.404,0,0,0,0,0,0.103 +1,0.658,0.473,0.501,0,0,0,0,0,0.069 +1,0.645,0.662,0.656,0.704,0.7,0,0,0,0.0345 +1,0.619,0.817,0.806,0.226,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0.138 +1,0.548,0.0788,0.286,0.581,0.7,0,0,0,0.103 +1,0.542,0.131,0.392,0.0963,0.133,0,0,0,0.28 +1,0.542,0.146,0.381,0.533,0.567,0,0,0,0.0961 +0.667,0.548,0.113,0.259,0.545,0,0,0,0,0.102 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.241 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.069 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0345 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.069 +0.667,0.591,0.196,0.259,0.168,0.133,0,0,0,0.207 +0.333,0.589,0.128,0.168,0.512,0.333,0,0,0,0.241 +0.333,0.594,0.168,0.2,0,0,0,0,0,0.0345 +0.333,0.589,0.231,0.252,0,0,0.234,0.383,0,0 +0.333,0.581,0.283,0.302,0,0,0.572,0.117,0,0.099 +1,0.568,0.774,0.851,0,0,0.35,0,0,0.099 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0.138 +1,0.54,0.0653,0.284,0,0,0,0,0,0.479 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.138 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.0345 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.069 +0.667,0.548,0.113,0.259,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.069 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.138 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0345 +0.667,0.591,0.196,0.259,0,0,0,0,0.233,0.0345 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.241 +1,0.658,0.473,0.501,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.0903 +1,0.619,0.817,0.806,0,0,0,0,0,0.148 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.138,0.5,0,0.172 +1,0.538,0.0301,0.139,0,0,0.0811,0,0,0.174 +1,0.54,0.0706,0.284,0,0,0,0,0,0.155 +1,0.548,0.113,0.286,0,0,0,0,0,0.0597 +1,0.542,0.212,0.392,0,0,0,0,0,0.431 +1,0.542,0.252,0.381,0,0,0,0,0,0.599 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.466 +0.333,0.555,0.111,0.15,0,0,0.0727,0.05,0,0.258 +0.333,0.555,0.129,0.149,0,0,0.368,0.45,0,0.0345 +0.667,0.548,0.273,0.249,0,0,0.529,0,0,0.276 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.0345 +0.667,0.591,0.315,0.259,0,0,0,0,0.233,0 +1,0.645,0.479,0.404,0.592,0.517,0,0,0,0.207 +1,0.658,0.565,0.501,0.273,0.417,0,0,0,0 +0.667,0.617,0.501,0.454,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0.13 +1,0.568,0.806,0.851,0,0,0,0,0,0.359 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.483,0.0527 +1,0.542,0.16,0.404,0,0,0,0,0,0.17 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.103 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.0345 +1,0.542,0.277,0.364,0,0,0,0,0.8,0.122 +0.667,0.548,0.204,0.251,0,0,0,0,0.167,0.299 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.17 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.276 +1,0.568,0.441,0.351,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0.05,0.241 +0.667,0.617,0.326,0.286,0,0,0,0,1,0.0345 +0.667,0.626,0.383,0.351,0,0,0,0,1,0.0345 +0.667,0.617,0.501,0.454,0,0,0,0,1,0.0345 +0.667,0.6,0.588,0.554,0,0,0,0,1,0.219 +1,0.568,0.806,0.851,0,0,0,0,0.05,0.146 +1,0.516,0.509,0.561,0,0,0,0,0,0.107 +1,0.505,0.161,0.183,0,0,0,0,0,0.115 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.208 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0.328 +1,0.609,0.0577,0.295,0,0,0,0,0.367,0.296 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.0818 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.103 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0.0345 +0.667,0.591,0.0577,0.164,0,0,0,0,0,0.138 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0.241 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0.31 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.144 +0.667,0.64,0.139,0.274,0.156,0.133,0,0,0,0.243 +0.667,0.671,0.172,0.294,0.497,0.6,0,0,0.5,0.103 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.207 +0.667,0.712,0.28,0.453,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.104 +0.667,0.681,0.481,0.62,0,0,0,0,0.25,0.148 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0.0792 +1,0.571,0.177,0.249,0,0,0,0,0,0.101 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.122 +1,0.56,0.0224,0.0578,0,0,0,0,0,0.0968 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.57,0.0296,0.143,0,0,0.315,0.233,0,0.0345 +1,0.585,0.0368,0.172,0,0,0.565,0,0.133,0.0345 +0.667,0.591,0.0427,0.175,0,0,0.334,0,0.117,0.276 +0.667,0.591,0.0486,0.174,0,0,0.508,0,0,0.069 +0.667,0.591,0.0532,0.17,0,0,0.499,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0.495,0,0,0.0937 +0.667,0.62,0.105,0.271,0,0,0.322,0,0,0.193 +0.667,0.62,0.118,0.269,0,0,0.39,0,0,0.0345 +0.667,0.62,0.125,0.269,0,0,0.831,0,0,0.0345 +0.667,0.64,0.139,0.274,0,0,0.488,0,0,0 +0.667,0.671,0.172,0.294,0,0,0.545,0,0.883,0.241 +0.667,0.702,0.21,0.35,0,0,0.592,0,0.867,0.103 +0.667,0.712,0.28,0.453,0,0,0.705,0,0,0.31 +1,0.772,0.578,0.829,0,0,0.427,0,0.883,0.0345 +1,0.741,0.713,0.905,0,0,0.32,0,0.367,0 +1,0.679,0.676,0.821,0,0,0.262,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0.28 +1,0.565,0.0695,0.116,0,0,0,0,0,0.143 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0.103 +1,0.609,0.0577,0.295,0,0,0,0,0,0.22 +1,0.62,0.0695,0.301,0.523,0.633,0,0,0,1 +0.667,0.62,0.0813,0.299,0.088,0.1,0,0,0,0.138 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.069 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.414 +0.333,0.591,0.0604,0.16,0,0,0,0,0.25,0.069 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0345 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.069 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0.21,0.133,0.383,0 +0.667,0.712,0.28,0.453,0,0,0.435,0.333,0.617,0 +0.667,0.702,0.39,0.569,0,0,0.471,0,0,0.207 +1,0.741,0.713,0.905,0,0,0.231,0,0,0.241 +1,0.64,0.456,0.564,0,0,0,0,0,0.112 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0881 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.0684 +1,0.57,0.0296,0.143,0,0,0.218,0.133,0.133,0.138 +0.667,0.585,0.0368,0.172,0,0,0.547,0.333,0.367,0.103 +0.667,0.591,0.0427,0.175,0,0,0.462,0,0,0 +1,0.649,0.114,0.424,0,0,0.702,0,0,0.225 +0.667,0.62,0.0905,0.291,0,0,0.48,0,0,0.203 +0.333,0.591,0.0577,0.164,0,0,0.161,0,0,0.069 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0345 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0345 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.103 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.069 +0.667,0.671,0.172,0.294,0,0,0.509,0.467,0,0.069 +0.667,0.702,0.21,0.35,0,0,0.327,0,0.25,0.276 +1,0.788,0.413,0.655,0.103,0.133,0.641,0,0,0.0345 +1,0.772,0.578,0.829,0.563,0.6,0.927,0,0,0.172 +1,0.741,0.713,0.905,0.452,0,0,0,0,0.069 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.618,0.409,0.51,0.0764,0.133,0,0,0,0 +1,0.562,0.0159,0.0495,0.6,0.6,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.591,0.0427,0.175,0,0,0.0811,0.133,0.633,0.0345 +1,0.62,0.0813,0.299,0,0,0.766,0.333,1,0.241 +1,0.649,0.128,0.411,0.255,0.383,0.487,0,0.117,0.172 +1,0.649,0.142,0.394,0.441,0.1,0.343,0,0.633,0 +0.667,0.62,0.105,0.271,0,0,0.355,0,0.117,0.0345 +0.667,0.62,0.118,0.269,0,0,0.443,0,0,0.241 +0.667,0.62,0.125,0.269,0,0,0.445,0,0,0.0345 +0.667,0.64,0.139,0.274,0,0,0.178,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.069 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.138 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.138 +1,0.772,0.578,0.829,0,0,0,0,0.883,0.103 +1,0.741,0.713,0.905,0,0,0,0,0.117,0.097 +1,0.679,0.676,0.821,0,0,0,0,0,0.0957 +1,0.599,0.278,0.356,0,0,0,0,0,0.012 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.151 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0.133 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +0.667,0.591,0.0737,0.174,0.145,0.133,0,0,0.25,0.069 +0.333,0.562,0.0181,0.0495,0.395,0.6,0,0,0,0.069 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.0345 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.0345 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.172 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.103 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.0345 +0.333,0.632,0.152,0.2,0,0,0,0,0,0.0345 +0.333,0.637,0.177,0.251,0,0,0,0,0,0.102 +0.667,0.702,0.438,0.569,0,0,0,0,0.5,0.269 +1,0.681,0.514,0.62,0,0,0,0,0,0 +1,0.601,0.247,0.307,0,0,0,0,0,0.172 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +0.667,0.585,0.0403,0.172,0,0,0,0,0,0.345 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0.241 +0.667,0.62,0.129,0.299,0.564,0.633,0,0,0,0.0345 +0.333,0.591,0.0855,0.17,0.054,0.1,0,0,0,0.261 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0.195 +0.333,0.591,0.0986,0.16,0,0,0,0,0.133,0 +0.667,0.62,0.21,0.269,0,0,0,0,0.367,0.069 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.069 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.0345 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.0345 +0.333,0.632,0.152,0.2,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0.633,0.172 +0.667,0.702,0.438,0.569,0,0,0,0,0.117,0 +1,0.741,0.763,0.905,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0.0345 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +1,0.585,0.0368,0.172,0,0,0,0,0,0.297 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.167 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.11 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0.397 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.244 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.103 +0.667,0.62,0.118,0.269,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.103 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.069 +0.333,0.616,0.0938,0.172,0,0,0,0,0.25,0.0345 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.103 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.261 +0.333,0.632,0.203,0.309,0,0,0,0,0,0.14 +0.667,0.681,0.481,0.62,0.492,0.483,0,0,0,0.069 +0.667,0.64,0.456,0.564,0.389,0,0,0,0,0.0918 +0.667,0.599,0.278,0.356,0,0,0,0,0,0.0931 +0.667,0.565,0.0695,0.116,0,0,0,0,0,0.0204 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0 +1,0.56,0.0152,0.0495,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0,0,0.25,0.069 +1,0.591,0.0427,0.175,0,0,0,0,0,0 +1,0.591,0.0486,0.174,0,0,0,0,0,0.069 +1,0.591,0.0532,0.17,0,0,0,0,0,0.0345 +1,0.591,0.0577,0.164,0,0,0,0,0,0.241 +1,0.62,0.105,0.271,0,0,0,0,0,0 +1,0.62,0.118,0.269,0,0,0,0,0,0.141 +1,0.62,0.125,0.269,0,0,0,0,0,0.292 +0.667,0.601,0.0774,0.162,0,0,0.112,0.383,0,0.0345 +0.667,0.671,0.172,0.294,0,0,0.326,0.0833,0.633,0 +0.667,0.702,0.21,0.35,0,0,0.674,0,0.367,0.0345 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.069 +1,0.772,0.578,0.829,0,0,0,0,0,0.207 +1,0.741,0.713,0.905,0,0,0,0,0.5,0 +1,0.601,0.236,0.307,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0,0,0,0.31 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.0911 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.241 +1,0.62,0.0905,0.291,0,0,0,0,0,0.125 +0.667,0.591,0.0577,0.164,0,0,0,0,0,0.0345 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0.0345 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0 +0.667,0.591,0.0702,0.159,0,0,0,0,0,0.069 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.138 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.172 +0.667,0.702,0.21,0.35,0,0,0.653,0.467,0,0.103 +0.667,0.712,0.28,0.453,0,0,0.178,0,0,0.148 +0.667,0.632,0.203,0.309,0.352,0.483,0,0,0,0.0345 +1,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.0345 +0.667,0.609,0.0577,0.295,0.623,0.633,0,0,0,0 +0.333,0.591,0.0427,0.175,0.445,0.1,0,0,0,0.129 +0.667,0.62,0.0813,0.299,0.693,0,0.491,0.467,0,0.0237 +0.667,0.62,0.0905,0.291,0.542,0,0.319,0,0,0.0345 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0345 +0.333,0.591,0.0604,0.16,0,0,0,0,0.383,0 +0.667,0.62,0.118,0.269,0,0,0,0,0.867,0.172 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.138 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.103 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.172 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.207 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.069 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0345 +0.667,0.601,0.236,0.307,0,0,0,0,0,0 +0.667,0.58,0.147,0.203,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.558,0.0197,0.0518,0,0,0,0,0,0.0345 +1,0.558,0.0289,0.11,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.069 +1,0.633,0.0786,0.417,0,0,0,0,0,0.417 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.172 +0.667,0.62,0.0813,0.299,0.741,0.483,0,0,0,0 +0.333,0.591,0.0532,0.17,0.106,0,0,0,0,0.0345 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.069 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.172 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.673 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.207 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.138 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0.383,0.103 +1,0.788,0.413,0.655,0.184,0.133,0,0,0.867,0.204 +0.667,0.702,0.39,0.569,0.641,0.35,0,0,0,0.195 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0.0718 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0.25,0.289 +1,0.609,0.0624,0.295,0,0,0,0,0,0.115 +1,0.62,0.0991,0.301,0,0,0,0,0,0.536 +1,0.62,0.129,0.299,0,0,0,0,0.75,0.069 +1,0.62,0.153,0.291,0,0,0,0,0,0.172 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0.103 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.0345 +0.333,0.591,0.114,0.159,0,0,0,0,0,0 +0.667,0.591,0.129,0.159,0,0,0,0,0,0.103 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.201 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.194 +0.333,0.632,0.152,0.2,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0.0345 +0.667,0.702,0.438,0.569,0,0,0,0,0,0.172 +1,0.741,0.763,0.905,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0.28,0.383,0,0 +1,0.562,0.0181,0.0495,0,0,0.0196,0.0833,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.374 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0.069 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0.0345 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.126 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.341 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.4 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.103 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.069 +1,0.772,0.419,0.501,0.535,0.483,0.338,0.467,0.133,0.0345 +1,0.788,0.493,0.655,0.52,0,0.372,0,0.117,0 +1,0.772,0.649,0.829,0.434,0,0.503,0,0,0 +1,0.741,0.763,0.905,0,0,0.206,0,0,0.138 +1,0.679,0.704,0.821,0,0,0,0,0,0.113 +0.667,0.599,0.302,0.356,0,0,0,0,0,0.069 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.558,0.0145,0.0495,0,0,0,0,0,0.186 +1,0.56,0.0178,0.0506,0,0,0,0,0.5,0.332 +1,0.56,0.0224,0.0798,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.0995 +1,0.609,0.0577,0.295,0,0,0,0,0,0.292 +1,0.62,0.0695,0.301,0,0,0,0,0,0.0779 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.0345 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0 +0.667,0.591,0.0577,0.164,0,0,0,0,0,0.069 +0.667,0.591,0.0604,0.16,0,0,0.442,0.467,0,0.138 +0.667,0.591,0.0669,0.159,0,0,0.315,0,0,0.0345 +0.667,0.591,0.0702,0.159,0,0,0.27,0,0,0.103 +0.667,0.601,0.0774,0.162,0,0,0.375,0,0,0.31 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0.0345 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0345 +0.667,0.712,0.28,0.453,0.161,0.133,0,0,0,0 +0.667,0.702,0.39,0.569,0.5,0.35,0,0,0,0.119 +1,0.741,0.713,0.905,0,0,0,0,0,0.191 +1,0.679,0.676,0.821,0,0,0,0,0,0.231 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0.161 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0773 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.0345 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.207 +0.333,0.591,0.0486,0.174,0,0,0,0,0.383,0.177 +0.667,0.62,0.0905,0.291,0,0,0,0,1,0.245 +0.667,0.62,0.0996,0.279,0,0,0,0,0.117,0.069 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0345 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.103 +0,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.667,0.64,0.139,0.274,0,0,0,0,0.867,0.103 +0.667,0.671,0.172,0.294,0.136,0.133,0,0,0,0.103 +0.667,0.702,0.21,0.35,0.525,0.483,0,0,0,0.172 +0.333,0.637,0.148,0.251,0.875,0.6,0,0,0,0.069 +1,0.772,0.578,0.829,0.663,0,0,0,0,0.1 +1,0.741,0.713,0.905,0,0,0,0,0,0.0918 +1,0.679,0.676,0.821,0,0,0.65,0.467,0,0.209 +1,0.599,0.278,0.356,0,0,0.469,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0.133,0 +1,0.585,0.0368,0.172,0,0,0,0,0.367,0.069 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.649,0.114,0.424,0,0,0.387,0.233,0,0.069 +1,0.649,0.128,0.411,0,0,0.52,0,0,0.172 +0.333,0.591,0.0577,0.164,0,0,0.618,0,0,0.0345 +0.333,0.591,0.0604,0.16,0,0,0.283,0,0,0 +0.667,0.62,0.118,0.269,0,0,0.25,0.233,0,0.138 +0.667,0.62,0.125,0.269,0,0,0.453,0,0,0.0345 +0.333,0.601,0.0774,0.162,0,0,0.0685,0,0,0.138 +0.667,0.671,0.172,0.294,0,0,0,0,0.5,0.069 +1,0.772,0.307,0.501,0,0,0.559,0.633,0,0.172 +1,0.788,0.413,0.655,0,0,0.161,0.0667,0,0.103 +1,0.772,0.578,0.829,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0.103 +1,0.679,0.676,0.821,0,0,0,0,0.5,0 +1,0.618,0.409,0.51,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0.0792 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.21 +1,0.585,0.0368,0.172,0,0,0,0,0.5,0.22 +1,0.62,0.0695,0.301,0,0,0,0,0,0.268 +1,0.649,0.114,0.424,0,0,0,0,0,0.0922 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.103 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.667,0.591,0.0669,0.159,0,0,0,0,0.383,0.103 +0.667,0.591,0.0702,0.159,0,0,0,0,0.617,0.207 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.069 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0.103 +1,0.632,0.113,0.2,0,0,0,0,0,0.103 +1,0.637,0.148,0.251,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0.069 +1,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0,0,0,0.0345 +1,0.591,0.0427,0.175,0,0,0,0,0,0.153 +1,0.649,0.114,0.424,0,0,0,0,0,0.354 +1,0.649,0.128,0.411,0,0,0,0,0,0.475 +0.333,0.591,0.0577,0.164,0,0,0,0,0.133,0.298 +0.667,0.62,0.105,0.271,0,0,0,0,0.117,0.109 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0345 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.138 +0.667,0.64,0.139,0.274,0,0,0,0,0,0 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.172 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.2 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.207 +0.667,0.702,0.39,0.569,0,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.069 +0.667,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0.25,0 +1,0.568,0.123,0.183,0,0,0,0,0,0.137 +1,0.56,0.0409,0.0743,0,0,0,0,0,0.0784 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +1,0.591,0.0586,0.175,0,0,0,0,0,0.201 +1,0.62,0.129,0.299,0,0,0,0,0,0.114 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0.138 +0.667,0.62,0.167,0.279,0,0,0,0,0,0.145 +1,0.649,0.259,0.382,0,0,0.366,0.467,0.633,0.276 +0.333,0.591,0.114,0.159,0,0,0.12,0,1,0.103 +0.333,0.591,0.129,0.159,0,0,0,0,0.117,0.172 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.069 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.103 +0.667,0.702,0.285,0.35,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0.331,0.467,0,0.103 +1,0.772,0.649,0.829,0,0,0.0042,0,0,0 +1,0.681,0.514,0.62,0,0,0,0,0,0 +1,0.64,0.475,0.564,0,0,0,0,0,0.0547 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.124 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.62,0.0991,0.301,0.105,0.133,0,0,0,0.291 +0.667,0.591,0.0737,0.174,0.676,0.35,0,0,0,0.405 +0.667,0.62,0.153,0.291,0.193,0,0,0,0,0.0345 +0.667,0.62,0.167,0.279,0,0,0,0,0.133,0.069 +0.333,0.591,0.0986,0.16,0,0,0,0,0.367,0.069 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.103 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.103 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.069 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.0345 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.0345 +1,0.712,0.335,0.453,0,0,0,0,0,0.0345 +1,0.702,0.438,0.569,0,0,0,0,0.133,0.0953 +1,0.741,0.763,0.905,0,0,0,0,0.617,0.394 +1,0.64,0.475,0.564,0,0,0,0,0,0.0675 +1,0.599,0.302,0.356,0,0,0,0,0,0.165 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.216 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0879 +1,0.56,0.0224,0.0798,0,0,0,0,0.5,0.342 +1,0.57,0.0296,0.143,0,0,0,0,0,0.281 +1,0.585,0.0368,0.172,0,0,0,0,0,0.389 +1,0.591,0.0427,0.175,0,0,0,0,0,0.246 +1,0.649,0.114,0.424,0,0,0,0,0,0.366 +1,0.649,0.128,0.411,0,0,0,0,0,0.166 +1,0.649,0.142,0.394,0,0,0.117,0.133,0,0.151 +1,0.649,0.149,0.382,0,0,0.362,0.333,0.25,0.0727 +1,0.649,0.169,0.378,0,0,0.508,0,0,0.107 +1,0.649,0.179,0.379,0,0,0.548,0,0,0.376 +0.333,0.601,0.0774,0.162,0,0,0.368,0,0,0.0345 +0.333,0.616,0.0938,0.172,0,0,0.443,0,0.133,0.0345 +0.667,0.702,0.21,0.35,0,0,0.333,0,0.117,0 +0.667,0.712,0.28,0.453,0,0,0.0811,0,0.633,0 +0.667,0.702,0.39,0.569,0,0,0,0,0.117,0.138 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0345 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.57,0.0296,0.143,0,0,0,0,0,0.0345 +1,0.585,0.0368,0.172,0.282,0.383,0,0,0,0.0345 +1,0.649,0.0963,0.427,0.588,0.35,0,0,0.5,0.338 +0.667,0.62,0.0813,0.299,0.405,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.103 +1,0.649,0.142,0.394,0,0,0,0,0,0.0345 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.138 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.098 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.27 +0.667,0.671,0.172,0.294,0,0,0,0,0.633,0.0345 +0.667,0.702,0.21,0.35,0,0,0,0,0.867,0.163 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.268 +1,0.772,0.578,0.829,0,0,0,0,0,0.152 +1,0.741,0.713,0.905,0,0,0,0,0,0.302 +0.667,0.601,0.236,0.307,0,0,0,0,0,0.129 +0.667,0.58,0.147,0.203,0,0,0,0,0,0.0345 +1,0.565,0.0695,0.116,0,0,0,0,0,0.155 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.12 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.214 +0.667,0.62,0.118,0.269,0.465,0.633,0,0,0,0.675 +0.667,0.62,0.125,0.269,0.292,0.1,0,0,0,0.371 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.069 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.103 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.069 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.138 +1,0.772,0.578,0.829,0,0,0,0,0,0.069 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0.0345 +1,0.599,0.278,0.356,0,0,0,0,0,0.138 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0345 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.207 +1,0.57,0.0296,0.143,0,0,0,0,0,0.189 +1,0.609,0.0577,0.295,0,0,0,0,0,0.109 +1,0.62,0.0695,0.301,0,0,0,0,0,0.125 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0345 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0345 +0.667,0.62,0.118,0.269,0,0,0,0,0.633,0.172 +0.667,0.62,0.125,0.269,0,0,0,0,0.117,0.172 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.138 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.069 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0345 +0.667,0.712,0.28,0.453,0.595,0.483,0,0,0,0.0345 +0.667,0.702,0.39,0.569,0.424,0,0,0,0,0.0345 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0345 +1,0.679,0.676,0.821,0.151,0.133,0,0,0.633,0.103 +0.667,0.599,0.278,0.356,0.377,0.35,0,0,0.117,0.0697 +0.667,0.568,0.123,0.183,0,0,0,0,0,0.0662 +0.667,0.56,0.0348,0.0743,0,0,0,0,0,0 +0.667,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.069 +0.667,0.56,0.0224,0.0798,0,0,0,0,0,0.138 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.0345 +0.667,0.562,0.0159,0.0495,0.0864,0.133,0,0,0.75,0.177 +0.667,0.62,0.0695,0.301,0.641,0.35,0.222,0.233,0.5,0.0345 +0.667,0.62,0.0813,0.299,0,0,0.351,0,0,0.0345 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.103 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0345 +0.667,0.62,0.118,0.269,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0.5,0.103 +0.333,0.601,0.0774,0.162,0.58,0.483,0,0,0,0.103 +0.667,0.671,0.172,0.294,0.743,0,0,0,0,0.0345 +0.667,0.702,0.21,0.35,0.143,0,0,0,0,0.069 +0.333,0.637,0.148,0.251,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.621,0.248,0.335,0,0,0,0,0,0.0345 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0.0916 +1,0.571,0.177,0.249,0,0,0,0,0,0.0928 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0116 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.633,0.0845,0.417,0,0,0,0,0.25,0.172 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0.156 +0.667,0.62,0.129,0.299,0,0,0,0,0,0.0345 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0.069 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.103 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.069 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.103 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.172 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.069 +1,0.772,0.419,0.501,0.0947,0.133,0,0,0,0 +1,0.788,0.493,0.655,0.566,0.6,0.18,0.383,0,0.264 +1,0.772,0.649,0.829,0.12,0.133,0.548,0.0833,0,0.103 +1,0.741,0.763,0.905,0.339,0.6,0.449,0,0,0.103 +1,0.64,0.475,0.564,0,0,0,0,0,0.164 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0877 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0.458,0.483,0,0,0.133,0.207 +1,0.56,0.0213,0.0798,0.575,0,0,0,0.617,0.069 +1,0.57,0.0278,0.143,0,0,0,0,0,0.339 +1,0.609,0.0624,0.295,0,0,0,0,0,0.147 +1,0.649,0.14,0.427,0.44,0.733,0,0,0,0.318 +1,0.649,0.185,0.424,0.596,0,0,0,0,0.374 +1,0.649,0.22,0.411,0.289,0,0,0,0,0.191 +0.667,0.62,0.167,0.279,0,0,0,0,0,0.132 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.202 +0.667,0.591,0.114,0.159,0,0,0,0,0,0.55 +0.667,0.591,0.129,0.159,0,0,0,0,0,0.308 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.243 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.138 +0.667,0.702,0.285,0.35,0.608,0.483,0.161,0.133,0.25,0.421 +1,0.788,0.493,0.655,0.276,0,0.463,0.333,0.25,0 +1,0.772,0.649,0.829,0,0,0.383,0,0,0.0345 +1,0.741,0.763,0.905,0,0,0.503,0,0,0 +1,0.679,0.704,0.821,0,0,0.617,0,0,0 +1,0.58,0.16,0.203,0,0,0.242,0,0,0.129 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0,0,0,0.232 +1,0.62,0.0695,0.301,0,0,0,0,0,0.387 +0.667,0.591,0.0486,0.174,0,0,0.666,0.467,0,0.42 +0.667,0.591,0.0532,0.17,0,0,0.585,0,0,0.0345 +0.667,0.62,0.0996,0.279,0.477,0.483,0.295,0.467,0,0.103 +0.667,0.62,0.105,0.271,0.0864,0,0.435,0,0,0.0345 +0.667,0.62,0.118,0.269,0,0,0.427,0,0,0.0345 +0.667,0.62,0.125,0.269,0,0,0.698,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.424,0,0,0.0345 +0.667,0.671,0.172,0.294,0,0,0.649,0,0,0.31 +0.333,0.632,0.113,0.2,0,0,0.213,0,0.25,0.172 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0345 +1,0.772,0.578,0.829,0.658,0.483,0,0,0,0.4 +1,0.741,0.713,0.905,0.125,0,0,0,0,0.0836 +1,0.679,0.676,0.821,0,0,0,0,0,0.0912 +1,0.599,0.278,0.356,0,0,0,0,0,0.0675 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0.133,0.138 +0.333,0.585,0.0368,0.172,0,0,0,0,1,0.143 +0.667,0.62,0.0695,0.301,0,0,0,0,0.617,0.233 +0.667,0.62,0.0813,0.299,0,0,0,0,0.25,0.0345 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.069 +0.667,0.62,0.0996,0.279,0,0,0,0,0.25,0.103 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0345 +1,0.649,0.169,0.378,0,0,0,0,0,0.0345 +1,0.649,0.179,0.379,0,0,0,0,0,0.172 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0345 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.0638 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.227 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.172 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.172 +1,0.741,0.713,0.905,0,0,0.432,0.467,0,0.0345 +1,0.679,0.676,0.821,0,0,0.199,0,0,0 +1,0.58,0.147,0.203,0,0,0.0811,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.62,0.0813,0.299,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.0345 +0.667,0.591,0.0577,0.164,0,0,0,0,0,0.103 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.241 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.207 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0345 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.276 +0.667,0.702,0.21,0.35,0,0,0,0,0.25,0 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.103 +1,0.772,0.578,0.829,0,0,0,0,0,0.0345 +0.667,0.681,0.481,0.62,0.12,0.133,0,0,0.5,0.276 +0.667,0.64,0.456,0.564,0.696,0.733,0,0,0,0 +0.667,0.599,0.278,0.356,0.855,0.1,0,0,0,0.0803 +0.667,0.565,0.0695,0.116,0.236,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.0797 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0584 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.631,0.078,0.433,0,0,0,0,0,0.0345 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.172 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.241 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0345 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.069 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0345 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0345 +0.667,0.639,0.138,0.338,0.453,0.5,0,0,0,0.241 +0.667,0.67,0.17,0.425,0.0864,0.0167,0,0,0.25,0 +0.333,0.631,0.112,0.301,0,0,0,0,0.283,0.138 +0.333,0.636,0.147,0.348,0,0,0,0,0,0.0345 +0.333,0.631,0.202,0.339,0,0,0,0,0,0 +0.667,0.621,0.246,0.282,0,0,0,0,0,0.103 +0.667,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0.241 +1,0.608,0.0573,0.305,0,0,0,0,0,0.0649 +1,0.647,0.0955,0.452,0,0,0,0,0,0.412 +0.667,0.618,0.0807,0.321,0,0,0,0,0.5,0.069 +0.667,0.618,0.0898,0.312,0,0,0,0,0.583,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.172 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.069 +0.333,0.59,0.0665,0.169,0.48,0.517,0,0,0,0.103 +0.667,0.618,0.124,0.297,0.58,0,0,0,0,0.207 +0.333,0.6,0.0769,0.194,0.243,0,0,0,0,0.172 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.0345 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.0345 +0.667,0.711,0.278,0.647,0.334,0.25,0,0,0,0 +0.667,0.7,0.387,0.629,0.558,0.267,0,0,0.25,0 +1,0.739,0.708,0.747,0.154,0,0,0,0.567,0.0345 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0.243 +1,0.559,0.0264,0.0578,0,0,0,0,0,0.0129 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.569,0.0277,0.147,0,0,0,0,0,0.103 +1,0.585,0.04,0.177,0,0,0,0,0.133,0.306 +0.667,0.618,0.0983,0.318,0,0,0,0,0.683,0.221 +0.667,0.618,0.128,0.321,0,0,0,0,0,0.0731 +1,0.647,0.218,0.443,0,0,0,0,0,0.159 +0.333,0.59,0.092,0.175,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.138 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.138 +0.667,0.67,0.274,0.425,0,0,0,0,0,0 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.103 +0.667,0.711,0.332,0.647,0,0,0,0,0.633,0 +1,0.77,0.643,0.919,0,0,0,0,0.183,0 +1,0.739,0.756,0.747,0.596,0.517,0,0,0,0.133 +1,0.677,0.698,0.566,0.103,0,0,0,0,0.0831 +1,0.58,0.159,0.197,0,0,0,0,0,0.0912 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.106 +1,0.618,0.0983,0.318,0,0,0,0,0,0.474 +1,0.647,0.183,0.456,0,0,0,0,0,0.26 +1,0.647,0.218,0.443,0,0,0,0,0,0.209 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.339 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.103 +0.667,0.59,0.113,0.169,0,0,0,0,0,0.0345 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.207 +0.667,0.6,0.139,0.194,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.103 +0.667,0.631,0.15,0.301,0,0,0,0,0.633,0.138 +1,0.785,0.489,0.946,0,0,0,0,0.183,0 +1,0.77,0.643,0.919,0,0,0,0,0,0.069 +1,0.739,0.756,0.747,0,0,0,0,0,0.0345 +1,0.639,0.471,0.394,0,0,0,0,0,0.102 +1,0.598,0.3,0.345,0,0,0,0,0,0.0384 +1,0.567,0.14,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0.453,0.517,0,0,0,0.094 +0.667,0.59,0.0424,0.184,0.354,0,0.355,0.25,0,0.448 +0.667,0.618,0.0807,0.321,0,0,0.201,0.917,0,0.162 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.0345 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.323 +1,0.647,0.148,0.413,0,0,0,0,0.267,0.121 +1,0.647,0.168,0.409,0,0,0.262,0.467,0,0.0918 +1,0.647,0.177,0.421,0,0,0.169,0,0,0.185 +1,0.677,0.199,0.482,0,0,0,0,1,0.194 +1,0.724,0.248,0.612,0,0,0,0,0.0833,0.179 +1,0.77,0.304,0.804,0,0,0,0,0,0.355 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0.103 +1,0.739,0.708,0.747,0,0,0,0,0,0.0345 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0831 +1,0.585,0.0366,0.177,0,0,0,0,0,0.483 +0.667,0.59,0.0424,0.184,0,0,0,0,0.25,0.158 +0.667,0.618,0.0807,0.321,0,0,0.15,0.25,0.567,0.276 +0.667,0.618,0.0898,0.312,0,0,0.291,0.217,0,0.276 +0.667,0.618,0.0989,0.3,0,0,0.459,0,0,0 +0.333,0.59,0.06,0.171,0,0,0.0322,0,0,0.138 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.103 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.172 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.207 +0.667,0.67,0.17,0.425,0,0,0,0,0.267,0.103 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.0345 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.132 +0.333,0.631,0.202,0.339,0,0,0,0,0,0.276 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +0.667,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.0464 +1,0.564,0.0691,0.116,0,0,0,0,0,0.244 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.19 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.569,0.0294,0.147,0,0,0,0,0,0.0838 +1,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.0345 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0345 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.207 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0345 +0.333,0.6,0.0769,0.194,0.141,0.25,0,0,0.75,0.207 +1,0.724,0.248,0.612,0.715,0.533,0,0,0.883,0.368 +1,0.77,0.304,0.804,0.0855,0,0,0,0,0.116 +0.667,0.711,0.278,0.647,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.472,0.75,0,0,0,0.0801 +1,0.677,0.671,0.566,0.535,0.0333,0,0,0,0.0345 +1,0.598,0.276,0.345,0.141,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0.145 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.431 +1,0.608,0.0573,0.305,0,0,0,0,0,0.306 +1,0.618,0.069,0.318,0,0,0,0,0,0.315 +0.667,0.618,0.0807,0.321,0,0,0,0,0.267,0.207 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.288 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.077 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.208 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.231 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.227 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.0345 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.103 +0.667,0.7,0.208,0.553,0.191,0.25,0,0,0,0 +0.667,0.711,0.278,0.647,0.645,0.8,0,0,0,0 +0.667,0.7,0.387,0.629,0.503,0,0,0,0,0.0345 +0.667,0.68,0.477,0.515,0.458,0,0,0,0,0.286 +1,0.677,0.671,0.566,0,0,0,0,0,0.117 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0.166 +1,0.618,0.069,0.318,0,0,0,0,0,0.399 +1,0.618,0.0807,0.321,0,0,0.0448,0.25,0,0.341 +1,0.618,0.0898,0.312,0,0,0,0.45,0,0.367 +1,0.618,0.0989,0.3,0,0,0,0,0,0.0614 +0.667,0.59,0.06,0.171,0,0,0,0,0,0.0345 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.0345 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0.069 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.172 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.217 +0.667,0.711,0.278,0.647,0,0,0,0,0.25,0.132 +1,0.77,0.573,0.919,0,0,0,0,0.283,0.0345 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0.138 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0582,0.184,0,0,0,0,0.533,0.0345 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.138 +0.333,0.59,0.0849,0.181,0,0,0,0,0,0.069 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0922 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.19 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.241 +1,0.639,0.261,0.338,0,0,0,0,0.267,0.241 +1,0.67,0.274,0.425,0,0,0,0,0.133,0.207 +1,0.7,0.283,0.553,0.257,0.383,0,0,0.4,0.103 +1,0.711,0.332,0.647,0.391,0.133,0,0,0,0.0345 +0.667,0.631,0.227,0.339,0.254,0,0,0,0,0.172 +1,0.68,0.51,0.515,0,0,0,0,0,0.172 +1,0.6,0.245,0.222,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.206 +1,0.559,0.0173,0.0495,0,0,0,0,0,0.556 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.107 +1,0.585,0.04,0.177,0,0,0,0,0,0.0823 +1,0.618,0.0983,0.318,0.635,0.783,0,0,0.133,0.262 +1,0.647,0.183,0.456,0.804,0,0,0,0.4,0.251 +0.667,0.618,0.152,0.312,0.559,0,0,0,0,0 +0.667,0.618,0.166,0.3,0.725,0,0.278,0.133,0,0 +0.667,0.618,0.178,0.292,0.106,0,0.101,0.1,0,0 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.138 +0.667,0.618,0.237,0.297,0,0,0,0,0,0.207 +0.333,0.6,0.139,0.194,0,0,0,0,0.133,0 +0.667,0.67,0.274,0.425,0,0,0,0,0.4,0.138 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.287 +1,0.785,0.489,0.946,0,0,0,0,0,0.0488 +1,0.77,0.643,0.919,0,0,0,0,0,0.0749 +1,0.68,0.51,0.515,0,0,0,0,0,0.201 +1,0.6,0.245,0.222,0,0,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0.0345 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.618,0.069,0.318,0,0,0,0,0,0.25 +1,0.618,0.0807,0.321,0,0,0,0,0,0.226 +0.667,0.618,0.0898,0.312,0,0,0,0,0.75,0.069 +0.667,0.618,0.0989,0.3,0,0,0,0,1,0 +0.667,0.618,0.104,0.292,0,0,0,0,0.433,0.156 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.287 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.138 +0.667,0.6,0.0769,0.194,0,0,0,0,0.267,0.0345 +0.667,0.67,0.17,0.425,0,0,0,0,0,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.512,0.517,0,0,0,0.241 +0.667,0.7,0.387,0.629,0.56,0,0,0,0,0.0345 +1,0.739,0.708,0.747,0.322,0,0,0,0,0.209 +1,0.677,0.671,0.566,0,0,0,0,0,0.069 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0.0675 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.267,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0.364 +1,0.608,0.0573,0.305,0,0,0,0,0,0.376 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.138 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.276 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0.533,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.103 +0.667,0.618,0.117,0.289,0,0,0,0,0.533,0.0345 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.138 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.069 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.069 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.172 +0.667,0.711,0.278,0.647,0,0,0.415,0.467,0,0 +0.667,0.7,0.387,0.629,0,0,0.752,0,0,0.0345 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0.111 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0,0.051 +1,0.608,0.0573,0.305,0,0,0,0,0,0.117 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.294 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0567 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.165 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.069 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.103 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0345 +0.667,0.618,0.124,0.297,0,0,0.13,0.467,0,0.0345 +0.667,0.639,0.138,0.338,0.286,0.5,0.382,0,0,0.207 +0.667,0.67,0.17,0.425,0.131,0.0167,0.836,0,0,0 +1,0.7,0.208,0.553,0,0,0.483,0,0.5,0.0345 +0.667,0.711,0.278,0.647,0,0,0.871,0,0.317,0.103 +1,0.77,0.573,0.919,0,0,0.543,0,0,0.359 +1,0.739,0.708,0.747,0,0,0.617,0,0,0.211 +1,0.677,0.671,0.566,0,0,0.396,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0.254 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0 +1,0.631,0.078,0.433,0,0,0,0,0,0.108 +1,0.647,0.0955,0.452,0,0,0,0,0,0 +1,0.647,0.113,0.456,0,0,0,0,0,0.069 +1,0.647,0.127,0.443,0,0,0,0,0,0.0345 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.069 +0.667,0.618,0.117,0.289,0.63,0.783,0.0448,0.467,0,0.103 +0.667,0.618,0.124,0.297,0,0,0.578,0,0,0.103 +0.667,0.639,0.138,0.338,0,0,0.551,0,0,0.103 +0.667,0.67,0.17,0.425,0,0,0.456,0,0,0.103 +0.667,0.7,0.208,0.553,0,0,0.0727,0,0,0.172 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.249 +1,0.77,0.573,0.919,0,0,0,0,0,0.186 +1,0.739,0.708,0.747,0.593,0.517,0,0,0,0.109 +1,0.677,0.671,0.566,0.156,0,0,0,0,0.158 +1,0.616,0.405,0.493,0,0,0,0,0,0.201 +1,0.564,0.0691,0.116,0,0,0,0,0,0.117 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0345 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0601 +1,0.618,0.0807,0.321,0,0,0,0,0,0.069 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.103 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0345 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.328 +1,0.647,0.168,0.409,0.503,0.5,0,0,0,0.312 +1,0.647,0.177,0.421,0.493,0.0167,0,0,0,0.27 +1,0.677,0.199,0.482,0,0,0,0,0.75,0.126 +1,0.67,0.17,0.425,0,0,0,0,1,0.138 +1,0.77,0.304,0.804,0,0,0,0,0.433,0.069 +1,0.785,0.409,0.946,0,0,0,0,0,0.0345 +1,0.77,0.573,0.919,0,0,0,0,0,0.0345 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.056 +1,0.677,0.671,0.566,0,0,0,0,0,0.219 +1,0.616,0.405,0.493,0,0,0,0,0,0.0803 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.559,0.0192,0.051,0,0,0,0,0,0.178 +1,0.559,0.0212,0.0816,0,0,0,0,0,0.168 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.214 +0.667,0.585,0.04,0.177,0,0,0,0,0,0.379 +0.333,0.59,0.0582,0.184,0,0,0.0531,0.467,0,0.503 +0.333,0.59,0.0732,0.185,0,0,0.214,0,0,0.176 +0.333,0.59,0.0849,0.181,0,0,0,0,0.383,0.131 +0.667,0.618,0.166,0.3,0,0,0,0,0.15,0.244 +0.667,0.618,0.178,0.292,0,0,0,0,0.633,0.289 +1,0.647,0.304,0.409,0,0,0,0,0.183,0.238 +0.667,0.618,0.237,0.297,0,0,0,0,0,0.223 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.477 +1,0.724,0.402,0.612,0.171,0.133,0,0,0,0.241 +1,0.77,0.415,0.804,0.769,0.65,0.0559,0.133,0,0.0345 +1,0.785,0.489,0.946,0,0,0.513,0.333,0,0.0345 +1,0.77,0.643,0.919,0,0,0.0881,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0942 +1,0.559,0.0192,0.051,0,0,0,0,0,0.32 +1,0.559,0.0212,0.0816,0,0,0,0,0,0.239 +1,0.569,0.0277,0.147,0,0,0,0,0,0.122 +1,0.608,0.0619,0.305,0,0,0,0,0,0.412 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0.0838 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.133,0 +0.333,0.59,0.0849,0.181,0,0,0,0,0.133,0.0345 +0.333,0.59,0.092,0.175,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.267,0.172 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.0916 +0.667,0.631,0.15,0.301,0,0,0,0,0,0.207 +0.667,0.711,0.332,0.647,0,0,0,0,0,0.069 +1,0.77,0.643,0.919,0,0,0,0,0,0.069 +1,0.739,0.756,0.747,0,0,0,0,0.633,0.0345 +1,0.677,0.698,0.566,0,0,0,0,0.45,0 +1,0.598,0.3,0.345,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0.241 +1,0.618,0.069,0.318,0,0,0,0,0,0.0345 +1,0.618,0.0807,0.321,0,0,0,0,0,0.0345 +1,0.618,0.0898,0.312,0,0,0,0,0,0.151 +1,0.647,0.14,0.426,0,0,0,0,0,0.126 +1,0.647,0.148,0.413,0,0,0,0,0,0.3 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.252 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.0996 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.069 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.138 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.138 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.138 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0.103 +1,0.639,0.452,0.394,0,0,0,0,0,0.3 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0.34 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.0345 +0.667,0.59,0.0424,0.184,0,0,0,0,0.25,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0.283,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0345 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.0345 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.0985 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.172 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.172 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.069 +0.333,0.636,0.147,0.348,0,0,0,0,0,0.138 +0.333,0.631,0.202,0.339,0,0,0,0,0,0.103 +0.667,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0.0345 +1,0.598,0.276,0.345,0,0,0,0,0,0.187 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0443 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.559,0.0164,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +1,0.559,0.0177,0.051,0,0,0,0,0.567,0.0345 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.243 +1,0.577,0.043,0.245,0,0,0,0,0,0.374 +1,0.608,0.0573,0.305,0,0,0,0,0.25,0.122 +1,0.618,0.069,0.318,0,0,0,0,0.567,0.408 +0.667,0.59,0.0483,0.185,0,0,0,0,0.267,0.124 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.0786 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.152 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.259 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.211 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.202 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.304 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.533 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.241 +1,0.785,0.409,0.946,0.365,0.5,0,0,0,0.185 +1,0.77,0.573,0.919,0.57,0.0167,0,0,0.533,0 +1,0.739,0.708,0.747,0.355,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0.15,0.467,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0.138 +1,0.631,0.078,0.433,0,0,0,0,0,0.337 +1,0.647,0.0955,0.452,0,0,0,0,0,0.485 +0.667,0.618,0.0807,0.321,0.354,0.5,0,0,0.817,0.161 +0.667,0.618,0.0898,0.312,0.61,0.0167,0,0,0,0 +0.667,0.618,0.0989,0.3,0.6,0,0,0,0,0.138 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.0382 +1,0.647,0.168,0.409,0,0,0,0,0.75,0.109 +0.667,0.618,0.124,0.297,0,0,0,0,0.883,0.0345 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.138 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.069 +0.333,0.631,0.112,0.301,0.51,0.5,0,0,0.25,0.0345 +0.667,0.711,0.278,0.647,0.497,0.0167,0,0,0.833,0.069 +0.667,0.7,0.387,0.629,0.223,0,0,0,0,0.241 +0.333,0.621,0.246,0.282,0,0,0,0,0,0.0345 +0.333,0.6,0.234,0.222,0,0,0,0,0,0 +0.667,0.598,0.276,0.345,0,0,0.25,1,0,0 +0.667,0.564,0.0691,0.116,0,0,0,0.167,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.59,0.0424,0.184,0,0,0,0,0,0.257 +0.667,0.59,0.0483,0.185,0,0,0,0,0.267,0.0345 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.069 +0.667,0.618,0.0989,0.3,0.422,0.5,0,0,0,0.0345 +0.667,0.618,0.104,0.292,0.126,0.0167,0.538,0.467,0,0.0345 +0.667,0.618,0.117,0.289,0,0,0.371,0,0,0.069 +0.667,0.618,0.124,0.297,0,0,0.54,0,0,0.138 +0.667,0.639,0.138,0.338,0,0,0.741,0,0,0.138 +0.667,0.67,0.17,0.425,0,0,0.357,0,0,0.0345 +0.667,0.7,0.208,0.553,0,0,0.632,0,0,0.172 +0.667,0.711,0.278,0.647,0,0,0.294,0,0,0.345 +0.667,0.7,0.387,0.629,0,0,0,0,0.75,0 +1,0.739,0.708,0.747,0,0,0,0,1,0.176 +1,0.639,0.452,0.394,0.606,0.517,0,0,1,0 +1,0.598,0.276,0.345,0.703,0,0,0,1,0.162 +1,0.564,0.0691,0.116,0,0,0,0,0.883,0.0514 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.331 +1,0.618,0.0983,0.318,0,0,0,0,0,0.254 +1,0.647,0.183,0.456,0,0,0,0,0,0.191 +1,0.647,0.218,0.443,0,0,0,0,0,0.277 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.163 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.271 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.069 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.241 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.142 +0.333,0.616,0.146,0.237,0,0,0,0,0,0.165 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.275 +1,0.785,0.489,0.946,0,0,0,0,0,0.0814 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.322 +1,0.739,0.756,0.747,0,0,0,0,0.133,0.238 +1,0.677,0.698,0.566,0,0,0,0,0.95,0 +1,0.58,0.159,0.197,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0167,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.17 +1,0.559,0.0264,0.0578,0,0,0,0,0,0.243 +1,0.559,0.0199,0.0495,0,0,0,0,0,0.166 +1,0.559,0.0173,0.0495,0,0,0,0,0,0.176 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0975 +1,0.577,0.0372,0.245,0,0,0,0,0,0.306 +1,0.608,0.0619,0.305,0,0,0,0,0,0.0345 +1,0.618,0.0983,0.318,0,0,0,0,0,0.263 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.187 +0.667,0.618,0.152,0.312,0,0,0,0,0,0 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.103 +0.667,0.618,0.178,0.292,0,0,0,0,0,0.0988 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.0345 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.138 +0.667,0.6,0.139,0.194,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0.322,0.383,0,0,0,0 +1,0.77,0.415,0.804,0.654,0.133,0,0,0.633,0.379 +1,0.785,0.489,0.946,0,0,0,0,0.45,0.31 +1,0.77,0.643,0.919,0,0,0.427,0.467,0,0 +1,0.739,0.756,0.747,0,0,0.467,0,0,0.173 +1,0.677,0.698,0.566,0,0,0.21,0,0,0 +1,0.58,0.159,0.197,0,0,0.516,0,0,0 +1,0.564,0.079,0.116,0,0,0.246,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0.267,0.137 +1,0.59,0.0424,0.184,0.555,0.517,0,0,0,0 +1,0.59,0.0483,0.185,0,0,0,0,0,0.219 +1,0.618,0.0898,0.312,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.238 +0.667,0.618,0.104,0.292,0.377,0.25,0,0,0,0.241 +0.333,0.59,0.0665,0.169,0.424,0.267,0,0,0,0.39 +0.333,0.59,0.0697,0.173,0.523,0,0,0,0,0.0345 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.103 +0.333,0.616,0.0931,0.237,0,0,0,0,0.267,0.103 +0.667,0.7,0.208,0.553,0,0,0,0,0.75,0.0345 +0.667,0.711,0.278,0.647,0.527,0.517,0,0,0.0667,0 +1,0.77,0.573,0.919,0,0,0,0,0.267,0.0345 +1,0.739,0.708,0.747,0,0,0,0,0,0.138 +1,0.639,0.452,0.394,0,0,0,0,0,0.143 +1,0.598,0.276,0.345,0,0,0,0,0,0.127 +1,0.564,0.0691,0.116,0,0,0,0,0,0.0864 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0914 +1,0.608,0.0573,0.305,0,0,0,0,0,0.0614 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.32 +0.667,0.618,0.0807,0.321,0,0,0.54,0.467,0,0.037 +0.667,0.618,0.0898,0.312,0,0,0.31,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0.42,0,0,0 +0.667,0.618,0.104,0.292,0,0,0.427,0,0,0.103 +0.667,0.618,0.117,0.289,0,0,0.543,0,0,0.379 +0.667,0.618,0.124,0.297,0,0,0.613,0,0,0.345 +0.667,0.639,0.138,0.338,0,0,0.257,0,0,0.069 +0.667,0.67,0.17,0.425,0,0,0.541,0,0.267,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.069 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.326 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.257 +0.667,0.621,0.246,0.282,0,0,0,0,0.5,0.0345 +1,0.639,0.452,0.394,0,0,0,0,0.867,0.243 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0573,0.305,0,0,0,0,0,0.246 +1,0.647,0.0955,0.452,0,0,0,0,0,0.315 +1,0.618,0.0807,0.321,0,0,0,0,0,0.344 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.0818 +0.667,0.59,0.0574,0.175,0,0,0,0,0.25,0 +0.667,0.59,0.06,0.171,0,0,0.403,0.7,0.517,0.069 +0.667,0.59,0.0665,0.169,0,0,0.0923,0,0.317,0.241 +0.667,0.59,0.0697,0.173,0,0,0,0,0.25,0.17 +0.667,0.639,0.138,0.338,0,0,0,0,0.833,0.221 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.0345 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.069 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.069 +1,0.564,0.0691,0.116,0,0,0,0,0,0.284 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.559,0.0164,0.0495,0,0,0,0,0,0.0345 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.241 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0.75,0 +1,0.585,0.0366,0.177,0,0,0,0,0.333,0.0345 +1,0.647,0.0955,0.452,0,0,0,0,0,0.138 +0.667,0.618,0.0807,0.321,0,0,0,0,0.267,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0.21,0.25,0,0 +0.667,0.618,0.104,0.292,0,0,0.503,0.45,0,0 +0.667,0.618,0.117,0.289,0,0,0.608,0,0,0 +0.667,0.618,0.124,0.297,0,0,0.411,0,0.25,0.069 +0.667,0.639,0.138,0.338,0,0,0.543,0,1,0.207 +0.667,0.67,0.17,0.425,0,0,0,0,1,0.241 +0.667,0.7,0.208,0.553,0,0,0,0,0.767,0.0345 +0.667,0.711,0.278,0.647,0,0,0,0,0,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.275 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0.069 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.241 +1,0.569,0.0294,0.147,0,0,0.124,0.25,0,0.0894 +1,0.608,0.0573,0.305,0,0,0.179,0.217,0,0.0282 +1,0.618,0.069,0.318,0,0,0.495,0,0,0.069 +0.667,0.618,0.0807,0.321,0,0,0.568,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0.639,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0.487,0,0,0.138 +0.667,0.618,0.104,0.292,0,0,0.587,0,0,0.069 +0.667,0.618,0.117,0.289,0,0,1,0,0,0.207 +0.667,0.618,0.124,0.297,0,0,0.197,0,0,0.159 +0.667,0.639,0.138,0.338,0,0,0.0238,0,0,0.069 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.207 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.0345 +0.667,0.711,0.278,0.647,0,0,0,0,0.267,0.103 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.069 +1,0.739,0.708,0.747,0,0,0.00839,0.233,0,0 +1,0.677,0.671,0.566,0,0,0.338,0,0,0.069 +1,0.616,0.405,0.493,0,0,0,0,0,0.193 +1,0.57,0.175,0.249,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0.55,0.241 +1,0.732,0.168,0.337,0,0,0,0,0,0.265 +1,0.818,0.289,0.468,0,0,0,0,0,0.22 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.114 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.156 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.294 +1,0.818,0.459,0.446,0,0,0,0,0,0.241 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.0345 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.069 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.0345 +0.667,0.849,0.437,0.683,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0.298,0.483,0,0.0345 +1,0.934,1,0.732,0,0,0.194,0,0,0 +1,0.857,0.923,0.554,0.537,0.633,0,0,0,0.0855 +1,0.634,0.206,0.196,0,0.183,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.263 +1,0.732,0.168,0.337,0,0,0,0,0,0.193 +1,0.732,0.198,0.328,0,0,0,0,0,0.219 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.192 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.668 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.069 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.758,0.343,0.359,0,0,0.558,0.483,0,0.138 +0.667,0.797,0.36,0.457,0,0,0.407,0,0,0.241 +1,0.973,0.549,0.869,0,0,0,0,0,0.207 +1,0.993,0.647,1,0,0,0,0,0,0.0345 +0.667,0.836,0.573,0.638,0.0897,0.133,0,0,0,0 +1,0.934,1,0.732,0.407,0.683,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0.442 +1,0.779,0.582,0.488,0,0,0,0,0,0.123 +1,0.667,0.183,0.183,0,0,0,0,0,0.0458 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.11 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.608,0.026,0.0829,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.108 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.207 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.172 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.421 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.133 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.103 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.241 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.103 +0.667,0.797,0.224,0.457,0,0,0.182,0.483,0.133,0.0345 +0.667,0.699,0.145,0.323,0,0,0,0,0.417,0.103 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.138 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.138 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.229 +0.667,0.758,0.596,0.386,0.15,0.133,0.0811,0.483,0,0 +1,0.706,0.363,0.342,0.726,0.4,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.069 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.069 +1,0.608,0.026,0.0829,0,0,0,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.181,0,0,0,0,0,0 +1,0.732,0.0895,0.33,0,0,0,0,0.267,0.0653 +1,0.818,0.149,0.481,0.545,0.533,0.222,0.383,0,0.198 +1,0.818,0.168,0.468,0.272,0.133,0.853,0.1,0,0 +1,0.818,0.186,0.449,0.633,0.4,0.487,0,0,0.244 +1,0.818,0.196,0.436,0.239,0,0.294,0,0,0 +0.667,0.732,0.153,0.305,0,0,0.484,0,0,0.138 +0.667,0.732,0.162,0.314,0,0,0.533,0,0,0.069 +0.667,0.758,0.181,0.359,0,0,0.358,0,0,0.103 +0.667,0.797,0.224,0.457,0,0,0.583,0,0,0.103 +0.667,0.836,0.273,0.596,0,0,0.485,0,0,0.0345 +0.667,0.849,0.366,0.683,0,0,0.745,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.499,0,0,0.069 +0.667,0.81,0.629,0.504,0,0,0.615,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.069 +1,0.779,0.536,0.488,0.535,0.533,0,0,0,0.104 +1,0.614,0.0879,0.116,0.154,0,0,0,0,0.104 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.647,0.0527,0.19,0,0,0,0,0,0.123 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.207 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.069 +0.667,0.732,0.129,0.316,0,0,0,0,0.267,0.274 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.168 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.235 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.103 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0345 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.276 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.069 +0.333,0.705,0.191,0.366,0,0,0,0,0.133,0 +0.333,0.699,0.263,0.344,0,0,0,0,0.7,0 +1,0.934,0.936,0.732,0,0,0,0,0,0.0823 +1,0.857,0.887,0.554,0,0,0,0,0,0.0345 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.181,0,0,0,0,0,0.135 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.15,0.133,0,0,0,0.069 +0.667,0.647,0.0664,0.189,0.573,0.4,0,0,0,0 +0.667,0.647,0.0724,0.183,0.64,0,0,0,0,0.069 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.0345 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.103 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.241 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.069 +0.667,0.797,0.224,0.457,0,0,0,0,0.133,0.103 +0.667,0.836,0.273,0.596,0,0,0,0,0.133,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0345 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.172 +1,0.934,0.936,0.732,0,0,0,0,0,0.103 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.779,0.536,0.488,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0.55,0.122 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.0345 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.321 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.406 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.069 +0.667,0.732,0.136,0.307,0.0897,0.133,0,0,0,0 +0.333,0.647,0.0845,0.177,0.542,0.4,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.069 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.345 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.069 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.276 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0345 +1,0.973,0.758,0.933,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0.0345 +1,0.857,0.887,0.554,0.088,0.133,0,0,0,0 +1,0.779,0.536,0.488,0.414,0.683,0,0,0,0 +1,0.72,0.232,0.249,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.103 +1,0.621,0.0327,0.15,0,0,0,0,0,0.103 +1,0.719,0.0799,0.313,0,0,0,0,0.633,0 +1,0.732,0.128,0.33,0,0,0,0,0.2,0.207 +0.667,0.732,0.168,0.337,0,0,0,0,0.133,0.138 +0.333,0.647,0.108,0.189,0,0,0,0,0.417,0.0345 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.0345 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.172 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.134 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.047 +0.667,0.705,0.228,0.366,0,0,0,0,0,0.0345 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0.207 +1,0.857,0.923,0.554,0,0,0,0,0,0.0345 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.277 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.719,0.0799,0.313,0,0,0,0,0,0.0345 +0.667,0.732,0.128,0.33,0,0,0,0,0.133,0.0345 +1,0.818,0.242,0.481,0,0,0,0,0.133,0.0974 +0.667,0.732,0.198,0.328,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0 +0.333,0.647,0.125,0.178,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.345 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.249 +0.667,0.836,0.372,0.596,0,0,0,0,0.133,0.172 +1,0.993,0.647,1,0,0,0,0,0.417,0.188 +1,0.973,0.851,0.933,0,0,0.464,0.483,0,0.0905 +1,0.934,1,0.732,0,0,0.186,0,0,0.298 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0.0345 +0.667,0.614,0.101,0.116,0,0,0,0,0,0 +0.667,0.608,0.0424,0.0743,0,0,0,0,0,0 +0.667,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.68,0.0551,0.251,0,0,0,0,0,0.376 +1,0.719,0.074,0.313,0,0,0,0,0,0.289 +1,0.732,0.0895,0.33,0,0,0,0,0,0.238 +1,0.732,0.105,0.337,0,0,0,0,0,0.382 +1,0.818,0.168,0.468,0,0,0,0,0,0.0551 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.246 +0.333,0.647,0.0759,0.178,0,0,0,0,0.133,0.158 +0.667,0.647,0.0845,0.177,0,0,0,0,0.133,0.0345 +0.667,0.732,0.162,0.314,0,0,0,0,0.267,0 +0.333,0.66,0.0982,0.204,0.103,0.133,0,0,0,0.207 +0.333,0.679,0.12,0.253,0.566,0.4,0.413,0.733,0,0.168 +0.667,0.836,0.273,0.596,0,0,0.536,0,0,0.243 +0.333,0.705,0.191,0.366,0,0,0.492,0,0.133,0.207 +0.667,0.836,0.51,0.638,0,0,0.309,0,0.133,0.0345 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.0941 +1,0.634,0.189,0.196,0,0,0,0,0,0.366 +1,0.614,0.0879,0.116,0,0,0,0,0,0.061 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.082 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0,0.171 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.229 +1,0.732,0.105,0.337,0,0,0,0,0,0.126 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.103 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.069 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.069 +1,0.857,0.263,0.513,0,0,0,0,0,0.069 +1,0.915,0.327,0.661,0,0,0,0,0,0.138 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.103 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.069 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0.15,0.383,0,0.172 +1,0.857,0.887,0.554,0,0,0.424,0.1,0,0 +1,0.706,0.363,0.342,0,0,0.544,0,0,0 +1,0.667,0.16,0.183,0,0,0.748,0,0,0 +1,0.654,0.0689,0.099,0,0,0.319,0,0,0 +1,0.608,0.026,0.0578,0,0,0.445,0,0,0 +1,0.608,0.0183,0.0495,0,0,0.551,0,0,0.0345 +1,0.562,0.0159,0.0495,0,0,0.109,0,0,0.0927 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.719,0.074,0.313,0,0,0,0,0.55,0.364 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.28 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.069 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.138 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.103 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0.133,0.069 +0.667,0.732,0.162,0.314,0,0,0,0,0.133,0.069 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0345 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.103 +0.667,0.836,0.273,0.596,0,0,0,0,0.55,0.103 +0.667,0.849,0.366,0.683,0,0,0,0,0,0 +1,0.836,0.51,0.638,0.228,0.383,0,0,0,0 +1,0.81,0.629,0.504,0.547,0.15,0,0,0,0.0973 +1,0.66,0.306,0.218,0,0,0,0,0,0.0717 +1,0.634,0.189,0.196,0,0,0,0,0,0.135 +1,0.614,0.0879,0.116,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.608,0.026,0.0829,0,0,0,0,0,0.069 +1,0.68,0.0551,0.251,0,0,0,0,0,0.0988 +1,0.798,0.103,0.444,0,0,0,0,0,0.479 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.0345 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.069 +0.667,0.732,0.129,0.316,0,0,0,0,0.383,0.138 +0.667,0.732,0.136,0.307,0,0,0,0,0.45,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.103 +0.667,0.732,0.162,0.314,0,0,0,0,0.133,0.138 +0.667,0.758,0.181,0.359,0,0,0,0,0.7,0.172 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0345 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.0345 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.109 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.0345 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.109 +1,0.719,0.074,0.313,0,0,0,0,0,0.215 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.184 +1,0.818,0.149,0.481,0,0,0,0,0,0.142 +1,0.818,0.168,0.468,0,0,0,0,0,0.283 +1,0.818,0.186,0.449,0,0,0.129,0.133,0,0.433 +0.667,0.732,0.136,0.307,0,0,0.611,0.35,0,0.103 +0.667,0.732,0.153,0.305,0,0,0.421,0,0,0.0345 +0.667,0.732,0.162,0.314,0,0,0.789,0,0,0.103 +0.667,0.758,0.181,0.359,0,0,0.531,0,0,0.207 +0.667,0.797,0.224,0.457,0,0,0.424,0,0,0.069 +0.667,0.836,0.273,0.596,0,0,0.418,0,0,0.138 +0.667,0.849,0.366,0.683,0,0,0.236,0,0,0.069 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.0345 +1,0.857,0.887,0.554,0,0,0,0,0,0.241 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.133,0 +1,0.64,0.049,0.181,0,0,0,0,1,0.104 +0.667,0.647,0.0731,0.19,0,0,0,0,0.55,0.125 +0.667,0.647,0.0928,0.193,0,0,0,0,0.833,0.275 +0.667,0.647,0.108,0.189,0,0,0,0,0,0.356 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.23 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.154 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.405 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.103 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.276 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.31 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.069 +0.667,0.849,0.437,0.683,0,0,0,0,0,0.0345 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.194 +1,0.654,0.0301,0.116,0,0,0,0,0,0.464 +0.667,0.621,0.0327,0.15,0,0,0,0,0,0.207 +1,0.719,0.0799,0.313,0,0,0.41,0.633,0,0 +1,0.732,0.128,0.33,0.276,0.383,0.173,0.1,0,0.121 +0.667,0.732,0.168,0.337,0.508,0.15,0,0,0,0.137 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.216 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.138 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.0345 +0.667,0.732,0.274,0.305,0,0,0,0,0.267,0.314 +1,0.818,0.459,0.446,0,0,0.0811,0.133,0,0.199 +0.667,0.758,0.343,0.359,0,0,0.492,0.35,0,0.103 +0.667,0.797,0.36,0.457,0,0,0,0,0,0 +0.667,0.836,0.372,0.596,0,0,0,0,0.833,0.0345 +0.667,0.849,0.437,0.683,0,0,0,0,0,0 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.647,0.0527,0.19,0,0,0,0,0,0.069 +1,0.732,0.105,0.337,0,0,0,0,0,0.095 +1,0.818,0.168,0.468,0,0,0,0,0,0.24 +0.667,0.732,0.129,0.316,0,0,0,0,0.133,0.276 +0.667,0.732,0.136,0.307,0,0,0,0,1,0.0345 +0.667,0.732,0.153,0.305,0,0,0,0,0.267,0.0345 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.345 +1,0.857,0.263,0.513,0,0,0,0,0.883,0.069 +0.667,0.797,0.224,0.457,0,0,0,0,1,0.0345 +0.667,0.836,0.273,0.596,0,0,0,0,0.65,0.241 +1,0.993,0.541,1,0.221,0.383,0,0,0,0.103 +1,0.973,0.758,0.933,0.638,0.433,0,0,0,0 +0.667,0.81,0.629,0.504,0.556,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.779,0.536,0.488,0,0,0,0,0,0.148 +1,0.72,0.232,0.249,0,0,0,0,0,0.17 +1,0.654,0.0689,0.099,0,0,0,0,0,0.19 +1,0.654,0.0362,0.066,0,0,0,0,0,0.369 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.219 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0762 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.069 +1,0.621,0.0355,0.15,0,0,0,0,0,0.256 +1,0.64,0.0449,0.181,0,0,0,0,0,0.185 +1,0.647,0.0527,0.19,0,0,0,0,0,0.304 +0.667,0.647,0.0604,0.193,0,0,0,0,0.267,0.069 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0,0,0.133,0 +0.667,0.732,0.136,0.307,0,0,0,0,0.133,0.0345 +0.667,0.732,0.153,0.305,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.069 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.207 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.172 +0.667,0.836,0.273,0.596,0.429,0.533,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0.883,0.069 +1,0.973,0.758,0.933,0,0,0,0,0.8,0 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0.275 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.195 +0.667,0.64,0.0449,0.181,0,0,0,0,0.633,0.187 +0.667,0.732,0.0895,0.33,0,0,0,0,0.2,0.158 +1,0.818,0.149,0.481,0,0,0,0,0,0.103 +1,0.818,0.168,0.468,0,0,0,0,0,0.158 +1,0.818,0.186,0.449,0,0,0,0,0,0.13 +1,0.818,0.196,0.436,0.289,0.383,0,0,0,0.203 +1,0.818,0.222,0.432,0.754,0.15,0,0,0,0.349 +0.667,0.732,0.162,0.314,0.337,0,0.6,0.483,0,0.314 +0.667,0.758,0.181,0.359,0,0,0.515,0,0.267,0 +0.667,0.797,0.224,0.457,0,0,0.178,0,0,0.103 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.176 +0.667,0.849,0.366,0.683,0,0,0,0,0.55,0.31 +0.667,0.836,0.51,0.638,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.0792 +1,0.706,0.363,0.342,0,0,0,0,0,0.153 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.181,0,0,0,0,0,0.181 +1,0.647,0.0527,0.19,0,0,0,0,0,0.409 +1,0.647,0.0604,0.193,0,0,0,0,0,0.164 +1,0.818,0.168,0.468,0,0,0,0,0,0.394 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.44 +0.667,0.732,0.136,0.307,0,0,0,0,0.133,0.0842 +0.667,0.732,0.153,0.305,0,0,0,0,0.417,0.151 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.328 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.115 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.069 +0.667,0.836,0.273,0.596,0.259,0.383,0,0,0,0.31 +0.667,0.849,0.366,0.683,0.616,0.15,0,0,0,0 +0.667,0.836,0.51,0.638,0.58,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0.069 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.129 +1,0.719,0.074,0.313,0,0,0,0,0,0.296 +1,0.818,0.126,0.47,0,0,0,0,0,0.103 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.069 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.172 +0.667,0.732,0.136,0.307,0,0,0,0,0.633,0.138 +0.667,0.732,0.153,0.305,0,0,0,0,1,0.103 +0.667,0.732,0.162,0.314,0,0,0,0,0.05,0.0345 +0.667,0.758,0.181,0.359,0.156,0.133,0,0,0,0.138 +0.667,0.797,0.224,0.457,0.686,0.4,0,0,0,0.069 +0.667,0.836,0.273,0.596,0.776,0,0,0,0,0.069 +0.667,0.849,0.366,0.683,0.238,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.0345 +1,0.934,0.936,0.732,0,0,0,0,0,0.125 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0.108 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.019,0.0495,0,0,0,0,0,0.069 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0978 +1,0.64,0.049,0.181,0,0,0,0,0,0.219 +1,0.818,0.183,0.47,0,0,0,0,0,0.313 +1,0.818,0.242,0.481,0,0,0,0,0,0.183 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.128 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.141 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.151 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.455 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.417 +0.333,0.66,0.18,0.204,0,0,0,0,0,0 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.069 +1,0.973,0.549,0.869,0,0,0.0769,0.483,0,0 +1,0.993,0.647,1,0,0,0,0,0,0.103 +1,0.973,0.851,0.933,0,0,0,0,0,0.392 +1,0.934,1,0.732,0,0,0,0,0,0.171 +1,0.857,0.923,0.554,0,0,0,0,0,0.0127 +1,0.779,0.582,0.488,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.269 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.0345 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0386 +0.667,0.64,0.049,0.181,0,0,0.113,0.133,0,0.0686 +0.667,0.732,0.128,0.33,0,0,0.315,0.35,0,0.0345 +0.333,0.647,0.0928,0.193,0,0,0.399,0,0,0.241 +0.333,0.647,0.108,0.189,0,0,0.652,0,0,0.069 +0.333,0.647,0.118,0.183,0,0,0.499,0,0,0.0345 +0.667,0.732,0.233,0.307,0,0,0.484,0,0,0.205 +0.667,0.732,0.274,0.305,0,0,0.513,0,0,0.14 +0.333,0.647,0.165,0.182,0,0,0.379,0,0,0.0345 +0.333,0.66,0.18,0.204,0,0,0.343,0,0,0.138 +0.667,0.797,0.36,0.457,0,0,0.129,0.133,0,0.069 +0.667,0.836,0.372,0.596,0,0,0.652,0.35,0,0.138 +0.667,0.849,0.437,0.683,0,0,0.4,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.103 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0.145 +1,0.614,0.101,0.116,0,0,0,0,0,0.465 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.13 +1,0.64,0.0449,0.181,0,0,0,0,0,0.247 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.0345 +0.667,0.647,0.0724,0.183,0,0,0,0,0,0.138 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.0345 +0.667,0.732,0.153,0.305,0,0,0,0,0.55,0.138 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.138 +1,0.857,0.263,0.513,0,0,0,0,0,0.0345 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.138 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.0345 +0.333,0.705,0.191,0.366,0,0,0,0,0,0.138 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.069 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.0586 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0.112 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.103 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0.0345 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.0345 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0345 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.069 +0.667,0.732,0.162,0.314,0,0,0,0,0.267,0.069 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.207 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.294 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.232 +0.333,0.705,0.191,0.366,0,0,0,0,0,0 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.138 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.138 +0.667,0.706,0.363,0.342,0,0,0,0,0,0 +0.667,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.181,0,0,0,0,0,0.145 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.227 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.3 +0.667,0.732,0.129,0.316,0,0,0,0,0.133,0 +0.667,0.732,0.136,0.307,0,0,0,0,0.133,0.069 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.207 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.103 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0345 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.069 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.0345 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0345 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.0345 +1,0.934,0.936,0.732,0.571,0.883,0,0,0,0.227 +1,0.857,0.887,0.554,0,0.75,0,0,0,0.0966 +1,0.779,0.536,0.488,0,0,0,0,0,0.14 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.0345 +0.667,0.719,0.074,0.313,0,0,0,0,0.267,0.272 +1,0.818,0.126,0.47,0,0,0,0,0,0.284 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.188 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.267 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.138 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.326 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.069 +0.667,0.732,0.162,0.314,0.618,0.533,0,0,0,0 +0.667,0.758,0.181,0.359,0.571,0,0,0,0,0.276 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0345 +0.667,0.836,0.273,0.596,0,0,0,0,0,0 +0.333,0.705,0.191,0.366,0.542,0.817,0,0,0,0.103 +0,0.562,0.0159,0.0495,0,0,0,0,0.133,0.103 +1,0.934,0.936,0.732,0,0,0,0,0.133,0.133 +1,0.758,0.596,0.386,0,0,0,0,0,0.345 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.72,0.232,0.249,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0.0666 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.137 +1,0.68,0.0551,0.251,0,0,0,0,0,0.245 +0.667,0.719,0.074,0.313,0,0,0,0,0.55,0.197 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.135 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.0973 +0.333,0.647,0.0724,0.183,0,0,0,0,0.633,0.069 +0.667,0.732,0.136,0.307,0,0,0,0,0.2,0.069 +0.667,0.732,0.153,0.305,0,0,0,0,0.383,0.138 +0.667,0.732,0.162,0.314,0,0,0,0,1,0.103 +0.667,0.758,0.181,0.359,0,0,0,0,0.0167,0.0345 +0.667,0.797,0.224,0.457,0,0,0,0,0.267,0.0345 +1,0.973,0.402,0.869,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0 +1,0.973,0.758,0.933,0.169,0.133,0,0,0,0 +1,0.934,0.936,0.732,0.58,0.683,0,0,0,0.069 +1,0.857,0.887,0.554,0,0,0,0,0.833,0 +1,0.779,0.536,0.488,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.0345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0345 +0.667,0.64,0.049,0.181,0,0,0,0,0,0.069 +1,0.732,0.128,0.33,0,0,0,0,0.133,0.363 +1,0.818,0.242,0.481,0,0,0,0,0.133,0.149 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.179 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.197 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.0842 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.217 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.265 +1,0.857,0.505,0.513,0,0,0,0,0.267,0.302 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.103 +1,0.973,0.549,0.869,0.093,0.133,0,0,0,0.241 +0.667,0.849,0.437,0.683,0.635,0.683,0,0,0,0.0345 +1,0.973,0.851,0.933,0.395,0,0,0,0,0.225 +1,0.934,1,0.732,0,0,0,0,0,0.0734 +1,0.758,0.621,0.386,0,0,0,0,0,0.0612 +1,0.706,0.394,0.342,0,0,0,0,0,0.399 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0.197 +1,0.732,0.128,0.33,0,0,0,0,0,0.155 +1,0.818,0.242,0.481,0,0,0,0,0,0.28 +1,0.818,0.289,0.468,0,0,0,0,0,0.223 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.343 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.201 +1,0.818,0.402,0.432,0,0,0,0,0,0.158 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.327 +1,0.857,0.505,0.513,0,0,0,0,0,0.169 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.0345 +0.667,0.836,0.372,0.596,0,0,0.12,0.133,0,0.069 +0.667,0.849,0.437,0.683,0,0,0.331,0.35,0,0 +0.667,0.836,0.573,0.638,0,0,0.21,0,0,0 +1,0.934,1,0.732,0,0,0.238,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0.069 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0345 +1,0.64,0.0449,0.181,0,0,0,0,0.267,0.0345 +1,0.732,0.0895,0.33,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.136 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.106 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.241 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.138 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.172 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0345 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.103 +1,0.993,0.541,1,0,0,0,0,0,0 +1,0.973,0.758,0.933,0.417,0.533,0,0,0,0.143 +1,0.934,0.936,0.732,0,0,0,0,0,0.0345 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_5.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_5.csv new file mode 100644 index 0000000000..3988f2fed9 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_5.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0.42 +1,0.719,0.074,0.316,0,0,0,0,0,0.347 +1,0.732,0.0895,0.334,0,0,0,0,0,0.341 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.018 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.387 +0.667,0.732,0.129,0.322,0,0,0,0,0.517,0.244 +0.667,0.732,0.136,0.313,0,0,0.474,0.483,0,0.168 +0.667,0.647,0.0845,0.18,0,0,0.0594,0,0,0.127 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.145 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0.535 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.157 +1,0.973,0.402,0.798,0,0,0,0,0.517,0.0848 +1,0.993,0.541,0.979,0,0,0,0,0.267,0 +1,0.973,0.758,0.991,0,0,0,0,0.5,0 +1,0.934,0.936,0.823,0,0,0,0,0,0.0848 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.4 +1,0.68,0.0551,0.253,0,0,0,0,0.267,0.202 +0.667,0.719,0.074,0.316,0,0,0,0,0.5,0.425 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.0848 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.127 +0.667,0.732,0.117,0.334,0,0,0,0,0,0 +0.667,0.732,0.129,0.322,0,0,0,0,0.517,0.0424 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.0424 +0.667,0.732,0.153,0.311,0,0,0,0,0.25,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.0848 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.212 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.238 +1,0.973,0.402,0.798,0,0,0,0,0,0.11 +0.333,0.705,0.191,0.359,0,0,0,0,0,0.0424 +0.667,0.836,0.51,0.677,0.269,0.267,0,0,0,0 +0.667,0.81,0.629,0.565,0.675,0,0,0,0,0 +0.667,0.758,0.596,0.43,0.417,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0.0704 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.621,0.0355,0.151,0,0,0,0,0,0.0424 +1,0.64,0.0449,0.183,0,0,0,0,0,0.263 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0769 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.0424 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.0424 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.0424 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.17 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0.0848 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.424 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.0848 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.17 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.0424 +0.667,0.81,0.629,0.565,0,0,0.276,0.267,0,0.0987 +0.667,0.758,0.596,0.43,0,0,0.436,0.217,0,0 +0.667,0.706,0.363,0.374,0,0,0.306,0,0,0 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.318,0.517,0,0 +1,0.608,0.026,0.0578,0,0,0.576,1,0,0.212 +1,0.608,0.0183,0.0495,0,0,0.719,0.167,0,0.17 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.0848 +1,0.608,0.02,0.0513,0,0,0,0,0,0.474 +1,0.608,0.026,0.0833,0,0,0,0,0,0.0858 +0.667,0.621,0.0355,0.151,0,0,0,0,0.767,0.17 +1,0.64,0.0449,0.183,0,0,0,0,0,0.211 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0.25,0 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.0848 +0.667,0.732,0.136,0.313,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0424 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0848 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0.25,0 +1,0.973,0.402,0.798,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0.254 +1,0.973,0.758,0.991,0,0,0,0,0,0.0848 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.203 +1,0.68,0.0551,0.253,0,0,0,0,0,0.326 +1,0.719,0.074,0.316,0,0,0,0,0,0.389 +0.667,0.647,0.0527,0.192,0,0,0,0,0.267,0.0848 +0.667,0.732,0.105,0.343,0,0,0,0,1,0 +0.667,0.732,0.117,0.334,0,0,0.318,0.267,0.283,0.127 +0.667,0.732,0.129,0.322,0,0,0.449,0.45,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.0424 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.212 +0.333,0.647,0.0888,0.182,0.0576,0.0167,0,0,0,0.127 +0.667,0.758,0.181,0.343,0.801,0.517,0,0,0,0.102 +0.667,0.797,0.224,0.418,0.721,0,0,0,0.267,0.136 +0.667,0.836,0.273,0.548,0.311,0,0,0,0.5,0 +1,0.993,0.541,0.979,0,0,0,0,0,0.317 +1,0.973,0.758,0.991,0,0,0,0,0,0.0424 +1,0.934,0.936,0.823,0,0,0,0,0,0.0801 +1,0.66,0.306,0.24,0,0,0,0,0,0.173 +1,0.634,0.189,0.212,0,0,0,0,0,0.127 +1,0.614,0.0879,0.116,0,0,0,0,0,0.126 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.608,0.0241,0.0833,0,0,0,0,0,0.0424 +0.667,0.621,0.0327,0.151,0,0,0.212,0.433,0,0.359 +0.667,0.64,0.049,0.183,0,0,0.105,0.05,0,0.0848 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.199 +0.667,0.647,0.118,0.186,0,0,0,0,0,0.137 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.675 +0.333,0.647,0.146,0.18,0,0,0,0,0.25,0.431 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.0424 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.424 +0.667,0.797,0.36,0.418,0,0,0,0,0.25,0.0424 +0.667,0.836,0.372,0.548,0,0,0.372,0.933,0,0.0424 +0.667,0.849,0.437,0.669,0.492,0.267,0.362,0.517,0,0 +0.667,0.836,0.573,0.677,0.686,0.267,0,0,0,0.127 +1,0.934,1,0.823,0.99,0,0,0,0,0.166 +1,0.857,0.923,0.621,0,0,0,0,0,0.0978 +1,0.634,0.206,0.212,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.127 +1,0.608,0.031,0.0578,0,0,0,0,0,0.0848 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0.291 +1,0.647,0.0731,0.192,0,0,0,0,0,0.47 +1,0.732,0.168,0.343,0,0,0,0,0,0.327 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.365 +0.667,0.732,0.217,0.322,0,0,0,0,0,0.751 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.149 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.359 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.254 +0.333,0.66,0.18,0.196,0,0,0,0,0,0 +0.667,0.797,0.36,0.418,0,0,0.229,0.433,0,0.579 +0.667,0.836,0.372,0.548,0,0,0.958,0.283,0.25,0.0424 +1,0.993,0.647,0.979,0,0,0.551,0,0,0.17 +1,0.973,0.851,0.991,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0.444,0.433,0,0 +0.667,0.758,0.621,0.43,0,0,0.514,0.05,0,0 +1,0.779,0.582,0.536,0,0,0.347,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0.17 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0.25,0.379 +1,0.64,0.0449,0.183,0,0,0,0,0,0.0848 +1,0.732,0.0895,0.334,0,0,0,0,0,0.223 +1,0.732,0.105,0.343,0,0,0,0,0,0.297 +1,0.818,0.168,0.477,0,0,0,0,0,0.0969 +1,0.818,0.186,0.458,0,0,0,0,0.0167,0.0853 +1,0.818,0.196,0.445,0,0,0,0,0.233,0.0424 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0848 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.297 +0.667,0.758,0.181,0.343,0,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.17 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.127 +0.667,0.849,0.366,0.669,0,0,0,0,0.25,0 +1,0.973,0.758,0.991,0,0,0,0,0,0.0424 +1,0.934,0.936,0.823,0,0,0,0,0,0.0424 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.779,0.536,0.536,0,0,0,0,0,0.0424 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.0819 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.267 +1,0.621,0.0355,0.151,0,0,0,0,0,0.217 +1,0.64,0.0449,0.183,0,0,0,0,0,0.0953 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0664,0.192,0,0,0,0,0.517,0.0848 +0.667,0.647,0.0724,0.186,0,0,0,0,0,0.212 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0.0424 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0424 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.339 +1,0.915,0.327,0.602,0,0,0,0,0.517,0.17 +1,0.973,0.402,0.798,0,0,0,0,0,0.17 +1,0.993,0.541,0.979,0,0,0,0,0,0.212 +1,0.973,0.758,0.991,0,0,0,0,0.25,0 +1,0.934,0.936,0.823,0.256,0.267,0,0,0,0 +1,0.857,0.887,0.621,0.249,0,0,0,0,0.184 +1,0.706,0.363,0.374,0,0,0,0,0,0.0181 +1,0.667,0.16,0.183,0,0,0,0,0,0.124 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0899 +1,0.608,0.026,0.0833,0,0,0,0,0,0.22 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.304 +0.667,0.732,0.0895,0.334,0,0,0,0,0.25,0.352 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.173 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.259 +0.333,0.647,0.0724,0.186,0,0,0,0,0.25,0.0424 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.0848 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.254 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +1,0.679,0.12,0.234,0,0,0,0,0.25,0.254 +1,0.699,0.145,0.299,0,0,0,0,0,0 +1,0.849,0.366,0.669,0,0,0,0,0,0.17 +1,0.836,0.51,0.677,0,0,0,0,0,0.0848 +1,0.81,0.629,0.565,0,0,0,0,0,0.257 +1,0.758,0.596,0.43,0,0,0,0,0,0.188 +1,0.706,0.363,0.374,0,0,0,0,0,0.301 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0612 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0724,0.186,0,0,0,0,0,0.127 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.17 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0424 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.297 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.127 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.17 +0.333,0.699,0.145,0.299,0,0,0,0,0.517,0.0848 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.375 +1,0.973,0.758,0.991,0,0,0,0,0,0.229 +1,0.934,0.936,0.823,0.322,0.267,0,0,0,0 +1,0.857,0.887,0.621,0.445,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0.267,0.23 +1,0.608,0.026,0.0833,0,0,0,0,0.25,0.0424 +0.667,0.562,0.0159,0.0495,0,0,0.269,0.517,0,0 +1,0.64,0.0449,0.183,0,0,0.435,0.2,0,0.297 +1,0.818,0.126,0.477,0,0,0.391,0,0,0.254 +1,0.818,0.149,0.49,0,0,0.597,0,0,0.212 +1,0.818,0.168,0.477,0,0,0.108,0,0,0.127 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.0424 +0.667,0.732,0.136,0.313,0,0,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0,0,0.25,0 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.244 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.409 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.407 +0.667,0.836,0.273,0.548,0,0,0,0,0,0 +1,0.993,0.541,0.979,0,0,0,0,0,0 +1,0.973,0.758,0.991,0.0613,0.0167,0,0,0,0 +1,0.934,0.936,0.823,0.709,0.25,0,0,0,0.0424 +1,0.758,0.596,0.43,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0.25,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0.289 +1,0.732,0.128,0.334,0,0,0,0,0,0.382 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.108,0.192,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.209 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.424 +0.667,0.797,0.36,0.418,0,0,0,0,0,0.17 +0.667,0.836,0.372,0.548,0.479,0.267,0,0,0,0 +1,0.849,0.437,0.669,0.128,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0.212 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.13 +1,0.621,0.0327,0.151,0,0,0,0,0,0.645 +1,0.64,0.049,0.183,0,0,0,0,0,0.36 +1,0.732,0.128,0.334,0,0,0,0,0.25,0.578 +1,0.732,0.168,0.343,0,0,0,0,0,0.582 +1,0.732,0.198,0.334,0,0,0,0,0,0.254 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.382 +0.333,0.647,0.146,0.18,0.368,0.267,0,0,0,0.0424 +0.333,0.647,0.165,0.182,0.567,0,0,0,0,0.0424 +0.333,0.66,0.18,0.196,0.75,0,0.11,0.183,0,0.0848 +0.667,0.797,0.36,0.418,0.379,0,0.92,0.533,0.183,0.141 +1,0.973,0.549,0.798,0,0,0.603,0,0.0667,0.308 +1,0.993,0.647,0.979,0,0,0.522,0,0,0.135 +1,0.973,0.851,0.991,0,0,0,0,0.25,0.15 +0.667,0.81,0.673,0.565,0.154,0.183,0,0,0,0.0424 +1,0.857,0.923,0.621,0.884,0.35,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0.0167,0.127 +0.667,0.68,0.0551,0.253,0,0,0,0,0.233,0.212 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.382 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.0848 +0.667,0.732,0.105,0.343,0,0,0.341,0.483,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0.267,0 +0.667,0.732,0.129,0.322,0,0,0,0,1,0.0424 +0.667,0.732,0.136,0.313,0,0,0,0,0.283,0 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0424 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.514 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.264 +1,0.915,0.327,0.602,0,0,0,0,0,0.354 +1,0.973,0.402,0.798,0,0,0,0,0,0.514 +1,0.993,0.541,0.979,0.419,0.267,0,0,0,0.58 +1,0.973,0.758,0.991,0,0,0,0,0,0.206 +1,0.934,0.936,0.823,0,0,0,0,0.517,0.0725 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.719,0.074,0.316,0,0,0,0,0.25,0.125 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.41 +0.667,0.732,0.105,0.343,0,0,0,0,0.25,0.597 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.328 +0.667,0.732,0.129,0.322,0,0,0,0,0.517,0.37 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.138 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.354 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.336 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.124 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.24 +1,0.993,0.541,0.979,0,0,0,0,0,0.0848 +0.667,0.836,0.51,0.677,0,0,0,0,0,0.127 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0.266 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0.141 +1,0.64,0.0449,0.183,0,0,0,0,0,0.463 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.212 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.0153 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.206 +0.667,0.732,0.129,0.322,0.446,0.267,0,0,0.25,0.249 +0.667,0.732,0.136,0.313,0.382,0,0.293,0.517,0,0.27 +0.333,0.647,0.0845,0.18,0,0,0.323,0.2,0,0.0848 +0.333,0.647,0.0888,0.182,0,0,0.352,0,0,0.0424 +0.333,0.66,0.0982,0.196,0,0,0.5,0,0.517,0.127 +0.667,0.797,0.224,0.418,0,0,0.176,0,0,0.127 +0.667,0.836,0.273,0.548,0,0,0,0,0.0167,0 +1,0.993,0.541,0.979,0,0,0,0,0.233,0 +1,0.973,0.758,0.991,0,0,0,0,0,0.0424 +1,0.934,0.936,0.823,0,0,0,0,0,0.0424 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0.0424 +1,0.667,0.16,0.183,0,0,0,0,0,0.0424 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.344 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0.334 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0.25,0 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.297 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0424 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.17 +1,0.857,0.263,0.49,0,0,0,0,0,0.17 +1,0.915,0.327,0.602,0,0,0,0,0,0.0589 +1,0.973,0.402,0.798,0,0,0,0,0,0.228 +1,0.993,0.541,0.979,0,0,0,0,0,0.487 +1,0.973,0.758,0.991,0,0,0,0,0,0.19 +1,0.934,0.936,0.823,0,0,0,0,0,0.283 +1,0.758,0.596,0.43,0,0,0,0,0,0.0172 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.156 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.354 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0.105 +1,0.719,0.074,0.316,0,0,0,0,0,0.569 +1,0.732,0.0895,0.334,0,0,0,0,0.25,0.256 +0.667,0.732,0.105,0.343,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.0424 +0.667,0.732,0.129,0.322,0.0787,0.0167,0,0,0,0.212 +0.667,0.732,0.136,0.313,0.7,0.25,0,0,0,0.0424 +0.667,0.732,0.153,0.311,0.769,0,0,0,0.767,0 +0.667,0.732,0.162,0.315,0.666,0,0,0,0,0.0424 +0.667,0.758,0.181,0.343,0.635,0,0,0,0,0.0424 +0.667,0.797,0.224,0.418,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.127 +1,0.993,0.541,0.979,0,0,0,0,0,0.0583 +0.667,0.836,0.51,0.677,0,0,0,0,0.25,0.379 +0.667,0.81,0.629,0.565,0,0,0,0,0,0.238 +1,0.857,0.887,0.621,0,0,0,0,0,0.0603 +1,0.706,0.363,0.374,0,0,0,0,0,0.24 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.732,0.128,0.334,0,0,0,0,0.25,0.153 +1,0.818,0.242,0.49,0.249,0.433,0,0,0,0.367 +1,0.818,0.289,0.477,0.819,0.1,0,0,0,0.179 +1,0.818,0.317,0.458,0.187,0,0,0,0,0.202 +0.667,0.732,0.233,0.313,0,0,0,0,0,0.296 +1,0.732,0.274,0.311,0,0,0,0,0,0.127 +0.667,0.647,0.165,0.182,0,0,0,0,0,0.0848 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.339 +1,0.915,0.531,0.602,0,0,0,0,0.517,0.127 +1,0.973,0.549,0.798,0,0,0,0,0,0.0424 +1,0.993,0.647,0.979,0,0,0,0,0,0 +1,0.973,0.851,0.991,0,0,0,0,0,0.0424 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0.0424 +1,0.706,0.394,0.374,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0.127 +1,0.608,0.0224,0.0495,0,0,0,0,0,0.17 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0241,0.0833,0,0,0,0,0.25,0.0424 +1,0.68,0.0473,0.253,0,0,0,0,0,0.17 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0928,0.196,0,0,0,0,0,0.127 +0.333,0.647,0.108,0.192,0,0,0,0,0,0 +0.333,0.647,0.118,0.186,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0.25,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0.0424 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.0848 +0.667,0.758,0.343,0.343,0,0,0,0,0,0.0424 +0.333,0.679,0.189,0.234,0,0,0,0,0,0.0848 +0.333,0.699,0.195,0.299,0,0,0,0,0.25,0.551 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.297 +1,0.973,0.851,0.991,0,0,0,0,0,0.0848 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.758,0.621,0.43,0,0,0,0,0,0 +1,0.634,0.206,0.212,0,0,0,0,0,0.459 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.654,0.0362,0.117,0,0,0,0,0.267,0.472 +1,0.621,0.0355,0.151,0,0,0,0,0.5,0.127 +1,0.719,0.074,0.316,0,0,0,0,0,0.0424 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0.0424 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.17 +0.667,0.732,0.117,0.334,0,0,0.0694,0.0167,0,0.17 +0.667,0.732,0.129,0.322,0,0,0.318,0.7,0,0.0424 +0.667,0.732,0.136,0.313,0,0,0.481,0,0.25,0.0848 +0.667,0.732,0.153,0.311,0,0,0.614,0,0,0.0424 +0.667,0.732,0.162,0.315,0,0,0.534,0,0,0.382 +0.667,0.758,0.181,0.343,0,0,0.619,0,0,0.0424 +0.667,0.797,0.224,0.418,0,0,0.506,0,0.25,0.0424 +1,0.973,0.402,0.798,0,0,0.058,0,0.267,0.0424 +1,0.993,0.541,0.979,0,0,0,0,0.267,0 +1,0.973,0.758,0.991,0.435,0.267,0,0,0.233,0 +1,0.934,0.936,0.823,0.875,0,0,0,0.0167,0 +1,0.857,0.887,0.621,0.556,0,0.188,0.767,0.75,0 +1,0.779,0.536,0.536,0,0,0,0.683,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0.0169 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.582 +1,0.608,0.026,0.0833,0,0,0,0,0,0.177 +1,0.621,0.0355,0.151,0,0,0,0,0,0.299 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0527,0.192,0,0,0,0,0.25,0.127 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0.0424 +0.667,0.647,0.0664,0.192,0,0,0,0,0,0.295 +0.667,0.647,0.0724,0.186,0,0,0,0,0,0.143 +0.667,0.732,0.136,0.313,0,0,0.525,0.717,0,0.0424 +0.333,0.647,0.0845,0.18,0,0,0.729,0,0,0.127 +0.333,0.647,0.0888,0.182,0,0,0.289,0,0,0.127 +0.333,0.66,0.0982,0.196,0,0,0.559,0,0.25,0.127 +1,0.915,0.327,0.602,0,0,0.296,0,0,0.0848 +1,0.973,0.402,0.798,0,0,0,0,0,0.0424 +1,0.993,0.541,0.979,0,0,0,0,0,0.0424 +0.667,0.836,0.51,0.677,0.315,0.267,0,0,0,0 +0.667,0.81,0.629,0.565,0.234,0,0,0,0,0 +0.667,0.66,0.306,0.24,0,0,0,0,0.25,0.0178 +1,0.706,0.363,0.374,0,0,0,0,0,0.186 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.157 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.0848 +0.667,0.732,0.129,0.322,0,0,0,0,0.25,0.212 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.297 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0.0759 +0.667,0.647,0.0888,0.182,0,0,0,0,0.517,0.127 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.254 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.127 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.212 +0.667,0.849,0.366,0.669,0,0,0,0,0.25,0 +0.667,0.836,0.51,0.677,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.309,0.267,0,0,0,0 +1,0.857,0.887,0.621,0.349,0,0,0,0,0.0424 +1,0.706,0.363,0.374,0,0,0,0,0,0.0424 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.18 +1,0.68,0.0551,0.253,0,0,0,0,0,0.19 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0.2 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.423 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0.339 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0.17 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.758,0.181,0.343,0,0,0,0,0.0167,0.212 +0.667,0.797,0.224,0.418,0,0,0,0,0.5,0.339 +1,0.973,0.402,0.798,0,0,0,0,0,0.127 +1,0.993,0.541,0.979,0,0,0,0,0,0.17 +1,0.973,0.758,0.991,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0.0926 +1,0.706,0.363,0.374,0,0,0,0,0,0.162 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0.0646 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0 +0.667,0.732,0.0895,0.334,0.097,0.0167,0,0,0.767,0.0848 +0.667,0.732,0.105,0.343,0.781,0.25,0,0,0,0.0424 +0.667,0.732,0.117,0.334,0.796,0,0,0,0,0.0848 +0.667,0.732,0.129,0.322,0.774,0,0,0,0,0 +0.667,0.732,0.136,0.313,0.201,0,0.379,0.483,0,0 +0.333,0.647,0.0845,0.18,0,0,0.531,0,0,0.254 +0.333,0.647,0.0888,0.182,0,0,0.686,0,0,0.382 +0.333,0.66,0.0982,0.196,0,0,0.318,0,0,0.127 +0.333,0.679,0.12,0.234,0,0,0.843,0,0,0.0848 +1,0.973,0.402,0.798,0.615,0.533,0.528,0,0,0.337 +0.667,0.849,0.366,0.669,0.6,0,0.609,0,0.25,0.0424 +1,0.973,0.758,0.991,0,0,0.688,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.502,0,0,0.0424 +1,0.66,0.306,0.24,0,0,0.471,0,0,0 +1,0.634,0.189,0.212,0,0,0.454,0,0,0 +1,0.614,0.0879,0.116,0,0,0.092,0,0.0167,0.0424 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.183,0,0,0,0,0,0.339 +1,0.732,0.128,0.334,0,0,0,0,0,0.169 +1,0.732,0.168,0.343,0,0,0,0,0,0.337 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.118,0.186,0,0,0,0,0,0.287 +1,0.732,0.233,0.313,0,0,0,0,0,0.196 +1,0.818,0.402,0.441,0,0,0,0,0,0.144 +1,0.818,0.459,0.448,0,0,0,0,0,0 +1,0.857,0.505,0.49,0,0,0,0,0,0.0424 +1,0.915,0.531,0.602,0,0,0,0,0,0.254 +0.667,0.836,0.372,0.548,0,0,0,0,0.517,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0.0848 +1,0.973,0.851,0.991,0,0,0,0,0,0.0848 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0.196 +1,0.779,0.582,0.536,0,0,0,0,0,0.178 +1,0.614,0.101,0.116,0,0,0,0,0.233,0.112 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.314 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.647,0.0731,0.192,0,0,0,0,0,0.17 +1,0.647,0.0928,0.196,0,0,0,0,0,0.253 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0.384,0.267,0.102,0.183,0,0.0424 +0.333,0.647,0.146,0.18,0.205,0,0.538,0.533,0,0.297 +0.667,0.732,0.312,0.315,0,0,0.585,0,0,0.0848 +0.667,0.758,0.343,0.343,0,0,0.526,0,0,0.424 +0.667,0.797,0.36,0.418,0,0,0.5,0,0,0.0424 +1,0.973,0.549,0.798,0,0,0.217,0,0,0.127 +1,0.993,0.647,0.979,0,0,0,0,0,0.0424 +1,0.973,0.851,0.991,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0.126 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.134 +0.667,0.68,0.0551,0.253,0,0,0,0,0.25,0.277 +1,0.719,0.074,0.316,0,0,0,0,0,0.383 +0.667,0.732,0.0895,0.334,0,0,0,0,0.25,0.0424 +0.667,0.732,0.105,0.343,0,0,0,0,0,0.281 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.127 +0.667,0.732,0.129,0.322,0,0,0,0,0,0.104 +0.667,0.732,0.136,0.313,0,0,0.149,0.267,0,0.254 +0.667,0.732,0.153,0.311,0,0,0.314,0.45,0,0.0848 +0.667,0.732,0.162,0.315,0,0,0.697,0,0,0.254 +0.667,0.758,0.181,0.343,0,0,0.584,0,0.267,0.0424 +1,0.915,0.327,0.602,0,0,0.665,0,0.25,0.212 +1,0.973,0.402,0.798,0,0,0.298,0,0,0.17 +1,0.993,0.541,0.979,0,0,0.403,0,0.517,0.127 +1,0.973,0.758,0.991,0,0,0,0,0,0.0424 +1,0.934,0.936,0.823,0,0,0,0,0,0 +1,0.857,0.887,0.621,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0.282,0.267,0,0,0,0 +1,0.608,0.0424,0.0743,0.362,0,0.461,0.483,0,0.0424 +1,0.608,0.026,0.0578,0,0,0.183,0,0,0.17 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.242 +1,0.621,0.0355,0.151,0,0,0,0,0,0.268 +1,0.64,0.0449,0.183,0,0,0,0,0,0.17 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0724,0.186,0,0,0,0,0,0.141 +1,0.818,0.196,0.445,0,0,0,0,0,0.17 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0424 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.0424 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.254 +0.333,0.679,0.12,0.234,0,0,0,0,0.25,0.204 +1,0.973,0.402,0.798,0,0,0,0,0,0.368 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.0424 +1,0.973,0.758,0.991,0,0,0,0,0,0.212 +1,0.934,0.936,0.823,0,0,0,0,0,0.0596 +1,0.857,0.887,0.621,0,0,0,0,0,0.249 +1,0.634,0.189,0.212,0,0,0,0,0,0.104 +1,0.562,0.0159,0.0495,0.172,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0.25,0.183 +1,0.64,0.0449,0.183,0,0,0,0,0,0.16 +1,0.732,0.0895,0.334,0,0,0,0,0.767,0.0424 +1,0.818,0.149,0.49,0,0,0.121,0.233,0,0 +0.667,0.732,0.117,0.334,0,0,0.522,0,0,0 +0.667,0.732,0.129,0.322,0,0,0.551,0,0.267,0.127 +0.667,0.732,0.136,0.313,0,0,0,0,0.767,0.127 +0.667,0.732,0.153,0.311,0,0,0,0,0,0.0424 +0.667,0.732,0.162,0.315,0,0,0,0,0,0.254 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.0848 +0.667,0.797,0.224,0.418,0,0,0,0,0.25,0.127 +1,0.973,0.402,0.798,0,0,0,0,0.267,0.0424 +1,0.993,0.541,0.979,0,0,0,0,1,0.0424 +1,0.973,0.758,0.991,0,0,0,0,1,0.0848 +1,0.934,0.936,0.823,0,0,0,0,1,0.355 +1,0.857,0.887,0.621,0,0,0,0,1,0.518 +1,0.634,0.189,0.212,0,0,0,0,0.133,0.232 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.0424 +1,0.623,0.0353,0.15,0,0,0,0,0,0.127 +1,0.642,0.0447,0.181,0,0,0,0,0,0.127 +1,0.824,0.125,0.47,0,0,0,0,0,0.26 +1,0.824,0.148,0.481,0.188,0.217,0,0,0,0.3 +1,0.824,0.166,0.468,0.748,0.0333,0,0,0,0.669 +1,0.824,0.184,0.449,0.0567,0,0,0,0,0 +1,0.824,0.194,0.436,0,0,0,0,0,0 +1,0.824,0.22,0.432,0,0,0,0,0,0.17 +1,0.736,0.161,0.307,0,0,0,0,0,0.0848 +1,0.863,0.261,0.458,0.644,0.717,0,0,0,0.127 +1,0.922,0.325,0.526,0.203,0.0667,0,0,0,0.0424 +1,0.98,0.399,0.674,0,0,0,0,0,0 +1,0.854,0.364,0.595,0,0,0,0,0,0 +1,0.841,0.507,0.67,0.246,0.217,0,0,0,0 +1,0.815,0.625,0.625,0.425,0.3,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.623,0.0353,0.15,0,0,0,0,0,0.127 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.0848 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.198 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.517 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.388 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.458 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0424 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0.467,0 +0.667,0.802,0.222,0.367,0,0,0,0,0.25,0.0848 +1,0.98,0.399,0.674,0,0,0,0,0.0333,0.0424 +0.667,0.854,0.364,0.595,0.518,0.517,0,0,0,0.0848 +0.667,0.841,0.507,0.67,0.556,0,0,0,0,0 +0.667,0.815,0.625,0.625,0.677,0,0,0,0,0.382 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0.0424 +1,0.61,0.0309,0.0578,0,0,0,0,0,0.0424 +1,0.61,0.0223,0.0495,0,0,0,0,0,0.254 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.111 +0.333,0.642,0.0488,0.181,0,0,0,0,0,0.255 +0.667,0.736,0.127,0.33,0,0,0,0,0,0.197 +0.333,0.649,0.0923,0.193,0,0,0,0,0,0.14 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.253 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.0603 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.286 +0.667,0.736,0.272,0.305,0,0,0,0,0,0 +1,0.824,0.456,0.435,0,0,0,0,0,0.254 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.127 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.0424 +0.667,0.841,0.369,0.466,0,0,0,0,0,0.212 +0.667,0.854,0.434,0.595,0,0,0,0,0.15,0.249 +1,0.841,0.569,0.67,0,0,0,0,0.617,0.0905 +0.667,0.688,0.343,0.337,0,0,0,0,0,0.243 +1,0.662,0.317,0.275,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0.262 +1,0.623,0.0326,0.15,0,0,0,0,0,0.188 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.312 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.0424 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.127 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.297 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.212 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.127 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.0848 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.297 +0.667,0.841,0.369,0.466,0,0,0,0,0,0.0424 +0.667,0.854,0.434,0.595,0,0,0,0,0,0.0848 +0.333,0.701,0.294,0.36,0,0,0,0,0,0.127 +0.667,0.815,0.668,0.625,0,0,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0.17 +1,0.71,0.392,0.442,0,0,0,0,0,0.129 +1,0.671,0.182,0.183,0,0,0,0,0,0.17 +1,0.61,0.0421,0.0743,0,0,0,0,0,0.227 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.247 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.066,0.189,0,0,0,0,0.25,0.0424 +0.667,0.649,0.072,0.183,0,0,0,0,0.5,0.0424 +1,0.824,0.194,0.436,0,0,0,0,0,0.212 +0.667,0.736,0.152,0.305,0,0,0,0,0,0 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.17 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0424 +1,0.922,0.325,0.526,0,0,0,0,0.25,0.212 +1,0.98,0.399,0.674,0,0,0,0,0,0 +1,1,0.537,0.868,0.606,0.517,0,0,0.717,0.212 +1,0.98,0.752,0.98,0.611,0,0,0,0.3,0.382 +0.667,0.815,0.625,0.625,0.104,0,0,0,0,0.12 +1,0.762,0.592,0.501,0,0,0,0,0,0.0424 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0.205 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.31 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0727 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.438 +0,0.562,0.0159,0.0495,0.209,0.217,0.0821,0.217,0,0.0849 +0.667,0.736,0.104,0.337,0.613,0.0333,0.286,1,0,0.0424 +0.667,0.736,0.116,0.328,0.752,0,0.42,0.55,0,0 +0.667,0.736,0.128,0.316,0.113,0,0.663,0,0,0.297 +0.667,0.736,0.135,0.307,0,0,0.578,0,0,0 +0.667,0.736,0.152,0.305,0,0,0.698,0,0,0.542 +0.333,0.649,0.0882,0.178,0,0,0.63,0,0,0.212 +0.667,0.762,0.179,0.322,0,0,0.382,0,0,0.297 +0.667,0.802,0.222,0.367,0,0,0.611,0,0.5,0.0424 +1,0.98,0.399,0.674,0,0,0.631,0,0,0.0848 +1,1,0.537,0.868,0,0,0.701,0,0,0.0424 +1,0.98,0.752,0.98,0,0,0,0,0,0.239 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.308 +1,0.71,0.36,0.442,0,0,0,0,0,0.135 +1,0.671,0.159,0.183,0,0,0,0,0,0.207 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.297 +1,0.723,0.0735,0.313,0,0,0,0,0,0.355 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.339 +0.667,0.736,0.104,0.337,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0.25,0.0848 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.0424 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0848 +0.667,0.736,0.152,0.305,0,0,0,0,0.25,0.0424 +1,0.824,0.233,0.435,0.206,0.217,0.362,0.5,0,0.361 +1,0.863,0.261,0.458,0.714,0.3,0.423,0,0,0.0424 +1,0.922,0.325,0.526,0.376,0,0.31,0,0.217,0.212 +1,0.98,0.399,0.674,0,0,0,0,0.283,0.234 +1,1,0.537,0.868,0.73,0.25,0,0,0,0.0424 +1,0.98,0.752,0.98,0.692,0,0,0,0,0 +1,0.941,0.929,0.913,0.767,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.0842,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.0874 +1,0.723,0.0735,0.313,0,0,0,0,0,0.625 +1,0.824,0.125,0.47,0,0,0,0,0,0.218 +1,0.824,0.148,0.481,0,0,0,0,0,0.107 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.0848 +0.667,0.736,0.128,0.316,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0848 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0424 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0.212 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.254 +0.333,0.682,0.119,0.208,0,0,0,0,0.217,0.127 +0.667,0.841,0.271,0.466,0,0,0,0,0.8,0.0848 +0.667,0.854,0.364,0.595,0,0,0,0,0.25,0.0848 +0.667,0.841,0.507,0.67,0,0,0,0,0,0 +0.667,0.815,0.625,0.625,0,0,0,0,0,0.127 +0.667,0.662,0.304,0.275,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0.25,0.135 +1,0.684,0.0548,0.251,0,0,0,0,0,0.249 +1,0.804,0.102,0.444,0,0,0,0,0,0.346 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.297 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0848 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +1,0.824,0.184,0.449,0,0,0,0,0.717,0.297 +1,0.824,0.194,0.436,0,0,0,0,0.05,0.0424 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0424 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.0848 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.254 +0.333,0.682,0.119,0.208,0.648,0.25,0,0,0,0.212 +0.667,0.841,0.271,0.466,0.108,0,0,0,0.25,0 +1,1,0.537,0.868,0.224,0.217,0,0,0,0 +1,0.98,0.752,0.98,0.407,0.0333,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.0424 +1,0.71,0.36,0.442,0,0,0,0,0,0.123 +1,0.616,0.0874,0.116,0,0,0,0,0,0.23 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.623,0.0326,0.15,0,0,0,0,0,0.157 +1,0.723,0.0794,0.313,0,0,0,0,0.4,0.509 +0.667,0.736,0.127,0.33,0,0,0,0,0.367,0.423 +0.667,0.736,0.166,0.337,0,0,0,0,0,0.367 +0.333,0.649,0.108,0.189,0,0,0,0,0,0.0869 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.0848 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.0848 +0.333,0.682,0.188,0.208,0,0,0,0,0,0.0848 +0.333,0.701,0.194,0.258,0,0,0,0,0.5,0.262 +1,1,0.642,0.868,0.536,0.25,0,0,0,0.408 +1,0.98,0.845,0.98,0.644,0,0,0,0,0.232 +0.667,0.815,0.668,0.625,0.167,0,0,0,0.5,0 +1,0.863,0.916,0.727,0,0,0,0,0,0.125 +1,0.784,0.578,0.638,0,0,0,0,0,0.105 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.623,0.0326,0.15,0,0,0,0,0.25,0.0424 +1,0.642,0.0488,0.181,0,0,0,0,0,0.219 +1,0.736,0.127,0.33,0,0,0,0,0,0.459 +1,0.824,0.241,0.481,0,0,0,0,0,0.665 +1,0.824,0.287,0.468,0,0,0,0,0,0.444 +0.333,0.649,0.117,0.183,0,0,0,0,0.9,0.332 +0.333,0.649,0.125,0.178,0,0,0,0,0.633,0 +0.333,0.649,0.145,0.177,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0.344,0.25,0,0,0.25,0 +1,1,0.642,0.868,0.628,0,0,0,0.5,0.254 +1,0.98,0.845,0.98,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.382 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.392 +1,0.623,0.0353,0.15,0,0,0,0,0,0.293 +1,0.723,0.0735,0.313,0,0,0,0,0,0.4 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.237 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0.0424 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.0848 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0539 +0.667,0.736,0.152,0.305,0,0,0.524,0.717,0,0.0424 +0.667,0.736,0.161,0.307,0,0,0.546,0.0333,0,0.17 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.254 +0.333,0.682,0.119,0.208,0,0,0,0,0.467,0.17 +1,0.98,0.399,0.674,0,0,0,0,0.3,0.17 +1,1,0.537,0.868,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.0424 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.671,0.159,0.183,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0.186 +1,0.61,0.0259,0.0829,0.425,0.25,0,0,0.25,0.179 +1,0.623,0.0353,0.15,0.298,0,0,0,0,0.0848 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.0424 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.297 +0.667,0.649,0.066,0.189,0,0,0,0,0,0 +0.667,0.649,0.072,0.183,0,0,0,0,0,0.0424 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0.0424 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.354 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.334 +0.667,0.762,0.179,0.322,0.565,0.25,0,0,0,0.127 +1,0.922,0.325,0.526,0.659,0,0,0,0,0.136 +1,0.841,0.271,0.466,0,0,0,0,0,0.223 +1,1,0.537,0.868,0.833,0.25,0,0,0,0.202 +1,0.98,0.752,0.98,0.666,0,0,0,0,0.161 +1,0.941,0.929,0.913,0.333,0,0,0,0,0.167 +1,0.863,0.88,0.727,0,0,0,0,0,0.155 +1,0.784,0.532,0.638,0,0,0,0,0.967,0.0424 +1,0.616,0.0874,0.116,0,0,0,0,0.05,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0819 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.196 +0.667,0.642,0.0447,0.181,0,0,0,0,0.5,0.127 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.339 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0.0848 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.0848 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0424 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.0424 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.466 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0848 +0.667,0.802,0.222,0.367,0,0,0,0,0,0 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.307 +0.667,0.854,0.364,0.595,0,0,0,0,0.467,0.161 +1,0.98,0.752,0.98,0,0,0,0,0.3,0.0424 +1,0.941,0.929,0.913,0.569,0.25,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.0424 +1,0.784,0.532,0.638,0,0,0,0,0,0.14 +0.667,0.616,0.0874,0.116,0,0,0,0,0,0.165 +0.667,0.61,0.0421,0.0743,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.642,0.0447,0.181,0,0,0,0,0,0.127 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.127 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0424 +0.667,0.736,0.116,0.328,0,0,0,0,0.467,0 +0.667,0.736,0.128,0.316,0,0,0,0,0.0333,0 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0424 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.127 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0.0424 +0.333,0.662,0.0976,0.186,0,0,0.0977,0.217,0,0.0848 +0.667,0.802,0.222,0.367,0,0,0.368,1,0,0.339 +1,0.98,0.399,0.674,0,0,0.362,0.55,0,0.361 +1,1,0.537,0.868,0,0,0,0,0,0.0777 +0.667,0.701,0.261,0.36,0.419,0.25,0,0,0,0 +0.667,0.688,0.32,0.337,0.441,0,0.273,0.5,0,0.127 +1,0.662,0.304,0.275,0,0,0.665,0,0,0.127 +1,0.636,0.188,0.246,0,0,0,0,0,0.0424 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.212 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.127 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.127 +0.667,0.649,0.066,0.189,0,0,0,0,0,0.168 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.186 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.161 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.371 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.205 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.511 +0.333,0.682,0.119,0.208,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0.5,0.0848 +1,0.98,0.752,0.98,0,0,0,0,0,0.17 +1,0.941,0.929,0.913,0,0,0,0,0,0.0848 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.736,0.127,0.33,0.608,0.25,0,0,0,0.17 +1,0.736,0.166,0.337,0.452,0,0,0,0,0.0848 +0.667,0.736,0.197,0.328,0,0,0,0,0,0.283 +0.333,0.649,0.117,0.183,0,0,0,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.0424 +0.333,0.649,0.145,0.177,0,0,0,0,0,0.385 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.14 +0.667,0.762,0.34,0.322,0,0,0.119,0.4,0,0.239 +0.667,0.802,0.358,0.367,0,0,0.248,0.35,0,0.196 +0.667,0.841,0.369,0.466,0,0,0.885,0,0,0.254 +0.667,0.854,0.434,0.595,0,0,0.501,0,0,0.212 +0.333,0.701,0.294,0.36,0,0,0.66,0,0,0.254 +0.667,0.815,0.668,0.625,0,0,0.558,0,0,0 +0.667,0.662,0.317,0.275,0,0,0.252,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.616,0.1,0.116,0,0,0,0,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.25,0.127 +1,0.649,0.0727,0.19,0.836,0.25,0,0,0,0.0848 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.333,0.649,0.108,0.189,0,0,0,0,0,0 +0.333,0.649,0.117,0.183,0,0,0,0,0,0.212 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.297 +0.333,0.649,0.145,0.177,0,0,0,0,0,0 +0.667,0.649,0.164,0.178,0,0,0,0,0,0.0424 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.17 +0.333,0.682,0.188,0.208,0,0,0.0297,0.15,0,0.212 +0.667,0.841,0.369,0.466,0,0,0.338,0.6,0,0.0424 +0.333,0.708,0.226,0.322,0,0,0,0,0,0.0424 +0.333,0.701,0.294,0.36,0,0,0,0,0,0.17 +0.667,0.815,0.668,0.625,0,0,0,0,0,0.127 +1,0.762,0.617,0.501,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0.085 +1,0.671,0.182,0.183,0,0,0,0,0,0.112 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.02,0.0513,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.382 +0.667,0.684,0.0548,0.251,0,0,0,0,0.5,0.447 +1,0.804,0.102,0.444,0.64,0.25,0,0,0,0.216 +0.667,0.736,0.0889,0.33,0.179,0,0,0,0,0.212 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0848 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.0848 +0.333,0.649,0.072,0.183,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.254 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0.0424 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.416 +1,0.922,0.325,0.526,0,0,0,0,0.217,0.365 +1,0.98,0.399,0.674,0,0,0,0,1,0 +1,0.854,0.364,0.595,0,0,0,0,0.317,0 +1,0.841,0.507,0.67,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0.0848 +1,0.762,0.592,0.501,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.0848 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.229 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.326 +0.667,0.649,0.066,0.189,0,0,0,0,0,0.401 +0.667,0.649,0.072,0.183,0,0,0,0,0,0.306 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0.27 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0.251 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.339 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.223 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.0801 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.334 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.0424 +1,0.98,0.752,0.98,0,0,0.245,0.217,0,0.497 +1,0.941,0.929,0.913,0,0,0,0.533,0,0.146 +1,0.863,0.88,0.727,0,0,0,0,0,0.161 +1,0.784,0.532,0.638,0,0,0,0,0,0.0424 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0.17 +1,0.61,0.02,0.0513,0,0,0,0,0,0.355 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.346 +1,0.684,0.0548,0.251,0,0,0,0,0,0.0848 +0.667,0.642,0.0447,0.181,0,0,0,0,0.767,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.17 +0.667,0.736,0.104,0.337,0,0,0,0,0.25,0.0424 +0.333,0.649,0.066,0.189,0,0,0,0,0,0.127 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.0424 +0.667,0.649,0.0754,0.178,0,0,0,0,0.25,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.922,0.325,0.526,0.6,0.25,0.306,0.717,0,0 +0.667,0.841,0.271,0.466,0.199,0,0,0.0333,0,0.0848 +1,1,0.537,0.868,0,0,0,0,0,0.359 +1,0.98,0.752,0.98,0,0,0,0,0.25,0.31 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0.234 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0.0424 +0.667,0.723,0.0735,0.313,0,0,0,0,0.25,0.0848 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0.367,0.5,0,0.0424 +0.667,0.736,0.116,0.328,0,0,0.849,0,0,0.212 +0.667,0.736,0.128,0.316,0,0,0.913,0,0,0.0848 +0.667,0.736,0.135,0.307,0,0,0.277,0,0,0.17 +1,0.824,0.22,0.432,0,0,0.718,0,0,0.0848 +1,0.824,0.233,0.435,0,0,0.408,0,0,0.127 +1,0.863,0.261,0.458,0,0,0.493,0,0,0.0424 +1,0.922,0.325,0.526,0,0,0.754,0,0.217,0.0424 +1,0.98,0.399,0.674,0,0,0.256,0,0.0333,0.0424 +1,1,0.537,0.868,0,0,0.583,0,0,0.17 +1,0.98,0.752,0.98,0,0,0.44,0,0,0.0848 +1,0.941,0.929,0.913,0,0,0.483,0,0,0 +0.667,0.662,0.304,0.275,0,0,0.494,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.171 +1,0.616,0.0874,0.116,0,0,0,0,0,0.107 +1,0.61,0.0421,0.0743,0,0,0,0,0,0.104 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.57 +1,0.623,0.0353,0.15,0,0,0,0,0,0.165 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0.309 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.141 +0.667,0.736,0.104,0.337,0,0,0,0,0.717,0.209 +0.667,0.736,0.116,0.328,0,0,0,0,0.55,0.229 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.282 +0.667,0.736,0.135,0.307,0,0,0,0,0,0.0848 +0.667,0.736,0.152,0.305,0,0,0,0,0,0.199 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.0848 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0 +1,0.98,0.399,0.674,0,0,0,0,0,0.127 +1,1,0.537,0.868,0,0,0,0,0,0.212 +1,0.98,0.752,0.98,0,0,0,0,0.5,0.0424 +1,0.941,0.929,0.913,0,0,0,0,0,0.0848 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0.144 +1,0.616,0.0874,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0.0848 +1,0.61,0.024,0.0829,0,0,0,0,0,0.17 +1,0.623,0.0326,0.15,0,0,0,0,0,0.127 +1,0.723,0.0794,0.313,0,0,0,0,0.9,0.0848 +1,0.736,0.127,0.33,0.79,0.25,0,0,0.117,0.0972 +0.667,0.649,0.0923,0.193,0.597,0,0,0,0,0.0848 +0.667,0.649,0.108,0.189,0.145,0,0.31,0.75,0,0.0848 +0.667,0.649,0.117,0.183,0,0,0.575,0,0,0 +0.333,0.649,0.125,0.178,0,0,0,0,0,0 +0.667,0.736,0.272,0.305,0,0,0,0,0,0 +1,0.736,0.31,0.307,0,0,0,0,0.25,0.126 +0.667,0.762,0.34,0.322,0,0,0,0,0,0.212 +0.667,0.682,0.188,0.208,0,0,0,0,0,0.0848 +0.667,0.701,0.194,0.258,0,0,0,0,0.65,0.0424 +0.667,0.708,0.226,0.322,0,0,0,0,0.117,0.0424 +0.667,0.701,0.294,0.36,0,0,0,0,0,0.0424 +1,0.815,0.668,0.625,0,0,0,0,0,0.081 +1,0.762,0.617,0.501,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0.102 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.649,0.0727,0.19,0,0,0,0,0,0.334 +1,0.736,0.166,0.337,0,0,0,0,0,0.254 +0.667,0.649,0.108,0.189,0,0,0,0,0,0.264 +0.667,0.649,0.117,0.183,0,0,0,0,0,0.15 +0.333,0.649,0.125,0.178,0,0,0,0,0,0.191 +0.333,0.649,0.145,0.177,0,0,0.485,0.75,0,0.127 +0.333,0.649,0.164,0.178,0,0,0.379,0,0,0.0424 +0.667,0.762,0.34,0.322,0,0,0.443,0,0.25,0.0424 +1,0.922,0.527,0.526,0,0,0,0,0,0.254 +1,0.98,0.545,0.674,0,0,0,0,0,0.382 +1,1,0.642,0.868,0,0,0,0,0,0.0424 +1,0.98,0.845,0.98,0,0,0,0,0,0.127 +1,0.941,0.993,0.913,0,0,0,0,0,0 +1,0.863,0.916,0.727,0,0,0,0,0,0.127 +1,0.784,0.578,0.638,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0.127 +1,0.61,0.0259,0.0578,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.623,0.0353,0.15,0,0,0,0,0,0.0424 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.127 +0.667,0.736,0.104,0.337,0,0,0,0,0,0.0424 +0.667,0.736,0.116,0.328,0,0,0,0,0,0 +0.667,0.736,0.128,0.316,0,0,0.31,0.5,0,0.0424 +0.667,0.736,0.135,0.307,0,0,0.384,0,0,0 +1,0.824,0.22,0.432,0,0,0.427,0,0,0.17 +1,0.824,0.233,0.435,0,0,0,0,0,0.212 +0.667,0.762,0.179,0.322,0,0,0,0,0,0 +1,0.922,0.325,0.526,0,0,0,0,0,0.339 +1,0.98,0.399,0.674,0,0,0,0,0,0.212 +1,0.854,0.364,0.595,0,0,0,0,0,0.382 +1,0.98,0.752,0.98,0,0,0,0,0,0.0848 +1,0.941,0.929,0.913,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0.0424 +1,0.636,0.188,0.246,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0368,0.217,0,0 +1,0.623,0.0353,0.15,0,0,0.391,0.533,0,0 +1,0.642,0.0447,0.181,0,0,0.948,0,0.217,0.212 +0.667,0.649,0.0524,0.19,0,0,0,0,0.283,0.0424 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0.0848 +0.333,0.649,0.066,0.189,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0.254 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.0848 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.0848 +0.667,0.802,0.222,0.367,0,0,0,0,0.217,0.0848 +1,0.98,0.399,0.674,0,0,0.147,0.75,0.283,0.339 +1,1,0.537,0.868,0.597,0.25,0,0,0,0.0848 +1,0.98,0.752,0.98,0.644,0,0,0,0,0 +1,0.941,0.929,0.913,0.3,0,0,0,0,0.0848 +1,0.863,0.88,0.727,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0 +1,0.671,0.159,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.264 +1,0.623,0.0353,0.15,0,0,0,0,0,0.205 +1,0.804,0.102,0.444,0,0,0,0,0,0.423 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0.795 +1,0.824,0.148,0.481,0,0,0,0,0.5,0.135 +1,0.824,0.166,0.468,0,0,0,0,0,0.516 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.102 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0.17 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.0848 +0.667,0.736,0.161,0.307,0,0,0,0,0,0.17 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.0424 +0.333,0.701,0.144,0.258,0,0,0,0,0.217,0.127 +0.333,0.708,0.19,0.322,0,0,0,0,0.0333,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0.0848 +0.667,0.815,0.625,0.625,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0.136,0.217,0,0 +1,0.71,0.36,0.442,0,0,0.241,0.283,0.25,0 +1,0.671,0.159,0.183,0,0,0,0,0,0.0182 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0.297 +1,0.611,0.0634,0.305,0,0,0,0,0,0.215 +1,0.651,0.107,0.452,0,0,0,0,0.517,0.13 +0.667,0.621,0.0895,0.321,0,0,0,0,0.2,0.0764 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.0424 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.0424 +0.333,0.591,0.0658,0.171,0,0,0,0,0.233,0.0848 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0424 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.254 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.127 +0.333,0.617,0.103,0.188,0,0,0,0,0.233,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0848 +1,0.79,0.457,0.736,0.326,0.25,0,0,0,0.0424 +1,0.774,0.64,0.895,0.459,0.0167,0,0,0,0 +1,0.744,0.791,0.928,0.463,0.233,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0.247 +1,0.6,0.307,0.35,0,0,0,0,0,0.543 +1,0.565,0.0759,0.116,0,0,0,0,0.267,0.172 +1,0.562,0.0159,0.0495,0,0,0,0,0.45,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.127 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.127 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.254 +0.667,0.621,0.11,0.3,0,0,0,0,0,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.0424 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0424 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0424 +0.667,0.673,0.19,0.326,0,0,0,0,0.233,0.0848 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.212 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.382 +1,0.774,0.64,0.895,0,0,0,0,0.0167,0.0848 +1,0.744,0.791,0.928,0,0,0,0,0.217,0.0424 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.158 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0.107 +0.667,0.591,0.0803,0.185,0,0,0,0,0.35,0.492 +0.667,0.621,0.169,0.312,0.723,0.767,0,0,0.133,0.17 +0.333,0.591,0.101,0.175,0.263,0,0,0,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.621,0.265,0.29,0,0,0,0,0.233,0.0848 +0.667,0.642,0.291,0.298,0,0,0,0,0,0 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.339 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.382 +0.667,0.714,0.371,0.507,0,0,0,0,0,0.314 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.167 +1,0.744,0.845,0.928,0,0,0,0,0,0.0424 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.581,0.176,0.2,0,0,0,0,0,0.0424 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0 +0.667,0.571,0.0295,0.147,0,0,0,0,0,0.458 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0.153 +0.333,0.591,0.0636,0.184,0,0,0,0,0.85,0.212 +0.667,0.621,0.143,0.321,0,0,0,0,1,0.0848 +0,0.562,0.0181,0.0495,0,0,0,0,1,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.55,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.0848 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.339 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.297 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.17 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.17 +0.333,0.633,0.167,0.222,0,0,0,0,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.633,0.252,0.331,0,0,0,0,0,0.174 +0.667,0.683,0.57,0.635,0,0,0,0,0.233,0 +1,0.682,0.78,0.807,0,0,0,0,0,0.155 +1,0.6,0.334,0.35,0,0,0,0,0.233,0 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0424 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.0848 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0,0.296 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.268 +0.667,0.621,0.0764,0.318,0.403,0.25,0,0,0,0.212 +0.667,0.621,0.0895,0.321,0.124,0,0,0,0,0.0424 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.0424 +0.667,0.621,0.11,0.3,0,0,0,0,0.0167,0.0424 +0.667,0.621,0.116,0.292,0,0,0,0,0.467,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.0424 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0848 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.227 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.139 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.633,0.224,0.331,0,0,0,0,0.233,0.17 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.212 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.62,0.453,0.5,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.0424 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.58,0.0474,0.245,0,0,0,0,0.217,0.317 +1,0.611,0.0634,0.305,0,0,0,0,0.233,0.266 +1,0.621,0.0764,0.318,0,0,0,0,0,0.267 +1,0.651,0.126,0.456,0,0,0,0,0,0.0848 +1,0.651,0.142,0.443,0,0,0,0,0,0.212 +1,0.651,0.157,0.426,0,0,0,0,0,0.0848 +1,0.651,0.166,0.413,0,0,0,0,0,0.23 +1,0.651,0.187,0.409,0,0,0,0,0,0.195 +1,0.651,0.198,0.41,0,0,0,0,0,0.2 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.212 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.127 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.0848 +0.667,0.714,0.31,0.507,0,0,0,0,0.233,0.0848 +1,0.774,0.64,0.895,0,0,0,0,0,0.0848 +1,0.744,0.791,0.928,0,0,0,0,0,0.127 +1,0.642,0.505,0.555,0,0,0,0,0,0.0424 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.101 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.621,0.0764,0.318,0,0,0,0,0.517,0.17 +0.667,0.621,0.0895,0.321,0,0,0,0,1,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0.917,0.0424 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.17 +0.667,0.621,0.116,0.292,0,0,0,0,0,0 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.17 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.382 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.254 +0.667,0.673,0.19,0.326,0,0,0,0,0.267,0.0848 +0.667,0.704,0.232,0.395,0,0,0,0,0.217,0.297 +1,0.79,0.457,0.736,0,0,0,0,0,0.339 +1,0.774,0.64,0.895,0,0,0,0,0,0.127 +1,0.744,0.791,0.928,0,0,0,0,0.517,0 +1,0.682,0.749,0.807,0,0,0.0849,0.267,0.2,0 +1,0.6,0.307,0.35,0,0,0,0.467,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.254 +0.667,0.611,0.0634,0.305,0,0,0,0,0.517,0.0848 +0.667,0.621,0.0764,0.318,0,0,0,0,0.2,0.0424 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.0848 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.0848 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.297 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.212 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0848 +0.667,0.673,0.19,0.326,0,0,0,0,0.233,0 +0.667,0.704,0.232,0.395,0,0,0.0552,0.0167,0,0.0848 +1,0.79,0.457,0.736,0,0,0.384,0.717,0,0.17 +0.667,0.704,0.432,0.613,0,0,0.61,0,0,0.0424 +1,0.744,0.791,0.928,0,0,0.442,0,0,0.0169 +1,0.682,0.749,0.807,0,0,0.41,0,0,0.551 +1,0.6,0.307,0.35,0,0,0.843,0,0,0 +1,0.569,0.136,0.183,0,0,0.587,0,0,0.0424 +1,0.559,0.059,0.099,0,0,0.454,0,0,0.17 +1,0.559,0.0314,0.066,0,0,0.228,0,0,0.488 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0173 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0607 +1,0.58,0.0474,0.245,0,0,0,0,0,0.432 +1,0.611,0.0634,0.305,0,0,0,0,0,0.117 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.136 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.0625 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.363 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.15 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.307 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0848 +1,0.621,0.137,0.29,0,0,0.282,0.483,0.0167,0.127 +0.667,0.602,0.0846,0.174,0,0,0.476,0,0.467,0.0848 +0.667,0.673,0.19,0.326,0.0686,0.0167,0,0,0,0.127 +1,0.774,0.34,0.567,0.71,0.233,0,0,0,0.0424 +1,0.79,0.457,0.736,0.0576,0,0,0,0,0 +1,0.774,0.64,0.895,0.626,0.25,0,0,0,0.424 +1,0.744,0.791,0.928,0.608,0,0,0,0,0.14 +1,0.682,0.749,0.807,0.337,0,0,0,0,0.116 +1,0.62,0.453,0.5,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.233,0.0848 +1,0.591,0.0636,0.184,0,0,0,0,0,0.301 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.289 +0.667,0.621,0.169,0.312,0,0,0,0,0,0.56 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.366 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.168 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.472 +0.333,0.591,0.141,0.17,0,0,0,0,0,0.342 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.17 +1,0.728,0.449,0.464,0,0,0,0,0.6,0.0424 +1,0.774,0.464,0.567,0,0,0,0,0.117,0.0424 +0.667,0.714,0.371,0.507,0,0,0,0,0.717,0.127 +0.667,0.704,0.485,0.613,0.223,0.1,0,0,0,0 +0.667,0.683,0.57,0.635,0.465,1,0,0,0,0 +1,0.642,0.526,0.555,0,0.433,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0.118 +1,0.569,0.156,0.183,0.494,0.25,0,0,0,0.128 +1,0.559,0.0699,0.099,0,0,0,0,0,0.213 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.611,0.0685,0.305,0,0,0,0,0.717,0.254 +1,0.621,0.109,0.318,0,0,0,0,0,0 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.17 +0.667,0.621,0.169,0.312,0,0,0,0,0,0.297 +0.333,0.591,0.101,0.175,0,0,0,0,0,0.127 +0.667,0.621,0.198,0.292,0,0,0.484,0.483,0,0.127 +0.333,0.591,0.125,0.169,0,0,0.444,0,0,0.127 +0.333,0.591,0.141,0.17,0,0,0.364,0,0.1,0 +1,0.642,0.291,0.298,0,0,0,0,0.867,0.0848 +0.667,0.617,0.162,0.188,0,0,0,0,0,0.212 +0.667,0.633,0.167,0.222,0,0,0,0,0,0.17 +0.667,0.638,0.194,0.278,0,0,0,0,0,0.127 +0.667,0.633,0.252,0.331,0,0,0,0,0,0 +1,0.683,0.57,0.635,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0.147 +1,0.569,0.156,0.183,0.289,0,0,0,0,0.356 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.0599 +1,0.58,0.0474,0.245,0.406,0.517,0,0,0,0.615 +1,0.611,0.0634,0.305,0.597,0.75,0,0,0,0.0848 +1,0.621,0.0764,0.318,0.256,0,0,0,0,0.454 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.455 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0.404 +0.333,0.591,0.0629,0.175,0,0,0,0,0.233,0 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.127 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.0424 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0.17 +1,0.642,0.153,0.298,0,0,0,0,0,0.212 +1,0.673,0.19,0.326,0,0,0,0,0,0.127 +1,0.704,0.232,0.395,0,0,0,0,0.517,0.254 +1,0.714,0.31,0.507,0,0,0,0,0.2,0.127 +1,0.633,0.224,0.331,0,0,0,0,0,0 +1,0.622,0.274,0.342,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.245,0,0,0,0,0.0167,0.23 +1,0.611,0.0634,0.305,0,0,0,0,0.467,0.536 +1,0.621,0.0764,0.318,0,0,0,0,0.233,0.146 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.262 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.245 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0848 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.17 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.424 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.212 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.382 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +1,0.774,0.34,0.567,0,0,0.505,0.733,0,0.229 +1,0.79,0.457,0.736,0,0,0.293,0,0,0.582 +1,0.774,0.64,0.895,0,0,0,0,0,0.105 +1,0.744,0.791,0.928,0,0,0,0,0,0.217 +1,0.682,0.749,0.807,0,0,0.405,0.733,0,0.233 +1,0.6,0.307,0.35,0,0,0,0,0,0.0164 +1,0.565,0.0759,0.116,0,0,0,0,0,0.262 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.314 +1,0.571,0.0316,0.147,0,0,0,0,0,0.257 +1,0.586,0.0396,0.177,0,0,0,0,0.0167,0.276 +1,0.621,0.0764,0.318,0.0897,0.0167,0,0,0.467,0.0828 +1,0.651,0.126,0.456,0.61,0.233,0,0,0,0.436 +1,0.651,0.142,0.443,0.641,0,0,0,0,0.137 +1,0.651,0.157,0.426,0.265,0,0,0,0,0.195 +1,0.651,0.166,0.413,0,0,0.212,0.517,0,0.151 +0.667,0.591,0.073,0.169,0,0,0.579,0.717,0,0 +0.333,0.591,0.0767,0.17,0,0,0.331,0,0,0.0424 +0,0.562,0.0159,0.0495,0,0,0,0,0.233,0.127 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.2 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.244 +1,0.714,0.31,0.507,0,0,0,0,0,0.19 +1,0.704,0.432,0.613,0,0,0,0,0,0.627 +1,0.683,0.532,0.635,0,0,0,0,0,0.166 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.626 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0.177 +0.667,0.586,0.0396,0.177,0,0,0,0,0.0167,0.382 +0.667,0.621,0.0764,0.318,0,0,0,0,0.95,0.0424 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.0424 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.339 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.0424 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0424 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.424 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.0424 +0.667,0.673,0.19,0.326,0,0,0,0,0.267,0.0424 +1,0.704,0.232,0.395,0.337,0.25,0,0,0.7,0 +1,0.714,0.31,0.507,0.481,0.517,0,0,0,0.127 +1,0.704,0.432,0.613,0.503,0.75,0,0,0,0 +1,0.744,0.791,0.928,0.445,0.25,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.586,0.0396,0.177,0,0,0,0,0.0167,0.132 +0.667,0.591,0.0462,0.184,0,0,0.142,0.267,0.7,0.0848 +0.667,0.591,0.0527,0.185,0,0,0.288,0.467,0,0.127 +0.667,0.591,0.0578,0.181,0,0,0.432,0,0,0.391 +1,0.591,0.0629,0.175,0,0,0.159,0,0,0.337 +1,0.621,0.116,0.292,0,0,0,0,0,0.212 +1,0.621,0.13,0.289,0,0,0,0,0,0.17 +1,0.621,0.137,0.29,0,0,0,0,0,0 +1,0.642,0.153,0.298,0,0,0,0,0,0 +1,0.673,0.19,0.326,0,0,0,0,0,0.0424 +1,0.704,0.232,0.395,0,0,0,0,0,0.0424 +1,0.79,0.457,0.736,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0.153 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0223,0.0816,0,0,0,0,0,0.192 +1,0.571,0.0295,0.147,0,0,0,0,0,0.174 +1,0.586,0.0433,0.177,0,0,0,0,0,0.254 +1,0.621,0.109,0.318,0,0,0,0,0,0.149 +1,0.621,0.143,0.321,0,0,0,0,0,0.356 +1,0.621,0.169,0.312,0,0,0,0,0,0.268 +1,0.651,0.268,0.426,0,0,0,0,0,0.496 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.247 +0.333,0.591,0.125,0.169,0,0,0,0,0,0.254 +0.333,0.591,0.141,0.17,0,0,0,0,0,0 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.17 +0.333,0.617,0.162,0.188,0,0,0,0,0,0 +0.333,0.633,0.167,0.222,0,0,0,0,0,0.127 +0.667,0.714,0.371,0.507,0,0,0,0,0,0.0424 +0.667,0.704,0.485,0.613,0,0,0,0,0,0.0424 +1,0.683,0.57,0.635,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.581,0.176,0.2,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0.199 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.345 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.236 +1,0.586,0.0433,0.177,0,0,0,0,0,0.0493 +1,0.651,0.155,0.452,0,0,0,0,0,1 +0.667,0.621,0.143,0.321,0,0,0,0,0,0.593 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.237 +0.333,0.591,0.101,0.175,0,0,0,0,0,0.319 +0.333,0.591,0.108,0.171,0,0,0,0,0,0.598 +0.667,0.621,0.233,0.289,0,0,0,0,0,0.293 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.127 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.367 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.544 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.165 +0.667,0.714,0.371,0.507,0.335,0.25,0,0,0,0.127 +1,0.774,0.719,0.895,0.472,0,0.212,0.35,0,0.0424 +1,0.744,0.845,0.928,0,0,0,0.383,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.581,0.176,0.2,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0162 +1,0.611,0.0634,0.305,0,0,0,0,0,0.65 +0.667,0.591,0.0462,0.184,0,0,0,0,0.0167,0.132 +0.667,0.591,0.0527,0.185,0,0,0,0,0.217,0.297 +1,0.591,0.0578,0.181,0,0,0,0,0,0.0848 +1,0.621,0.11,0.3,0,0,0,0,0,0.136 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.271 +0.667,0.591,0.073,0.169,0,0,0,0,0,0.0341 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0.127 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.17 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0.0167,0.17 +0.667,0.714,0.31,0.507,0,0,0,0,0.467,0.0424 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.0424 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.424 +1,0.682,0.749,0.807,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0.233,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.126 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.183 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.156 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.016 +0.667,0.586,0.0396,0.177,0,0,0,0,0.0167,0.444 +0.667,0.621,0.0764,0.318,0.0695,0.0167,0,0,0.467,0.211 +0,0.562,0.0159,0.0495,0.725,0.233,0,0,0,0.101 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.0424 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.17 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.0848 +0.667,0.621,0.137,0.29,0,0,0,0,0.233,0.176 +1,0.682,0.222,0.422,0,0,0,0,0,0.397 +1,0.728,0.277,0.464,0,0,0,0,0.233,0.429 +1,0.704,0.232,0.395,0,0,0,0,0,0.17 +1,0.79,0.457,0.736,0,0,0,0,0,0.127 +0.667,0.704,0.432,0.613,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0.0424 +1,0.6,0.307,0.35,0,0,0,0,0,0.0181 +1,0.569,0.136,0.183,0,0,0,0,0,0.426 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +1,0.571,0.0316,0.147,0,0,0,0,0,0.243 +1,0.611,0.0634,0.305,0,0,0,0,0,0.257 +1,0.621,0.0764,0.318,0,0,0,0,0,0.0598 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.488 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.127 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.339 +0.667,0.621,0.137,0.29,0.366,0.267,0,0,0,0.0848 +0.667,0.642,0.153,0.298,0.655,1,0,0,0,0.254 +1,0.728,0.277,0.464,0.726,0.267,0,0,0.233,0.0424 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.17 +0.667,0.714,0.31,0.507,0,0,0,0,0.233,0.0848 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.254 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.0848 +0.667,0.642,0.505,0.555,0,0,0,0,0,0.0181 +1,0.62,0.453,0.5,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0987 +1,0.571,0.0316,0.147,0,0,0,0,0,0.28 +0.667,0.562,0.0159,0.0495,0.0622,0.0167,0,0,0,0.0424 +0.667,0.591,0.0462,0.184,0.706,0.233,0,0,0,0.0848 +0.667,0.621,0.0895,0.321,0.855,0,0,0,0.233,0 +0.667,0.621,0.0997,0.312,0.586,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.655,0,0,0,0,0.0424 +1,0.651,0.166,0.413,0.693,0,0,0,0,0.0424 +0.667,0.621,0.13,0.289,0.735,0,0.122,0.483,0,0.127 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.212 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.212 +0.333,0.617,0.103,0.188,0,0,0,0,0.0167,0.228 +1,0.774,0.34,0.567,0,0,0,0,1,0.0987 +1,0.79,0.457,0.736,0,0,0,0,0.2,0.0848 +1,0.774,0.64,0.895,0,0,0,0,0,0.17 +1,0.744,0.791,0.928,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0.122 +1,0.6,0.307,0.35,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0.17 +1,0.56,0.0374,0.0743,0,0,0,0,0,0.157 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.571,0.0316,0.147,0,0,0,0,0.467,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.0848 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.17 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.17 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.127 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.17 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.212 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0424 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.272 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.314 +0.333,0.633,0.124,0.222,0,0,0,0,0.767,0.17 +1,0.79,0.457,0.736,0.534,0.25,0.303,0.517,1,0.127 +1,0.774,0.64,0.895,0.47,0.25,0.425,0.217,1,0 +1,0.744,0.791,0.928,0.772,0,0.808,0,1,0.0424 +1,0.682,0.749,0.807,0,0,0.671,0,0.367,0.0848 +1,0.6,0.307,0.35,0,0,0.153,0,0,0.164 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.239 +1,0.571,0.0295,0.147,0,0,0,0,0.35,0.224 +1,0.611,0.0685,0.305,0,0,0,0,0.367,0.586 +1,0.621,0.109,0.318,0,0,0,0,0,0.421 +1,0.621,0.143,0.321,0,0,0,0,0,0.293 +0.667,0.621,0.169,0.312,0,0,0.426,0.6,0.233,0.127 +1,0.651,0.268,0.426,0,0,0.367,0.133,0,0 +0.667,0.621,0.198,0.292,0,0,0.555,0,0,0.254 +0.667,0.621,0.233,0.289,0,0,0.563,0,0,0.0848 +0.667,0.621,0.265,0.29,0,0,0.648,0,0,0.339 +0.667,0.642,0.291,0.298,0,0,0.436,0,0,0.127 +0.667,0.673,0.305,0.326,0,0,0.277,0,0.35,0 +0.667,0.704,0.315,0.395,0,0,0,0,0.133,0.127 +1,0.79,0.547,0.736,0,0,0,0,0,0.17 +1,0.774,0.719,0.895,0,0,0,0,0,0.127 +1,0.683,0.57,0.635,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0 +1,0.581,0.176,0.2,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0636,0.184,0,0,0,0,0,0.428 +1,0.621,0.143,0.321,0,0,0,0,0,0.17 +1,0.651,0.244,0.443,0,0,0,0,0,0.244 +0.667,0.621,0.185,0.3,0,0,0,0,0,0.0848 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.333,0.602,0.154,0.174,0,0,0,0,0,0.0848 +0.333,0.617,0.162,0.188,0,0,0,0,0,0.17 +0.333,0.633,0.167,0.222,0,0,0,0,0,0.212 +1,0.714,0.371,0.507,0,0,0,0,0.233,0.212 +1,0.774,0.719,0.895,0,0,0,0,0,0.509 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.321 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.128 +1,0.571,0.0316,0.147,0,0,0,0,0,0.498 +0.667,0.586,0.0396,0.177,0,0,0,0,0.483,0.119 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0.017 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.332 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.107 +0.333,0.591,0.0629,0.175,0,0,0,0,0.483,0 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0.424 +1,0.621,0.13,0.289,0,0,0,0,0,0.212 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.297 +0.667,0.642,0.153,0.298,0,0,0,0,0.233,0.339 +0.667,0.673,0.19,0.326,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.254 +0.667,0.714,0.31,0.507,0,0,0,0,0,0.0424 +0.667,0.704,0.432,0.613,0,0,0,0,0,0.0933 +0.667,0.622,0.274,0.342,0,0,0,0,0,0.141 +1,0.642,0.505,0.555,0,0,0,0,0,0.275 +1,0.6,0.307,0.35,0,0,0,0,0,0.238 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.0424 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.102 +1,0.58,0.0474,0.245,0,0,0,0,0,0.45 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.509 +0.667,0.621,0.0764,0.318,0,0,0,0,0.233,0.406 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0.188 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.127 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.0424 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.0424 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.212 +0.333,0.591,0.0767,0.17,0,0,0.31,0.267,0,0.0848 +0.333,0.602,0.0846,0.174,0,0,0.273,0.467,0,0.0424 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0848 +0.333,0.633,0.124,0.222,0,0,0,0,0.0167,0 +1,0.79,0.457,0.736,0.353,0.25,0,0,0.467,0 +1,0.774,0.64,0.895,0.551,0,0,0,0.483,0.0424 +1,0.744,0.791,0.928,0,0,0,0,0,0.212 +1,0.682,0.749,0.807,0,0,0,0,0,0.225 +1,0.62,0.453,0.5,0,0,0,0,0,0.18 +1,0.565,0.0759,0.116,0,0,0,0,0,0.366 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.305,0,0,0,0,0,0.419 +1,0.621,0.0764,0.318,0,0,0,0,0,0.348 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.177 +0.667,0.621,0.0997,0.312,0,0,0,0,0.0167,0.259 +0.667,0.621,0.11,0.3,0,0,0,0,0.217,0.0848 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.0424 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.339 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.0848 +0.667,0.642,0.153,0.298,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.0424 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.0848 +1,0.79,0.457,0.736,0,0,0,0,0,0.0424 +1,0.774,0.64,0.895,0,0,0,0,0,0.254 +1,0.744,0.791,0.928,0,0,0,0,0,0.0424 +1,0.642,0.505,0.555,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0.233,0.17 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.466 +1,0.571,0.0316,0.147,0,0,0,0,0,0.0424 +1,0.586,0.0396,0.177,0,0,0,0,0.233,0 +1,0.621,0.0764,0.318,0.0775,0.0167,0,0,0,0.237 +0.667,0.591,0.0527,0.185,0.768,0.483,0.0977,0.267,0,0.226 +0.667,0.621,0.0997,0.312,0.148,0,0.783,0.217,0,0 +0.667,0.621,0.11,0.3,0,0,0.258,0,0,0.0848 +0.667,0.621,0.116,0.292,0,0,0.29,0,0,0.0424 +0.667,0.621,0.13,0.289,0,0,0,0,0,0 +0.667,0.621,0.137,0.29,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.127 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.203 +0.333,0.633,0.124,0.222,0,0,0,0,0.0167,0.259 +0.667,0.714,0.31,0.507,0,0,0,0,0.467,0.127 +1,0.774,0.64,0.895,0,0,0,0,0,0 +1,0.683,0.532,0.635,0,0,0,0,0,0.0848 +1,0.602,0.26,0.302,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0165 +1,0.586,0.0396,0.177,0,0,0,0,0,0.292 +1,0.621,0.0764,0.318,0,0,0,0,0,0.313 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0.268 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0.261 +0.667,0.621,0.11,0.3,0,0,0,0,0,0.217 +0.667,0.621,0.116,0.292,0,0,0,0,0,0.663 +0.667,0.621,0.13,0.289,0,0,0,0,0,0.211 +0.667,0.621,0.137,0.29,0,0,0,0,0,0.127 +0.667,0.642,0.153,0.298,0,0,0,0,0,0.424 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.17 +1,0.774,0.34,0.567,0,0,0,0,0.0167,0 +1,0.79,0.457,0.736,0.448,0.25,0,0,1,0.212 +1,0.774,0.64,0.895,0.708,0,0,0,0.433,0.0598 +1,0.744,0.791,0.928,0.296,0,0,0,0,0.231 +1,0.682,0.749,0.807,0,0,0,0,0,0.0424 +1,0.581,0.162,0.2,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0.0844 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.0424 +1,0.586,0.0433,0.177,0,0,0,0,0,0.127 +1,0.621,0.109,0.318,0,0,0,0,0,0.409 +1,0.621,0.143,0.321,0,0,0.0906,0.35,0,0.239 +0.667,0.621,0.169,0.312,0,0,0.45,0.133,0,0.246 +0.667,0.621,0.185,0.3,0,0,0.91,0,0,0.0848 +0.667,0.621,0.198,0.292,0,0,0.51,0,0,0.0424 +0.667,0.621,0.233,0.289,0,0,0.664,0,0,0 +0.667,0.621,0.265,0.29,0,0,0.327,0,0,0.297 +1,0.682,0.427,0.422,0,0,0,0,0,0.67 +1,0.728,0.449,0.464,0,0,0,0,0,0.426 +1,0.774,0.464,0.567,0,0,0,0,0,0.31 +1,0.79,0.547,0.736,0,0,0,0,0,0.194 +1,0.774,0.719,0.895,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0.291 +1,0.6,0.334,0.35,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0672 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.201 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.199 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.289 +0.333,0.59,0.0941,0.17,0,0,0,0,0,0.215 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.171 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.212 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.551 +1,0.679,0.431,0.379,0,0,0,0,0,0.254 +1,0.725,0.452,0.386,0,0,0,0,0,0.17 +1,0.701,0.318,0.291,0,0,0,0,0,0.17 +1,0.712,0.374,0.339,0,0,0,0,0,0.0424 +1,0.701,0.489,0.429,0,0,0,0,0,0.0424 +1,0.681,0.574,0.538,0,0,0,0,0,0 +1,0.601,0.274,0.326,0,0,0,0,0,0 +1,0.58,0.178,0.232,0,0,0,0,0,0.0631 +1,0.565,0.0875,0.116,0,0,0,0,0,0.0158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.557,0.0316,0.11,0,0,0,0,0.233,0.287 +1,0.586,0.0637,0.33,0,0,0,0,0,0.228 +1,0.633,0.0879,0.417,0,0,0,0,0,0.265 +1,0.648,0.108,0.427,0.403,0.233,0,0,0,0.144 +0.667,0.619,0.0902,0.299,0.726,0,0,0,0.233,0.136 +0.667,0.619,0.1,0.291,0.864,0,0,0,0,0 +0.667,0.619,0.111,0.279,0.608,0,0,0,0,0.0848 +0.333,0.59,0.0662,0.16,0.54,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0.368,0,0,0,0,0.0424 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.254 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0602 +0.667,0.671,0.191,0.274,0,0,0,0,0.0167,0.549 +0.667,0.701,0.234,0.291,0,0,0,0,0.45,0.0848 +1,0.787,0.461,0.484,0,0,0,0,0,0.106 +1,0.771,0.646,0.619,0,0,0,0,0,0.23 +1,0.741,0.797,0.783,0.313,0.233,0,0,0,0.254 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0 +0.667,0.565,0.0765,0.116,0,0,0,0,0,0 +0.667,0.56,0.0377,0.0743,0,0,0,0,0,0 +0.667,0.56,0.0238,0.0578,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0.395,0.267,0,0,0.233,0 +1,0.585,0.0399,0.172,0.434,0.967,0,0,0.0167,0.27 +1,0.648,0.108,0.427,0,0,0,0,0.45,0.166 +1,0.648,0.127,0.424,0,0,0,0,0,0.226 +0.667,0.619,0.1,0.291,0,0,0,0,0.467,0.0848 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.0424 +0.667,0.619,0.117,0.271,0,0,0,0,0.267,0.0424 +0.667,0.619,0.131,0.269,0,0,0,0,0.2,0.212 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.297 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.254 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0848 +0.667,0.701,0.234,0.291,0,0,0,0,0.517,0.0424 +1,0.787,0.461,0.484,0,0,0,0,1,0.0848 +1,0.771,0.646,0.619,0,0,0,0,1,0 +1,0.741,0.797,0.783,0,0,0,0,1,0 +1,0.64,0.509,0.603,0,0,0,0,0.483,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0.23 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.31 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.132 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.228 +1,0.57,0.0318,0.143,0,0,0,0,0,0.319 +1,0.609,0.0639,0.295,0,0,0,0,0,0.234 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.314 +0.667,0.619,0.0902,0.299,0,0,0,0,0.267,0.0172 +0.667,0.619,0.1,0.291,0.549,0.233,0,0,0.2,0.214 +0.333,0.59,0.0633,0.164,0.318,0,0,0,0,0.0424 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.17 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.127 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.127 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.127 +1,0.725,0.279,0.386,0,0,0,0,0.467,0.254 +1,0.771,0.343,0.412,0,0,0,0,0,0.324 +1,0.787,0.461,0.484,0,0,0,0,0,0.234 +1,0.771,0.646,0.619,0,0,0,0,0,0.894 +1,0.681,0.537,0.538,0,0,0,0,0,0.122 +1,0.64,0.509,0.603,0,0,0,0,0,0.18 +1,0.599,0.31,0.415,0,0,0,0,0,0.226 +1,0.568,0.137,0.183,0,0,0,0,0,0.139 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.297 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.16 +1,0.56,0.0172,0.0495,0,0,0,0,0,0.182 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.373 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.164 +1,0.56,0.0238,0.0798,0,0,0,0,0.467,0.297 +1,0.578,0.0478,0.236,0.748,0.233,0,0,0,0.126 +0.667,0.585,0.0399,0.172,0.765,0,0,0,0.0167,0.337 +0.667,0.59,0.0465,0.175,0.258,0,0,0,0.217,0.212 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.212 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0.0167,0 +0.667,0.619,0.117,0.271,0,0,0.0594,0.0167,0.45,0.0848 +0.667,0.619,0.131,0.269,0,0,0.619,1,0,0.0424 +0.667,0.619,0.139,0.268,0,0,0.566,0.0167,0,0 +0.667,0.64,0.155,0.269,0,0,0.315,0,0,0.0424 +0.667,0.671,0.191,0.274,0,0,0.0835,0,0,0.17 +1,0.771,0.343,0.412,0,0,0,0,0,0.127 +1,0.787,0.461,0.484,0,0,0,0,0,0.229 +1,0.771,0.646,0.619,0,0,0,0,0,0.46 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0.0838 +1,0.568,0.137,0.183,0,0,0,0,0,0.169 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0151 +1,0.57,0.0318,0.143,0,0,0,0,0,0.218 +1,0.585,0.0399,0.172,0,0,0,0,0,0.114 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0.102,0.267,0,0.489 +0.667,0.619,0.1,0.291,0,0,0.776,0.25,0,0.382 +0.667,0.619,0.111,0.279,0,0,0.808,0,0,0 +0.667,0.619,0.117,0.271,0,0,0.298,0,0,0.0424 +0.667,0.619,0.131,0.269,0,0,0.512,0,0,0.424 +0.667,0.619,0.139,0.268,0,0,0.392,0,0,0.0424 +0.333,0.601,0.0853,0.159,0,0,0.529,0,0,0.0848 +0.333,0.616,0.104,0.162,0,0,0.672,0,0,0.254 +0.667,0.701,0.234,0.291,0,0,0.36,0,0,0.0424 +1,0.787,0.461,0.484,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0.0424 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0.421,0.233,0,0,0,0.0424 +1,0.562,0.0181,0.0495,0.457,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0.14 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.0424 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.345 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0.193 +0.667,0.59,0.102,0.164,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.127 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.17 +0.667,0.619,0.267,0.268,0,0,0.119,0.0667,0,0.0424 +0.667,0.64,0.293,0.269,0,0,0.487,0.7,0,0.0848 +0.667,0.671,0.308,0.274,0.741,0.233,0.508,0,0,0.212 +0.667,0.701,0.318,0.291,0.672,0,0.555,0,0,0.0424 +1,0.787,0.551,0.484,0.613,0,0.2,0,0.233,0.127 +1,0.771,0.725,0.619,0.739,0,0,0,0,0 +1,0.741,0.852,0.783,0.787,0,0,0,0,0.0848 +1,0.679,0.786,0.88,0.527,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0.202 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.286 +0.667,0.619,0.144,0.299,0,0,0,0,0,0.197 +0.333,0.59,0.0941,0.17,0,0,0,0,0,0.113 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.127 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.0424 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.0424 +0.333,0.59,0.142,0.159,0,0,0,0,0,0 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.0848 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.0848 +1,0.771,0.468,0.412,0,0,0.347,0.567,0,0.382 +1,0.787,0.551,0.484,0.117,0.0667,0.733,0.2,0,0.466 +1,0.771,0.725,0.619,0.576,0.167,0.134,0,0,0 +1,0.681,0.574,0.538,0,0,0,0,0,0.212 +1,0.679,0.786,0.88,0,0,0,0,0,0.457 +1,0.617,0.496,0.597,0,0,0,0,0,0.156 +1,0.565,0.0875,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.192 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0238,0.0798,0.0869,0.0167,0,0,0,0.254 +1,0.578,0.0478,0.236,0.705,0.217,0,0,0.517,0.113 +0.667,0.585,0.0399,0.172,0,0,0,0,0.2,0 +0.667,0.619,0.077,0.301,0,0,0,0,0.217,0.23 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.174 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.301 +1,0.648,0.158,0.394,0,0,0,0,0.233,0.216 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.233 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.305 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.236 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.215 +0.333,0.616,0.104,0.162,0,0,0.0849,0.0167,0,0.382 +1,0.771,0.343,0.412,0,0,0.617,0.233,0.467,0.254 +1,0.787,0.461,0.484,0,0,0.0934,0,0,0.0424 +1,0.771,0.646,0.619,0,0,0,0,0,0.0424 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.17 +0.667,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0579 +1,0.585,0.0399,0.172,0,0,0,0,0,0.131 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.0424 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.17 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.212 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.297 +0.667,0.619,0.117,0.271,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.0848 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.17 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0848 +1,0.725,0.279,0.386,0,0,0.403,0.517,0.517,0.254 +1,0.701,0.234,0.291,0,0,0.191,0,0.417,0.0424 +1,0.787,0.461,0.484,0,0,0,0,0,0.181 +1,0.771,0.646,0.619,0,0,0.167,0.517,0,0.278 +1,0.741,0.797,0.783,0,0,0.437,0,0,0 +1,0.64,0.509,0.603,0,0,0.469,0,0.0167,0 +1,0.599,0.31,0.415,0,0,0.494,0,0.217,0 +1,0.568,0.137,0.183,0,0,0.2,0,0,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0.264 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +0.667,0.619,0.077,0.301,0,0,0,0,0.217,0 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.424 +0.667,0.619,0.1,0.291,0,0,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.127 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.212 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.17 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.127 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0424 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0424 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.127 +1,0.787,0.461,0.484,0,0,0,0,0,0.326 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0.0424 +1,0.599,0.31,0.415,0,0,0,0,0,0.0424 +1,0.565,0.0765,0.116,0,0,0,0,0,0.187 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.187 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0.151 +1,0.609,0.0639,0.295,0,0,0,0,0,0.49 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.0424 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.0848 +0.667,0.619,0.111,0.279,0,0,0,0,0.0167,0.0424 +0.667,0.619,0.117,0.271,0,0,0,0,0.217,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.0848 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.127 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0424 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0848 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.0424 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0424 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.127 +1,0.679,0.756,0.88,0,0,0,0,0,0.127 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0.556,0.517,0,0.0424 +1,0.56,0.0238,0.0798,0,0,0.552,0.25,0,0.0848 +1,0.578,0.0478,0.236,0,0,0.808,0,0,0.738 +0.667,0.585,0.0399,0.172,0,0,0.497,0,0,0 +0.667,0.619,0.077,0.301,0.432,0.233,0,0,0,0.466 +0.667,0.619,0.0902,0.299,0.679,0,0,0,0.267,0.0424 +0.667,0.619,0.1,0.291,0.101,0,0.0488,0.0167,0.2,0.17 +0.667,0.619,0.111,0.279,0,0,0.669,1,0,0.229 +0.667,0.619,0.117,0.271,0,0,0.242,0.0167,0,0.4 +0.667,0.619,0.131,0.269,0,0,0.315,0,0,0.294 +0.667,0.619,0.139,0.268,0,0,0.595,0,0,0.424 +0.667,0.64,0.155,0.269,0,0,0.337,0,0,0.338 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.0848 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.127 +1,0.787,0.461,0.484,0,0,0,0,0.467,0.285 +1,0.771,0.646,0.619,0,0,0,0,0,0.0888 +1,0.681,0.537,0.538,0,0,0,0,0,0.157 +1,0.64,0.509,0.603,0,0,0,0,0,0.262 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.0506,0,0,0,0,0,0.0424 +1,0.56,0.0223,0.0798,0,0,0,0,0,0 +1,0.57,0.0297,0.143,0,0,0,0,0,0.396 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0.394 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0.265 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.19 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0.43,0.233,0,0,0,0.297 +0.333,0.59,0.142,0.159,0.192,0,0,0,0,0.238 +0.333,0.601,0.156,0.159,0,0,0,0,0,0.181 +0.333,0.616,0.163,0.162,0,0,0,0,0.0667,0.17 +0.333,0.631,0.168,0.17,0,0,0,0,0.167,0.24 +0.333,0.637,0.196,0.194,0,0,0,0,0,0 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.127 +1,0.741,0.852,0.783,0,0,0,0,0,0.358 +1,0.679,0.786,0.88,0,0,0,0,0,0.118 +1,0.617,0.496,0.597,0,0,0,0,0,0.208 +1,0.568,0.157,0.183,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0436,0.172,0,0,0,0,0,0.466 +1,0.59,0.0641,0.175,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.127 +0.333,0.59,0.0941,0.17,0,0,0,0,0,0 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.225 +0.333,0.59,0.109,0.16,0,0,0,0,0,0.316 +0.333,0.59,0.126,0.159,0,0,0,0,0.233,0.0424 +0.333,0.59,0.142,0.159,0,0,0,0,0,0.212 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.11 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.321 +1,0.771,0.468,0.412,0,0,0,0,0,0.412 +1,0.787,0.551,0.484,0.679,0.233,0,0,0,0.0734 +1,0.771,0.725,0.619,0.399,0,0.3,0.517,0,0.0848 +1,0.741,0.852,0.783,0,0,0.494,0,0,0 +1,0.679,0.786,0.88,0,0,0.34,0,0,0.0877 +1,0.599,0.337,0.415,0,0,0,0,0,0.149 +1,0.565,0.0875,0.116,0,0,0,0,0,0.319 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0399,0.172,0,0,0,0,0,0.127 +1,0.619,0.077,0.301,0,0,0,0,0,0 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.0848 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0.254 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0.0848 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0 +0.667,0.59,0.0772,0.159,0,0,0,0,0,0.0848 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.297 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0848 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.0603 +0.667,0.712,0.313,0.339,0,0,0,0,0.233,0.165 +0.667,0.701,0.436,0.429,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0.527 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.186 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0467,0.0167,0,0.0424 +1,0.609,0.0639,0.295,0,0,0.149,0.75,0.0167,0.314 +1,0.648,0.108,0.427,0,0,0,0,0.217,0.242 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0.142,0.267,0,0.0424 +0.667,0.619,0.111,0.279,0,0,0.432,1,0,0.17 +0.667,0.619,0.117,0.271,0,0,0.441,0.0167,0,0.509 +0.667,0.619,0.131,0.269,0,0,0.541,0,0,0.0593 +0.667,0.619,0.139,0.268,0,0,0.481,0,0,0.33 +0.667,0.64,0.155,0.269,0,0,0.454,0,0,0.517 +0.667,0.671,0.191,0.274,0,0,0.372,0,0,0.127 +1,0.771,0.343,0.412,0,0,0.273,0,0,0.466 +1,0.787,0.461,0.484,0.0604,0.0167,0,0,0,0.234 +0.667,0.701,0.436,0.429,0.655,0.217,0,0,0,0.333 +1,0.741,0.797,0.783,0.36,0.233,0,0,0.767,0.231 +0.667,0.562,0.0159,0.0495,0.648,0,0,0,1,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,1,0 +1,0.565,0.0765,0.116,0,0,0,0,1,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0591 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.314 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.346 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.321 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.282 +0.667,0.619,0.117,0.271,0,0,0,0,0.467,0.258 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.127 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.17 +0.667,0.64,0.155,0.269,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.127 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.254 +1,0.787,0.461,0.484,0.406,0.233,0,0,0.7,0.17 +1,0.771,0.646,0.619,0.397,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0.0424 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0318,0.143,0,0,0,0,0,0.0798 +1,0.609,0.0639,0.295,0,0,0.0467,0.0167,0.517,0.552 +1,0.648,0.108,0.427,0,0,0.0665,0.75,0.65,0.379 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.207 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.0848 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.0424 +0.667,0.619,0.117,0.271,0,0,0.358,0.517,0.233,0.0424 +0.667,0.619,0.131,0.269,0.476,0.233,0.479,0.25,0,0 +0.667,0.619,0.139,0.268,0.423,0,0.323,0,0.517,0.0848 +0.333,0.601,0.0853,0.159,0,0,0,0,0.183,0.0848 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.127 +0.667,0.701,0.234,0.291,0.648,0.233,0,0,0,0 +0.333,0.637,0.164,0.194,0.662,0.0167,0,0,0,0 +1,0.771,0.646,0.619,0.628,0.217,0,0,0.7,0 +1,0.741,0.797,0.783,0.554,0,0,0,0,0.0424 +1,0.64,0.509,0.603,0.123,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0.0424 +1,0.56,0.0238,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.363 +1,0.57,0.0318,0.143,0,0,0,0,0,0.263 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.333 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.309 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.268 +1,0.648,0.143,0.411,0,0,0,0,0.517,0.268 +1,0.648,0.158,0.394,0,0,0,0,0.183,0.4 +1,0.619,0.117,0.271,0,0,0,0,0,0.0424 +1,0.619,0.131,0.269,0,0,0,0,0,0.127 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.0424 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.212 +0.667,0.701,0.234,0.291,0,0,0,0,0,0.0848 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.0424 +1,0.771,0.646,0.619,0,0,0,0,0,0 +1,0.681,0.537,0.538,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0.14 +1,0.565,0.0765,0.116,0,0,0,0,0,0.129 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0.101 +1,0.59,0.0809,0.174,0,0,0,0,0,0.535 +1,0.59,0.0941,0.17,0,0,0,0,0,0.116 +0.667,0.59,0.102,0.164,0,0,0.27,0.767,0,0.0424 +0.667,0.59,0.109,0.16,0,0,0.29,0,0,0.212 +0.667,0.59,0.126,0.159,0,0,0.518,0,0,0.297 +0.333,0.562,0.0181,0.0495,0,0,0.142,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.616,0.163,0.162,0,0,0,0,0,0.0848 +0.667,0.701,0.318,0.291,0,0,0,0,0.233,0.17 +0.667,0.712,0.374,0.339,0,0,0,0,0,0.0424 +0.667,0.701,0.489,0.429,0,0,0,0,0,0.174 +1,0.741,0.852,0.783,0,0,0,0,0,0.297 +1,0.679,0.786,0.88,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0.156 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0601 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0809,0.174,0,0,0,0,0,0.17 +0.667,0.619,0.17,0.291,0,0,0,0,0.467,0.0424 +0.667,0.619,0.186,0.279,0,0,0,0,0,0 +0.667,0.619,0.199,0.271,0,0,0,0,0,0.0848 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.394 +0.667,0.619,0.267,0.268,0,0,0,0,0,0.378 +1,0.64,0.293,0.269,0,0,0,0,0,0.44 +1,0.671,0.308,0.274,0,0,0,0,0,0.254 +1,0.771,0.468,0.412,0,0,0,0,0,0.0848 +1,0.787,0.551,0.484,0,0,0,0,0,0.0848 +1,0.771,0.725,0.619,0,0,0,0,0,0.0848 +1,0.681,0.574,0.538,0,0,0,0,0,0 +1,0.64,0.53,0.603,0,0,0,0,0,0 +1,0.599,0.337,0.415,0,0,0,0,0,0.473 +1,0.568,0.157,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.302 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.654 +1,0.648,0.127,0.424,0,0,0,0,0,0.367 +0.667,0.619,0.1,0.291,0,0,0,0,0,0 +0.667,0.619,0.111,0.279,0,0,0.0552,0.0167,0,0.0598 +0.667,0.619,0.117,0.271,0,0,0.493,0.75,0,0.248 +0.667,0.619,0.131,0.269,0,0,0.461,0,0,0.175 +0.667,0.619,0.139,0.268,0,0,0.853,0,0,0.243 +0.333,0.601,0.0853,0.159,0,0,0.327,0,0,0.254 +1,0.725,0.279,0.386,0,0,0.628,0,0,0.0424 +1,0.701,0.234,0.291,0,0,0.484,0,0,0.0848 +1,0.787,0.461,0.484,0,0,0.208,0,0.467,0.254 +1,0.771,0.646,0.619,0.404,0.233,0.167,0,0,0 +1,0.741,0.797,0.783,0.353,0,0,0,0,0.0424 +1,0.64,0.509,0.603,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0.165 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0174 +1,0.585,0.0399,0.172,0,0,0,0,0,0.334 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.619,0.1,0.291,0,0,0,0,0.467,0.0424 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.382 +0.667,0.619,0.117,0.271,0,0,0,0,0,0 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.127 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.212 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.0848 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.0424 +0.333,0.631,0.125,0.17,0,0,0,0,0,0.589 +0.667,0.712,0.313,0.339,0.507,0.233,0,0,0,0.218 +1,0.771,0.646,0.619,0.818,0,0,0,0.233,0.0424 +1,0.741,0.797,0.783,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.56,0.0238,0.0798,0,0,0,0,0.767,0.0424 +1,0.57,0.0318,0.143,0,0,0,0,0.167,0 +1,0.633,0.0879,0.417,0,0,0,0,0,0.14 +1,0.648,0.108,0.427,0,0,0.0821,0.517,0.233,0.133 +0.667,0.619,0.0902,0.299,0,0,0,0.25,0,0.254 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.0424 +0.667,0.619,0.111,0.279,0,0,0,0,0,0 +0.667,0.619,0.117,0.271,0,0,0,0,0.517,0.0848 +0.333,0.59,0.0735,0.159,0,0,0,0,0.65,0 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.17 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.345 +1,0.725,0.279,0.386,0,0,0,0,0,0.305 +1,0.771,0.343,0.412,0,0,0,0,0,0.482 +1,0.787,0.461,0.484,0.476,0.483,0,0,0,0 +1,0.771,0.646,0.619,0.181,0,0,0,0,0.0848 +1,0.741,0.797,0.783,0,0,0,0,0,0.0848 +1,0.679,0.756,0.88,0,0,0,0,0,0.0848 +1,0.617,0.457,0.597,0,0,0,0,0,0.126 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.578,0.0478,0.236,0,0,0,0,0,0.167 +1,0.609,0.0639,0.295,0,0,0,0,0,0.258 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0.0848 +0.667,0.59,0.053,0.174,0,0,0,0,0,0.0848 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.0424 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.0424 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0.127 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0.254 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.297 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.127 +0.667,0.701,0.234,0.291,0,0,0,0,0.233,0.212 +1,0.787,0.461,0.484,0.333,0.267,0,0,0,0.0424 +1,0.771,0.646,0.619,0.263,1,0,0,0,0 +1,0.741,0.797,0.783,0,0.217,0,0,0,0 +0.667,0.601,0.262,0.326,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0.125 +1,0.565,0.0765,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.56,0.0238,0.0798,0,0,0,0,0.217,0.215 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0.349 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0167,0.0424 +0.667,0.619,0.077,0.301,0,0,0,0,0.217,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0.194 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.263 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.17 +0.667,0.619,0.131,0.269,0.602,0.767,0,0,0,0.127 +0.667,0.619,0.139,0.268,0,0.217,0,0,0,0.212 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.0424 +1,0.725,0.279,0.386,0,0,0,0,0,0.0424 +0.667,0.701,0.234,0.291,0,0,0,0,0.517,0.179 +0.667,0.712,0.313,0.339,0,0,0,0,0.417,0.0424 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.0848 +1,0.741,0.797,0.783,0,0,0,0,0.233,0 +1,0.679,0.756,0.88,0,0,0,0,0,0.125 +1,0.599,0.31,0.415,0,0,0,0,0,0.0838 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.557,0.0705,0.099,0,0,0,0,0,0 +1,0.56,0.0282,0.0578,0,0,0,0,0,0 +1,0.56,0.0209,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.578,0.0412,0.236,0,0,0,0,0.233,0.17 +1,0.609,0.069,0.295,0,0,0,0,0.467,0.424 +1,0.619,0.11,0.301,0,0,0,0,0.317,0.212 +0.667,0.619,0.144,0.299,0.435,0.567,0,0,0.383,0.369 +0.667,0.619,0.17,0.291,0.284,0.167,0,0,0,0.0963 +0.333,0.59,0.102,0.164,0,0,0,0,0,0.0424 +0.333,0.59,0.109,0.16,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0.0848 +0.333,0.59,0.142,0.159,0,0,0,0,0,0 +0.667,0.601,0.156,0.159,0,0,0,0,0,0.0848 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.217 +1,0.771,0.468,0.412,0,0,0,0,0.567,0.193 +1,0.787,0.551,0.484,0,0,0,0,0.133,0.336 +1,0.771,0.725,0.619,0,0,0,0,0,0.132 +1,0.741,0.852,0.783,0,0,0.599,0.767,0,0.223 +1,0.679,0.786,0.88,0,0,0.392,0,0,0.119 +1,0.617,0.496,0.597,0,0,0.546,0,0,0.115 +1,0.568,0.157,0.183,0,0,0.736,0,0,0.145 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0809,0.174,0,0,0,0,0,0.297 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.126,0.159,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.0127,0.0667,0,0.0848 +0.667,0.64,0.293,0.269,0,0,0.501,0.45,0,0.357 +0.667,0.671,0.308,0.274,0,0,0.338,0,0,0.328 +0.667,0.701,0.318,0.291,0,0,0.491,0,0.233,0.564 +1,0.787,0.551,0.484,0,0,0.427,0,0,0.382 +1,0.771,0.725,0.619,0,0,0.382,0,0,0.127 +1,0.741,0.852,0.783,0,0,0.599,0,0,0.0424 +1,0.679,0.786,0.88,0,0,0.224,0,0,0.113 +1,0.599,0.337,0.415,0,0,0,0,0,0.123 +1,0.565,0.0875,0.116,0,0,0.102,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0168 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.609,0.0639,0.295,0,0,0,0,0,0.15 +0.667,0.619,0.077,0.301,0,0,0,0,0,0.633 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0.281 +0.667,0.619,0.1,0.291,0,0,0,0,0,0.0848 +0.667,0.619,0.111,0.279,0,0,0,0,0,0.0424 +0.667,0.619,0.117,0.271,0,0,0,0,0.0167,0.237 +0.667,0.619,0.131,0.269,0,0,0,0,0.217,0.0848 +0.667,0.619,0.139,0.268,0,0,0,0,0,0.297 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.297 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.212 +1,0.771,0.343,0.412,0.403,0.483,0,0,0.267,0.0424 +1,0.787,0.461,0.484,0.192,0,0,0,0.433,0.127 +1,0.771,0.646,0.619,0,0,0,0,0,0.127 +0.333,0.621,0.276,0.294,0,0,0,0,0,0 +0.333,0.601,0.262,0.326,0,0,0,0,0.267,0 +0.667,0.58,0.163,0.232,0,0,0,0,0.667,0 +1,0.568,0.137,0.183,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.0848 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.116 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.146 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.216 +0.333,0.591,0.0578,0.16,0,0,0,0,0.233,0.472 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0848 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.17 +0.667,0.591,0.073,0.149,0,0,0,0,0,0.0848 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.17 +1,0.642,0.153,0.249,0,0,0,0,0,0.127 +0.667,0.673,0.19,0.252,0,0,0,0,0.0167,0.17 +1,0.774,0.34,0.371,0,0,0,0,0.217,0.154 +1,0.79,0.457,0.42,0,0,0,0,0,0.304 +1,0.774,0.64,0.523,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0.0424 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.245 +1,0.559,0.059,0.099,0,0,0,0,0,0.105 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.184 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.201 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0.0175 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.434 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.127 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.0848 +0.667,0.621,0.116,0.251,0,0,0,0,0.467,0.0424 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.0848 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.212 +0.333,0.602,0.0846,0.149,0,0,0,0,0.233,0.0848 +1,0.728,0.277,0.353,0,0,0,0,0,0.212 +1,0.774,0.34,0.371,0,0,0,0,0,0.0424 +1,0.79,0.457,0.42,0,0,0,0,0,0.127 +1,0.774,0.64,0.523,0,0,0,0,0,0.127 +1,0.744,0.791,0.671,0,0,0,0,0,0.212 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0.165 +1,0.569,0.136,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.263 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.163 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.352 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.0848 +0.667,0.621,0.0764,0.286,0.545,0.233,0,0,0,0.0424 +0.667,0.621,0.0895,0.278,0.24,0,0,0,0,0.319 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.372 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0844 +0.333,0.591,0.0658,0.15,0,0,0,0,0.0167,0.0927 +0.667,0.621,0.13,0.249,0,0,0,0,0.933,0.0848 +0.667,0.621,0.137,0.249,0.501,0.483,0.051,0.0167,0,0 +0.667,0.642,0.153,0.249,0,0,0.19,0.483,0.0167,0.17 +0.667,0.673,0.19,0.252,0.602,0.233,0,0,0.683,0.272 +1,0.774,0.34,0.371,0.234,0,0.0977,0.267,0,0.244 +1,0.79,0.457,0.42,0,0,0,0.233,0,0.0424 +1,0.774,0.64,0.523,0,0,0,0,0,0.212 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.602,0.26,0.299,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.127 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.17 +1,0.571,0.0316,0.139,0,0,0,0,0,0.157 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.432 +0.667,0.621,0.0764,0.286,0,0,0.051,0.0167,0,0.186 +0.667,0.621,0.0895,0.278,0,0,0.561,0.733,0,0 +0.667,0.621,0.0997,0.27,0,0,0.372,0,0,0.0604 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.25 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.0848 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.17 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0848 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.17 +0.667,0.673,0.19,0.252,0,0,0.262,0.267,0,0.0424 +0.667,0.704,0.232,0.264,0,0,0.514,0.233,0,0 +1,0.79,0.457,0.42,0,0,0.495,0,0,0.0424 +1,0.774,0.64,0.523,0.065,0.0167,0.266,0,0,0.0848 +1,0.744,0.791,0.671,0.442,0.467,0.382,0,0,0 +1,0.682,0.749,0.799,0,0,0.313,0,0,0 +1,0.62,0.453,0.582,0,0,0,0,0,0 +0.667,0.569,0.136,0.183,0,0,0,0,0,0.382 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0281,0.0578,0,0,0,0,0,0 +1,0.56,0.0208,0.0495,0,0,0,0,0,0.17 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0173 +1,0.56,0.0201,0.0503,0,0,0,0,0,0.378 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.101 +1,0.58,0.0409,0.228,0,0,0,0,0.467,0.177 +1,0.611,0.0685,0.284,0,0,0,0,0,0.254 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0.0848 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.127 +0.333,0.591,0.101,0.154,0,0,0.456,0.75,0,0.127 +0.333,0.591,0.108,0.15,0,0,0.527,0,0,0 +0.333,0.591,0.125,0.149,0,0,0.619,0,0,0.127 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.17 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.17 +0.667,0.633,0.167,0.157,0,0,0,0,0.0167,0 +0.667,0.638,0.194,0.173,0,0,0,0,0.217,0.0424 +1,0.704,0.485,0.365,0,0,0,0,0,0.17 +1,0.683,0.57,0.464,0,0,0,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +1,0.586,0.0433,0.167,0,0,0,0,0.517,0 +1,0.621,0.109,0.286,0.309,0.233,0.249,0.5,0.2,0.0424 +1,0.621,0.143,0.278,0.328,0,0,0,0,0.275 +0.667,0.621,0.169,0.27,0,0,0,0,0,0.219 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.0424 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.0848 +0.333,0.591,0.125,0.149,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.254 +0.667,0.617,0.162,0.151,0,0,0,0,0,0.0848 +1,0.704,0.315,0.264,0,0,0,0,0,0.0424 +1,0.714,0.371,0.296,0,0,0,0,0.717,0.212 +1,0.774,0.719,0.523,0,0,0,0,0,0.0848 +1,0.744,0.845,0.671,0,0,0,0,0,0.225 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0.17 +1,0.565,0.0869,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0.448,0.233,0,0,0,0.0848 +0.333,0.591,0.0578,0.16,0.736,0,0,0,0,0.382 +0.333,0.591,0.0629,0.154,0.58,0,0,0,0,0.254 +0.333,0.591,0.0658,0.15,0.298,0,0.0778,0.0167,0,0.0424 +0.333,0.591,0.073,0.149,0,0,0.672,0.733,0,0.0848 +0.333,0.591,0.0767,0.149,0,0,0.573,0,0,0.424 +0.333,0.602,0.0846,0.149,0,0,0.456,0,0,0.0424 +0.667,0.617,0.103,0.151,0,0,0.399,0,0,0 +0.667,0.633,0.124,0.157,0,0,0.328,0,0,0.0848 +1,0.79,0.457,0.42,0,0,0.305,0,0,0 +1,0.774,0.64,0.523,0.792,0.483,0.834,0,0,0 +1,0.744,0.791,0.671,0.128,0,0.465,0,0,0 +1,0.642,0.505,0.549,0,0,0.665,0,0,0.0848 +1,0.581,0.162,0.227,0,0,0.27,0,0,0.0424 +1,0.565,0.0759,0.116,0,0,0,0,0,0.212 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.339 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.297 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.116 +1,0.635,0.0871,0.402,0,0,0.693,0.75,0,0.0758 +0.667,0.621,0.0764,0.286,0,0,0.515,0,0.0167,0.169 +0.667,0.621,0.0895,0.278,0,0,0.356,0,0.45,0.212 +0.667,0.621,0.0997,0.27,0,0,0.455,0,0,0.0424 +0.667,0.621,0.11,0.259,0,0,0.762,0,0,0 +0.667,0.621,0.116,0.251,0,0,0.232,0,0,0.127 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.254 +0.667,0.621,0.137,0.249,0.0915,0.0167,0,0,0,0.297 +0.333,0.602,0.0846,0.149,0.52,0.467,0,0,0,0.0848 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.774,0.34,0.371,0,0,0.119,0.517,0.483,0.212 +1,0.79,0.457,0.42,0,0,0,1,0.433,0.0848 +1,0.774,0.64,0.523,0,0,0,0.25,0,0 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.62,0.453,0.582,0,0,0,0,0,0.128 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.0424 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0.169 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.382 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.0848 +0.667,0.591,0.0578,0.16,0,0,0,0,0,0.0165 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.174 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.0424 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.0848 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0848 +1,0.682,0.222,0.349,0,0,0,0,0,0.17 +1,0.728,0.277,0.353,0,0,0,0,0.233,0.212 +1,0.774,0.34,0.371,0,0,0,0,0,0.0848 +1,0.79,0.457,0.42,0,0,0,0,0,0.17 +1,0.774,0.64,0.523,0,0,0,0,0,0.0597 +1,0.744,0.791,0.671,0,0,0,0,0.233,0.349 +1,0.682,0.749,0.799,0,0,0,0,0,0.337 +1,0.6,0.307,0.405,0.0723,0.0167,0,0,0,0.0969 +1,0.569,0.136,0.183,0.717,0.217,0,0,0,0 +1,0.56,0.0374,0.0743,0.0668,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.17 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.17 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.369 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.379 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.339 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.127 +0.333,0.591,0.073,0.149,0,0,0,0,0.0167,0.424 +0.333,0.591,0.0767,0.149,0,0,0,0,0.45,0.127 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.0848 +0.333,0.617,0.103,0.151,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.0424 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0424 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.424 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0.0848 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.291 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0.263 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.315 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.358 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.248 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.777 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.212 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.333 +0.667,0.673,0.19,0.252,0,0,0,0,0.467,0.392 +0.667,0.704,0.232,0.264,0.0823,0.0167,0,0,0,0 +0.667,0.714,0.31,0.296,0.476,0.233,0,0,0,0.0848 +1,0.774,0.64,0.523,0.317,1,0.102,0.267,0,0.0424 +1,0.744,0.791,0.671,0,0.2,0,0.483,0,0.0424 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.6,0.307,0.405,0.423,0.233,0,0,0,0.212 +1,0.565,0.0759,0.116,0.448,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.611,0.0685,0.284,0,0,0,0,0,0.627 +1,0.651,0.155,0.404,0,0,0,0,0,0.0408 +0.333,0.591,0.0803,0.164,0,0,0,0,0,0.0848 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.127 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.254 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.0424 +0.667,0.633,0.167,0.157,0,0,0,0,0,0.254 +1,0.714,0.371,0.296,0,0,0,0,0.233,0.127 +1,0.704,0.485,0.365,0,0,0,0,0,0 +1,0.683,0.57,0.464,0,0,0,0,0,0.0424 +1,0.602,0.272,0.299,0,0,0,0,0,0 +1,0.581,0.176,0.227,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +1,0.591,0.0803,0.164,0,0,0,0,0.233,0.17 +0.667,0.621,0.169,0.27,0,0,0,0,0,0.0424 +0.333,0.591,0.101,0.154,0,0,0,0,0,0 +0.333,0.591,0.108,0.15,0,0,0,0,0.267,0.127 +0.667,0.621,0.233,0.249,0,0,0,0,0.45,0.119 +1,0.651,0.388,0.348,0,0,0,0,0,0.0424 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.127 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.127 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.0848 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.254 +0.667,0.704,0.485,0.365,0,0,0,0,0,0.31 +1,0.744,0.845,0.671,0,0,0,0,0,0.141 +1,0.642,0.526,0.549,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0.142 +1,0.569,0.156,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.611,0.0634,0.284,0,0,0,0,0,0.183 +1,0.651,0.107,0.404,0,0,0,0,0,0.483 +1,0.621,0.0895,0.278,0,0,0,0,0.0167,0.319 +1,0.651,0.142,0.381,0.578,0.233,0,0,0.217,0.38 +0.667,0.621,0.11,0.259,0.342,0,0,0,0,0.273 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.55 +0.667,0.621,0.13,0.249,0,0,0.0198,0.0167,0,0.454 +0.667,0.621,0.137,0.249,0,0,0.682,0.733,0,0.362 +0.667,0.642,0.153,0.249,0,0,0.41,0,0,0.127 +0.667,0.673,0.19,0.252,0,0,0.425,0,0,0.311 +1,0.774,0.34,0.371,0,0,0.725,0,0,0.223 +1,0.79,0.457,0.42,0,0,0.176,0,0.233,0.17 +1,0.774,0.64,0.523,0,0,0.627,0,0,0.0424 +1,0.744,0.791,0.671,0,0,0.277,0,0,0.0848 +1,0.642,0.505,0.549,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0604 +1,0.611,0.0634,0.284,0,0,0,0,0.0167,0.23 +0.667,0.621,0.0764,0.286,0,0,0,0,0.217,0.0424 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.0848 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.254 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.382 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.297 +0.667,0.621,0.13,0.249,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0848 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0.0424 +0.667,0.617,0.103,0.151,0,0,0,0,0,0.0848 +1,0.704,0.232,0.264,0,0,0,0,0,0 +0.667,0.638,0.163,0.173,0,0,0,0,0,0.212 +0.667,0.633,0.224,0.207,0,0,0,0,0,0.0424 +0.667,0.622,0.274,0.257,0.472,0.233,0,0,0,0.212 +1,0.682,0.749,0.799,0.154,0,0,0,0,0.467 +1,0.581,0.162,0.227,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.586,0.0396,0.167,0,0,0,0,0.233,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0.233,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0.233,0.0424 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.0424 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.297 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.17 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.0424 +0.667,0.591,0.0767,0.149,0,0,0,0,0,0.0424 +0.667,0.602,0.0846,0.149,0,0,0,0,0,0.297 +1,0.728,0.277,0.353,0,0,0,0,0,0.601 +1,0.774,0.34,0.371,0.274,0.233,0,0,0,0.331 +1,0.79,0.457,0.42,0.417,0,0,0,0,0.0424 +1,0.704,0.432,0.365,0,0,0,0,0.0167,0.0424 +1,0.683,0.532,0.464,0,0,0,0,0.45,0 +1,0.602,0.26,0.299,0,0,0,0,0,0.0176 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0704 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.323 +1,0.611,0.0634,0.284,0.787,0.483,0.0835,0.0167,0.517,0 +1,0.621,0.0764,0.286,0.243,0,0.767,0.733,0.2,0 +0.667,0.621,0.0895,0.278,0,0,0.367,0,0,0.0848 +1,0.621,0.0997,0.27,0,0,0.0814,0,0,0 +1,0.621,0.11,0.259,0,0,0,0,0,0.17 +0.667,0.591,0.0658,0.15,0,0,0.127,0.267,0,0.127 +0.667,0.591,0.073,0.149,0,0,0.389,0.233,0,0.0848 +0.667,0.591,0.0767,0.149,0,0,0.381,0,0,0.297 +0.667,0.602,0.0846,0.149,0,0,0.299,0,0,0.127 +0.667,0.673,0.19,0.252,0,0,0.301,0,0,0.0848 +0.667,0.704,0.232,0.264,0,0,0,0,0.233,0.0848 +1,0.714,0.31,0.296,0,0,0,0,0,0.0424 +1,0.704,0.432,0.365,0,0,0,0,0,0 +1,0.683,0.532,0.464,0,0,0,0,0,0.0588 +1,0.642,0.505,0.549,0,0,0,0,0,0.0658 +1,0.581,0.162,0.227,0,0,0,0,0,0.277 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0595 +1,0.611,0.0634,0.284,0,0,0,0,0,0.748 +0.667,0.591,0.0462,0.168,0,0,0,0,0.0167,0.0424 +0.667,0.621,0.0895,0.278,0,0,0,0,0.45,0.0848 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.212 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.0424 +0.667,0.621,0.116,0.251,0,0,0,0,0.517,0 +0.667,0.621,0.13,0.249,0,0,0,0,1,0 +0.667,0.621,0.137,0.249,0,0,0,0,0.883,0.212 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.551 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0424 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.252 +1,0.774,0.64,0.523,0,0,0,0,0,0.337 +1,0.744,0.791,0.671,0,0,0,0,0,0.144 +1,0.682,0.749,0.799,0,0,0,0,0,0.258 +1,0.6,0.307,0.405,0,0,0,0,0,0.388 +1,0.565,0.0759,0.116,0,0,0,0,0,0.149 +1,0.56,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.0167,0 +1,0.571,0.0295,0.139,0,0,0,0,0.217,0.183 +1,0.586,0.0433,0.167,0,0,0,0,0,0.582 +1,0.621,0.109,0.286,0,0,0,0,0,0.314 +0.667,0.621,0.143,0.278,0,0,0,0,0,0.426 +0.333,0.591,0.0934,0.16,0,0,0,0,0,0.367 +0.333,0.591,0.101,0.154,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.31 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.272 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.297 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.102 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.134 +0.667,0.714,0.371,0.296,0,0,0,0,0.717,0.299 +1,0.774,0.719,0.523,0,0,0,0,0,0.447 +1,0.744,0.845,0.671,0,0,0,0,0,0.252 +1,0.682,0.78,0.799,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0.138 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0201,0.0503,0,0,0,0,0,0.212 +1,0.56,0.0223,0.0781,0,0,0,0,0,0.0424 +1,0.571,0.0295,0.139,0,0,0,0,0,0.127 +1,0.586,0.0433,0.167,0,0,0,0,0,0.0424 +1,0.591,0.0636,0.168,0,0,0,0,0,0 +1,0.591,0.0803,0.164,0,0,0,0,0,0.509 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.0424 +0.667,0.591,0.101,0.154,0,0,0,0,0,0 +0.667,0.591,0.108,0.15,0,0,0,0,0,0.212 +0.667,0.591,0.125,0.149,0,0,0,0,0,0.229 +1,0.621,0.265,0.249,0,0,0,0,0,0.36 +0.667,0.642,0.291,0.249,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0.0848 +0.667,0.704,0.315,0.264,0,0,0,0,0,0.0848 +1,0.79,0.547,0.42,0,0,0,0,0,0.23 +0.667,0.704,0.485,0.365,0,0,0,0,0,0.0731 +0.667,0.683,0.57,0.464,0,0,0,0,0,0 +0.667,0.602,0.272,0.299,0,0,0,0,0,0 +0.667,0.581,0.176,0.227,0,0,0.0127,0.75,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.105 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.0474,0.228,0,0,0,0,0,0.37 +1,0.611,0.0634,0.284,0,0,0,0,0,0.366 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.0767 +0.667,0.591,0.0527,0.164,0.617,0.233,0,0,0.0167,0.0848 +0.667,0.621,0.0997,0.27,0.699,0,0,0,0.217,0.212 +0.667,0.621,0.11,0.259,0,0,0,0,0.717,0.0424 +0.667,0.621,0.116,0.251,0,0,0,0,0,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0.467,0.0424 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.0848 +0.667,0.673,0.19,0.252,0,0,0,0,0.0167,0.0424 +1,0.774,0.34,0.371,0,0,0,0,0.217,0.0424 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.0848 +1,0.774,0.64,0.523,0,0,0.151,0.267,0,0.0424 +1,0.744,0.791,0.671,0,0,0.577,0.233,0,0 +1,0.682,0.749,0.799,0,0,0.507,0,0,0.018 +1,0.6,0.307,0.405,0,0,0.699,0,0,0.338 +1,0.565,0.0759,0.116,0,0,0.0198,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0.639,0.483,0,0,0,0.0424 +1,0.58,0.0474,0.228,0.148,0,0.18,0.517,0,0.296 +0.667,0.586,0.0396,0.167,0,0,0.182,0.233,0,0.0424 +0.667,0.621,0.0764,0.286,0.0823,0.0167,0,0,0,0.283 +0.667,0.621,0.0895,0.278,0.862,0.217,0,0,0,0.0848 +0.667,0.621,0.0997,0.27,0.69,0,0.252,0.517,0,0.217 +0.667,0.621,0.11,0.259,0.119,0,0.817,0.233,0,0.166 +0.667,0.621,0.116,0.251,0.553,0.767,0.159,0,0,0.0848 +0.667,0.621,0.13,0.249,0.725,0.45,0,0,0,0.0848 +0.667,0.621,0.137,0.249,0.146,0,0,0,0,0.197 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.388 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.478 +0.667,0.704,0.232,0.264,0.507,0.233,0,0,0,0.212 +1,0.79,0.457,0.42,0.348,0.0167,0,0,0,0.0424 +1,0.774,0.64,0.523,0.65,0.217,0,0,0,0.339 +1,0.683,0.532,0.464,0.598,0,0,0,0,0 +1,0.642,0.505,0.549,0.807,0,0,0,0,0.182 +1,0.581,0.162,0.227,0,0,0,0,0,0.063 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0153 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0767 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0.219 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.193 +1,0.591,0.0462,0.168,0,0,0,0,0.233,0 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.0424 +0.667,0.621,0.11,0.259,0,0,0,0,0,0 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.212 +0.667,0.621,0.13,0.249,0,0,0,0,0.233,0.297 +0.667,0.621,0.137,0.249,0.426,0.233,0,0,0,0.212 +0.667,0.642,0.153,0.249,0.284,0,0,0,0,0.127 +0.333,0.617,0.103,0.151,0,0,0,0,0.0167,0 +1,0.774,0.34,0.371,0,0,0,0,0.217,0.0848 +0.667,0.714,0.31,0.296,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0.127 +1,0.744,0.791,0.671,0,0,0,0,0,0.0601 +1,0.602,0.26,0.299,0,0,0,0,0,0.106 +1,0.581,0.162,0.227,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.156 +1,0.571,0.0316,0.139,0,0,0,0,0,0.223 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.247 +1,0.621,0.0764,0.286,0,0,0,0,0,0.121 +1,0.621,0.0895,0.278,0,0,0,0,0,0.316 +0.667,0.591,0.0578,0.16,0,0,0,0,0,0.381 +1,0.621,0.11,0.259,0,0,0.0127,0.0167,0,0.49 +1,0.621,0.116,0.251,0,0,0.34,0.733,0,0.248 +0.667,0.591,0.073,0.149,0,0,0.477,0,0,0.127 +1,0.621,0.137,0.249,0,0,0.378,0,0.233,0.0848 +1,0.642,0.153,0.249,0,0,0.621,0,0,0.0424 +1,0.673,0.19,0.252,0,0,0.0488,0,0,0.212 +1,0.774,0.34,0.371,0,0,0,0,0,0.339 +1,0.79,0.457,0.42,0.549,0.267,0,0,0,0 +1,0.774,0.64,0.523,0.591,0.95,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0.129 +1,0.565,0.0759,0.116,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.24 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0.295 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0.297 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.0424 +0.667,0.621,0.11,0.259,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.0424 +0.333,0.591,0.073,0.149,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.212 +1,0.682,0.222,0.349,0,0,0,0,0,0.297 +1,0.728,0.277,0.353,0,0,0,0,0,0.509 +1,0.774,0.34,0.371,0,0,0,0,0,0.365 +1,0.79,0.457,0.42,0,0,0,0,0.233,0.319 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.0848 +0.667,0.683,0.532,0.464,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0.131 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.127 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.283 +1,0.58,0.0409,0.228,0,0,0,0,0,0.679 +1,0.611,0.0685,0.284,0,0,0,0,0,0.218 +1,0.621,0.109,0.286,0,0,0,0,0,0 +1,0.621,0.143,0.278,0,0,0,0,0,0 +1,0.621,0.169,0.27,0,0,0,0,0,0.0424 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.17 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.0424 +0.333,0.591,0.125,0.149,0,0,0,0,0,0.127 +0.333,0.591,0.141,0.149,0,0,0,0,0,0.0848 +0.667,0.602,0.154,0.149,0,0,0.0651,0.0167,0,0.17 +0.667,0.673,0.305,0.252,0,0,0.658,0.733,0,0.0424 +1,0.774,0.464,0.371,0,0,0.444,0,0,0.297 +1,0.79,0.547,0.42,0,0,0.562,0,0,0.0848 +1,0.774,0.719,0.523,0,0,0.726,0,0,0 +1,0.744,0.845,0.671,0,0,0.555,0,0,0 +1,0.642,0.526,0.549,0,0,0,0,0,0.0594 +1,0.581,0.176,0.227,0,0,0,0,0,0.232 +1,0.565,0.0869,0.116,0,0,0,0,0,0.0165 +1,0.56,0.044,0.0743,0,0,0,0,0,0.166 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.304 +1,0.611,0.0685,0.284,0,0,0,0,0,0.396 +0.667,0.591,0.0636,0.168,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.0424 +0.667,0.621,0.233,0.249,0,0,0,0,0.0167,0.127 +1,0.651,0.388,0.348,0,0,0,0,0.217,0.127 +0.667,0.642,0.291,0.249,0,0,0,0,0.0167,0.0848 +1,0.728,0.449,0.353,0,0,0,0,0.45,0.17 +1,0.774,0.464,0.371,0,0,0,0,0,0 +1,0.79,0.547,0.42,0.075,0.0167,0,0,0,0.127 +0.667,0.704,0.485,0.365,0.552,0.217,0,0,0,0.378 +1,0.744,0.845,0.671,0.676,0,0,0,0,0.0911 +1,0.682,0.78,0.799,0,0,0,0,0,0.123 +1,0.62,0.492,0.582,0,0,0,0,0,0.174 +0.667,0.565,0.0869,0.116,0.0787,0.0167,0,0,0,0.132 +1,0.56,0.0374,0.0743,0.525,0.217,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0186,0.0503,0,0,0,0,0,0.297 +1,0.559,0.0314,0.107,0,0,0,0,0,0.428 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0.0424 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0.17 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.0424 +0.667,0.621,0.0997,0.27,0.349,0.233,0,0,0.467,0.158 +0.667,0.621,0.11,0.259,0.404,0,0,0,0.0167,0.0848 +0.667,0.621,0.116,0.251,0,0,0,0,0.933,0 +0.667,0.621,0.13,0.249,0,0,0,0,0,0.127 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0424 +0.667,0.642,0.153,0.249,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0.314 +1,0.774,0.64,0.523,0,0,0,0,0,0.373 +1,0.744,0.791,0.671,0,0,0,0,0,0 +1,0.682,0.749,0.799,0.575,0.233,0,0,0,0.166 +1,0.581,0.162,0.227,0.199,0,0,0,0,0.104 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.319 +1,0.58,0.0474,0.228,0,0,0,0,0,0.309 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.335 +0.667,0.621,0.0764,0.286,0,0,0,0,0.467,0.254 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0.12 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.226 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.116,0.251,0,0,0,0,0,0.297 +1,0.621,0.13,0.249,0,0,0,0,0,0.254 +1,0.621,0.137,0.249,0,0,0,0,0,0.127 +1,0.642,0.153,0.249,0,0,0,0,0,0.0828 +1,0.673,0.19,0.252,0,0,0,0,0,0.612 +1,0.704,0.232,0.264,0,0,0,0,0.233,0.0848 +1,0.714,0.31,0.296,0,0,0,0,0.0167,0.212 +1,0.774,0.64,0.523,0,0,0,0,1,0.212 +1,0.744,0.791,0.671,0,0,0,0,0.183,0.116 +1,0.682,0.749,0.799,0,0,0,0,0,0.28 +1,0.62,0.453,0.582,0,0,0,0,0,0.365 +1,0.573,0.196,0.249,0,0,0,0,0,0.248 +1,0.559,0.059,0.099,0,0,0,0,0,0.0688 +1,0.56,0.0236,0.0578,0,0,0,0,0,0.173 +1,0.56,0.0171,0.0495,0,0,0,0,0,0.3 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.237 +1,0.559,0.0213,0.0511,0,0,0,0,0,0.482 +1,0.559,0.0314,0.107,0,0,0,0,0,0.355 +0.667,0.571,0.0316,0.139,0,0,0,0,0.0167,0.127 +0.667,0.611,0.0634,0.284,0.0906,0.0167,0,0,0.217,0.0424 +0.333,0.591,0.0462,0.168,0.74,0.217,0,0,0,0.17 +0.667,0.621,0.0895,0.278,0.126,0,0,0,0.233,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0424 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.254 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.127 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0424 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.297 +0.333,0.617,0.103,0.151,0,0,0,0,0.267,0.0848 +0.667,0.704,0.232,0.264,0,0,0,0,0.683,0.212 +0.667,0.714,0.31,0.296,0,0,0,0,0.467,0.0848 +1,0.774,0.64,0.523,0.406,0.517,0,0,0,0.0908 +1,0.744,0.791,0.671,0,1,0,0,0,0.0786 +1,0.642,0.505,0.549,0,0.183,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0.148 +1,0.565,0.0759,0.116,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.121 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0182 +1,0.571,0.0316,0.139,0,0,0,0,0,0.471 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0527,0.164,0,0,0,0,0,0.127 +0.667,0.591,0.0578,0.16,0,0,0,0,0,0.188 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.544 +0.667,0.621,0.116,0.251,0,0,0,0,0,0.424 +0.667,0.621,0.13,0.249,0,0,0,0,0,0 +0.667,0.621,0.137,0.249,0,0,0,0,0,0.0848 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.0424 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0424 +0.667,0.704,0.232,0.264,0.0952,0.0167,0,0,0.517,0.127 +1,0.79,0.457,0.42,0.527,0.217,0,0,0.2,0.188 +0.667,0.704,0.432,0.365,0,0,0,0,0,0.373 +0.667,0.683,0.532,0.464,0,0,0,0,0,0.297 +0.667,0.642,0.505,0.549,0,0,0,0,0,0.116 +1,0.6,0.307,0.405,0,0,0,0,0,0 +1,0.569,0.136,0.183,0,0,0,0,0,0.185 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.126 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0.467,0.212 +0.667,0.551,0.0406,0.163,0,0,0,0,0.233,0.127 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.0424 +0.667,0.555,0.0541,0.156,0,0,0,0,0,0.0424 +0.667,0.548,0.103,0.256,0.456,0.233,0,0,0,0.0424 +0.667,0.548,0.113,0.245,0.487,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.0899,0.267,0.233,0 +1,0.542,0.194,0.328,0,0,0.367,0.483,0,0 +1,0.542,0.205,0.327,0,0,0,0,0,0.212 +1,0.568,0.23,0.328,0,0,0,0,0,0.483 +0.667,0.591,0.196,0.238,0,0,0.299,0.5,0,0.193 +0.667,0.617,0.239,0.247,0,0,0.736,0,0,0.212 +1,0.658,0.473,0.384,0,0,0.051,0,0,0.0424 +1,0.645,0.662,0.467,0.298,0.233,0,0,0,0.0424 +1,0.619,0.817,0.595,0.639,0,0,0,0,0.285 +1,0.564,0.269,0.275,0,0,0,0,0,0.0424 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.104,0.147,0,0,0,0,0,0.297 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.0424 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.424 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.212 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.254 +0.333,0.576,0.167,0.144,0,0,0,0,0,0.204 +0.333,0.589,0.172,0.148,0,0,0,0,0.517,0 +1,0.658,0.565,0.384,0,0,0,0,0.183,0.0424 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.0424 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.254 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.472 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.193 +1,0.568,0.441,0.328,0.22,0.233,0,0,0,0.296 +1,0.606,0.464,0.332,0.448,0,0,0,0,0.394 +1,0.645,0.479,0.345,0.637,0,0,0,0.517,0.313 +1,0.658,0.565,0.384,0,0,0,0,0.9,0.367 +1,0.645,0.743,0.467,0,0,0,0,0,0.341 +1,0.619,0.873,0.595,0,0,0,0,0,0.0155 +1,0.566,0.543,0.501,0,0,0,0,0,0.19 +1,0.546,0.182,0.219,0,0,0,0,0,0.141 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0.0167,0.156 +1,0.514,0.0488,0.222,0,0,0,0,0.45,0.297 +1,0.551,0.0406,0.163,0,0,0,0,0,0.401 +1,0.542,0.11,0.387,0,0,0,0,0,0 +1,0.542,0.131,0.37,0,0,0,0,0,0.0424 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.339 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.0424 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.146 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.338 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.257 +0.667,0.566,0.158,0.235,0,0,0.0821,0.0167,0,0.593 +0.333,0.576,0.106,0.144,0,0,0.106,0.483,0,0.088 +0.333,0.589,0.128,0.148,0,0,0,0,0,0.133 +0.333,0.594,0.168,0.161,0,0,0,0,0,0.0848 +0.667,0.617,0.446,0.328,0,0,0,0,0.0167,0.0424 +1,0.619,0.817,0.595,0,0,0,0,0.683,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.297 +1,0.516,0.468,0.557,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0.128 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.275 +1,0.514,0.0488,0.222,0,0,0,0,0,0.088 +0.667,0.551,0.0406,0.163,0,0,0,0,0.0167,0.36 +0.667,0.548,0.0788,0.274,0,0,0.423,0.5,0.45,0.0848 +0.667,0.548,0.0923,0.263,0,0,0.721,0,0,0.0848 +0.667,0.548,0.103,0.256,0,0,0.702,0,0,0.174 +0.667,0.548,0.113,0.245,0,0,0.661,0,0,0.483 +0.667,0.548,0.119,0.237,0,0,0.285,0,0,0.487 +0.667,0.548,0.134,0.235,0,0,0.454,0,0,0.449 +0.667,0.548,0.142,0.235,0,0,0.358,0,0,0.487 +0.333,0.564,0.0871,0.142,0,0,0.542,0,0,0.127 +0.667,0.591,0.196,0.238,0,0,0.59,0,0,0.125 +1,0.617,0.239,0.247,0,0,0.519,0,0,0.282 +1,0.658,0.473,0.384,0,0,0.474,0,0,0.275 +0.667,0.617,0.446,0.328,0,0,0.55,0,0,0.127 +1,0.619,0.817,0.595,0,0,0.379,0,0,0 +1,0.568,0.774,0.726,0,0,0.176,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0.162 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0154 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.116 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.538,0.0323,0.136,0,0,0,0,0.233,0.127 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.0424 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.127 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0.101,0.0167,0,0,0,0.0424 +0.667,0.548,0.113,0.245,0.322,0.217,0,0,0.0167,0.127 +0.667,0.548,0.119,0.237,0,0,0,0,0.217,0.0848 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.17 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.0848 +0.667,0.566,0.158,0.235,0,0,0,0,0.233,0.212 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.212 +1,0.645,0.351,0.345,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0.0848 +1,0.645,0.662,0.467,0,0,0,0,0,0.254 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0.0424 +1,0.531,0.317,0.388,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.177 +1,0.551,0.0406,0.163,0,0,0,0,0,0.254 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.0643 +0.667,0.555,0.0541,0.156,0,0,0,0,0,0.246 +0.667,0.548,0.103,0.256,0,0,0,0,0.233,0.0848 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.17 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.0848 +0.667,0.548,0.142,0.235,0,0,0,0,0,0 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.17 +1,0.606,0.286,0.332,0,0,0,0,0,0.17 +1,0.645,0.351,0.345,0.483,0.467,0,0,0.467,0.0848 +1,0.658,0.473,0.384,0.715,0,0,0,0,0 +1,0.645,0.662,0.467,0.666,0,0,0,0,0 +0.667,0.6,0.55,0.413,0.661,0,0,0,0,0.226 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.0598 +0.667,0.531,0.317,0.388,0,0,0,0,0,0.243 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0.517,0.0424 +0.333,0.551,0.0406,0.163,0,0,0,0,0.667,0.0424 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.242 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.195 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.221 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.103 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0848 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.424 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.127 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.509 +1,0.645,0.351,0.345,0,0,0,0,0,0.0424 +1,0.658,0.473,0.384,0,0,0,0,0,0.297 +1,0.645,0.662,0.467,0.102,0.0167,0,0,0,0.0424 +1,0.619,0.817,0.595,0.505,0.217,0,0,0,0.285 +1,0.568,0.774,0.726,0,0,0,0,0,0.163 +1,0.531,0.317,0.388,0,0,0,0,0,0.16 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.529,0.0226,0.0768,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0.339 +1,0.551,0.0444,0.163,0,0,0,0,0,0.136 +1,0.548,0.113,0.274,0,0,0,0,0,0.288 +1,0.548,0.147,0.263,0,0,0,0,0,0.322 +1,0.542,0.252,0.359,0,0,0,0,0,0.381 +0.333,0.555,0.104,0.147,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.17 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.0424 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.466 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.12 +1,0.591,0.315,0.238,0,0,0,0,0.0167,0.334 +0.667,0.617,0.326,0.247,0.373,0.233,0,0,0.45,0 +0.667,0.626,0.383,0.273,0.187,0,0,0,0,0.0424 +1,0.645,0.743,0.467,0,0,0,0,0,0 +1,0.619,0.873,0.595,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0.0424 +1,0.531,0.345,0.388,0,0,0,0,0,0.18 +1,0.505,0.161,0.183,0,0,0,0,0,0.134 +1,0.529,0.0451,0.0743,0,0,0,0,0,0.12 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.141 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.254 +1,0.538,0.0301,0.136,0.295,0.233,0,0,0.0167,0.0424 +1,0.54,0.0706,0.277,0.537,0,0,0,0.217,0.0424 +1,0.548,0.113,0.274,0.783,0,0,0,0,0.0848 +1,0.548,0.147,0.263,0.713,0,0,0,0,0.0424 +0.667,0.555,0.0961,0.153,0.684,0,0,0,0,0 +0.667,0.548,0.191,0.245,0.274,0,0,0,0,0.0661 +1,0.542,0.297,0.331,0,0,0,0,0,0.268 +0.667,0.548,0.24,0.235,0,0,0,0,0,0.235 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.17 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.0848 +0.333,0.576,0.167,0.144,0,0,0,0,0,0.0848 +1,0.645,0.479,0.345,0.0613,0.0167,0,0,0,0.254 +1,0.658,0.565,0.384,0.751,0.217,0,0,0,0.509 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0.0987 +1,0.531,0.345,0.388,0,0,0.0524,0.0167,0,0 +1,0.533,0.0894,0.116,0,0,0,0.5,0,0.137 +1,0.529,0.0383,0.0743,0,0,0,0.233,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0768,0,0,0,0,0,0 +1,0.514,0.0488,0.222,0,0,0,0,0,0.262 +1,0.54,0.0653,0.277,0,0,0,0,0,0.417 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.263 +0.667,0.555,0.0541,0.156,0,0,0,0,0,0.0424 +0.667,0.555,0.0593,0.153,0,0,0,0,0,0.297 +0.667,0.555,0.0646,0.147,0,0,0,0,0,0.127 +0.667,0.555,0.0676,0.143,0,0,0,0,0,0.297 +0.667,0.555,0.0751,0.142,0,0,0,0,0,0.0424 +0.667,0.555,0.0789,0.142,0,0,0,0,0,0.48 +0.333,0.564,0.0871,0.142,0,0,0,0,0.267,0 +0.667,0.591,0.196,0.238,0,0,0,0,0.2,0 +1,0.645,0.351,0.345,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0.0424 +1,0.645,0.662,0.467,0,0,0,0,0,0.133 +1,0.619,0.817,0.595,0,0,0.0849,0.0167,0,0.222 +1,0.568,0.774,0.726,0,0,0.13,0.733,0,0.168 +1,0.531,0.317,0.388,0,0,0,0,0,0 +0.667,0.533,0.0781,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.43 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.17 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.0424 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.143 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.376 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.477 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.127 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.0424 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.279 +0.667,0.626,0.32,0.273,0,0,0,0,0,0.133 +1,0.645,0.662,0.467,0,0,0,0,0.7,0.188 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0.0424 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.17 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.212 +1,0.514,0.0488,0.222,0,0,0,0,0,0.0424 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0.0848 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.128 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.127 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.0424 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0.0424 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.0848 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.17 +0.667,0.548,0.142,0.235,0,0,0,0,0,0 +1,0.568,0.23,0.328,0,0,0,0,0,0.212 +1,0.606,0.286,0.332,0,0,0,0,0.233,0.17 +1,0.645,0.351,0.345,0,0,0,0,0,0 +1,0.658,0.473,0.384,0.249,0.233,0,0,0,0.17 +1,0.645,0.662,0.467,0.659,0,0,0,0,0.102 +1,0.619,0.817,0.595,0,0,0,0,0,0.506 +1,0.568,0.774,0.726,0,0,0,0,0,0.0969 +1,0.531,0.317,0.388,0.452,0.233,0,0,0,0.0171 +1,0.533,0.0781,0.116,0.148,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.497,0.0218,0.0506,0,0,0,0,0.233,0.216 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.233,0.0848 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.0424 +0.667,0.555,0.0541,0.156,0,0,0.0736,0.0167,0,0.0848 +0.667,0.548,0.103,0.256,0,0,0.743,0.733,0,0.254 +0.667,0.548,0.113,0.245,0,0,0.753,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.72,0,0,0 +0.667,0.548,0.134,0.235,0,0,0.245,0,0,0.0848 +0.667,0.548,0.142,0.235,0,0,0.507,0,0,0.0424 +0.667,0.566,0.158,0.235,0,0,0.493,0,0,0.0848 +0.667,0.591,0.196,0.238,0,0,0.56,0,0,0.0848 +0.667,0.617,0.239,0.247,0,0,0.493,0,0,0.0424 +0.667,0.626,0.32,0.273,0,0,0.624,0,0,0 +0.667,0.617,0.446,0.328,0,0,0.314,0,0,0.127 +0.667,0.6,0.55,0.413,0,0,0.613,0,0,0.17 +1,0.568,0.774,0.726,0,0,0,0,0,0.301 +1,0.531,0.317,0.388,0,0,0,0,0,0.193 +1,0.533,0.0781,0.116,0,0,0,0,0,0.17 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.555,0.0473,0.162,0,0,0,0,0,0.0848 +1,0.548,0.0923,0.263,0,0,0,0,0,0.34 +0.667,0.555,0.0593,0.153,0,0,0,0,0,0.113 +0.667,0.555,0.0646,0.147,0,0,0,0,0,0.0424 +0.667,0.548,0.119,0.237,0,0,0,0,0.233,0.297 +0.667,0.548,0.134,0.235,0.269,0.233,0,0,0,0.0424 +0.667,0.548,0.142,0.235,0.731,0,0,0,0,0.0424 +0.667,0.566,0.158,0.235,0.593,0,0,0,0,0.0848 +0.667,0.591,0.196,0.238,0.802,0,0.329,0.517,0,0.254 +0.667,0.617,0.239,0.247,0.0805,0,0.558,0.233,0,0.0848 +1,0.658,0.473,0.384,0.421,0.467,0.425,0,0,0 +1,0.645,0.662,0.467,0.553,0,0.406,0,0,0.363 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.137 +1,0.531,0.317,0.388,0,0,0,0,0,0.275 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.17 +0.333,0.555,0.0826,0.156,0,0,0,0,0,0.279 +0.667,0.548,0.174,0.256,0,0,0,0,0,0.159 +0.667,0.548,0.191,0.245,0,0,0,0,0,0.22 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.462 +0.333,0.555,0.129,0.142,0,0,0,0,0,0.234 +0.333,0.555,0.146,0.142,0,0,0,0,0,0.328 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.116 +0.667,0.576,0.167,0.144,0,0,0,0,0,0.293 +0.667,0.589,0.172,0.148,0,0,0,0,0,0.212 +0.667,0.626,0.383,0.273,0,0,0,0,0,0.0848 +0.667,0.617,0.501,0.328,0,0,0,0,0,0 +1,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.568,0.806,0.726,0,0,0,0,0,0.188 +1,0.516,0.509,0.557,0,0,0,0,0,0.0359 +1,0.505,0.161,0.183,0,0,0,0,0,0.0183 +1,0.497,0.0721,0.099,0,0,0,0,0,0.0634 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.267,0 +1,0.555,0.0826,0.156,0,0,0,0,0.2,0.0424 +0.667,0.548,0.174,0.256,0.728,0.767,0,0,0,0.187 +0.667,0.548,0.191,0.245,0.13,0.4,0,0,0,0.0682 +0,0.562,0.0181,0.0495,0,0,0,0,0.517,0.0848 +0.333,0.555,0.129,0.142,0,0,0,0,0.667,0.127 +0.333,0.555,0.146,0.142,0,0,0,0,0.0167,0.254 +0.667,0.566,0.3,0.235,0,0,0,0,0.683,0.254 +0.333,0.576,0.167,0.144,0,0,0,0,0,0 +0.333,0.589,0.172,0.148,0,0,0,0,0,0.297 +0.333,0.594,0.2,0.161,0,0,0,0,0,0.0141 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.294 +0.667,0.581,0.303,0.231,0,0,0,0,0.467,0 +1,0.564,0.281,0.275,0,0,0,0,0,0 +1,0.546,0.182,0.219,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0.11 +1,0.497,0.0608,0.099,0,0,0,0,0,0.0917 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.088 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.464,0.0248,0.0511,0,0,0.386,0.517,0,0.334 +1,0.464,0.0405,0.131,0,0,0.374,0.233,0,0.501 +1,0.49,0.0653,0.308,0,0,0.403,0,0,0.373 +0.667,0.54,0.0653,0.277,0,0,0.605,0,0,0.136 +0.667,0.548,0.0788,0.274,0,0,0.607,0,0,0.157 +1,0.542,0.131,0.37,0.0586,0.0167,0.575,0,0,0.405 +1,0.542,0.146,0.359,0.651,0.217,0,0,0,0.0987 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.0848 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.111 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.127 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.297 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0.127 +0.667,0.591,0.196,0.238,0,0,0,0,0.0167,0.0424 +0.667,0.617,0.239,0.247,0,0,0,0,0.217,0.254 +1,0.658,0.473,0.384,0,0,0,0,0,0.17 +1,0.645,0.662,0.467,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.23 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.222 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.223 +0.667,0.551,0.0406,0.163,0,0,0.21,0.517,0,0 +0.667,0.555,0.0473,0.162,0,0,0.537,0.233,0,0 +0.667,0.555,0.0541,0.156,0,0,0.574,0,0,0.0848 +0.667,0.555,0.0593,0.153,0,0,0.699,0,0,0.0424 +0.667,0.548,0.113,0.245,0,0,0.555,0,0,0.0424 +0.667,0.548,0.119,0.237,0.542,0.233,0.442,0,0,0.0848 +0.667,0.548,0.134,0.235,0.586,0,0.293,0,0,0.0848 +0.667,0.548,0.142,0.235,0.624,0,0.574,0,0,0.0848 +0.667,0.566,0.158,0.235,0.726,0,0.411,0,0,0.0848 +0.667,0.591,0.196,0.238,0.17,0,0.549,0,0,0.17 +0.667,0.617,0.239,0.247,0,0,0.536,0,0,0 +0.667,0.626,0.32,0.273,0,0,0.654,0,0,0.0424 +0.667,0.617,0.446,0.328,0,0,0.732,0,0,0.0848 +1,0.619,0.817,0.595,0,0,0.381,0,0,0.155 +1,0.566,0.521,0.501,0,0,0.545,0,0.233,0.12 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0179 +1,0.538,0.0323,0.136,0,0,0,0,0,0.308 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.168 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.446 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0387 +0.333,0.555,0.0646,0.147,0,0,0,0,0.467,0.595 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0.0424 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0.127 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.509 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0424 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.17 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.212 +1,0.658,0.473,0.384,0.238,0.233,0,0,0,0 +1,0.645,0.662,0.467,0.777,0,0,0,0,0.0424 +1,0.619,0.817,0.595,0.696,0,0,0,0,0.0424 +1,0.568,0.774,0.726,0,0,0,0,0,0.206 +1,0.546,0.167,0.219,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.529,0.0173,0.0495,0,0,0,0,0,0.0848 +0.667,0.529,0.0158,0.0495,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0.233,0.111 +1,0.54,0.0653,0.277,0,0,0,0,0,0.424 +1,0.548,0.0788,0.274,0,0,0,0,0,0.115 +0.667,0.555,0.0541,0.156,0.494,0.233,0.198,0.267,0,0.0685 +0.667,0.555,0.0593,0.153,0,0,0.494,0.483,0,0.509 +0.667,0.548,0.113,0.245,0,0,0.351,0,0,0 +0.667,0.548,0.119,0.237,0,0,0.643,0,0,0.254 +0.667,0.548,0.134,0.235,0,0,0.405,0,0,0.0424 +0.667,0.548,0.142,0.235,0,0,0.566,0,0,0.127 +0.667,0.566,0.158,0.235,0,0,0.603,0,0,0 +0.667,0.591,0.196,0.238,0,0,0.444,0,0,0 +1,0.645,0.351,0.345,0,0,0.382,0,0,0.0424 +1,0.658,0.473,0.384,0,0,0.374,0,0,0 +1,0.645,0.662,0.467,0,0,0.199,0,0,0.0848 +1,0.619,0.817,0.595,0,0,0,0,0,0.142 +1,0.566,0.521,0.501,0,0,0,0,0,0.076 +1,0.546,0.167,0.219,0,0,0,0,0,0.169 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.145 +1,0.54,0.0653,0.277,0,0,0,0,0,0.526 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.304 +0.667,0.548,0.0923,0.263,0.276,0.233,0,0,0,0.281 +0.333,0.555,0.0593,0.153,0.251,0,0,0,0.233,0.132 +0.667,0.548,0.113,0.245,0,0,0.126,0.75,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0.212 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0848 +0.333,0.576,0.106,0.144,0.102,0.0167,0,0,0,0.212 +0.667,0.617,0.239,0.247,0.364,0.217,0,0,0,0.0848 +0.667,0.626,0.32,0.273,0.0741,0.0167,0,0,0,0.0848 +1,0.645,0.662,0.467,0.702,0.217,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.264 +1,0.531,0.317,0.388,0,0,0,0,0,0.197 +1,0.505,0.14,0.183,0,0,0,0,0,0.206 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0.0424 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.0424 +1,0.529,0.0181,0.0495,0,0,0,0,0,0.0848 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.538,0.0301,0.136,0,0,0,0,0,0.374 +1,0.54,0.0706,0.277,0,0,0,0,0,0.36 +1,0.548,0.113,0.274,0,0,0,0,0,0.637 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.249 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0.0905 +0.667,0.555,0.104,0.147,0,0,0,0,0,0 +0.333,0.555,0.111,0.143,0,0,0,0,0,0 +0.667,0.555,0.129,0.142,0,0,0,0,0,0.0424 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.767,0.0424 +0.333,0.576,0.167,0.144,0,0,0,0,0.167,0.424 +0.667,0.617,0.326,0.247,0,0,0.19,0.25,0,0.212 +1,0.658,0.565,0.384,0,0,0.5,0,0,0.17 +1,0.645,0.743,0.467,0,0,0.477,0,0,0.0848 +1,0.619,0.873,0.595,0,0,0.466,0,0,0.254 +1,0.568,0.806,0.726,0,0,0.163,0,0,0 +1,0.516,0.509,0.557,0,0,0.255,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0161 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.113 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0168 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0.0505 +0.333,0.555,0.0961,0.153,0,0,0,0,0,0.0424 +0.667,0.548,0.191,0.245,0,0,0,0,0,0.0848 +0.333,0.555,0.111,0.143,0,0,0,0,0,0.127 +0.667,0.548,0.24,0.235,0,0,0,0,0.233,0.212 +1,0.542,0.401,0.327,0,0,0,0,0,0.297 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.127 +1,0.606,0.464,0.332,0,0,0,0,0,0.127 +1,0.645,0.479,0.345,0,0,0,0,0,0.17 +1,0.658,0.565,0.384,0,0,0,0,0,0.0424 +0.667,0.617,0.501,0.328,0,0,0,0,0,0.0424 +1,0.619,0.873,0.595,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0.0795 +1,0.531,0.345,0.388,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.176 +1,0.538,0.0323,0.136,0,0,0,0,0,0.136 +1,0.551,0.0406,0.163,0,0,0,0,0,0.338 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.354 +0.667,0.548,0.0923,0.263,0,0,0,0,0.267,0.0652 +0,0.562,0.0159,0.0495,0,0,0,0,0.667,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0.517,0 +0.667,0.548,0.119,0.237,0,0,0,0,0.183,0.127 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.17 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.17 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.466 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.0424 +1,0.645,0.351,0.345,0,0,0,0,0,0.0848 +1,0.658,0.473,0.384,0.525,0.233,0,0,0,0.127 +1,0.645,0.662,0.467,0.152,0,0,0,0,0.0424 +1,0.619,0.817,0.595,0,0,0,0,0,0.0424 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0.0364 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.615 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0171 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.297 +0.667,0.555,0.0541,0.156,0,0,0.375,0.5,0,0.339 +0.667,0.555,0.0593,0.153,0,0,0.337,0,0,0 +0.667,0.548,0.113,0.245,0,0,0.334,0,0,0.0424 +0.667,0.548,0.119,0.237,0,0,0.425,0,0,0.127 +0.667,0.548,0.134,0.235,0,0,0.795,0,0,0.0424 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.212 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0424 +0.667,0.591,0.196,0.238,0,0,0.273,0.267,0,0.254 +1,0.645,0.351,0.345,0,0,0.262,0.483,0,0.17 +1,0.658,0.473,0.384,0,0,0.419,0,0.267,0 +1,0.645,0.662,0.467,0,0,0,0,0.2,0 +0.667,0.6,0.55,0.413,0,0,0,0,0,0 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.0157 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.147 +1,0.533,0.0781,0.116,0,0,0,0,0,0.112 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0601 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.368 +1,0.538,0.0323,0.136,0,0,0,0,0,0.592 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.063 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0.149 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.0848 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0.233,0.0424 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.192 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.127 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0848 +0.667,0.591,0.196,0.238,0,0,0,0,0.233,0.127 +0.667,0.617,0.239,0.247,0,0,0,0,0.0167,0.297 +1,0.658,0.473,0.384,0,0,0,0,0.45,0.0848 +1,0.645,0.662,0.467,0,0,0,0,0,0.127 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0.0966 +1,0.533,0.0781,0.116,0,0,0,0,0,0.143 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.0822 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.0424 +0.667,0.555,0.0541,0.156,0,0,0,0,0.267,0.133 +0.667,0.548,0.103,0.256,0,0,0,0,0.433,0.52 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.185 +0.667,0.555,0.0676,0.143,0,0,0,0,0,0.136 +0.667,0.555,0.0751,0.142,0.0686,0.0167,0,0,0,0.127 +0.667,0.548,0.142,0.235,0.577,0.683,0,0,0,0.145 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.3 +0.667,0.591,0.196,0.238,0,0,0,0,0.233,0.799 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.0424 +0.667,0.626,0.32,0.273,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.0424 +1,0.619,0.817,0.595,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.185 +1,0.531,0.317,0.388,0,0,0,0,0,0.156 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.136,0,0,0,0,0,0.652 +1,0.54,0.0653,0.277,0,0,0,0,0,0.316 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.254 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0.212 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.212 +0.667,0.548,0.113,0.245,0,0,0,0,0,0 +0.667,0.548,0.119,0.237,0,0,0,0,0,0.0424 +0.667,0.548,0.134,0.235,0,0,0,0,0,0.212 +0.667,0.548,0.142,0.235,0,0,0,0,0,0.0848 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0848 +0.333,0.576,0.106,0.144,0,0,0,0,0.0167,0.0848 +0.333,0.589,0.128,0.148,0,0,0,0,0.217,0.0848 +0.667,0.626,0.32,0.273,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0.454 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.0835 +0.667,0.566,0.521,0.501,0,0,0,0,0,0.17 +0.667,0.546,0.167,0.219,0,0,0,0,0,0.131 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.241 +1,0.548,0.147,0.263,0,0,0,0,0.467,0.212 +1,0.542,0.252,0.359,0,0,0,0,0,0.212 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.333,0.555,0.146,0.142,0,0,0,0,0,0 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.297 +0.333,0.576,0.167,0.144,0.0576,0.0167,0,0,0,0.17 +0.333,0.589,0.172,0.148,0.59,0.217,0,0,0,0.127 +0.333,0.594,0.2,0.161,0,0,0,0,0,0 +1,0.617,0.501,0.328,0,0,0,0,0,0.0848 +1,0.6,0.588,0.413,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0.112 +1,0.505,0.161,0.183,0,0,0,0,0,0.233 +1,0.528,0.0452,0.0743,0,0,0,0,0,0.0848 +1,0.528,0.0286,0.0578,0,0,0,0,0,0.0848 +1,0.528,0.0211,0.0495,0,0,0,0,0,0 +1,0.528,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.35,0 +1,0.549,0.0444,0.162,0,0,0,0,0.35,0.232 +1,0.554,0.0655,0.16,0,0,0,0,0,0.175 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.125 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.178 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.488 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.108 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.17 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.127 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.596 +0.333,0.575,0.167,0.141,0,0,0,0,0,0.414 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.183 +0.333,0.592,0.201,0.159,0,0,0,0,0,0.355 +0.667,0.614,0.503,0.324,0,0,0,0,0.7,0.0848 +0.667,0.597,0.59,0.41,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0.339 +1,0.503,0.161,0.183,0,0,0,0,0,0.106 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.217 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0 +1,0.537,0.0655,0.274,0,0,0,0,0,0.451 +1,0.546,0.079,0.27,0,0,0,0,0,0.278 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.0654 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.127 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0,0,0.233,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.17 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.0848 +0.667,0.563,0.159,0.23,0.0668,0.0167,0,0,0,0.0424 +0.667,0.588,0.196,0.233,0.473,0.2,0.416,0.517,0,0.127 +0.667,0.614,0.24,0.242,0,0,0.603,0,0,0.254 +0.667,0.623,0.321,0.268,0.435,0.517,0,0,0,0.0424 +1,0.64,0.664,0.461,0.677,0.167,0,0,0,0.0424 +1,0.615,0.82,0.59,0.443,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.0848 +1,0.529,0.318,0.386,0,0,0,0,0,0.254 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.158 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.121 +0.667,0.546,0.079,0.27,0,0,0.0892,0.267,0.233,0.434 +0.667,0.546,0.0926,0.258,0,0,0.568,1,0,0.177 +0.667,0.546,0.103,0.25,0,0,0.415,0.3,0,0.0424 +0.333,0.554,0.0648,0.145,0,0,0.391,0,0,0.339 +0.333,0.554,0.0678,0.141,0,0,0,0,0.233,0.0424 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.424 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.0424 +1,0.602,0.287,0.324,0,0,0,0,0.517,0.127 +1,0.64,0.352,0.338,0,0,0,0,0.183,0.17 +1,0.623,0.321,0.268,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.0848 +1,0.615,0.82,0.59,0,0,0,0,0.467,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0.233,0.059 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.277 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.562 +0.667,0.554,0.0542,0.154,0.0714,0.0167,0,0,0,0.127 +0.667,0.546,0.103,0.25,0.816,0.433,0,0,0.233,0.0424 +0.667,0.546,0.114,0.24,0.723,0,0,0,0,0.127 +0.667,0.546,0.12,0.232,0.75,0,0,0,0,0.0424 +0.667,0.546,0.135,0.23,0.893,0,0,0,0,0.0424 +0.333,0.554,0.0791,0.14,0.6,0,0,0,0,0.23 +0.333,0.562,0.0873,0.14,0,0,0,0,0.0167,0.127 +0.667,0.588,0.196,0.233,0,0,0,0,0.217,0.0848 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.127 +1,0.653,0.474,0.377,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.0424 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0.312 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.354 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.529 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.247 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.239 +0.333,0.554,0.0648,0.145,0,0,0,0,0.0167,0.297 +0.667,0.546,0.12,0.232,0,0,0,0,0.217,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.254 +0.667,0.546,0.142,0.23,0,0,0,0,0.767,0.0424 +0.667,0.563,0.159,0.23,0,0,0,0,1,0.127 +0.667,0.588,0.196,0.233,0,0,0,0,1,0.0848 +1,0.64,0.352,0.338,0,0,0,0,1,0.292 +1,0.653,0.474,0.377,0,0,0,0,0.45,0.294 +1,0.64,0.664,0.461,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0.125 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.149 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.135 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.436 +1,0.537,0.0324,0.135,0,0,0,0,0,0.198 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.164 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.169 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.228 +0.667,0.554,0.0595,0.15,0,0,0,0,0,0.0424 +0.667,0.554,0.0648,0.145,0,0,0,0,0,0.212 +0.667,0.554,0.0678,0.141,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0.454,0.517,0,0,0,0.0848 +0.333,0.562,0.0873,0.14,0.659,0.167,0,0,0,0.0424 +1,0.602,0.287,0.324,0.243,0,0,0,0.0167,0.212 +1,0.64,0.352,0.338,0,0,0,0,0.217,0.0159 +1,0.653,0.474,0.377,0,0,0,0,0,0.106 +1,0.64,0.664,0.461,0,0,0,0,0,0.127 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.351 +1,0.529,0.318,0.386,0,0,0,0,0,0.231 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0.0848 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.17 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0302,0.135,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.231 +1,0.538,0.16,0.381,0,0,0,0,0.233,0.312 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.0905 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.0848 +0.667,0.546,0.191,0.24,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0,0,0,0 +0.333,0.554,0.129,0.14,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.127 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.339 +1,0.588,0.316,0.233,0,0,0,0,0.6,0.0424 +1,0.614,0.327,0.242,0,0,0,0,0.1,0.424 +1,0.623,0.384,0.268,0,0,0,0,0,0.0848 +1,0.614,0.503,0.324,0,0,0,0,0,0.0424 +1,0.597,0.59,0.41,0,0,0,0,0,0.127 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0.17 +1,0.503,0.161,0.183,0.456,0.217,0,0,0,0 +1,0.562,0.0181,0.0495,0.384,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0.1,0 +1,0.554,0.0655,0.16,0,0,0,0,0.133,0.0848 +0.667,0.546,0.148,0.258,0,0,0,0,0.6,0.0424 +0.333,0.554,0.0964,0.15,0,0,0,0,0.1,0.148 +0.333,0.554,0.105,0.145,0,0,0,0,0.467,0.281 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.127 +0.333,0.554,0.129,0.14,0,0,0,0,0.1,0.0424 +0.667,0.546,0.274,0.23,0,0,0,0,0.6,0 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.127 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.0424 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.212 +1,0.653,0.567,0.377,0,0,0,0,0,0.0424 +0.667,0.614,0.503,0.324,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0.466 +1,0.563,0.808,0.72,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.102 +1,0.537,0.0655,0.274,0,0,0,0,0,0.372 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.0424 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.0424 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0424 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.0848 +0.667,0.546,0.12,0.232,0,0,0,0,0.233,0.0424 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.111 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0.0424 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.254 +0.333,0.575,0.106,0.141,0,0,0,0,0.0167,0.127 +0.667,0.614,0.24,0.242,0,0,0,0,0.217,0.297 +1,0.653,0.474,0.377,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0.17 +1,0.503,0.141,0.183,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.495,0.0218,0.0504,0,0,0,0,0,0.343 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.401 +1,0.537,0.0324,0.135,0,0,0,0,0,0.385 +1,0.537,0.0655,0.274,0,0,0,0,0.467,0.155 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0.142 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.0848 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.127 +0.667,0.546,0.114,0.24,0,0,0,0,0,0 +0.667,0.546,0.12,0.232,0,0,0,0,0.0167,0.152 +0.667,0.546,0.135,0.23,0,0,0,0,0.217,0.152 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.251 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.545 +1,0.602,0.287,0.324,0,0,0,0,0,0.127 +1,0.64,0.352,0.338,0,0,0,0,0,0.0424 +1,0.653,0.474,0.377,0,0,0,0,0.233,0 +1,0.64,0.664,0.461,0,0,0,0,0,0.0594 +1,0.615,0.82,0.59,0,0,0,0,0,0.17 +1,0.563,0.523,0.496,0,0,0,0,0,0.0743 +1,0.529,0.318,0.386,0,0,0,0,0,0.283 +1,0.503,0.141,0.183,0,0,0,0,0,0.202 +1,0.495,0.061,0.099,0,0,0,0,0,0.0813 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.139 +1,0.537,0.0324,0.135,0,0,0,0,0,0.53 +0.667,0.562,0.0159,0.0495,0,0,0.051,0.0167,0,0.0746 +0.667,0.554,0.0475,0.16,0,0,0.777,0.5,0,0.0424 +0.667,0.554,0.0542,0.154,0,0,0.469,0,0,0.127 +0.667,0.546,0.103,0.25,0,0,0.273,0,0,0.17 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.127 +0.667,0.546,0.12,0.232,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.0424 +0.667,0.546,0.142,0.23,0,0,0.2,0.517,0,0.0848 +0.667,0.563,0.159,0.23,0,0,0,0,0.0167,0.0424 +0.667,0.588,0.196,0.233,0,0,0,0,0.217,0.0848 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0848 +1,0.653,0.474,0.377,0,0,0,0,0.233,0.254 +1,0.64,0.664,0.461,0,0,0,0,0,0.263 +1,0.615,0.82,0.59,0,0,0,0,0,0.164 +1,0.563,0.523,0.496,0,0,0,0,0,0.17 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0407,0.162,0,0,0.2,0.517,0,0.0848 +0.667,0.546,0.079,0.27,0,0,0.3,0,0,0.127 +0.667,0.546,0.0926,0.258,0,0,0.582,0,0,0.212 +0.667,0.546,0.103,0.25,0,0,0.737,0,0,0.339 +0.333,0.554,0.0648,0.145,0,0,0,0,0.233,0.0848 +0.667,0.554,0.0678,0.141,0,0,0,0,0,0.0424 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.103 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.237 +0.667,0.588,0.196,0.233,0.296,0.45,0,0,0,0.478 +1,0.64,0.352,0.338,0.732,0,0.402,0.517,0,0.117 +1,0.653,0.474,0.377,0.765,0,0.377,0,0,0.618 +1,0.64,0.664,0.461,0,0,0.502,0,0,0.0591 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0.401 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.581 +1,0.528,0.0189,0.0499,0,0,0,0,0,0.313 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.0424 +0.667,0.546,0.0926,0.258,0,0,0.0488,0.0167,0,0.234 +0.667,0.546,0.103,0.25,0,0,0.554,0.5,0,0.0848 +0.667,0.546,0.114,0.24,0,0,0.328,0,0,0.0424 +0.667,0.546,0.12,0.232,0,0,0.496,0,0,0.0424 +0.667,0.546,0.135,0.23,0,0,0.254,0,0,0.0424 +0.667,0.546,0.142,0.23,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.0848 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0424 +0.667,0.614,0.24,0.242,0,0,0,0,0.517,0.0424 +0.667,0.623,0.321,0.268,0,0,0,0,0.183,0 +0.667,0.614,0.448,0.324,0,0,0,0,0.0167,0 +0.667,0.597,0.552,0.41,0,0,0,0,0.217,0.0424 +0.667,0.563,0.523,0.496,0,0,0.218,0.267,0,0 +1,0.529,0.318,0.386,0,0,0.449,0.517,0,0 +1,0.503,0.141,0.183,0,0,0,0,0,0.189 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.537,0.0302,0.135,0,0,0,0,0,0.243 +1,0.549,0.0444,0.162,0,0,0,0,0,0.348 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0.322 +1,0.546,0.148,0.258,0,0,0,0,0,0.28 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.412 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.113 +0.667,0.554,0.111,0.141,0,0,0,0,0,0.15 +0.667,0.554,0.129,0.14,0,0,0,0,0,0 +0.667,0.554,0.146,0.14,0,0,0,0,0,0.17 +1,0.563,0.301,0.23,0,0,0,0,0,0.0848 +1,0.588,0.316,0.233,0,0,0,0,0.1,0.0848 +1,0.64,0.481,0.338,0,0,0,0,0.133,0.254 +1,0.653,0.567,0.377,0,0,0,0,0,0.0848 +1,0.64,0.745,0.461,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0.207 +1,0.532,0.0896,0.116,0,0,0,0,0,0.115 +1,0.495,0.0723,0.099,0,0,0,0,0,0.127 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0226,0.0763,0,0,0,0,0,0.0848 +1,0.537,0.0302,0.135,0,0,0,0,0,0.127 +1,0.549,0.0444,0.162,0,0,0,0,0,0.17 +1,0.554,0.0655,0.16,0,0,0,0,0.233,0 +1,0.546,0.148,0.258,0,0,0,0,0.35,0.332 +1,0.538,0.253,0.351,0,0,0,0,0.35,0.503 +1,0.538,0.278,0.335,0,0,0,0,0,0.591 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.211 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.499 +0.333,0.554,0.146,0.14,0.543,0.683,0,0,0,0.101 +0.333,0.562,0.16,0.14,0.887,0,0,0,0,0.0848 +0.333,0.575,0.167,0.141,0.199,0,0,0,0,0.0848 +0.333,0.588,0.172,0.146,0,0,0,0,0,0.0848 +0.667,0.623,0.384,0.268,0,0,0,0,0,0.0424 +1,0.64,0.745,0.461,0,0,0,0,0,0.0848 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0.467,0.127 +1,0.512,0.51,0.554,0,0,0,0,0,0.264 +1,0.503,0.161,0.183,0,0,0,0,0,0.102 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.246 +1,0.528,0.0241,0.0578,0,0,0,0,0,0.339 +1,0.528,0.0174,0.0495,0,0,0,0,0,0.143 +1,0.528,0.0158,0.0495,0,0,0,0,0,0.342 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0.145 +1,0.549,0.0407,0.162,0,0,0,0,0,0 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0 +0.667,0.546,0.103,0.25,0,0,0.205,0.517,0,0.0424 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.0424 +0.667,0.546,0.12,0.232,0,0,0,0,0.233,0.127 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.127 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.17 +0.667,0.563,0.159,0.23,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.127 +1,0.64,0.352,0.338,0,0,0,0,0,0.246 +1,0.653,0.474,0.377,0,0,0,0,0,0.128 +1,0.614,0.448,0.324,0,0,0,0,0,0.226 +1,0.615,0.82,0.59,0,0,0.355,0.767,0,0 +1,0.563,0.523,0.496,0,0,0.253,0.0167,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0.0177 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0886 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.15 +0.667,0.554,0.0595,0.15,0,0,0,0,0,0.3 +0.667,0.554,0.0648,0.145,0,0,0.0821,0.267,0.467,0.0424 +0.667,0.546,0.12,0.232,0,0,0.464,0.517,0,0.17 +0.667,0.546,0.135,0.23,0,0,0.476,0,0,0.0424 +0.333,0.554,0.0791,0.14,0,0,0.505,0,0,0.127 +0.667,0.562,0.0873,0.14,0,0,0.367,0,0.0167,0.254 +0.333,0.575,0.106,0.141,0,0,0,0,1,0.0424 +0.667,0.614,0.24,0.242,0,0,0.0672,0.0167,0.15,0.212 +1,0.653,0.474,0.377,0.602,0.217,0.678,1,0,0.17 +1,0.64,0.664,0.461,0.505,0.217,0.253,0.55,0,0.0424 +1,0.615,0.82,0.59,0.216,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.512,0.0489,0.22,0,0,0,0,0.467,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.502 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0848 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.254 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.0424 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.254 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.551 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.337 +1,0.623,0.321,0.268,0,0,0,0,0,0.47 +1,0.614,0.448,0.324,0,0,0,0,0,0.296 +1,0.597,0.552,0.41,0,0,0,0,0,0.0848 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0183 +1,0.549,0.0407,0.162,0,0,0,0,0,0.35 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.297 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0.127 +0.667,0.554,0.0595,0.15,0,0,0,0,0,0.0424 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.139 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.336 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.127 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.127 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.0848 +1,0.602,0.287,0.324,0,0,0,0,0.467,0.297 +1,0.64,0.352,0.338,0,0,0,0,0,0 +1,0.653,0.474,0.377,0,0,0,0,0,0.254 +1,0.64,0.664,0.461,0,0,0,0,0,0.0424 +1,0.615,0.82,0.59,0,0,0,0,0,0.297 +1,0.563,0.523,0.496,0,0,0,0,0,0.148 +1,0.545,0.167,0.218,0,0,0.129,0.267,0,0.0424 +1,0.532,0.0783,0.116,0,0,0.373,1,0,0 +1,0.495,0.061,0.099,0,0,0.168,0.0333,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.319 +1,0.537,0.0324,0.135,0,0,0,0,0,0.466 +1,0.549,0.0407,0.162,0,0,0,0,0,0.303 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.152 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.191 +0.667,0.546,0.103,0.25,0.648,0.217,0.123,0.267,0,0 +0.667,0.546,0.114,0.24,0,0,0.696,0.517,0,0.0848 +0.667,0.546,0.12,0.232,0,0,0.507,0,0,0.0424 +0.667,0.546,0.135,0.23,0,0,0.816,0,0,0.17 +1,0.546,0.142,0.23,0,0,0.414,0,0,0 +1,0.563,0.159,0.23,0,0,1,0,0,0.0848 +1,0.588,0.196,0.233,0,0,0.353,0,0,0.0848 +1,0.64,0.352,0.338,0,0,0.516,0,0.233,0.254 +1,0.653,0.474,0.377,0,0,0,0,0,0.0424 +1,0.64,0.664,0.461,0,0,0,0,0,0.0424 +1,0.597,0.552,0.41,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.0972 +1,0.546,0.113,0.27,0,0,0,0,0.467,0.221 +1,0.546,0.148,0.258,0,0,0,0,0,0.0424 +0.667,0.546,0.175,0.25,0,0,0,0,0,0.0536 +0.333,0.554,0.105,0.145,0,0,0,0,0,0.127 +0.333,0.554,0.111,0.141,0,0,0,0,0,0.212 +0.667,0.546,0.241,0.23,0,0,0,0,0,0 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.0424 +0.333,0.562,0.16,0.14,0,0,0,0,0,0.212 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.297 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.466 +0.667,0.623,0.384,0.268,0,0,0,0,0.233,0.441 +1,0.64,0.745,0.461,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0.292 +1,0.563,0.808,0.72,0,0,0,0,0,0.0424 +1,0.545,0.182,0.218,0,0,0,0,0,0.127 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.095 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.528,0.0204,0.0499,0,0,0,0,0,0.0424 +0.667,0.528,0.0226,0.0763,0,0,0,0,0,0.339 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.1,0.0792 +0.667,0.546,0.113,0.27,0,0,0,0,0.367,0.313 +1,0.538,0.212,0.362,0,0,0,0,0,0.204 +1,0.538,0.253,0.351,0,0,0,0,0,0.29 +0.667,0.546,0.191,0.24,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0.127 +0.667,0.546,0.241,0.23,0,0,0,0,0,0.17 +1,0.538,0.402,0.32,0,0,0,0,0,0.127 +1,0.563,0.443,0.321,0,0,0,0,0.233,0.424 +1,0.602,0.465,0.324,0,0,0,0,0,0.17 +1,0.64,0.481,0.338,0,0,0,0,0,0.127 +1,0.653,0.567,0.377,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0.254 +1,0.597,0.59,0.41,0,0,0.0198,0.1,0,0 +1,0.563,0.545,0.496,0.274,0.217,0.396,0.683,0,0 +1,0.529,0.346,0.386,0.415,0,0,0,0,0 +1,0.532,0.0896,0.116,0.344,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0606 +1,0.537,0.0324,0.135,0,0,0,0,0,0.307 +0.667,0.549,0.0407,0.162,0,0,0,0,0.233,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0 +1,0.538,0.131,0.362,0,0,0,0,0,0 +1,0.538,0.147,0.351,0,0,0,0,0,0.0176 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.408 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.358 +0.667,0.546,0.135,0.23,0.56,0.217,0,0,0,0.297 +0.333,0.554,0.0791,0.14,0.119,0,0,0,0,0 +0.667,0.563,0.159,0.23,0,0,0,0,0,0 +1,0.602,0.287,0.324,0.346,0.217,0,0,0,0.0424 +0.667,0.614,0.24,0.242,0.54,0,0,0,0,0.0848 +0.667,0.623,0.321,0.268,0.148,0,0,0,0.767,0.0848 +1,0.64,0.664,0.461,0,0,0,0,0.167,0 +1,0.615,0.82,0.59,0.551,0.683,0,0,0,0.0424 +1,0.563,0.777,0.72,0.699,0,0,0,0,0.0424 +1,0.529,0.318,0.386,0.322,0,0,0,0,0.0848 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.206 +1,0.537,0.0324,0.135,0,0,0,0,0.467,0.323 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.119 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.22 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.34 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0848 +0.333,0.554,0.0678,0.141,0,0,0,0,0.0167,0.0848 +0.667,0.554,0.0753,0.14,0,0,0,0,0.217,0.127 +0.667,0.554,0.0791,0.14,0,0,0,0,0,0.297 +0.667,0.562,0.0873,0.14,0,0,0,0,0,0.17 +0.667,0.575,0.106,0.141,0,0,0,0,0,0.17 +0.667,0.588,0.128,0.146,0,0,0,0,0,0.0848 +1,0.653,0.474,0.377,0,0,0,0,0,0.0424 +1,0.614,0.448,0.324,0.265,0.217,0,0,0,0.0424 +1,0.597,0.552,0.41,0.629,0,0,0,0,0.0424 +1,0.563,0.523,0.496,0,0,0,0,0,0.0424 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0595 +1,0.512,0.0489,0.22,0,0,0,0,0,0.435 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.192 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.438 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.127 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0.0424 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.0424 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.0848 +0.667,0.546,0.135,0.23,0,0,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.429,0.767,0.7,0.0848 +0.667,0.563,0.159,0.23,0,0,0.29,0.0167,0,0.297 +0.667,0.588,0.196,0.233,0,0,0.436,0,0,0.254 +1,0.64,0.352,0.338,0,0,0.146,0,0.233,0.254 +1,0.653,0.474,0.377,0.468,0.217,0,0,0.0167,0.254 +1,0.64,0.664,0.461,0.403,0,0,0,0.217,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0174 +1,0.537,0.0324,0.135,0,0,0,0,0.233,0.372 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +0.667,0.554,0.0475,0.16,0,0,0,0,0.45,0 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.0424 +0.667,0.546,0.103,0.25,0,0,0.0127,0.0167,0,0.204 +0.667,0.546,0.114,0.24,0,0,0.34,0.767,0,0.0848 +0.667,0.546,0.12,0.232,0,0,0,0,0.467,0.0424 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.339 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.0848 +1,0.563,0.23,0.321,0,0,0.0863,0.517,0,0 +0.667,0.588,0.196,0.233,0,0,0.355,0,0.0167,0.0424 +0.667,0.614,0.24,0.242,0,0,0,0,0.217,0.127 +1,0.653,0.474,0.377,0.0778,0.0167,0,0,0,0 +1,0.64,0.664,0.461,0.704,0.433,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0.0424 +1,0.529,0.318,0.386,0,0,0,0,0,0.0424 +1,0.532,0.0783,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0189,0.0499,0,0,0,0,0.517,0.0424 +1,0.528,0.0241,0.0763,0,0,0,0,1,0.0848 +1,0.537,0.0324,0.135,0,0,0,0,1,0.0424 +0.667,0.549,0.0407,0.162,0.0814,0.0167,0,0,1,0.271 +0.667,0.546,0.079,0.27,0.762,0.2,0,0,0,0.195 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.192 +0.667,0.546,0.103,0.25,0,0,0,0,0,0.0424 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.127 +0.667,0.546,0.12,0.232,0,0,0,0,0.467,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0.387 +0,0.562,0.0159,0.0495,0,0,0,0,0.267,0.171 +0.333,0.562,0.0873,0.14,0,0,0,0,0.2,0.297 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0848 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.0848 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.588,0.232,0.187,0,0,0,0,0.7,0.253 +0.333,0.579,0.284,0.23,0,0,0,0,0,0.362 +0.667,0.563,0.523,0.496,0,0,0,0,0,0 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.532,0.0783,0.116,0,0,0,0,0,0 +0.667,0.528,0.0452,0.0743,0,0,0,0,0,0.0424 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0444,0.162,0,0,0,0,0,0.373 +1,0.554,0.0655,0.16,0,0,0,0,0,0.254 +1,0.554,0.0828,0.154,0,0,0,0,0,0 +1,0.554,0.0964,0.15,0,0,0,0,0,0.0424 +1,0.546,0.191,0.24,0,0,0,0,0,0 +0.333,0.554,0.111,0.141,0,0,0.0821,0.517,0,0.254 +0.333,0.554,0.129,0.14,0,0,0,0,0,0.0424 +0.667,0.554,0.146,0.14,0,0,0,0,0,0.0424 +0.667,0.562,0.16,0.14,0,0,0,0,0,0.0848 +0.667,0.588,0.316,0.233,0,0,0,0,0,0.0848 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.431 +0.667,0.623,0.384,0.268,0,0,0,0,0,0.314 +0.667,0.614,0.503,0.324,0,0,0,0,0,0.42 +1,0.615,0.876,0.59,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0 +1,0.545,0.182,0.218,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0956 +1,0.546,0.113,0.27,0,0,0,0,0,0.384 +0.667,0.546,0.148,0.258,0,0,0,0,0,0.398 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0.0424 +0.333,0.554,0.105,0.145,0,0,0.2,0.35,0,0.297 +0.333,0.554,0.111,0.141,0,0,0,0.433,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0.335,0.217,0,0,0,0 +0.333,0.562,0.16,0.14,0.549,0,0,0,0.1,0.127 +1,0.602,0.465,0.324,0,0,0,0,0.133,0.127 +1,0.64,0.481,0.338,0,0,0,0,0,0.254 +1,0.653,0.567,0.377,0,0,0,0,0.6,0 +1,0.64,0.745,0.461,0,0,0,0,0.1,0.17 +1,0.615,0.876,0.59,0,0,0,0,0,0.0424 +1,0.563,0.808,0.72,0,0,0,0,0,0.0848 +1,0.512,0.51,0.554,0,0,0,0,0,0.105 +1,0.503,0.161,0.183,0,0,0,0,0,0.223 +1,0.528,0.0384,0.0743,0,0,0,0,0,0.103 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0.467,0 +1,0.537,0.0324,0.135,0,0,0,0,0,0.103 +1,0.525,0.0903,0.386,0.0778,0.0167,0,0,0.517,0.387 +0.333,0.554,0.0475,0.16,0.767,0.2,0,0,0.183,0.342 +0.333,0.554,0.0542,0.154,0.25,0,0,0,0,0.274 +0.667,0.546,0.103,0.25,0,0,0,0,0,0 +0.667,0.546,0.114,0.24,0,0,0,0,0,0.0424 +0.667,0.546,0.12,0.232,0,0,0,0,0.0167,0 +0.667,0.546,0.135,0.23,0,0,0,0,0.217,0.127 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.212 +0.667,0.563,0.159,0.23,0,0,0,0,0,0.127 +1,0.602,0.287,0.324,0,0,0,0,0,0.17 +1,0.64,0.352,0.338,0,0,0,0,0,0.0424 +0.667,0.623,0.321,0.268,0,0,0,0,0,0 +0.333,0.588,0.232,0.187,0,0,0,0,0,0.0424 +0.667,0.597,0.552,0.41,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0 +0.667,0.545,0.167,0.218,0,0,0,0,0,0 +0.667,0.532,0.0783,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.528,0.0174,0.0495,0,0,0,0,0,0.174 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.244 +1,0.525,0.0903,0.386,0,0,0,0,0,0.132 +0.667,0.546,0.079,0.27,0,0,0,0,0,0.451 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0.38 +0.667,0.546,0.103,0.25,0,0,0,0,0,0 +0.667,0.546,0.114,0.24,0.615,0.217,0,0,0,0.17 +0.667,0.546,0.12,0.232,0.554,0,0,0,0,0.0424 +0.667,0.546,0.135,0.23,0.141,0,0.041,0.0167,0.233,0 +0.667,0.546,0.142,0.23,0,0,0.392,0.767,0,0.0848 +0.667,0.563,0.159,0.23,0,0,0.521,0,0.7,0 +0.667,0.588,0.196,0.233,0,0,0.235,0,0,0.127 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0848 +1,0.653,0.474,0.377,0.0878,0.0167,0,0,0,0.212 +1,0.64,0.664,0.461,0.54,0.2,0,0,0,0.0848 +1,0.615,0.82,0.59,0,0,0,0,0,0.0424 +1,0.563,0.523,0.496,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.0424 +1,0.537,0.0316,0.136,0,0,0,0,0,0.14 +1,0.537,0.0633,0.277,0,0,0,0,0,0.415 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.424 +0.667,0.546,0.0894,0.263,0,0,0,0,0.517,0.387 +0.667,0.546,0.0996,0.256,0,0,0,0,0.2,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.0424 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.0848 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.0424 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0424 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.186 +1,0.602,0.276,0.334,0,0,0,0,0.233,0.345 +0.667,0.614,0.232,0.252,0,0,0,0,0,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.0848 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0.0424 +1,0.532,0.0759,0.116,0,0,0,0,0,0.232 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.134 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.331 +0.667,0.537,0.0316,0.136,0.357,0.517,0,0,0,0.212 +0.667,0.549,0.0396,0.163,0.661,0.167,0,0,0,0.0848 +0,0.562,0.0159,0.0495,0.45,0,0,0,0,0.0944 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.17 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.127 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0.569,0.217,0,0,0.467,0.0424 +0.667,0.546,0.13,0.235,0.708,0,0,0,0,0.0848 +1,0.546,0.137,0.235,0.54,0,0,0,0,0.127 +1,0.563,0.153,0.236,0,0,0,0,0,0.0848 +1,0.588,0.19,0.239,0,0,0,0,0.233,0.254 +0.667,0.588,0.124,0.151,0,0,0,0,0,0.17 +0.667,0.623,0.31,0.289,0,0,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.212 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0.0165 +1,0.529,0.307,0.397,0,0,0,0,0,0.133 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0699 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.0643 +1,0.537,0.0633,0.277,0,0,0,0,0,0.274 +1,0.546,0.0764,0.274,0,0,0,0,0,0.298 +1,0.546,0.0894,0.263,0,0,0,0,0,0.152 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.181 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.167 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.0424 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.234 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.0424 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.17 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.0848 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.212 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.14 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.685 +1,0.615,0.79,0.668,0,0,0,0,0,0.382 +1,0.563,0.749,0.788,0,0,0,0,0,0.192 +1,0.529,0.307,0.397,0,0,0,0,0,0.171 +1,0.503,0.136,0.183,0,0,0,0,0,0.254 +1,0.528,0.044,0.0743,0,0,0,0,0,0.0424 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0.233,0.127 +1,0.512,0.0409,0.222,0,0,0,0,0,0.243 +0.667,0.549,0.0433,0.163,0,0,0,0,0,0.0424 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0.0424 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.0848 +0.333,0.554,0.108,0.143,0,0,0.172,0.517,0,0.212 +0.333,0.554,0.125,0.142,0,0,0.591,0.233,0,0.127 +0.333,0.554,0.141,0.142,0,0,0.537,0,0,0.144 +0.667,0.563,0.29,0.236,0,0,0.524,0,0,0.344 +0.333,0.575,0.162,0.144,0,0,0.395,0,0,0.217 +0.333,0.588,0.167,0.151,0,0,0,0,0,0 +1,0.653,0.546,0.408,0,0,0,0,0.267,0 +1,0.64,0.718,0.518,0,0,0,0,0.2,0.522 +1,0.615,0.844,0.668,0,0,0,0,0,0.278 +1,0.563,0.525,0.542,0,0,0,0,0,0.0545 +1,0.545,0.176,0.223,0,0,0,0,0,0.0873 +1,0.532,0.0868,0.116,0,0,0,0,0,0.214 +1,0.528,0.044,0.0743,0,0,0,0,0,0.281 +1,0.528,0.028,0.0578,0,0,0,0,0,0.203 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0201,0.05,0,0,0,0,0,0.0848 +1,0.528,0.0222,0.0768,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0,0.0424 +1,0.537,0.0684,0.277,0,0,0,0,0,0.0424 +1,0.546,0.109,0.274,0,0,0,0,0.517,0.0848 +1,0.546,0.142,0.263,0,0,0,0,0.683,0.18 +1,0.538,0.244,0.359,0.474,0.217,0,0,0,0.758 +0.667,0.546,0.184,0.245,0.34,0,0,0,0,0.249 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.467 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.386 +0.667,0.546,0.264,0.235,0,0,0,0,0,0.127 +0.333,0.562,0.154,0.143,0.554,0.45,0,0,0,0.0424 +0.667,0.588,0.305,0.239,0,0,0,0,0.233,0.212 +1,0.64,0.464,0.353,0,0,0,0,0,0.0848 +1,0.653,0.546,0.408,0,0,0,0,0.0167,0 +1,0.614,0.485,0.362,0,0,0,0,0.217,0.212 +1,0.597,0.569,0.462,0,0,0,0,0,0.0848 +1,0.563,0.525,0.542,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0848 +1,0.528,0.0171,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0.051,0.0167,0,0.125 +1,0.546,0.0764,0.274,0,0,0.487,0.733,0,0.184 +1,0.546,0.0894,0.263,0,0,0.46,0,0,0.315 +0.667,0.546,0.0996,0.256,0,0,0.0821,0,0,0.186 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.127 +1,0.563,0.222,0.329,0,0,0,0,0,0.0424 +1,0.602,0.276,0.334,0,0,0,0,0.0167,0 +0.667,0.614,0.232,0.252,0,0,0,0,0.217,0.212 +0.667,0.623,0.31,0.289,0,0,0,0,0.233,0.127 +1,0.64,0.64,0.518,0,0,0,0,0,0.0424 +1,0.615,0.79,0.668,0,0,0,0,0,0.206 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.155 +1,0.512,0.0474,0.222,0,0,0,0,0,0.27 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.364 +1,0.538,0.107,0.387,0,0,0,0,0,0.441 +1,0.538,0.126,0.37,0,0,0,0,0,0.457 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.259 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.249 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0848 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.254 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0424 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0.267,0.212 +0.667,0.614,0.232,0.252,0,0,0,0,0.2,0.0848 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0424 +0.667,0.614,0.432,0.362,0,0,0,0,0,0 +0.667,0.579,0.274,0.256,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0.0816 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.178 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.252 +1,0.537,0.0633,0.277,0,0,0,0,0,0.193 +1,0.546,0.0764,0.274,0,0,0,0,0,0.472 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.59 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.0424 +0,0.562,0.0159,0.0495,0,0,0,0,0.0167,0.0424 +0.333,0.554,0.073,0.142,0,0,0,0,0.217,0.0848 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0848 +0.667,0.563,0.153,0.236,0,0,0,0,0.233,0.212 +0.667,0.588,0.19,0.239,0,0,0.102,0.517,0,0.0848 +0.667,0.614,0.232,0.252,0,0,0,0.233,0,0.0424 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0424 +1,0.64,0.64,0.518,0,0,0,0,0,0.31 +1,0.615,0.79,0.668,0,0,0,0,0,0.0424 +1,0.563,0.504,0.542,0,0,0,0,0,0.196 +1,0.529,0.307,0.397,0,0,0,0,0,0.294 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0.233,0 +1,0.495,0.0314,0.104,0,0,0,0,0,0.462 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.209 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.815 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.164 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.317 +0.333,0.554,0.0577,0.153,0.349,0.45,0,0,0,0.155 +0.333,0.554,0.0628,0.147,0.0878,0,0,0,0.233,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.337 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.122 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.127 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.127 +1,0.64,0.339,0.353,0,0,0,0,0,0.162 +1,0.653,0.457,0.408,0,0,0,0,0.517,0.274 +1,0.64,0.64,0.518,0,0,0,0,0.2,0.227 +1,0.615,0.79,0.668,0,0,0,0,0,0.127 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0.0597 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.387 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.494 +0.333,0.554,0.0577,0.153,0.511,0.217,0,0,0.0167,0.184 +0.667,0.554,0.0628,0.147,0.262,0,0,0,0.7,0 +0.667,0.554,0.0657,0.143,0,0,0.00425,0.0167,0,0 +1,0.546,0.13,0.235,0,0,0.426,0.733,0,0 +1,0.538,0.198,0.327,0,0,0.599,0,0,0.127 +1,0.563,0.222,0.329,0,0,0.454,0,0,0.0424 +1,0.602,0.276,0.334,0,0,0.517,0,0.0167,0.0848 +1,0.64,0.339,0.353,0,0,0.327,0,1,0.0848 +1,0.653,0.457,0.408,0.428,0.217,0.527,0,1,0.127 +1,0.64,0.64,0.518,0.252,0.0167,0.592,0,1,0.0848 +1,0.597,0.532,0.462,0.545,0.2,0.4,0,0.35,0 +1,0.563,0.504,0.542,0.815,0,0.428,0,0,0 +1,0.529,0.307,0.397,0.238,0,0.159,0,0,0.0883 +1,0.532,0.0759,0.116,0,0,0,0,0,0.104 +1,0.528,0.044,0.0743,0,0,0.27,0.517,0,0 +1,0.528,0.028,0.0578,0,0,0.195,0.233,0,0.0634 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0786 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0.517,0.127 +1,0.549,0.0433,0.163,0,0,0,0,0.2,0.478 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.0803,0.156,0,0,0,0,0.467,0.0424 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0 +0.333,0.554,0.101,0.147,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.17 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0848 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.127 +0.667,0.563,0.29,0.236,0,0,0,0,0,0.0424 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.236 +1,0.64,0.464,0.353,0,0,0,0,0,0.0424 +1,0.653,0.546,0.408,0,0,0,0,0.233,0.17 +1,0.64,0.718,0.518,0,0,0,0,0.233,0.297 +1,0.597,0.569,0.462,0,0,0,0,0,0.0848 +1,0.563,0.525,0.542,0,0,0,0,0,0.285 +1,0.529,0.334,0.397,0,0,0,0,0,0.239 +1,0.532,0.0868,0.116,0,0,0,0,0,0.201 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.187 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.537,0.0295,0.136,0,0,0,0,0,0.127 +1,0.537,0.0684,0.277,0,0,0,0,0,0.224 +0.667,0.546,0.109,0.274,0,0,0,0,0.467,0.322 +0.667,0.546,0.142,0.263,0,0,0,0,0,0.479 +0.667,0.546,0.169,0.256,0,0,0.281,0.517,0,0.267 +0.667,0.546,0.184,0.245,0,0,0.459,0.233,0.0167,0.113 +0.333,0.554,0.108,0.143,0,0,0,0,0.217,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0424 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.0424 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.127 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.161 +1,0.64,0.464,0.353,0,0,0,0,0,0.559 +1,0.653,0.546,0.408,0.426,0.217,0,0,0.0167,0.0529 +1,0.64,0.718,0.518,0.774,0,0,0,0.217,0 +1,0.615,0.844,0.668,0.415,0,0,0,0,0.0424 +1,0.563,0.525,0.542,0,0,0,0,0,0 +1,0.529,0.334,0.397,0.0869,0.0167,0,0,0,0 +1,0.503,0.155,0.183,0.676,0.433,0,0,0,0.199 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.115 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0.127 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.0848 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.488 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.0424 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0424 +0.667,0.546,0.13,0.235,0.289,0.217,0,0,0,0.0848 +0.667,0.546,0.137,0.235,0.611,0,0,0,0,0.0424 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.127 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.509 +0.667,0.614,0.232,0.252,0,0,0,0,0.233,0 +1,0.653,0.457,0.408,0,0,0,0,0,0.254 +1,0.64,0.64,0.518,0,0,0,0,0,0.0848 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0.254 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.3 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.0424 +1,0.512,0.0474,0.222,0,0,0,0,0,0.145 +1,0.525,0.087,0.39,0,0,0,0,0.233,0.444 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.0848 +0.667,0.546,0.11,0.245,0,0,0.334,0.5,0,0 +0.667,0.546,0.116,0.237,0,0,0.45,0,0,0.0424 +0.667,0.546,0.13,0.235,0,0,0.651,0,0,0.0424 +0.667,0.546,0.137,0.235,0,0,0.463,0,0,0.0424 +0.667,0.563,0.153,0.236,0,0,0.703,0,0,0.6 +0.667,0.588,0.19,0.239,0,0,0.711,0,0.467,0.297 +1,0.64,0.339,0.353,0.287,0.217,0.382,0,0,0.0424 +1,0.653,0.457,0.408,0.428,0,0.47,0,0,0 +1,0.64,0.64,0.518,0,0,0.437,0,0,0 +1,0.615,0.79,0.668,0,0,0.344,0,0,0.0424 +1,0.563,0.749,0.788,0,0,0.409,0,0,0 +1,0.529,0.307,0.397,0,0,0.559,0,0,0 +1,0.503,0.136,0.183,0,0,0,0,0,0.192 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0984 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0.467,0.127 +1,0.549,0.0396,0.163,0,0,0,0,0,0 +1,0.546,0.0764,0.274,0,0,0,0,0.233,0.17 +1,0.538,0.126,0.37,0,0,0,0,0,0.17 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.0424 +0.667,0.546,0.116,0.237,0,0,0,0,0.0167,0.0424 +1,0.538,0.187,0.328,0,0,0.215,0.267,0.217,0.212 +1,0.538,0.198,0.327,0,0,0.878,0.483,0,0.17 +1,0.563,0.222,0.329,0,0,0.623,0,0,0.212 +1,0.602,0.276,0.334,0,0,0.617,0,0,0.254 +1,0.64,0.339,0.353,0,0,0.375,0,0,0.127 +1,0.653,0.457,0.408,0,0,0.458,0,0,0.0424 +0.667,0.614,0.432,0.362,0,0,0.226,0,0,0 +0.667,0.597,0.532,0.462,0,0,0.456,0,0,0.0424 +0.667,0.563,0.504,0.542,0,0,0.848,0,0,0 +0.667,0.529,0.307,0.397,0,0,0.596,0,0,0 +0.667,0.532,0.0759,0.116,0,0,0.657,0,0,0 +0.667,0.528,0.0374,0.0743,0,0,0.461,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0.523,0,0,0 +1,0.528,0.0171,0.0495,0,0,0.73,0,0,0.0848 +1,0.528,0.0157,0.0495,0,0,0.466,0,0,0.0424 +1,0.528,0.0186,0.05,0,0,0.217,0,0,0.0424 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.102 +1,0.512,0.0474,0.222,0,0,0,0,0,0.483 +1,0.537,0.0633,0.277,0,0,0,0,0,0 +0.667,0.546,0.0764,0.274,0.54,0.45,0,0,0,0.127 +0.667,0.546,0.0894,0.263,0.253,0,0,0,0,0.0848 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.0424 +0.667,0.546,0.11,0.245,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.0848 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.17 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0,0,0,0,0.233,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0.127 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0.159 +1,0.529,0.307,0.397,0,0,0,0,0,0.14 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0.0167,0.269 +1,0.537,0.0316,0.136,0,0,0,0,0.217,0.215 +1,0.549,0.0396,0.163,0,0,0,0,0,0.297 +1,0.538,0.107,0.387,0,0,0,0,0,0.298 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.178 +1,0.546,0.0996,0.256,0,0,0,0,0.0167,0.328 +1,0.538,0.157,0.343,0,0,0,0,0.7,0.297 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0848 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.382 +0.667,0.546,0.137,0.235,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.254 +1,0.602,0.276,0.334,0,0,0,0,0,0.0848 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.0424 +0.333,0.592,0.163,0.169,0,0,0,0,0,0.0424 +1,0.64,0.64,0.518,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0.0424 +1,0.562,0.26,0.296,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0.453,0.5,0,0 +1,0.532,0.0759,0.116,0,0,0.317,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.554,0.0636,0.162,0,0,0,0,0.0167,0.0424 +0.333,0.554,0.0803,0.156,0,0,0,0,0.45,0 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0.0848 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.0848 +0.333,0.554,0.108,0.143,0,0,0,0,0,0.127 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0424 +0.333,0.554,0.141,0.142,0,0,0,0,0,0.212 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.127 +1,0.602,0.448,0.334,0,0,0,0,0,0.272 +1,0.64,0.464,0.353,0,0,0,0,0,0.441 +1,0.653,0.546,0.408,0,0,0,0,0.233,0 +1,0.64,0.718,0.518,0,0,0,0,0,0.0424 +1,0.615,0.844,0.668,0,0,0,0,0,0.0424 +1,0.563,0.779,0.788,0,0,0,0,0,0 +1,0.512,0.492,0.571,0.501,0.45,0,0,0,0 +1,0.503,0.155,0.183,0.168,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.528,0.0222,0.0768,0,0,0,0,0.467,0 +1,0.537,0.0295,0.136,0,0,0,0,0,0.0424 +1,0.537,0.0684,0.277,0,0,0,0,0,0.0848 +0.667,0.554,0.0636,0.162,0,0,0,0,0,0.0424 +0.333,0.554,0.0803,0.156,0,0,0,0,0,0.17 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0.254 +0.667,0.546,0.184,0.245,0,0,0,0,0,0 +0.333,0.554,0.108,0.143,0,0,0,0,0.233,0.17 +0.667,0.554,0.125,0.142,0,0,0,0,0,0.194 +0.667,0.554,0.141,0.142,0,0,0,0,0,0.309 +0.667,0.563,0.29,0.236,0,0,0.167,0.517,0,0.351 +0.333,0.575,0.162,0.144,0,0,0,0.233,0.467,0.0424 +0.667,0.614,0.315,0.252,0,0,0,0,0,0.116 +0.667,0.623,0.37,0.289,0,0,0,0,0.0167,0.316 +1,0.64,0.718,0.518,0,0,0,0,0.217,0.12 +1,0.615,0.844,0.668,0,0,0,0,0,0.28 +1,0.563,0.525,0.542,0,0,0,0,0,0.1 +1,0.529,0.334,0.397,0,0,0,0,0,0.0586 +1,0.532,0.0868,0.116,0,0,0,0,0,0.369 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.17 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0596 +1,0.537,0.0316,0.136,0,0,0,0,0,0.257 +1,0.537,0.0633,0.277,0,0,0,0,0,0.512 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.144 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.254 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0424 +0.333,0.554,0.073,0.142,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0.0198,0.0167,0,0.17 +0.333,0.562,0.0846,0.143,0,0,0.611,0.733,0,0.103 +0.667,0.588,0.19,0.239,0,0,0.18,0,0,0.269 +0.667,0.614,0.232,0.252,0,0,0.218,0,0,0.471 +0.667,0.623,0.31,0.289,0,0,0.437,0,0,0.437 +1,0.64,0.64,0.518,0.313,0.217,0.645,0,0,0.0424 +1,0.615,0.79,0.668,0.384,0,0,0,0,0.0424 +1,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.537,0.0633,0.277,0,0,0,0,0.217,0.314 +1,0.538,0.107,0.387,0,0,0,0,0,0.642 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.386 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.0424 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.0424 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.287 +0.667,0.546,0.13,0.235,0,0,0,0,0,0.0848 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0848 +1,0.563,0.222,0.329,0,0,0,0,0,0.183 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.223 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.127 +0.333,0.592,0.163,0.169,0,0,0,0,0,0.101 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.395 +0.667,0.597,0.532,0.462,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0 +0.667,0.529,0.307,0.397,0.512,0.217,0,0,0,0.0597 +0.667,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0.0424 +1,0.528,0.0236,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.528,0.0236,0.0768,0,0,0,0,0,0 +1,0.487,0.0631,0.308,0,0,0,0,0,0.675 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.405 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0.0848 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0.0168 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.306 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0 +0.667,0.546,0.116,0.237,0.366,0.217,0,0,0,0.0424 +0.667,0.546,0.13,0.235,0.295,0,0.0573,0.0167,0,0.0848 +0.667,0.546,0.137,0.235,0,0,0.507,0.483,0,0.0424 +0.667,0.563,0.153,0.236,0,0,0.195,0,0,0.0848 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.636 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0,0,0,0,0.467,0.0848 +0.667,0.614,0.432,0.362,0.701,0.217,0,0,0,0 +1,0.615,0.79,0.668,0.104,0,0,0,0,0.328 +1,0.563,0.504,0.542,0.276,0.217,0,0,0,0.402 +1,0.562,0.0159,0.0495,0.256,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.495,0.0154,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0848 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.0158 +1,0.512,0.0474,0.222,0,0,0.0651,0.0167,0,0.542 +0.667,0.549,0.0396,0.163,0,0,0.405,0.483,0,0.0424 +0.667,0.554,0.0461,0.162,0,0,0.717,0,0,0.0424 +0.667,0.546,0.0894,0.263,0,0,0.536,0,0,0.14 +0.667,0.546,0.0996,0.256,0,0,0.66,0,0,0.234 +0.667,0.546,0.11,0.245,0,0,0.391,0,0,0.143 +0.333,0.554,0.0657,0.143,0,0,0.306,0,0,0.228 +0.667,0.554,0.073,0.142,0,0,0,0,0,0.254 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.0848 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.382 +0.333,0.588,0.124,0.151,0.399,0.217,0,0,0,0.0424 +0.667,0.623,0.31,0.289,0.668,0,0,0,0,0 +0.333,0.588,0.224,0.206,0.0915,0,0,0,0,0.0424 +0.333,0.579,0.274,0.256,0,0,0,0,0,0.212 +0.667,0.563,0.504,0.542,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.549,0.0396,0.163,0,0,0.398,0.517,0.0167,0 +0.667,0.546,0.0764,0.274,0,0,0.684,0.233,0.7,0.212 +0.667,0.546,0.0894,0.263,0,0,0.444,0,0,0.254 +0.667,0.546,0.0996,0.256,0,0,0.429,0,0,0.0848 +0.667,0.546,0.11,0.245,0,0,0.449,0,0,0.0598 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.448 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.135 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.17 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.0848 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.0424 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.0848 +0.667,0.623,0.31,0.289,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.0732,0.0167,0,0,0,0.0848 +1,0.615,0.79,0.668,0.457,0.2,0,0,0,0.0848 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0.018 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0721 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0171 +1,0.537,0.0684,0.277,0,0,0,0,0.233,0.382 +1,0.546,0.109,0.274,0,0,0,0,0,0.164 +0.667,0.546,0.142,0.263,0,0,0,0,0,0.127 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.127 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.554,0.141,0.142,0,0,0,0,0,0.0424 +0.667,0.563,0.29,0.236,0,0,0,0,0.233,0.424 +0.667,0.588,0.305,0.239,0,0,0,0,0,0.17 +0.667,0.614,0.315,0.252,0,0,0.467,0.75,0,0.17 +1,0.653,0.546,0.408,0,0,0.388,0,0,0.0848 +1,0.64,0.718,0.518,0,0,0.147,0,0,0 +1,0.615,0.844,0.668,0.463,0.217,0,0,0,0 +1,0.563,0.779,0.788,0.522,0,0,0,0,0.0816 +1,0.529,0.334,0.397,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.549,0.0433,0.163,0,0,0,0,0,0.0848 +1,0.554,0.0636,0.162,0,0,0,0,0,0.297 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.333,0.554,0.0933,0.153,0,0,0,0,0,0.0424 +0.333,0.554,0.101,0.147,0,0,0,0,0,0.127 +0.333,0.554,0.108,0.143,0,0,0,0,0,0 +0.333,0.554,0.125,0.142,0,0,0,0,0,0.0848 +0.333,0.554,0.141,0.142,0,0,0,0,0,0 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.0424 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.127 +0.667,0.614,0.315,0.252,0,0,0,0,0.233,0.17 +0.667,0.623,0.37,0.289,0,0,0,0,0,0.0424 +0.667,0.614,0.485,0.362,0,0,0,0,0,0.127 +1,0.615,0.844,0.668,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0 +1,0.503,0.155,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0.0911 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.512,0.0474,0.222,0,0,0,0,0,0.0424 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.0848 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0.144 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.434 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0.0848 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.212 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.0424 +1,0.538,0.187,0.328,0,0,0,0,0,0.0424 +0.667,0.546,0.137,0.235,0,0,0,0,0,0.0848 +1,0.563,0.222,0.329,0,0,0,0,0,0.0424 +0.667,0.588,0.19,0.239,0,0,0,0,0.467,0.0848 +1,0.64,0.339,0.353,0,0,0,0,0,0 +0.667,0.623,0.31,0.289,0.285,0.217,0,0,0,0.0848 +1,0.64,0.64,0.518,0.351,0,0,0,0,0.127 +1,0.615,0.79,0.668,0,0,0,0,0,0.127 +1,0.563,0.749,0.788,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.19 +1,0.532,0.0759,0.116,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0 +1,0.528,0.0236,0.0768,0,0,0,0,0,0.101 +1,0.512,0.0474,0.222,0,0,0,0,0.517,0.604 +0.667,0.537,0.0633,0.277,0,0,0,0,0.2,0.178 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.0424 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0.127 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.371 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.594 +0.667,0.546,0.116,0.237,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0.0167,0.17 +0.667,0.546,0.137,0.235,0,0,0.596,0.75,0.217,0.0848 +0.667,0.563,0.153,0.236,0,0,0.534,0,0,0.254 +1,0.602,0.276,0.334,0,0,0.674,0,0,0.0848 +1,0.64,0.339,0.353,0,0,0.478,0,0,0 +1,0.653,0.457,0.408,0.0869,0.0167,0,0,0.233,0 +1,0.64,0.64,0.518,0.574,0.433,0,0,0,0 +1,0.615,0.79,0.668,0.381,0.217,0,0,0,0 +1,0.563,0.749,0.788,0.586,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0594 +1,0.537,0.0316,0.136,0,0,0,0,0,0.223 +1,0.549,0.0396,0.163,0.348,0.217,0.0778,0.0167,0.467,0.254 +1,0.554,0.0461,0.162,0.677,0,0.217,0.733,0,0.127 +1,0.554,0.0526,0.156,0.101,0.0167,0.314,0,0,0 +1,0.546,0.0996,0.256,0.933,0.2,0,0,0.233,0 +1,0.546,0.11,0.245,0.642,0,0,0,0,0 +1,0.538,0.165,0.331,0.701,0,0,0,0,0.0848 +1,0.538,0.187,0.328,0.253,0,0,0,0,0.339 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.17 +0.333,0.562,0.0846,0.143,0,0,0.0715,0.0167,0,0.0848 +1,0.602,0.276,0.334,0,0,0.779,0.483,0,0.381 +1,0.64,0.339,0.353,0,0,0.689,0,0.267,0.0424 +1,0.653,0.457,0.408,0,0,0.473,0,0.2,0 +1,0.64,0.64,0.518,0,0,0.571,0,0,0 +1,0.615,0.79,0.668,0,0,0.539,0,0,0.0589 +1,0.563,0.749,0.788,0,0,0.371,0,0,0.282 +1,0.529,0.307,0.397,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.495,0.0212,0.0506,0.0796,0.0167,0,0,0.233,0.212 +0.333,0.528,0.0236,0.0768,0.674,0.433,0,0,0,0.0848 +0.333,0.537,0.0316,0.136,0,0,0,0,0,0.17 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.0424 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.0424 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.254 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0.359 +0.667,0.546,0.11,0.245,0,0,0,0,0,0.0171 +0.667,0.546,0.116,0.237,0,0,0,0,0,0 +0.667,0.546,0.13,0.235,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0.263,0.267,0,0.0848 +0.667,0.563,0.153,0.236,0,0,0.539,0.233,0,0.0424 +0.667,0.588,0.19,0.239,0,0,0.051,0,0,0.17 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.178 +0.667,0.623,0.31,0.289,0.0695,0.0167,0,0,0,0 +1,0.64,0.64,0.518,0.558,0.2,0,0,0.0167,0.0848 +1,0.615,0.79,0.668,0,0,0,0,0.217,0 +1,0.563,0.504,0.542,0.485,0.217,0,0,0,0.0424 +1,0.545,0.161,0.223,0.163,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.537,0.0316,0.136,0,0,0,0,0,0 +1,0.537,0.0633,0.277,0,0,0,0,0,0.129 +1,0.538,0.107,0.387,0.509,0.217,0.134,0.267,0,0.417 +1,0.538,0.126,0.37,0.254,0,0.426,0.483,0,0.363 +1,0.538,0.141,0.359,0,0,0.495,0,0,0.156 +1,0.538,0.157,0.343,0,0,0.573,0,0,0.38 +0.667,0.546,0.116,0.237,0,0,0,0,0,0.451 +0,0.562,0.0159,0.0495,0,0,0.0467,0.0167,0,0.0424 +0.667,0.546,0.137,0.235,0,0,0.433,0.733,0,0.0424 +0.333,0.562,0.0846,0.143,0,0,0.44,0,0,0.127 +0.667,0.588,0.19,0.239,0,0,0.401,0,0.467,0.127 +0.667,0.614,0.232,0.252,0,0,0.627,0,0,0.0848 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.0602 +0.667,0.614,0.432,0.362,0,0,0,0,0,0.229 +1,0.615,0.79,0.668,0,0,0,0,0,0.466 +1,0.563,0.504,0.542,0,0,0,0,0,0.103 +1,0.529,0.307,0.397,0,0,0,0,0,0.0783 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.119 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0.483 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.183,0.118 +0.667,0.548,0.147,0.278,0,0,0,0,0.05,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.254 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.382 +0.667,0.548,0.204,0.251,0.657,0.233,0,0,0,0.0424 +0.333,0.555,0.129,0.149,0.569,0,0,0,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.626,0.383,0.351,0,0,0,0,0,0.17 +1,0.645,0.743,0.656,0,0,0.262,0.433,0,0.0424 +1,0.619,0.873,0.806,0,0,0.57,0.0667,0,0.0848 +1,0.568,0.806,0.851,0,0,0.525,0,0,0.487 +1,0.531,0.345,0.391,0,0,0.505,0,0,0 +1,0.533,0.0894,0.116,0,0,0.0892,0,0,0.234 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.555,0.0654,0.168,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0.212 +0.667,0.548,0.174,0.27,0,0,0,0,0.717,0.0424 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.0424 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.127 +1,0.555,0.129,0.149,0,0,0,0,0,0.339 +1,0.555,0.146,0.149,0,0,0,0,0,0.212 +1,0.564,0.159,0.15,0,0,0,0,0,0.297 +1,0.576,0.167,0.154,0,0,0,0,0,0 +1,0.589,0.172,0.168,0,0,0,0,0,0.17 +1,0.626,0.383,0.351,0,0,0,0,0,0.368 +0.667,0.617,0.501,0.454,0,0,0,0,0,0.127 +0.667,0.6,0.588,0.554,0,0,0,0,0.483,0.554 +1,0.566,0.543,0.584,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.107 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.127 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.17 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.389 +0.667,0.548,0.103,0.27,0,0,0,0,0.233,0.42 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.332 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.339 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.127 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.254 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.127 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0848 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.104 +0.667,0.626,0.32,0.351,0,0,0,0,0,0 +1,0.617,0.446,0.454,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0.0446,0.0167,0,0 +1,0.566,0.521,0.584,0,0,0.551,0.733,0,0 +1,0.531,0.317,0.391,0,0,0.134,0,0,0.0848 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0.233,0.233 +1,0.538,0.0323,0.139,0,0,0,0,0.233,0.0871 +1,0.551,0.0406,0.167,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.294 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0.254 +0.667,0.555,0.0593,0.16,0,0,0.358,0.517,0,0.0848 +0.667,0.555,0.0646,0.154,0,0,0.526,0.233,0,0 +0.667,0.548,0.119,0.251,0,0,0.345,0,0,0.0424 +0.333,0.555,0.0751,0.149,0,0,0.534,0,0.0167,0.0848 +0.667,0.548,0.142,0.249,0,0,0.49,0,0.467,0.0424 +1,0.568,0.23,0.351,0,0,0.285,0,0,0.466 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.382 +0.667,0.617,0.239,0.286,0,0,0,0,0,0 +0.667,0.626,0.32,0.351,0,0,0,0,0.233,0.0424 +1,0.645,0.662,0.656,0,0,0,0,0,0.339 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.0163 +1,0.531,0.317,0.391,0,0,0,0,0,0.249 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0.0424 +1,0.54,0.0653,0.284,0,0,0,0,0.217,0.207 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.307 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.121 +0.667,0.548,0.113,0.259,0,0,0,0,0,0 +0.667,0.548,0.119,0.251,0,0,0,0,0.267,0.297 +0.333,0.555,0.0751,0.149,0,0,0,0,0.217,0.212 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0424 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.17 +0.667,0.591,0.196,0.259,0,0,0,0,0,0 +1,0.645,0.351,0.404,0,0,0,0,0,0.0424 +1,0.658,0.473,0.501,0,0,0,0,0.0167,0.0424 +1,0.645,0.662,0.656,0,0,0,0,0.217,0.127 +1,0.619,0.817,0.806,0,0,0.126,0.267,0,0 +1,0.566,0.521,0.584,0,0,0.102,1,0,0.0424 +1,0.546,0.167,0.22,0,0,0,0.25,0,0.0848 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0.0761 +1,0.538,0.0323,0.139,0,0,0,0,1,0.145 +1,0.551,0.0406,0.167,0,0,0,0,0.433,0.334 +1,0.555,0.0473,0.168,0,0,0,0,0,0.0848 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.0424 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.127 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.0424 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.393 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.534 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.339 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.589,0.128,0.168,0,0,0,0,0.717,0.315 +0.667,0.626,0.32,0.351,0.0805,0.0167,0,0,0,0.0424 +0.667,0.617,0.446,0.454,0.476,0.217,0,0,0.0167,0.127 +1,0.619,0.817,0.806,0,0,0,0,0.217,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.212 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.297 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.254 +1,0.529,0.0241,0.0781,0,0,0,0,0.233,0.361 +1,0.538,0.0323,0.139,0,0,0,0,0,0.383 +1,0.529,0.09,0.402,0,0,0,0,0,0.519 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.312 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.379 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.171 +0.667,0.548,0.113,0.259,0.225,0.233,0,0,0,0.403 +0.667,0.548,0.119,0.251,0.536,0,0,0,0,0.335 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.0424 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.382 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.102 +0.667,0.591,0.196,0.259,0,0,0,0,0.0167,0.475 +1,0.645,0.351,0.404,0,0,0,0,0.217,0.0424 +1,0.658,0.473,0.501,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0.17 +1,0.529,0.0181,0.0495,0,0,0,0,0,0.0848 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.208 +1,0.555,0.0654,0.168,0,0,0,0,0,0.231 +0.333,0.555,0.0826,0.164,0,0,0,0,0,0 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.305 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.123 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.509 +0.667,0.548,0.24,0.249,0,0,0,0,0,0.184 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.0424 +0.667,0.564,0.159,0.15,0,0,0,0,0,0.409 +1,0.591,0.315,0.259,0,0,0,0,0,0.477 +0.667,0.617,0.326,0.286,0,0,0,0,0.433,0.164 +1,0.658,0.565,0.501,0,0,0,0,0.05,0.387 +1,0.645,0.743,0.656,0.511,0.233,0,0,0,0.205 +1,0.619,0.873,0.806,0,0,0,0,0,0.0848 +1,0.566,0.543,0.584,0,0,0,0,0,0.2 +1,0.531,0.345,0.391,0,0,0,0,0,0.0364 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0.339 +1,0.529,0.0226,0.0781,0,0,0,0,0,0.0424 +1,0.538,0.0301,0.139,0,0,0,0,0.717,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0.127 +1,0.548,0.113,0.286,0,0,0,0,0.483,0.253 +0.333,0.555,0.0826,0.164,0,0,0,0,0,0.346 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.137 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.582 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.143 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.548,0.273,0.249,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.0424 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.297 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.17 +1,0.658,0.565,0.501,0,0,0,0,0.417,0.0848 +1,0.645,0.743,0.656,0.159,0.183,0,0,0.3,0 +1,0.619,0.873,0.806,0.589,0.283,0,0,0.233,0 +1,0.568,0.806,0.851,0.576,0,0,0,0,0 +0.667,0.546,0.182,0.22,0,0,0,0,0,0.0567 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.29 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0.0424 +1,0.551,0.0406,0.167,0,0,0,0,0,0.357 +0.667,0.555,0.0473,0.168,0,0,0,0,0.233,0.0424 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0.297 +0.667,0.555,0.0593,0.16,0.346,0.233,0,0,0,0 +0.667,0.548,0.113,0.259,0.386,0,0.766,0.75,0.233,0 +0.667,0.548,0.119,0.251,0,0,0.943,0,0,0 +0.667,0.548,0.134,0.249,0,0,0.657,0,0,0 +0.667,0.548,0.142,0.249,0,0,0.389,0,0,0.0848 +0.667,0.566,0.158,0.251,0,0,0.418,0,0,0.127 +1,0.606,0.286,0.363,0,0,0.0977,0,0.0167,0.0424 +0.667,0.617,0.239,0.286,0,0,0,0,0.217,0 +1,0.658,0.473,0.501,0.666,0.233,0,0,0,0.382 +1,0.645,0.662,0.656,0,0,0,0,0,0.0424 +1,0.619,0.817,0.806,0,0,0,0,0,0.17 +1,0.566,0.521,0.584,0.11,0.0167,0,0,0,0 +1,0.546,0.167,0.22,0.507,0.45,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0.233,0.127 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.191 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.129 +0.667,0.555,0.0541,0.164,0,0,0,0,0.267,0.342 +0.667,0.548,0.103,0.27,0,0,0,0,0.217,0.0424 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.0848 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.17 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.17 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.127 +0.667,0.566,0.158,0.251,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0848 +0.667,0.617,0.239,0.286,0,0,0,0,0.233,0.127 +1,0.658,0.473,0.501,0,0,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0.0848 +1,0.568,0.774,0.851,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0.114 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.217,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.551,0.0406,0.167,0,0,0,0,0.483,0.0424 +1,0.555,0.0473,0.168,0.609,0.233,0.228,0.267,0,0 +1,0.548,0.0923,0.278,0,0,0.555,0.233,0,0.0424 +0.667,0.555,0.0593,0.16,0,0,0.217,0,0,0.127 +0.667,0.555,0.0646,0.154,0,0,0.45,0,0,0.0424 +0.667,0.555,0.0676,0.15,0,0,0.733,0,0,0.0848 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.0424 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.17 +0.667,0.566,0.158,0.251,0,0,0.127,0.517,0,0.0848 +0.667,0.591,0.196,0.259,0,0,0,0.233,0,0.17 +0.667,0.617,0.239,0.286,0,0,0,0,0.233,0.0424 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.0424 +1,0.645,0.662,0.656,0,0,0,0,0,0.0848 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0.0424 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.115 +1,0.529,0.0241,0.0781,0,0,0,0,0.233,0.498 +1,0.538,0.0323,0.139,0,0,0,0,0,0.2 +1,0.54,0.0653,0.284,0,0,0,0,0,0.365 +1,0.548,0.0788,0.286,0,0,0,0,0,0.328 +1,0.542,0.131,0.392,0,0,0.297,0.75,0,0.238 +1,0.542,0.146,0.381,0,0,0.58,0,0,0.146 +1,0.542,0.162,0.364,0,0,0.682,0,0,0.408 +1,0.542,0.171,0.352,0,0,0.586,0,0,0.0779 +0.667,0.548,0.134,0.249,0,0,0.405,0,0,0.212 +0.667,0.548,0.142,0.249,0,0,0.314,0,0,0.127 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0424 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0424 +0.667,0.617,0.239,0.286,0,0,0,0,0.0167,0.0424 +1,0.658,0.473,0.501,0,0,0,0,0.467,0.127 +0.333,0.589,0.231,0.252,0,0,0,0,0,0.0848 +0.333,0.581,0.283,0.302,0,0,0,0,0,0 +0.333,0.564,0.269,0.317,0,0,0,0,0,0.111 +0.667,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.124 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +1,0.551,0.0406,0.167,0,0,0,0,0.467,0.0848 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.254 +0.667,0.555,0.0541,0.164,0,0,0,0,0,0.0424 +0.667,0.548,0.103,0.27,0,0,0,0,0,0 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.339 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.0848 +0.667,0.548,0.134,0.249,0,0,0,0,0.267,0.212 +0.667,0.548,0.142,0.249,0,0,0,0,0.45,0.254 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.254 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.127 +1,0.645,0.351,0.404,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0424 +0.667,0.6,0.55,0.554,0,0,0,0,0,0 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.0424 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0.474 +1,0.497,0.0721,0.099,0,0,0,0,0,0.088 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.0848 +0.667,0.555,0.0961,0.16,0,0,0,0,0.233,0.297 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.0424 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.212 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.254 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.127 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.28 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.365 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.332 +0.667,0.626,0.383,0.351,0,0,0,0,0,0.72 +1,0.645,0.743,0.656,0,0,0.301,0.75,0,0.127 +1,0.619,0.873,0.806,0,0,0.437,0,0,0 +1,0.568,0.806,0.851,0,0,0.313,0,0.483,0 +1,0.516,0.509,0.561,0,0,0.301,0,0,0 +1,0.477,0.232,0.249,0,0,0.173,0,0,0.154 +1,0.464,0.099,0.124,0,0,0.282,0,0,0 +1,0.529,0.0286,0.0578,0,0,0.236,0,0,0.127 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.433,0 +0.667,0.555,0.0654,0.168,0,0,0,0,0.283,0.0424 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.549 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.252 +0.333,0.555,0.104,0.154,0,0,0,0,0.233,0.0774 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.103 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.211 +0.667,0.548,0.273,0.249,0,0,0,0,0,0.108 +0.667,0.566,0.3,0.251,0,0,0,0,0,0.127 +1,0.606,0.464,0.363,0,0,0,0,0,0.382 +1,0.645,0.479,0.404,0,0,0,0,0,0.0848 +0.667,0.626,0.383,0.351,0,0,0,0,0.233,0.382 +1,0.645,0.743,0.656,0,0,0,0,0,0.0424 +0.667,0.6,0.588,0.554,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0 +1,0.546,0.182,0.22,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.241,0,0,0.114 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.233,0 +1,0.551,0.0406,0.167,0,0,0,0,0,0.366 +1,0.542,0.11,0.404,0,0,0,0,0.483,0.581 +0.667,0.548,0.0923,0.278,0.481,0.233,0.0453,0.0167,0,0 +1,0.542,0.146,0.381,0.388,0,0.554,0.733,0,0 +1,0.542,0.162,0.364,0,0,0.381,0,0,0.254 +1,0.542,0.171,0.352,0,0,0.427,0,0,0.17 +0.667,0.548,0.134,0.249,0,0,0,0,0,0 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0848 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0424 +1,0.606,0.286,0.363,0,0,0,0,0.267,0.212 +1,0.645,0.351,0.404,0,0,0,0,0.217,0.212 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.0424 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0848 +0.667,0.581,0.283,0.302,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0.0424 +1,0.533,0.0781,0.116,0,0,0,0,0.483,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.2 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.179 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.355 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.0848 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0.474 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.598 +0.333,0.555,0.0541,0.164,0,0,0.413,0.75,0,0 +0.667,0.548,0.103,0.27,0,0,0.285,0,0,0.0848 +0.667,0.548,0.113,0.259,0,0,0.582,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0.406,0,0,0.0848 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0.403,0.75,0,0.17 +0.333,0.564,0.0871,0.15,0,0,0.0446,0,0,0.254 +0.667,0.591,0.196,0.259,0,0,0.397,0,0,0.0848 +1,0.645,0.351,0.404,0.576,0.233,0.433,0,0.483,0 +1,0.658,0.473,0.501,0,0,0.326,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0.232 +1,0.619,0.817,0.806,0,0,0,0,0,0.0804 +1,0.568,0.774,0.851,0,0,0,0,0,0.0667 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.505,0.14,0.183,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0.177 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.31 +1,0.538,0.0323,0.139,0,0,0,0,0.233,0.238 +1,0.551,0.0406,0.167,0.538,0.467,0,0,0,0.104 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.215 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.368 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0424 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.127 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.0424 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.127 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.0848 +1,0.617,0.446,0.454,0,0,0,0,0,0.0424 +0.667,0.581,0.283,0.302,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0.0771 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.538,0.0323,0.139,0,0,0,0,0,0.0424 +1,0.529,0.09,0.402,0,0,0,0,0.233,0.332 +0.667,0.548,0.0788,0.286,0.0778,0.0167,0,0,0,0.101 +0.333,0.555,0.0541,0.164,0.78,0.217,0,0,0,0.127 +0.333,0.555,0.0593,0.16,0.212,0,0,0,0,0.127 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0424 +0.333,0.555,0.0676,0.15,0,0,0,0,0.483,0.0424 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.381 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.127 +0.667,0.566,0.158,0.251,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0.233,0.411 +0.667,0.617,0.239,0.286,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0.212 +1,0.645,0.662,0.656,0,0,0,0,0,0.0848 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.166 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.51 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0.767,0.212 +0.667,0.555,0.0473,0.168,0,0,0,0,0.2,0.0848 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.128 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.339 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.125 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.404 +0.333,0.555,0.0751,0.149,0,0,0,0,0.267,0.0848 +0.667,0.548,0.142,0.249,0,0,0,0,0.45,0.0424 +0.667,0.566,0.158,0.251,0,0,0,0,0,0 +1,0.606,0.286,0.363,0,0,0,0,0,0.104 +1,0.645,0.351,0.404,0,0,0,0,0,0.17 +1,0.658,0.473,0.501,0,0,0,0,0,0.0848 +1,0.645,0.662,0.656,0,0,0,0,0,0.0424 +1,0.619,0.817,0.806,0,0,0,0,0,0.0424 +0.667,0.566,0.521,0.584,0,0,0,0,0,0.0746 +1,0.531,0.317,0.391,0,0,0,0,0,0.26 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.529,0.0203,0.0503,0,0,0,0,0,0.204 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.538,0.0301,0.139,0,0,0,0,0,0.0848 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0.284 +0.667,0.555,0.0654,0.168,0,0,0,0,0,0.212 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0 +0.667,0.548,0.174,0.27,0,0,0,0,0,0.313 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.0424 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.212 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.127 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.0848 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.0424 +0.333,0.576,0.167,0.154,0,0,0,0,0,0.35 +0.667,0.589,0.172,0.168,0,0,0,0,0,0 +1,0.626,0.383,0.351,0,0,0,0,0.233,0.17 +1,0.617,0.501,0.454,0,0,0,0,0,0.212 +1,0.6,0.588,0.554,0,0,0,0,0,0.0615 +1,0.568,0.806,0.851,0,0,0,0,0,0.173 +0.667,0.531,0.345,0.391,0,0,0,0,0,0.106 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.538,0.0301,0.139,0,0,0,0,0,0.0848 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0.527 +0.667,0.548,0.113,0.286,0,0,0,0,0,0.0987 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.0424 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0.433,0.17 +0.333,0.555,0.111,0.15,0,0,0,0,0.05,0.127 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.0848 +0.333,0.555,0.146,0.149,0,0,0,0,0,0 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.127 +0.333,0.576,0.167,0.154,0,0,0,0,0.233,0.212 +1,0.645,0.479,0.404,0,0,0.653,0.5,0,0.0424 +1,0.658,0.565,0.501,0,0,0.518,0,0,0 +1,0.645,0.743,0.656,0,0,0.122,0,0,0.0424 +1,0.619,0.873,0.806,0,0,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0.138 +1,0.531,0.345,0.391,0,0,0,0,0,0.15 +1,0.533,0.0894,0.116,0,0,0,0,0,0.276 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0241,0.0781,0,0,0,0,0.483,0 +1,0.514,0.0488,0.228,0,0,0,0,0,0.584 +1,0.54,0.0653,0.284,0,0,0,0,0,0.699 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0.207 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.293 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.292 +0.667,0.548,0.113,0.259,0,0,0,0,0.0167,0.0856 +0.667,0.548,0.119,0.251,0,0,0,0,0.467,0.15 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.0424 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.0848 +0.667,0.566,0.158,0.251,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.127 +0.667,0.617,0.239,0.286,0,0,0,0,0.233,0.127 +0.667,0.626,0.32,0.351,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.1 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0 +1,0.516,0.468,0.561,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.181 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0853 +1,0.529,0.0241,0.0781,0,0,0.694,0.75,0,0.0848 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0.267,0.34 +0.667,0.548,0.0788,0.286,0,0,0,0,0.45,0.294 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0.335 +0.667,0.548,0.103,0.27,0,0,0,0,0,0.249 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.178 +0.667,0.548,0.119,0.251,0,0,0,0,0,0.212 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.17 +0.667,0.555,0.0789,0.149,0,0,0,0,0.0167,0.212 +0.667,0.566,0.158,0.251,0,0,0,0,1,0.254 +0.667,0.591,0.196,0.259,0,0,0,0,0.183,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0.382 +1,0.645,0.662,0.656,0,0,0,0,0,0.455 +1,0.619,0.817,0.806,0,0,0,0,0,0.0424 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.16 +1,0.538,0.0323,0.139,0,0,0,0,0.267,0.229 +1,0.551,0.0406,0.167,0,0,0,0,0.45,0.0424 +1,0.555,0.0473,0.168,0,0,0,0,0,0 +1,0.548,0.0923,0.278,0,0,0,0,0,0.129 +0.667,0.548,0.103,0.27,0,0,0,0,0.483,0.136 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.0424 +0.667,0.548,0.119,0.251,0,0,0.0573,0.0167,0,0.212 +0.667,0.548,0.134,0.249,0,0,0.478,0.733,0,0.339 +0.667,0.548,0.142,0.249,0,0,0.459,0,0,0.17 +0.667,0.566,0.158,0.251,0,0,0.561,0,0.0167,0.27 +1,0.606,0.286,0.363,0,0,0,0,0.217,0.571 +1,0.645,0.351,0.404,0,0,0,0,0.0167,0.147 +0.667,0.626,0.32,0.351,0.102,0.0167,0,0,0.217,0.865 +1,0.645,0.662,0.656,0.598,0.217,0,0,0,0.444 +1,0.619,0.817,0.806,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0.128 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.394 +1,0.538,0.0323,0.139,0,0,0,0,0,0.218 +1,0.551,0.0406,0.167,0,0,0,0,0,0.27 +1,0.548,0.0788,0.286,0,0,0,0,0,0.484 +1,0.542,0.131,0.392,0.45,0.233,0,0,0,0.246 +0.667,0.548,0.103,0.27,0.589,0,0,0,0,0.214 +0.667,0.548,0.113,0.259,0,0,0,0,0,0.113 +0.667,0.548,0.119,0.251,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0.127 +0.667,0.548,0.142,0.249,0,0,0,0,0,0.17 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.212 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.17 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.0848 +0.333,0.594,0.168,0.2,0,0,0,0,0.483,0.254 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.212 +1,0.619,0.817,0.806,0,0,0,0,0,0.282 +1,0.568,0.774,0.851,0,0,0,0,0,0.245 +1,0.546,0.167,0.22,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0 +1,0.529,0.0383,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.497,0.0218,0.0511,0,0,0,0,0,0.276 +1,0.497,0.0323,0.107,0,0,0,0,0,0.119 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0.212 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0.17 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.0424 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0.0848 +0.333,0.555,0.0751,0.149,0,0,0.0948,0.267,0,0.127 +0.667,0.548,0.142,0.249,0,0,0.637,0.233,0,0.254 +1,0.568,0.23,0.351,0,0,0.302,0,0,0.127 +1,0.606,0.286,0.363,0,0,0.336,0,0,0.339 +1,0.645,0.351,0.404,0.24,0.233,0,0,0,0.127 +1,0.658,0.473,0.501,0.772,0,0,0,0,0.0848 +1,0.645,0.662,0.656,0.622,0,0,0,0,0.0424 +1,0.619,0.817,0.806,0.115,0,0,0,0,0.0848 +1,0.566,0.521,0.584,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0.117 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.551,0.0444,0.167,0,0,0,0,0,0.0424 +1,0.555,0.0654,0.168,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.555,0.0961,0.16,0,0,0,0,0,0 +0.333,0.555,0.104,0.154,0,0,0,0,0,0.0424 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.0424 +0.333,0.555,0.129,0.149,0,0,0,0,0,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.0848 +0.667,0.566,0.3,0.251,0,0,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0,0,0.483,0.0424 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.466 +0.333,0.594,0.2,0.2,0,0,0,0,0,0.0848 +0.667,0.617,0.501,0.454,0,0,0,0,0,0.212 +1,0.619,0.873,0.806,0,0,0,0,0,0.352 +0.667,0.566,0.543,0.584,0,0,0,0,0,0.349 +1,0.531,0.345,0.391,0,0,0,0,0,0.21 +1,0.533,0.0894,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.192 +1,0.555,0.0961,0.16,0,0,0,0,0,0.482 +1,0.548,0.191,0.259,0,0,0,0,0,0.309 +0.667,0.548,0.204,0.251,0,0,0,0,0,0.247 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.17 +0.333,0.555,0.146,0.149,0,0,0,0,0,0.0848 +0.333,0.564,0.159,0.15,0,0,0,0,0,0.386 +0.667,0.576,0.167,0.154,0,0,0,0,0,0.598 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.26 +1,0.658,0.565,0.501,0,0,0,0,0.233,0.35 +1,0.645,0.743,0.656,0,0,0,0,0,0.249 +1,0.619,0.873,0.806,0,0,0.474,0.433,0,0 +1,0.568,0.806,0.851,0,0,0.343,0.317,0,0.0424 +1,0.516,0.509,0.561,0,0,0.388,0,0,0.156 +1,0.477,0.232,0.249,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.416 +1,0.578,0.0433,0.236,0,0,0,0,0,0.444 +1,0.633,0.0786,0.417,0,0,0,0,0,0.184 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.389 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.0424 +0.667,0.62,0.0905,0.291,0,0,0.401,0.7,0,0 +0.667,0.62,0.0996,0.279,0,0,0.643,0,0,0.0424 +0.667,0.62,0.105,0.271,0,0,0.0446,0,0.25,0.127 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0848 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.127 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.382 +1,0.726,0.25,0.417,0,0,0,0,0,0.0424 +0.667,0.702,0.21,0.35,0.0823,0.0167,0,0,0.767,0 +0.667,0.712,0.28,0.453,0.629,0.217,0,0,0.233,0 +1,0.772,0.578,0.829,0.443,0.483,0,0,0.25,0 +1,0.741,0.713,0.905,0.492,0,0,0,0,0 +1,0.679,0.676,0.821,0.366,0,0,0,0,0.0848 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.143 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.209 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.309 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.182 +0.667,0.62,0.0996,0.279,0,0,0.342,0.517,0,0.233 +0.667,0.62,0.105,0.271,0,0,0.263,0.183,0,0.402 +0.667,0.62,0.118,0.269,0,0,0.594,0,0,0.339 +0.667,0.62,0.125,0.269,0,0,0.474,0,0,0.0848 +0.667,0.64,0.139,0.274,0,0,0.3,0,0,0.212 +1,0.726,0.25,0.417,0,0,0.483,0,0,0.0424 +0.667,0.702,0.21,0.35,0,0,0.442,0,0,0.127 +0.333,0.637,0.148,0.251,0,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.371,0.233,0,0,0,0.212 +0.667,0.681,0.481,0.62,0.298,0,0,0,0,0.0424 +1,0.679,0.676,0.821,0,0,0,0,0,0.0719 +1,0.618,0.409,0.51,0,0,0,0,0,0.126 +1,0.568,0.123,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.578,0.0433,0.236,0,0,0,0,0.517,0.327 +1,0.633,0.0786,0.417,0,0,0,0,0.483,0.631 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.212 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.0424 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0424 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.272 +0.667,0.64,0.139,0.274,0,0,0,0,0.0167,0.538 +0.667,0.671,0.172,0.294,0,0,0,0,0.233,0.166 +1,0.772,0.307,0.501,0,0,0,0,0,0.0424 +1,0.788,0.413,0.655,0,0,0,0,0,0.0848 +1,0.772,0.578,0.829,0,0,0,0,0,0.0424 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0.532,0.7,0,0 +1,0.599,0.278,0.356,0,0,0.585,0,0,0 +1,0.565,0.0695,0.116,0,0,0.522,0,0,0 +1,0.56,0.0348,0.0743,0,0,0.539,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.585,0.0368,0.172,0,0,0,0,0.25,0.0594 +1,0.62,0.0695,0.301,0,0,0,0,0,0.139 +0.667,0.591,0.0486,0.174,0,0,0,0,0,0.128 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0.429 +0.667,0.62,0.0996,0.279,0.0805,0.0167,0,0,0.25,0.0848 +0.667,0.62,0.105,0.271,0.858,0.717,0,0,0,0.0424 +0.667,0.62,0.118,0.269,0.562,0,0,0,0,0.261 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.225 +0.667,0.64,0.139,0.274,0,0,0,0,0.0167,0.385 +0.667,0.671,0.172,0.294,0,0,0,0,0.233,0.214 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.17 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0848 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0424 +1,0.741,0.713,0.905,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0.137 +1,0.568,0.123,0.183,0,0,0,0,0,0.238 +1,0.558,0.0538,0.099,0,0,0,0,0,0.177 +1,0.558,0.0289,0.066,0,0,0,0,0,0.39 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.0929 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0386 +1,0.578,0.0433,0.236,0,0,0,0,0,0.659 +1,0.609,0.0577,0.295,0,0,0,0,0,0.794 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.296 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0.5,0.254 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.17 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0848 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0848 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0848 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.212 +0.667,0.712,0.28,0.453,0,0,0,0,0.75,0.212 +0.667,0.702,0.39,0.569,0.0558,0.0167,0,0,0,0 +0.667,0.681,0.481,0.62,0.676,1,0,0,0,0.0848 +0.667,0.64,0.456,0.564,0.251,0.2,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0171 +1,0.609,0.0624,0.295,0,0,0,0,0,0.43 +0.667,0.62,0.0991,0.301,0,0,0,0,0,0.53 +0.667,0.62,0.129,0.299,0.452,0.233,0,0,0,0.466 +0.667,0.62,0.153,0.291,0.406,0,0,0,0,0.461 +0.667,0.62,0.167,0.279,0,0,0,0,0,0.238 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.585 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.407 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.254 +0.333,0.601,0.14,0.162,0,0,0.338,0.517,0,0.212 +0.667,0.671,0.276,0.294,0,0,0.485,0.183,0,0.254 +0.667,0.702,0.285,0.35,0,0,0,0,0,0.254 +0.667,0.712,0.335,0.453,0,0,0,0,0,0 +0.667,0.702,0.438,0.569,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0.176 +0.667,0.64,0.475,0.564,0,0,0,0,0,0.183 +0.667,0.58,0.16,0.203,0,0,0.0609,0.517,0,0.221 +0.667,0.562,0.0181,0.0495,0,0,0,0.183,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.02,0.0495,0,0,0,0,0,0.451 +1,0.56,0.0173,0.0495,0,0,0,0,0,0.29 +1,0.56,0.0193,0.0506,0,0,0,0,0,0.15 +1,0.56,0.0213,0.0798,0,0,0,0,0.25,0.127 +1,0.57,0.0278,0.143,0,0,0.0241,0.0167,0,0 +0.667,0.585,0.0403,0.172,0,0,0.822,0.45,0,0.0424 +0.667,0.591,0.0586,0.175,0,0,0.5,0,0,0.0424 +0.667,0.591,0.0737,0.174,0,0,0.614,0,0,0.0848 +0.667,0.62,0.153,0.291,0,0,0.183,0,0.5,0 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0.17 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0.551,0.7,0,0.0424 +0.333,0.616,0.147,0.172,0,0,0.464,0,0,0.0424 +1,0.772,0.419,0.501,0,0,0,0,0.0167,0.153 +1,0.788,0.493,0.655,0,0,0,0,0.483,0.339 +1,0.772,0.649,0.829,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0.127 +1,0.679,0.704,0.821,0,0,0,0,0,0.0424 +1,0.599,0.302,0.356,0,0,0,0,0,0.0424 +1,0.568,0.141,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0182 +1,0.57,0.0296,0.143,0,0,0,0,0,0.363 +1,0.585,0.0368,0.172,0,0,0,0,0.517,0 +0.667,0.591,0.0427,0.175,0,0,0,0,0.233,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0.5,0.0848 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.212 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0848 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0848 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.17 +0.667,0.64,0.139,0.274,0,0,0,0,0.5,0.269 +1,0.726,0.25,0.417,0,0,0,0,0,0.161 +1,0.772,0.307,0.501,0,0,0,0,0,0.405 +1,0.788,0.413,0.655,0,0,0,0,0,0 +1,0.702,0.39,0.569,0,0,0,0,0,0 +1,0.681,0.481,0.62,0,0,0,0,0,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.127 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.127 +1,0.57,0.0296,0.143,0,0,0,0,0,0.0152 +1,0.609,0.0577,0.295,0,0,0,0,0,0.121 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.286 +0.333,0.591,0.0486,0.174,0,0,0,0,0.25,0.339 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.0848 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0424 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.17 +0.667,0.62,0.118,0.269,0,0,0,0,0,0 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0848 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0848 +1,0.726,0.25,0.417,0,0,0,0,0,0.21 +1,0.772,0.307,0.501,0,0,0,0,0,0.254 +1,0.788,0.413,0.655,0.617,0.233,0,0,0.25,0.17 +1,0.772,0.578,0.829,0.73,0,0,0,0,0 +1,0.681,0.481,0.62,0.646,0,0,0,0,0 +1,0.64,0.456,0.564,0.245,0,0,0,0,0.0424 +1,0.599,0.278,0.356,0,0,0,0,0,0.188 +1,0.568,0.123,0.183,0,0,0,0,0,0.301 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0168 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0,0,0,0.323 +0.667,0.591,0.0427,0.175,0,0,0,0,0.517,0.127 +0.667,0.62,0.0813,0.299,0,0,0,0,0.233,0 +0.667,0.62,0.0905,0.291,0,0,0.352,0.7,0,0 +0.667,0.62,0.0996,0.279,0,0,0.215,0,0,0.212 +0.667,0.62,0.105,0.271,0,0,0.528,0,0,0.0424 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.297 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.466 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0848 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.127 +0.667,0.702,0.21,0.35,0,0,0,0,0.25,0.0848 +1,0.788,0.413,0.655,0,0,0,0,0,0.0424 +1,0.772,0.578,0.829,0,0,0,0,0,0.0848 +1,0.741,0.713,0.905,0,0,0,0,0,0.0424 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0.531 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.1 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.0424 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0848 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.17 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.17 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.297 +0.667,0.671,0.172,0.294,0,0,0,0,0,0 +1,0.772,0.307,0.501,0.331,0.233,0,0,0.0167,0.17 +1,0.788,0.413,0.655,0.644,0.233,0,0,0.233,0.17 +1,0.772,0.578,0.829,0.522,0,0,0,0,0.0848 +1,0.741,0.713,0.905,0,0,0,0,0,0.21 +1,0.64,0.456,0.564,0,0,0,0,0,0.0159 +1,0.58,0.147,0.203,0,0,0,0,0,0.0953 +1,0.565,0.0695,0.116,0.0988,0.0167,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0.891,0.467,0,0,0,0 +1,0.562,0.0159,0.0495,0.0622,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.56,0.0224,0.0798,0,0,0,0,0.5,0.231 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0.0848 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.0424 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0.0424 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.17 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0848 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.127 +0.667,0.62,0.125,0.269,0,0,0,0,0.5,0.254 +0.667,0.64,0.139,0.274,0,0,0,0,0,0 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.212 +1,0.772,0.307,0.501,0,0,0,0,0,0.146 +1,0.788,0.413,0.655,0.108,0.0167,0,0,0,0.0848 +1,0.772,0.578,0.829,0.422,0.217,0,0,0,0.0424 +1,0.741,0.713,0.905,0.843,0,0,0,0,0.339 +1,0.679,0.676,0.821,0.0878,0,0,0,0,0 +1,0.618,0.409,0.51,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.585,0.0403,0.172,0,0,0,0,0.0167,0.193 +1,0.62,0.0991,0.301,0,0,0,0,0.233,0.791 +1,0.62,0.129,0.299,0,0,0.334,0.467,0,0.355 +0.667,0.591,0.0855,0.17,0,0,0.43,0,0,0.373 +0.667,0.591,0.0927,0.164,0,0,0.477,0,0,0.0424 +0.667,0.591,0.0986,0.16,0,0,0.602,0,0,0.297 +0.667,0.591,0.114,0.159,0,0,0.146,0,0,0.127 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.616,0.147,0.172,0,0,0,0,0,0.0848 +0.333,0.632,0.152,0.2,0,0,0,0,0,0.127 +1,0.788,0.493,0.655,0.0576,0.0167,0,0,0.25,0.0424 +1,0.772,0.649,0.829,0.552,0.217,0,0,0,0.0424 +1,0.741,0.763,0.905,0,0,0,0,0,0.111 +0.667,0.64,0.475,0.564,0,0,0,0,0,0 +0.667,0.599,0.302,0.356,0,0,0,0,0,0.127 +1,0.571,0.202,0.249,0,0,0,0,0,0 +0.667,0.56,0.0409,0.0743,0,0,0,0,0,0 +1,0.56,0.0265,0.0578,0,0,0,0,0,0 +1,0.56,0.02,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0.17 +1,0.62,0.129,0.299,0,0,0,0,0,0.352 +1,0.649,0.22,0.411,0.478,0.233,0,0,0,0.0848 +0.667,0.62,0.167,0.279,0.112,0,0,0,0.25,0.0424 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.0424 +0.667,0.62,0.21,0.269,0,0,0,0,0.25,0.0424 +0.667,0.62,0.239,0.269,0,0,0,0,0,0.0848 +0.667,0.64,0.263,0.274,0,0,0,0,0,0.0848 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.0424 +1,0.772,0.419,0.501,0,0,0,0,0,0.551 +1,0.788,0.493,0.655,0,0,0,0,0,0.17 +1,0.772,0.649,0.829,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0,0,0,0 +1,0.679,0.704,0.821,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0.0166 +1,0.568,0.141,0.183,0,0,0,0,0,0.43 +1,0.56,0.0348,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0368,0.172,0,0,0,0,0,0.133 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0.267,0.0848 +0.333,0.591,0.0604,0.16,0,0,0,0,0.233,0.212 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0424 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.382 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0848 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.297 +0.333,0.632,0.113,0.2,0,0,0,0,0.5,0.212 +0.333,0.637,0.148,0.251,0,0,0,0,0,0.127 +0.333,0.632,0.203,0.309,0,0,0,0,0,0.0424 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.214 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0.5,0.276 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.0751 +1,0.578,0.0433,0.236,0,0,0,0,0.25,0.419 +1,0.609,0.0577,0.295,0.355,0.233,0,0,0,0.187 +0.667,0.591,0.0427,0.175,0.574,0,0,0,0,0.466 +0.667,0.62,0.0813,0.299,1,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0.732,0,0,0,0,0.059 +1,0.649,0.142,0.394,0.58,0,0,0,0.0167,0.407 +1,0.649,0.149,0.382,0.565,0,0.611,0.467,1,0.31 +1,0.649,0.169,0.378,0,0,0.391,0,1,0.382 +1,0.649,0.179,0.379,0,0,0.476,0,0.483,0.207 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.37 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.324 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.487 +1,0.788,0.413,0.655,0.0814,0.0167,0,0,0,0.14 +1,0.772,0.578,0.829,0.592,0.217,0.0906,0.267,0,0.389 +1,0.681,0.481,0.62,0,0,0.102,0.2,0.25,0.48 +1,0.64,0.456,0.564,0,0,0,0,0,0.111 +1,0.599,0.278,0.356,0,0,0,0,0,0.287 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.111 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.591,0.0427,0.175,0.443,0.233,0,0,0,0.127 +0.667,0.591,0.0486,0.174,0.734,0,0,0,0,0.0848 +0.667,0.591,0.0532,0.17,0.686,0,0,0,0.25,0.0848 +0.667,0.591,0.0577,0.164,0.207,0,0,0,0,0.297 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0424 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0424 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.339 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0424 +0.667,0.671,0.172,0.294,0,0,0,0,0.0167,0.127 +1,0.772,0.307,0.501,0,0,0,0,0.983,0 +1,0.788,0.413,0.655,0,0,0,0,0,0.0848 +1,0.702,0.39,0.569,0,0,0,0,0.25,0.0424 +1,0.681,0.481,0.62,0.0933,0.0167,0,0,0,0 +1,0.64,0.456,0.564,0.655,0.217,0,0,0,0 +1,0.58,0.147,0.203,0.728,0,0,0,0,0.157 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0777 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0.5,0.102 +1,0.585,0.0368,0.172,0,0,0,0,0,0.501 +1,0.62,0.0695,0.301,0,0,0,0,0,0.33 +1,0.62,0.0813,0.299,0,0,0,0,0,0.224 +0.667,0.62,0.0905,0.291,0,0,0,0,0.25,0.0848 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0424 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0848 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.17 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.0848 +0.667,0.671,0.172,0.294,0,0,0,0,0.5,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.17 +0.667,0.712,0.28,0.453,0,0,0,0,0,0.0848 +0.667,0.702,0.39,0.569,0,0,0,0,0,0.0424 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.0424 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.193 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.306 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0.69,0.733,0,0,0,0.0424 +0.667,0.62,0.0813,0.299,0.15,0,0,0,0,0.0848 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0424 +0.667,0.62,0.105,0.271,0,0,0,0,0,0.0424 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.0424 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0424 +0.667,0.601,0.0774,0.162,0,0,0,0,0,0.0424 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0.212 +0.667,0.632,0.113,0.2,0,0,0.358,0.7,0,0.254 +0.667,0.712,0.28,0.453,0.1,0.0167,0.526,0,0,0.0424 +1,0.772,0.578,0.829,0.789,0.217,0.0616,0,0,0.127 +0.667,0.681,0.481,0.62,0,0,0,0,0,0.127 +1,0.679,0.676,0.821,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0367 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0.35 +0.667,0.591,0.0737,0.174,0,0,0,0,0.5,0.17 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0.17 +0.667,0.62,0.167,0.279,0,0,0.0453,0.0167,0,0.149 +1,0.62,0.179,0.271,0,0,0.653,0.45,0,0.0424 +1,0.62,0.21,0.269,0,0,0.588,0,0,0.0424 +0.667,0.591,0.129,0.159,0,0,0.0771,0,0,0.0424 +1,0.64,0.263,0.274,0,0,0,0,0,0 +1,0.671,0.276,0.294,0,0,0,0,0,0.297 +1,0.702,0.285,0.35,0,0,0,0,0,0.127 +1,0.712,0.335,0.453,0,0,0,0,0,0.0424 +1,0.772,0.649,0.829,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0.102 +0.667,0.64,0.475,0.564,0,0,0,0,0,0.272 +0.667,0.599,0.302,0.356,0,0,0.0694,0.267,0,0.155 +0.667,0.568,0.141,0.183,0,0,0,1,0,0.158 +0.667,0.562,0.0181,0.0495,0,0,0,0.383,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0.5,0.254 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0.153 +0.667,0.62,0.153,0.291,0,0,0,0,0,0.514 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0.0424 +0.333,0.591,0.0986,0.16,0,0,0,0,0.517,0 +0.333,0.591,0.114,0.159,0,0,0,0,0.233,0.509 +0.333,0.591,0.129,0.159,0,0,0,0,0,0.17 +0.333,0.601,0.14,0.162,0,0,0,0,0,0.339 +0.667,0.671,0.276,0.294,0,0,0,0,0,0.127 +0.667,0.632,0.152,0.2,0,0,0,0,0,0 +0.667,0.712,0.335,0.453,0,0,0,0,0,0.17 +1,0.772,0.649,0.829,0,0,0,0,0,0.0587 +1,0.741,0.763,0.905,0,0,0,0,0,0.277 +1,0.679,0.704,0.821,0,0,0,0,0,0.282 +1,0.58,0.16,0.203,0,0,0,0,0,0 +1,0.565,0.0796,0.116,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.57,0.0296,0.143,0,0,0,0,0,0.319 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0.127 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.127 +0.333,0.591,0.0532,0.17,0,0,0.18,0.267,0,0.424 +0.333,0.591,0.0577,0.164,0,0,0.386,0.433,0,0.0424 +0.333,0.591,0.0604,0.16,0,0,0.327,0,0,0.297 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0.25,0.0424 +1,0.726,0.25,0.417,0,0,0,0,0,0.0424 +1,0.772,0.307,0.501,0,0,0,0,0,0.297 +1,0.788,0.413,0.655,0,0,0,0,0,0.0424 +1,0.772,0.578,0.829,0,0,0.362,0.517,0,0.0848 +1,0.741,0.713,0.905,0,0,0.0736,0.183,0,0 +1,0.64,0.456,0.564,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0424 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.244 +1,0.578,0.0433,0.236,0,0,0,0,0.25,0.681 +1,0.633,0.0786,0.417,0,0,0,0,0,0.16 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.785 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.182 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.137 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.0424 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.0848 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.212 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.0848 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.424 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.234 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0424 +0.667,0.712,0.28,0.453,0,0,0.139,0.267,0,0.0424 +1,0.772,0.578,0.829,0,0,0.355,0.2,0,0.0424 +1,0.741,0.713,0.905,0,0,0,0,0.25,0.273 +1,0.64,0.456,0.564,0,0,0,0,0,0.226 +1,0.599,0.278,0.356,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0848 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.127 +1,0.57,0.0296,0.143,0,0,0,0,0,0.0424 +1,0.633,0.0786,0.417,0,0,0,0,0,0.0848 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.339 +0.667,0.62,0.0905,0.291,0.408,0.267,0,0,0,0.17 +0.333,0.591,0.0577,0.164,0.516,0.217,0,0,0,0 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.212 +0.667,0.62,0.125,0.269,0,0,0,0,0,0.212 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0848 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.17 +1,0.772,0.307,0.501,0,0,0,0,0.267,0.127 +1,0.788,0.413,0.655,0,0,0,0,0.233,0.0424 +1,0.772,0.578,0.829,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0.0944 +1,0.679,0.676,0.821,0,0,0,0,0,0.0171 +1,0.618,0.409,0.51,0,0,0,0,0,0.0685 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0224,0.0798,0,0,0.388,0.467,0,0.0424 +1,0.578,0.0433,0.236,0,0,0.551,0,0,0.0424 +0.667,0.585,0.0368,0.172,0,0,0.735,0,0,0.332 +1,0.62,0.0695,0.301,0,0,0.017,0,0,0.234 +1,0.591,0.0486,0.174,0,0,0,0,0,0.34 +1,0.591,0.0532,0.17,0,0,0,0,0,0.401 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0.0848 +0.667,0.62,0.125,0.269,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0.558,0.767,0,0.254 +0.667,0.671,0.172,0.294,0,0,0.207,0.417,0,0.257 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.198 +1,0.788,0.413,0.655,0,0,0,0,0.25,0.0848 +1,0.772,0.578,0.829,0,0,0,0,0.5,0.103 +0.667,0.681,0.481,0.62,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0.0848 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0174 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.535 +1,0.57,0.0296,0.143,0,0,0,0,0,0.15 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0 +0.667,0.62,0.0813,0.299,0,0,0,0,0.0167,0.127 +0.667,0.62,0.0905,0.291,0,0,0,0,0.233,0.17 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0.0424 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0.127 +0.667,0.591,0.0702,0.159,0,0,0.379,0.467,0,0.127 +0.667,0.601,0.0774,0.162,0,0,0.501,0,0,0 +0.667,0.616,0.0938,0.172,0,0,0.419,0,0,0 +1,0.702,0.21,0.35,0,0,0.436,0,0,0.212 +1,0.788,0.413,0.655,0,0,0.333,0,0,0.165 +1,0.772,0.578,0.829,0,0,0.328,0,0,0.326 +1,0.741,0.713,0.905,0,0,0.773,0,0,0.297 +1,0.679,0.676,0.821,0,0,0.198,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0.371 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0.0424 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0.285 +0.667,0.62,0.153,0.291,0,0,0,0,0,0.297 +0.667,0.62,0.167,0.279,0,0,0,0,0.0167,0 +0.667,0.62,0.179,0.271,0,0,0,0,0.233,0.254 +0.333,0.591,0.114,0.159,0,0,0,0,0,0.312 +0.667,0.62,0.239,0.269,0.0604,0.0167,0,0,0,0.17 +0.667,0.64,0.263,0.274,0.73,0.217,0,0,0,0.339 +0.667,0.671,0.276,0.294,0.785,0,0,0,0,0.0848 +1,0.772,0.419,0.501,0.571,0,0,0,0,0.0424 +1,0.788,0.493,0.655,0.855,0,0,0,0.517,0 +1,0.772,0.649,0.829,0.589,0,0.183,0.267,1,0.0424 +1,0.741,0.763,0.905,0.705,0,0.323,0.433,1,0 +1,0.679,0.704,0.821,0.713,0,0.436,0,1,0.0424 +1,0.58,0.16,0.203,0,0,0,0,0.25,0.114 +1,0.565,0.0796,0.116,0,0,0,0,0,0.0178 +1,0.56,0.0409,0.0743,0,0,0,0,0,0.306 +1,0.56,0.0265,0.0578,0,0,0,0,0,0.127 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.609,0.0624,0.295,0,0,0,0,0,0.143 +1,0.62,0.0991,0.301,0,0,0,0,0,0.129 +0.333,0.591,0.0737,0.174,0,0,0,0,0.5,0.0848 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0.127 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0.0424 +0.667,0.62,0.21,0.269,0,0,0,0,0,0.382 +0.667,0.62,0.239,0.269,0,0,0,0,0.767,0.17 +0.667,0.601,0.14,0.162,0,0,0,0,1,0.0424 +0.667,0.616,0.147,0.172,0,0,0,0,1,0.17 +1,0.702,0.285,0.35,0,0,0,0,1,0 +0.667,0.637,0.177,0.251,0,0,0,0,0.5,0.127 +1,0.772,0.649,0.829,0,0,0,0,0,0 +1,0.741,0.763,0.905,0,0,0.00425,0.0167,0,0 +1,0.64,0.475,0.564,0,0,0.386,0.683,0,0 +1,0.599,0.302,0.356,0,0,0.539,0,0,0.018 +1,0.565,0.0796,0.116,0,0,0,0,0,0.216 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.56,0.0178,0.0506,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.127 +1,0.578,0.0433,0.236,0,0,0,0,0.25,0.168 +1,0.609,0.0577,0.295,0.0891,0.0167,0,0,0,0.0424 +1,0.62,0.0695,0.301,0.759,1,0,0,0,0.176 +1,0.62,0.0813,0.299,0.152,0.45,0,0,0,0.378 +0.667,0.591,0.0532,0.17,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0.0167,0.0424 +0.667,0.62,0.105,0.271,0,0,0,0,0.733,0 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.127 +1,0.62,0.125,0.269,0,0,0,0,0,0.127 +1,0.679,0.2,0.387,0,0,0,0,0,0.17 +1,0.726,0.25,0.417,0,0,0,0,0.5,0.0424 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.212 +0.667,0.637,0.148,0.251,0,0,0,0,0,0.0424 +1,0.702,0.39,0.569,0.644,0.233,0,0,0,0.291 +1,0.681,0.481,0.62,0.801,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0.119 +1,0.565,0.0695,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0596 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.263 +1,0.578,0.0433,0.236,0,0,0,0,0,0.288 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.0167,0.369 +0.667,0.62,0.0695,0.301,0,0,0,0,0.233,0.297 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.0424 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.0424 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0.127 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.0424 +0.333,0.601,0.0774,0.162,0,0,0,0,0.5,0.297 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.0848 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.0424 +0.667,0.712,0.28,0.453,0,0,0,0,0.5,0.0424 +1,0.772,0.578,0.829,0,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0969 +1,0.609,0.0577,0.295,0,0,0,0,0,0.164 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0.406 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0.382 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0.146 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0848 +0.667,0.62,0.105,0.271,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0.0424 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.0424 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.297 +1,0.772,0.307,0.501,0.0851,0.0167,0,0,0,0.0424 +0.667,0.712,0.28,0.453,0.811,0.217,0,0,0.25,0.0424 +0.667,0.702,0.39,0.569,0.588,0,0,0,0,0.0602 +1,0.741,0.713,0.905,0.812,0,0.0948,0.7,0,0.478 +1,0.679,0.676,0.821,0.617,0,0,0,0,0.179 +1,0.58,0.147,0.203,0.167,0,0,0,0,0.0824 +1,0.565,0.0695,0.116,0,0,0,0,0,0.0997 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.0848 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.0424 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.0424 +1,0.618,0.0989,0.3,0,0,0,0,0,0.0848 +1,0.618,0.104,0.292,0,0,0,0,0,0.0424 +1,0.618,0.117,0.289,0,0,0,0,0.133,0.339 +1,0.618,0.124,0.297,0,0,0,0,0.95,0.127 +1,0.639,0.138,0.338,0,0,0.0283,0.133,0,0.0424 +0.667,0.67,0.17,0.425,0,0,0.637,1,0,0 +0.667,0.7,0.208,0.553,0,0,0.433,0.283,0,0.0848 +1,0.785,0.409,0.946,0.313,0.383,0.831,0,0,0.414 +1,0.77,0.573,0.919,0.328,0.667,0.587,0,0,0.212 +0.667,0.68,0.477,0.515,0,0,0.256,0,0,0 +0.667,0.6,0.234,0.222,0,0,0,0,0,0 +0.667,0.58,0.146,0.197,0,0,0,0,0,0.126 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.309 +1,0.559,0.0223,0.0578,0,0,0,0,0,0.0828 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.189 +1,0.569,0.0294,0.147,0,0,0,0,0,0.473 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.233 +0.667,0.618,0.069,0.318,0,0,0,0,0.267,0.679 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.297 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.0424 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.17 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.127 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.0848 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.221 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.396 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.0424 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.146 +1,0.677,0.671,0.566,0,0,0,0,0,0.309 +1,0.58,0.146,0.197,0,0,0,0,0,0.212 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0.0167,0.164 +1,0.569,0.0277,0.147,0,0,0,0,0.25,0.397 +1,0.608,0.0619,0.305,0,0,0,0,0,0.0595 +1,0.618,0.0983,0.318,0,0,0,0,0,0.188 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0849,0.181,0,0,0,0,0.0167,0 +0.667,0.618,0.166,0.3,0.086,0.0167,0,0,0.517,0 +0.333,0.59,0.0979,0.171,0.675,0.233,0,0,0,0.0848 +0.333,0.59,0.113,0.169,0.604,0,0,0,0,0.0848 +0.333,0.59,0.128,0.173,0.633,0,0.0609,0.0167,0,0.0424 +0.333,0.6,0.139,0.194,0,0,0.864,0.683,0,0.127 +0.333,0.616,0.146,0.237,0,0,0.771,0,0.267,0.0848 +0.667,0.7,0.283,0.553,0,0,0.688,0,0,0.0848 +1,0.785,0.489,0.946,0,0,0.449,0,0,0.0424 +0.667,0.7,0.435,0.629,0.664,0.517,0,0,0,0.285 +0.667,0.68,0.51,0.515,0.157,0,0,0,0,0.195 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.115 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0.0424 +1,0.559,0.0199,0.0495,0,0,0,0,0,0.17 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0591 +1,0.608,0.0619,0.305,0,0,0,0,0,0.244 +1,0.618,0.0983,0.318,0,0,0,0,0,0.195 +1,0.647,0.183,0.456,0,0,0,0,0,0.871 +1,0.647,0.218,0.443,0,0,0,0,0,0.148 +0.667,0.618,0.166,0.3,0,0,0,0,0,0.285 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.138 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.424 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.0424 +0.333,0.6,0.139,0.194,0,0,0,0,0,0 +0.667,0.67,0.274,0.425,0,0,0,0,0,0.0424 +0.667,0.7,0.283,0.553,0,0,0,0,0.267,0 +1,0.785,0.489,0.946,0,0,0,0,0,0.0848 +1,0.77,0.643,0.919,0.503,0.25,0,0,0,0.311 +1,0.739,0.756,0.747,0.263,0.0167,0,0,0,0 +1,0.677,0.698,0.566,0.591,0.233,0,0,0,0 +1,0.58,0.159,0.197,0,0,0,0,0,0.212 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.107 +1,0.585,0.0366,0.177,0,0,0.115,0.133,0,0.25 +1,0.618,0.069,0.318,0,0,0.443,0.567,0,0.17 +1,0.618,0.0807,0.321,0,0,0.372,0,0,0.0848 +0.667,0.618,0.0898,0.312,0,0,0.844,0.467,0.633,0.127 +0.667,0.618,0.0989,0.3,0,0,0,0,0.45,0 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0.633,0.0848 +0.667,0.618,0.124,0.297,0,0,0,0,0.183,0.382 +0.667,0.639,0.138,0.338,0,0,0.143,0.383,0,0.127 +0.667,0.67,0.17,0.425,0,0,0.262,0.0833,0,0.127 +0.667,0.7,0.208,0.553,0,0,0.575,0,0,0.227 +1,0.785,0.409,0.946,0,0,0.668,0,0,0.269 +1,0.77,0.573,0.919,0,0,0.327,0,0,0.0848 +1,0.739,0.708,0.747,0,0,0.478,0,0,0 +1,0.639,0.452,0.394,0,0,0.0934,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0.139 +1,0.564,0.0691,0.116,0,0,0,0,0,0.152 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.0848 +0.667,0.59,0.0483,0.185,0.527,0.25,0,0,0,0 +0.667,0.618,0.0898,0.312,0.145,0,0,0,0,0.0424 +0.333,0.59,0.0574,0.175,0,0,0,0,0.383,0 +0.667,0.618,0.104,0.292,0,0,0,0,0.15,0.127 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0424 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.17 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.254 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0424 +1,0.77,0.304,0.804,0.139,0.133,0,0,0,0 +1,0.785,0.409,0.946,0.64,0.117,0,0,0,0.127 +1,0.77,0.573,0.919,0.527,0,0,0,0,0 +1,0.739,0.708,0.747,0.862,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0.287 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0,0,0.267,0.13 +1,0.631,0.078,0.433,0.765,0.25,0,0,0,0.103 +0.667,0.618,0.069,0.318,0.137,0,0,0,0.267,0.254 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0848 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.0424 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.17 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.127 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0424 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0848 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0.254 +1,0.67,0.17,0.425,0,0,0,0,0,0.254 +1,0.7,0.208,0.553,0,0,0,0,0.267,0.0424 +1,0.711,0.278,0.647,0,0,0,0,0,0 +1,0.7,0.387,0.629,0,0,0,0,0.533,0.0424 +1,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0.0848 +1,0.559,0.0151,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +1,0.569,0.0294,0.147,0,0,0,0,0.683,0.0424 +1,0.585,0.0366,0.177,0,0,0,0,0,0.17 +1,0.618,0.069,0.318,0,0,0,0,0,0.127 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.145 +1,0.647,0.127,0.443,0,0,0,0,0,0 +0.667,0.59,0.0574,0.175,0,0,0,0,0.267,0.0424 +0.667,0.618,0.104,0.292,0,0,0,0,0,0.212 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.662 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.239 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.26 +0.333,0.616,0.0931,0.237,0,0,0,0,0.633,0.127 +0.667,0.7,0.208,0.553,0,0,0,0,0.183,0.17 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0.147 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.127 +1,0.569,0.0294,0.147,0,0,0,0,0,0.17 +1,0.585,0.0366,0.177,0,0,0,0,0.267,0.551 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.127 +0.667,0.618,0.0807,0.321,0.298,0.25,0,0,0.267,0.298 +0.667,0.618,0.0898,0.312,0.487,0,0.449,0.383,0,0.361 +0.333,0.59,0.0574,0.175,0,0,0.593,0.317,0,0.128 +0.333,0.59,0.06,0.171,0,0,0.573,0,0,0.0848 +0.333,0.59,0.0665,0.169,0,0,0.318,0,0,0 +0.667,0.59,0.0697,0.173,0,0,0.669,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0.393,0,0,0 +0.667,0.67,0.17,0.425,0,0,0.163,0,0,0.127 +1,0.77,0.304,0.804,0,0,0,0,0,0.0848 +1,0.785,0.409,0.946,0,0,0,0,0,0.202 +0.667,0.7,0.387,0.629,0.395,0.25,0,0,0,0.0999 +0.667,0.68,0.477,0.515,0.45,0,0,0,0,0 +0.667,0.6,0.234,0.222,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0165 +1,0.559,0.0199,0.0495,0,0,0,0,0,0.211 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.569,0.0277,0.147,0,0,0,0,0,0.0424 +1,0.585,0.04,0.177,0,0,0,0,0,0.145 +1,0.618,0.0983,0.318,0,0,0,0,0,0.375 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0.254 +0.667,0.618,0.152,0.312,0,0,0,0,0,0 +0.333,0.59,0.092,0.175,0,0,0,0,0,0.0848 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0566 +0.667,0.59,0.113,0.169,0,0,0,0,0,0.489 +0.667,0.59,0.128,0.173,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0174 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.384 +1,0.77,0.415,0.804,0,0,0,0,0.767,0.345 +0.667,0.711,0.332,0.647,0,0,0,0,0.317,0 +1,0.77,0.643,0.919,0.232,0.25,0,0,1,0.0848 +1,0.739,0.756,0.747,0.478,0,0,0,0.1,0.17 +1,0.677,0.698,0.566,0,0,0,0,0,0.0299 +1,0.58,0.159,0.197,0,0,0,0,0,0.219 +1,0.564,0.079,0.116,0,0,0,0,0,0.0812 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.0599 +1,0.559,0.0212,0.0816,0,0,0,0,0,0.302 +1,0.569,0.0277,0.147,0.0695,0.0167,0,0,0.517,0.212 +1,0.585,0.04,0.177,0.516,0.233,0,0,0.0167,0.103 +1,0.618,0.0983,0.318,0,0,0.355,0.467,0,0.0896 +0.667,0.59,0.0732,0.185,0,0,0.102,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.297 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.254 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0848 +0.333,0.631,0.15,0.301,0,0,0,0,0.517,0.127 +0.667,0.711,0.332,0.647,0,0,0,0,0.0167,0.127 +1,0.77,0.643,0.919,0,0,0,0,0,0.315 +1,0.739,0.756,0.747,0,0,0,0,0,0.275 +1,0.639,0.471,0.394,0,0,0,0,0,0.236 +1,0.598,0.3,0.345,0,0,0,0,0,0.267 +1,0.567,0.14,0.183,0,0,0,0,0,0.0163 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0.633,0.212 +0.667,0.59,0.0424,0.184,0,0,0.323,0.633,1,0.0848 +0.667,0.59,0.0483,0.185,0,0,0.245,0.0667,0,0.186 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.18 +1,0.618,0.0989,0.3,0,0,0,0,0,0.635 +1,0.618,0.104,0.292,0,0,0,0,0,0.273 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.551 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.0848 +0.667,0.639,0.138,0.338,0,0,0,0,0,0 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0424 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.0424 +0.333,0.636,0.147,0.348,0,0,0,0,0.383,0 +1,0.77,0.573,0.919,0,0,0,0,0.15,0.0424 +1,0.739,0.708,0.747,0,0,0,0,0,0.135 +1,0.677,0.671,0.566,0,0,0,0,0,0.314 +1,0.616,0.405,0.493,0,0,0,0,0,0.421 +1,0.567,0.122,0.183,0,0,0,0,0,0.258 +1,0.557,0.0534,0.099,0,0,0,0,0,0.471 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.155 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.453 +1,0.569,0.0294,0.147,0,0,0,0,0.133,0.294 +1,0.608,0.0573,0.305,0,0,0,0,0.4,0.274 +0.667,0.59,0.0424,0.184,0.522,0.25,0,0,0,0.167 +0.667,0.59,0.0483,0.185,0.278,0,0,0,0,0.0424 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.212 +0.667,0.59,0.0574,0.175,0,0,0,0,0,0 +0.667,0.59,0.06,0.171,0,0,0,0,0,0 +0.667,0.59,0.0665,0.169,0,0,0,0,0,0.0424 +0.667,0.59,0.0697,0.173,0,0,0.566,0.467,0,0.0848 +0.667,0.6,0.0769,0.194,0,0,0.403,0,0,0.0424 +1,0.724,0.248,0.612,0,0,0.248,0,0,0.35 +1,0.77,0.304,0.804,0,0,0,0,0.133,0.118 +1,0.785,0.409,0.946,0.19,0.133,0,0,0.133,0.297 +1,0.77,0.573,0.919,0.602,0.117,0,0,0,0.0424 +1,0.68,0.477,0.515,0.794,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.121,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.253 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.23 +1,0.569,0.0294,0.147,0,0,0,0,0,0.0424 +1,0.585,0.0366,0.177,0,0,0,0,0,0.356 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.0424 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0424 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.254 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.339 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.0424 +0.333,0.6,0.0769,0.194,0,0,0.684,0.7,0,0.127 +0.667,0.67,0.17,0.425,0,0,0.522,0,0,0 +0.667,0.7,0.208,0.553,0,0,0.345,0,0,0.127 +0.667,0.711,0.278,0.647,0,0,0.705,0,0.383,0.0848 +1,0.77,0.573,0.919,0.322,0.25,0.375,0,0.7,0.17 +1,0.739,0.708,0.747,0.542,0,0.655,0,0,0 +1,0.639,0.452,0.394,0,0,0.865,0,0,0.0424 +1,0.598,0.276,0.345,0,0,0.159,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.467 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.127 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.144 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.216 +0.667,0.618,0.0898,0.312,0.725,0.25,0,0,0,0.158 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.485 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.278 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0424 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.212 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.212 +1,0.724,0.248,0.612,0,0,0,0,0.533,0.254 +1,0.77,0.304,0.804,0,0,0,0,0,0.0424 +1,0.785,0.409,0.946,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.113,0.133,0,0,0,0.149 +1,0.739,0.708,0.747,0.629,0.117,0,0,0,0.15 +1,0.677,0.671,0.566,0,0,0,0,0,0.127 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.127 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.0424 +1,0.577,0.043,0.245,0,0,0,0,0,0.265 +1,0.631,0.078,0.433,0,0,0,0,0,0.239 +1,0.647,0.0955,0.452,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.0424 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.337 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0424 +0.333,0.59,0.06,0.171,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.0848 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.17 +0.667,0.67,0.17,0.425,0,0,0,0,0.533,0.0848 +0.667,0.7,0.208,0.553,0,0,0,0,0.267,0.127 +1,0.785,0.409,0.946,0,0,0,0,0.267,0.0424 +0.667,0.7,0.387,0.629,0,0,0,0,0,0 +1,0.739,0.708,0.747,0.192,0.133,0,0,0,0.0424 +1,0.639,0.452,0.394,0.789,0.117,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +1,0.559,0.0173,0.0495,0,0,0,0,0,0.0582 +1,0.559,0.0192,0.051,0,0,0,0,0.767,0.431 +1,0.557,0.0242,0.114,0,0,0,0,0.6,0.339 +1,0.577,0.0372,0.245,0,0,0,0,0,0.0424 +0.667,0.608,0.0619,0.305,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0.0167,0.17 +0.333,0.59,0.128,0.173,0,0,0,0,0.517,0.127 +0.667,0.639,0.261,0.338,0,0,0,0,0,0.127 +0.667,0.67,0.274,0.425,0,0,0,0,0,0.212 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.127 +1,0.785,0.489,0.946,0,0,0,0,0,0.0424 +1,0.77,0.643,0.919,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0.12 +1,0.567,0.14,0.183,0,0,0,0,0,0.122 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0169 +1,0.569,0.0277,0.147,0,0,0,0,0,0.396 +1,0.585,0.04,0.177,0,0,0,0,0,0.4 +0.667,0.618,0.0983,0.318,0.276,0.25,0,0,0,0.359 +0.667,0.618,0.128,0.321,0.688,0,0,0,0,0.112 +0.333,0.59,0.0849,0.181,0.364,0,0,0,0,0.0848 +0.333,0.59,0.092,0.175,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.0424 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.0848 +0.333,0.59,0.128,0.173,0,0,0,0,0,0.0424 +0.333,0.6,0.139,0.194,0,0,0,0,0.0167,0.0424 +0.667,0.67,0.274,0.425,0.0933,0.0167,0,0,0.517,0.127 +0.667,0.7,0.283,0.553,0.662,0.233,0,0,0,0.0424 +0.667,0.711,0.332,0.647,0.342,0,0,0,0,0.127 +1,0.77,0.643,0.919,0,0,0,0,0,0.102 +1,0.739,0.756,0.747,0,0,0,0,0,0.294 +1,0.639,0.471,0.394,0,0,0,0,0,0.136 +1,0.58,0.159,0.197,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0944 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.133,0.0966 +0.667,0.618,0.069,0.318,0,0,0,0,0.683,0.127 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.17 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0848 +1,0.647,0.148,0.413,0,0,0,0,0,0.127 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0424 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.127 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.212 +0.667,0.67,0.17,0.425,0,0,0,0,0.383,0 +0.333,0.631,0.112,0.301,0,0,0,0,0.15,0.17 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.786 +1,0.77,0.573,0.919,0,0,0,0,0,0.119 +1,0.739,0.708,0.747,0,0,0,0,0,0.138 +1,0.677,0.671,0.566,0,0,0,0,0,0.162 +1,0.598,0.276,0.345,0,0,0,0,0,0.0761 +1,0.564,0.0691,0.116,0,0,0,0,0,0.0607 +1,0.559,0.0346,0.0743,0,0,0,0,0,0.121 +1,0.559,0.0223,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.139 +1,0.577,0.043,0.245,0,0,0,0,0.267,0.119 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.339 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0.339 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.127 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0424 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0424 +1,0.647,0.177,0.421,0,0,0,0,0,0.0424 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.0848 +1,0.724,0.248,0.612,0,0,0,0,0,0.0424 +1,0.77,0.304,0.804,0,0,0,0,0,0.127 +1,0.785,0.409,0.946,0,0,0,0,0,0.127 +1,0.77,0.573,0.919,0,0,0,0,0,0.0848 +1,0.621,0.246,0.282,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.133,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0.4,0.17 +0.333,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.0848 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0.297 +0.667,0.618,0.0898,0.312,0.64,0.25,0,0,0,0.0424 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.254 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.127 +1,0.677,0.199,0.482,0,0,0,0,0,0.254 +1,0.724,0.248,0.612,0,0,0,0,0,0.127 +0.667,0.7,0.208,0.553,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.0848 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.0848 +0.667,0.68,0.477,0.515,0,0,0,0,0,0.127 +0.667,0.6,0.234,0.222,0,0,0,0,0,0.0848 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0.133,0 +1,0.585,0.0366,0.177,0,0,0,0,0.133,0 +1,0.59,0.0424,0.184,0,0,0,0,0,0.0424 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0528,0.181,0,0,0,0,0,0.192 +0.667,0.618,0.0989,0.3,0.121,0.133,0.418,0.467,0,0.297 +0.667,0.618,0.104,0.292,0.501,0.117,0,0,0,0.0848 +0.667,0.618,0.117,0.289,0.694,0,0,0,0,0.275 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0.136 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.127 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.783 +1,0.77,0.304,0.804,0,0,0,0,0,0.239 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.3 +1,0.77,0.573,0.919,0.287,0.383,0,0,0,0.334 +1,0.739,0.708,0.747,0.582,0.133,0,0,0,0.224 +1,0.677,0.671,0.566,0.282,0,0,0,0,0.173 +0.667,0.58,0.146,0.197,0,0,0,0,0,0.119 +1,0.567,0.122,0.183,0,0,0,0,0,0.149 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.379 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.0424 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.0848 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0.0848 +0.667,0.618,0.069,0.318,0,0,0,0,0,0.17 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0.0848 +0.333,0.59,0.0574,0.175,0,0,0.208,0.383,0,0.196 +0.667,0.618,0.104,0.292,0,0,0,0.317,0,0.799 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.0848 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0424 +0.667,0.7,0.208,0.553,0.662,0.25,0,0,0,0.127 +1,0.785,0.409,0.946,0.743,0,0,0,0,0 +0.667,0.7,0.387,0.629,0.717,0,0,0,0,0.0424 +1,0.739,0.708,0.747,0.897,0.133,0,0,0.533,0.127 +1,0.677,0.671,0.566,0.86,0.117,0,0,0,0 +1,0.598,0.276,0.345,0.181,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0.105 +1,0.559,0.0407,0.0743,0,0,0,0,0,0.0424 +1,0.559,0.0264,0.0578,0,0,0,0,0,0 +1,0.559,0.0199,0.0495,0,0,0,0,0,0.0848 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.018 +1,0.585,0.04,0.177,0,0,0,0,0,0.312 +1,0.59,0.0582,0.184,0,0,0,0,0.517,0.44 +1,0.618,0.128,0.321,0,0,0,0,0.0167,0.285 +1,0.618,0.152,0.312,0,0,0,0,0,0.0978 +1,0.618,0.166,0.3,0,0,0,0,0,0.258 +1,0.618,0.178,0.292,0,0,0.385,0.517,0,0.4 +1,0.618,0.209,0.289,0,0,0.508,0.183,0,0.524 +1,0.618,0.237,0.297,0,0,0,0,0,0.629 +1,0.639,0.261,0.338,0,0,0,0,0,0.202 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.0424 +0.667,0.631,0.15,0.301,0,0,0,0,0,0.127 +0.667,0.711,0.332,0.647,0,0,0,0,0.267,0 +1,0.77,0.643,0.919,0,0,0,0,0,0.0848 +1,0.739,0.756,0.747,0,0,0,0,0,0.0392 +1,0.639,0.471,0.394,0,0,0,0,0,0.454 +1,0.598,0.3,0.345,0,0,0,0,0,0.136 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.559,0.0264,0.0578,0,0,0,0,0,0.0578 +1,0.559,0.0199,0.0495,0,0,0,0,0,0.222 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.121 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0177 +1,0.559,0.0212,0.0816,0,0,0,0,0,0.402 +1,0.577,0.0372,0.245,0,0,0,0,0,0.228 +1,0.608,0.0619,0.305,0,0,0,0,0,0.552 +1,0.618,0.0983,0.318,0,0,0,0,0,0.13 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0.17 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.0424 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0.0848 +0.333,0.59,0.113,0.169,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0.0848 +0.333,0.6,0.139,0.194,0,0,0,0,0,0.0848 +0.333,0.616,0.146,0.237,0,0,0,0,0,0.0848 +0.667,0.7,0.283,0.553,0,0,0,0,0,0.212 +0.667,0.711,0.332,0.647,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0 +0.667,0.68,0.51,0.515,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0.127 +1,0.564,0.079,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.569,0.0294,0.147,0,0,0,0,0,0.0424 +1,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.618,0.0807,0.321,0,0,0,0,0.267,0.388 +0.667,0.618,0.0898,0.312,0,0,0.11,0.133,0,0.182 +0.667,0.618,0.0989,0.3,0,0,0.236,0.567,0,0.0424 +0.667,0.618,0.104,0.292,0,0,0.494,0,0,0.0848 +0.667,0.618,0.117,0.289,0,0,0.497,0,0,0.0424 +0.667,0.618,0.124,0.297,0,0,0.122,0,0,0.17 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.127 +1,0.77,0.304,0.804,0,0,0,0,0,0.0848 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.297 +1,0.77,0.573,0.919,0.154,0.133,0,0,0,0.0424 +1,0.739,0.708,0.747,0.446,0.117,0,0,0,0.127 +1,0.677,0.671,0.566,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0.0424 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.0424 +1,0.569,0.0294,0.147,0,0,0,0,0,0.127 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0.212 +0.667,0.618,0.0898,0.312,0,0,0.241,0.633,0,0.0424 +0.667,0.618,0.0989,0.3,0,0,0,0.0667,0,0.0424 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0848 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.382 +0.667,0.67,0.17,0.425,0,0,0,0,0,0 +1,0.77,0.304,0.804,0,0,0,0,0,0.0848 +0.667,0.711,0.278,0.647,0,0,0,0,0.267,0 +0.667,0.7,0.387,0.629,0,0,0,0,0,0.127 +0.333,0.621,0.246,0.282,0,0,0,0,0,0 +0.667,0.6,0.234,0.222,0,0,0,0,0,0.255 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.559,0.0151,0.0495,0,0,0,0,0,0.178 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.204 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.21 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0.0424 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0 +0.667,0.618,0.069,0.318,0,0,0.102,0.133,0,0.154 +0.667,0.618,0.0807,0.321,0,0,0.314,0.567,0,0.562 +0.667,0.618,0.0898,0.312,0,0,0.614,0,0,0.38 +0.667,0.618,0.0989,0.3,0,0,0.822,0,0,0.653 +0.667,0.618,0.104,0.292,0,0,0.286,0,0,0.237 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.0848 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0.533,0.0848 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.0424 +0.667,0.7,0.208,0.553,0,0,0,0,0.267,0 +1,0.785,0.409,0.946,0,0,0,0,0,0.0424 +1,0.77,0.573,0.919,0,0,0,0,0,0.212 +1,0.739,0.708,0.747,0,0,0,0,0,0.0618 +1,0.677,0.671,0.566,0,0,0,0,0,0.0424 +1,0.598,0.276,0.345,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.142 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0534 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0551 +1,0.585,0.0366,0.177,0,0,0,0,0,0.144 +1,0.647,0.0955,0.452,0,0,0,0,0.267,0.606 +0.667,0.618,0.0807,0.321,0.84,0.25,0.0991,0.633,0,0.0848 +0.667,0.618,0.0898,0.312,0.15,0,0.538,0.0667,0,0.0424 +0.667,0.618,0.0989,0.3,0,0,0.572,0,0,0.0848 +0.667,0.618,0.104,0.292,0,0,0.425,0,0,0.17 +0.667,0.618,0.117,0.289,0,0,0.473,0,0,0.0848 +0.667,0.618,0.124,0.297,0,0,0.473,0,0,0.212 +0.667,0.639,0.138,0.338,0,0,0.293,0,0,0.127 +1,0.724,0.248,0.612,0,0,0.241,0,0.633,0.0424 +1,0.77,0.304,0.804,0,0,0,0,1,0.17 +0.667,0.711,0.278,0.647,0,0,0,0,1,0.127 +1,0.77,0.573,0.919,0,0,0,0,1,0 +1,0.739,0.708,0.747,0,0,0,0,0.2,0.254 +1,0.677,0.671,0.566,0,0,0,0,0,0.0424 +1,0.598,0.276,0.345,0,0,0,0,0,0.164 +1,0.564,0.0691,0.116,0,0,0,0,0,0.13 +1,0.557,0.0534,0.099,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.142 +1,0.569,0.0294,0.147,0,0,0,0,0,0.379 +1,0.608,0.0573,0.305,0.295,0.383,0,0,0,0.17 +0.667,0.59,0.0424,0.184,0.481,0.133,0,0,0,0.127 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0.0424 +0.667,0.618,0.104,0.292,0,0,0,0,0,0 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.0424 +0.667,0.618,0.124,0.297,0,0,0,0,0,0.339 +0.667,0.639,0.138,0.338,0,0,0,0,0.267,0.297 +0.667,0.67,0.17,0.425,0,0,0,0,0.383,0.0424 +0.667,0.7,0.208,0.553,0,0,0,0,0.15,0.0424 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.0848 +1,0.77,0.573,0.919,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0.233 +1,0.639,0.452,0.394,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0 +1,0.818,0.183,0.47,0,0,0,0,0,0.201 +1,0.818,0.242,0.481,0,0,0,0,0.0167,0.933 +1,0.818,0.289,0.468,0,0,0,0,0.25,0.332 +0.667,0.732,0.217,0.316,0,0,0,0,0,0.172 +0.667,0.647,0.125,0.178,0,0,0,0,0,0.0848 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.243 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.198 +0.333,0.66,0.18,0.204,0,0,0.241,0.517,0,0.254 +0.333,0.679,0.189,0.253,0,0,0.554,0.217,0,0.382 +0.667,0.836,0.372,0.596,0,0,0.326,0,0,0.127 +1,0.993,0.647,1,0,0,0.44,0,0,0 +1,0.973,0.851,0.933,0.507,0.533,0.119,0,0,0.127 +1,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.66,0.32,0.218,0,0,0,0,0,0 +1,0.634,0.206,0.196,0,0,0,0,0,0.27 +1,0.614,0.101,0.116,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0.0167,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0.25,0 +0.667,0.732,0.168,0.337,0,0,0,0,0.267,0.131 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.254 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.17 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.127 +0.667,0.732,0.274,0.305,0,0,0,0,0,0.31 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.449 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.0424 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.0424 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.337 +1,0.993,0.647,1,0,0,0,0,0.267,0.489 +1,0.973,0.851,0.933,0,0,0,0,0,0.169 +1,0.934,1,0.732,0.212,0.267,0,0,0,0 +1,0.857,0.923,0.554,0.886,0,0,0,0,0.254 +1,0.706,0.394,0.342,0.635,0,0,0,0,0.0424 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0596 +1,0.621,0.0355,0.15,0,0,0,0,0,0.641 +1,0.64,0.0449,0.181,0,0,0,0,0,0.245 +1,0.732,0.0895,0.33,0,0,0,0,0.267,0.179 +0.667,0.647,0.0604,0.193,0,0,0.149,0.267,0,0.402 +0.667,0.647,0.0664,0.189,0,0,0.051,0.217,0.267,0.0848 +0.667,0.647,0.0724,0.183,0.54,0.267,0,0,1,0.0172 +0.667,0.732,0.136,0.307,0.686,0,0,0,1,0.316 +0.667,0.732,0.153,0.305,0.106,0,0,0,1,0.233 +0.667,0.732,0.162,0.314,0,0,0,0,1,0.268 +0.667,0.758,0.181,0.359,0,0,0,0,0.517,0.11 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.35 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.479 +0.333,0.705,0.191,0.366,0,0,0,0,0,0.37 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.0424 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.114 +0.667,0.706,0.363,0.342,0,0,0,0,0,0.173 +1,0.667,0.16,0.183,0,0,0,0,0,0.102 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.322 +1,0.608,0.026,0.0578,0,0,0,0,0,0.121 +1,0.608,0.0183,0.0495,0,0,0,0,0,0 +1,0.608,0.0166,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0.517,0.0848 +1,0.608,0.026,0.0829,0,0,0,0,0.6,0.212 +1,0.68,0.0551,0.251,0,0,0,0,0,0.107 +1,0.719,0.074,0.313,0,0,0,0,0,0.169 +1,0.732,0.0895,0.33,0,0,0,0,0,0.191 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0.0424 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.0848 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0.514,0.517,0,0,0,0.127 +0.667,0.732,0.153,0.305,0.52,0.0167,0,0,0,0.127 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0424 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.17 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.254 +1,0.973,0.402,0.869,0,0,0,0,0.267,0.339 +1,0.993,0.541,1,0,0,0,0,0,0 +1,0.973,0.758,0.933,0.512,0.267,0,0,0,0.0424 +1,0.934,0.936,0.732,0.631,0,0,0,0,0 +1,0.66,0.306,0.218,0.492,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.243 +1,0.621,0.0355,0.15,0,0,0,0,0,0.252 +1,0.64,0.0449,0.181,0,0,0,0,0,0.527 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.313 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.297 +0.667,0.732,0.117,0.328,0,0,0,0,0,0 +0.667,0.732,0.129,0.316,0.313,0.267,0,0,0,0 +0.667,0.732,0.136,0.307,0.661,0,0,0,0.0167,0.0848 +0.667,0.732,0.153,0.305,0,0,0,0,0.25,0.17 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.17 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0848 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.297 +1,0.973,0.402,0.869,0,0,0,0,0,0.0424 +1,0.993,0.541,1,0,0,0,0,0.0167,0.0424 +1,0.973,0.758,0.933,0.64,0.267,0,0,0.25,0.0424 +1,0.934,0.936,0.732,0.263,0,0,0,0,0.17 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0.517,0.127 +1,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0606 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.389 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.13 +0.667,0.64,0.0449,0.181,0,0,0.186,0.483,0,0.0424 +0.667,0.647,0.0527,0.19,0,0,0.486,0,0.0167,0.0424 +0.667,0.732,0.105,0.337,0,0,0.163,0,0.533,0.127 +0.667,0.732,0.117,0.328,0,0,0.482,0,0,0 +0.667,0.732,0.129,0.316,0,0,0.427,0,0,0 +0.667,0.732,0.136,0.307,0,0,0.685,0,0,0.164 +1,0.818,0.222,0.432,0,0,0.327,0,0,0.269 +1,0.818,0.235,0.446,0,0,0.41,0,0,0.445 +1,0.857,0.263,0.513,0,0,0.551,0,0,0.254 +1,0.915,0.327,0.661,0,0,0.391,0,0.267,0.537 +1,0.973,0.402,0.869,0,0,0.316,0,0,0.232 +1,0.993,0.541,1,0,0,0.391,0,0,0.254 +1,0.973,0.758,0.933,0,0,0,0,0,0.0424 +1,0.934,0.936,0.732,0,0,0,0,0,0.0167 +1,0.857,0.887,0.554,0,0,0,0,0,0.133 +1,0.779,0.536,0.488,0,0,0,0,0,0.234 +1,0.667,0.16,0.183,0,0,0,0,0,0.134 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.0618 +1,0.608,0.026,0.0578,0,0,0,0,0,0.216 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.171 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.21 +1,0.621,0.0355,0.15,0,0,0,0,0,0.143 +1,0.719,0.074,0.313,0,0,0,0,0,0.618 +1,0.818,0.126,0.47,0,0,0,0,0.0167,0.286 +1,0.732,0.105,0.337,0,0,0,0,0.25,0.403 +1,0.818,0.168,0.468,0,0,0,0,0,0.282 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.339 +0.667,0.732,0.136,0.307,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0424 +0.333,0.647,0.0888,0.182,0,0,0,0,0.267,0.0848 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0424 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0424 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.0424 +0.333,0.705,0.191,0.366,0,0,0,0,0,0.212 +0.333,0.699,0.263,0.344,0,0,0,0,0,0.337 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0.112 +1,0.614,0.0879,0.116,0,0,0,0,0,0.0179 +1,0.654,0.0816,0.099,0,0,0,0,0,0.503 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.212 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0241,0.0829,0,0,0,0,0,0 +1,0.68,0.0473,0.251,0,0,0,0,0,0.0176 +1,0.719,0.0799,0.313,0,0,0,0,0,0.38 +1,0.732,0.128,0.33,0,0,0,0,0,0.743 +1,0.732,0.168,0.337,0,0,0,0,0,0.204 +1,0.732,0.198,0.328,0,0,0,0,0,0.482 +0.667,0.732,0.217,0.316,0,0,0,0,0.267,0.369 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.545 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.0848 +0.667,0.732,0.312,0.314,0,0,0,0,0,0.127 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.254 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.17 +1,0.973,0.549,0.869,0,0,0,0,0.267,0.0424 +1,0.849,0.437,0.683,0,0,0,0,0,0.0424 +1,0.973,0.851,0.933,0,0,0,0,0,0 +1,0.934,1,0.732,0.558,0.517,0,0,0.267,0 +1,0.857,0.923,0.554,0.646,0.3,0,0,0,0 +0.667,0.706,0.394,0.342,0.516,0,0,0,0.267,0 +1,0.667,0.183,0.183,0,0,0,0,0.567,0.36 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.608,0.0215,0.0513,0,0,0,0,0,0.0848 +1,0.608,0.0241,0.0829,0,0,0,0,0,0.127 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.17 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0,0,0,0,0.517,0.127 +0.333,0.562,0.0181,0.0495,0,0,0,0,0.0333,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.0848 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.424 +0.333,0.647,0.165,0.182,0,0,0,0,0,0 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.127 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.272 +0.667,0.836,0.372,0.596,0,0,0,0,0,0.372 +0.667,0.849,0.437,0.683,0.105,0.0167,0,0,0.0167,0.622 +0.667,0.836,0.573,0.638,0.716,0.25,0.0623,0.267,0.25,0.249 +1,0.934,1,0.732,0,0,0,0.217,0,0.127 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0.0424 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.173 +1,0.719,0.074,0.313,0,0,0,0,0,0.439 +0.667,0.647,0.0527,0.19,0,0,0,0,0.517,0.247 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0333,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.212 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0.297 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.17 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.254 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.212 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0424 +0.667,0.836,0.273,0.596,0,0,0,0,0.267,0 +1,0.993,0.541,1,0.104,0.0167,0,0,1,0.0848 +1,0.973,0.758,0.933,0.547,0.25,0,0,0.417,0.0424 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.22 +1,0.719,0.074,0.313,0,0,0,0,0.267,0.683 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.0606 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.47 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.615 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.267,0 +1,0.973,0.402,0.869,0,0,0,0,0.283,0.0424 +1,0.993,0.541,1,0,0,0,0,0,0.127 +1,0.973,0.758,0.933,0,0,0,0,0,0.127 +1,0.934,0.936,0.732,0,0,0,0,0,0.0848 +1,0.857,0.887,0.554,0,0,0.0821,0.0167,0,0.136 +1,0.779,0.536,0.488,0,0,0.493,0.467,0,0 +1,0.72,0.232,0.249,0,0,0.622,0,0,0 +1,0.608,0.0424,0.0743,0,0,0.353,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0.254 +1,0.608,0.026,0.0829,0,0,0,0,0,0.339 +1,0.68,0.0551,0.251,0,0,0.0467,0.0167,0,0.371 +0.667,0.719,0.074,0.313,0,0,0.403,0.467,0,0 +0.667,0.732,0.0895,0.33,0,0,0.487,0,0,0 +0.667,0.732,0.105,0.337,0,0,0.606,0,0,0 +0.667,0.732,0.117,0.328,0,0,0.392,0,0,0.127 +0.667,0.732,0.129,0.316,0,0,0.304,0,0,0.0424 +1,0.732,0.136,0.307,0,0,0.72,0,0,0.17 +1,0.732,0.153,0.305,0,0,0.195,0,0,0.0848 +1,0.818,0.235,0.446,0,0,0.051,0.0167,0,0.0424 +1,0.857,0.263,0.513,0,0,0.589,0.467,0,0.17 +1,0.915,0.327,0.661,0,0,0.548,0,0,0.127 +0.667,0.836,0.273,0.596,0,0,0.74,0,0,0.17 +0.667,0.849,0.366,0.683,0,0,0.253,0,0.267,0.0424 +1,0.973,0.758,0.933,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0.196 +1,0.758,0.596,0.386,0,0,0,0,0,0.132 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.26 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.149 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.146 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.231 +0.667,0.647,0.0604,0.193,0,0,0,0,0,0 +0.667,0.647,0.0664,0.189,0.425,0.267,0,0,0,0 +0.667,0.647,0.0724,0.183,0.664,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.296 +0.333,0.647,0.0845,0.177,0,0,0,0,0.267,0.267 +0.667,0.732,0.162,0.314,0,0,0,0,0.283,0.127 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.212 +0.667,0.797,0.224,0.457,0,0,0,0,0.0167,0.127 +0.667,0.836,0.273,0.596,0,0,0,0,0.25,0.627 +1,0.993,0.541,1,0,0,0,0,0,0.398 +1,0.973,0.758,0.933,0,0,0,0,0,0.194 +1,0.934,0.936,0.732,0,0,0,0,0,0.189 +1,0.857,0.887,0.554,0,0,0,0,0,0.106 +1,0.779,0.536,0.488,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0.0424 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.272 +1,0.798,0.103,0.444,0,0,0,0,0.0167,0.731 +0.667,0.647,0.0527,0.19,0,0,0,0,0.533,0.221 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.0848 +0.667,0.732,0.117,0.328,0,0,0,0,0.0167,0.297 +0.667,0.732,0.129,0.316,0,0,0,0,0.533,0.0848 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.0424 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.254 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.299 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.174 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0848 +0.333,0.699,0.145,0.323,0,0,0,0,0.267,0.0424 +0.667,0.849,0.366,0.683,0,0,0,0,0.283,0.0424 +0.333,0.699,0.263,0.344,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0.138 +1,0.779,0.536,0.488,0,0,0,0,0,0.271 +1,0.614,0.0879,0.116,0,0,0,0,0,0.131 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.0835 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0.1 +0.333,0.64,0.049,0.181,0,0,0,0,0,0.0181 +0.333,0.647,0.0731,0.19,0,0,0,0,0,0.417 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0.254 +0.333,0.647,0.108,0.189,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.17 +0.333,0.647,0.125,0.178,0,0,0,0,0,0.17 +0.333,0.647,0.146,0.177,0,0,0,0,0,0.339 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.0848 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.17 +0.333,0.679,0.189,0.253,0,0,0,0,0,0.0848 +0.333,0.699,0.195,0.323,0,0,0,0,0,0 +0.667,0.849,0.437,0.683,0,0,0,0,0.517,0 +0.667,0.836,0.573,0.638,0,0,0,0,0.0333,0.0424 +1,0.934,1,0.732,0,0,0,0,0,0.0424 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0.26,0.267,0,0,0,0.137 +1,0.667,0.183,0.183,0.737,0,0,0,0,0.137 +1,0.608,0.0499,0.0743,0,0,0,0,0,0.0164 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.297 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.0731,0.19,0.0659,0.0167,0,0,0,0.212 +0.667,0.647,0.0928,0.193,0.825,0.25,0,0,0,0.265 +0.667,0.647,0.108,0.189,0.428,0,0,0,0,0.129 +0.667,0.647,0.118,0.183,0,0,0,0,0,0.366 +0.667,0.647,0.125,0.178,0,0,0,0,0,0.0848 +0.667,0.647,0.146,0.177,0,0,0,0,0,0.0848 +0.667,0.647,0.165,0.182,0,0,0,0,0,0.254 +0.667,0.758,0.343,0.359,0,0,0,0,0,0.297 +0,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.333,0.699,0.195,0.323,0,0,0.0849,0.517,0,0.0424 +0.333,0.705,0.228,0.366,0,0,0.412,1,0.0167,0.0848 +0.667,0.836,0.573,0.638,0,0,0,0.217,0.533,0.17 +0.667,0.81,0.673,0.504,0,0,0,0,0.267,0 +0.667,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.0424 +1,0.654,0.0689,0.099,0,0,0,0,0,0.0169 +1,0.608,0.026,0.0578,0,0,0,0,0,0.258 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0181 +1,0.732,0.0895,0.33,0,0,0,0,0,0.399 +1,0.818,0.149,0.481,0,0,0,0,0,0.107 +1,0.818,0.168,0.468,0,0,0,0,0,0.195 +1,0.818,0.186,0.449,0,0,0,0,0,0.466 +0.667,0.732,0.136,0.307,0,0,0,0,0.517,0.127 +0.667,0.732,0.153,0.305,0,0,0,0,0.317,0.127 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0424 +0.667,0.758,0.181,0.359,0,0,0,0,0.267,0.127 +0.333,0.679,0.12,0.253,0,0,0,0,0.283,0.329 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.101 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.17 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.297 +1,0.934,0.936,0.732,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0.0127,0.0167,0,0 +1,0.667,0.16,0.183,0,0,0.35,0.717,0,0 +1,0.654,0.0689,0.099,0,0,0.499,0,0,0 +1,0.608,0.026,0.0578,0,0,0.752,0,0,0 +1,0.608,0.0183,0.0495,0,0,0.437,0,0,0 +1,0.608,0.0166,0.0495,0,0,0.337,0,0,0.0424 +1,0.562,0.0159,0.0495,0,0,0.0198,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.103 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.376 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0.208 +0.667,0.732,0.105,0.337,0,0,0,0,0.267,0.203 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.0424 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0424 +1,0.857,0.263,0.513,0,0,0.513,0.483,0,0.127 +1,0.915,0.327,0.661,0,0,0.391,0,0,0.212 +1,0.836,0.273,0.596,0,0,0.103,0,0.0167,0.212 +0.667,0.849,0.366,0.683,0.41,0.267,0,0,1,0.254 +0.667,0.836,0.51,0.638,0.662,0,0,0,0.1,0 +1,0.934,0.936,0.732,0.232,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.0348 +1,0.798,0.103,0.444,0,0,0.126,0.267,0.267,0.324 +1,0.818,0.126,0.47,0,0,0.403,0.217,0,0.243 +1,0.818,0.149,0.481,0.523,0.533,0,0,0.0167,0.0893 +0.667,0.732,0.117,0.328,0.154,0,0,0,0.533,0.0848 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.127 +0.667,0.732,0.136,0.307,0,0,0,0,0,0 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.17 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0.721 +0.667,0.758,0.181,0.359,0,0,0,0,0.267,0.0424 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.254 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.212 +0.667,0.849,0.366,0.683,0,0,0,0,0.267,0 +1,0.973,0.758,0.933,0,0,0,0,0,0.078 +1,0.934,0.936,0.732,0,0,0,0,0,0.312 +1,0.758,0.596,0.386,0,0,0,0,0,0.224 +1,0.634,0.189,0.196,0,0,0,0,0,0.146 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.608,0.026,0.0829,0,0,0,0,0,0.142 +1,0.621,0.0355,0.15,0,0,0,0,0.267,0.337 +0.667,0.64,0.0449,0.181,0,0,0,0,0.567,0.0424 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.0424 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.16 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.696 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.407 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.346 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.313 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.172 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.339 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0424 +0.667,0.836,0.273,0.596,0.412,0.267,0,0,0.267,0.0424 +0.667,0.849,0.366,0.683,0.542,0,0,0,0,0.339 +0.667,0.836,0.51,0.638,0.375,0,0,0,0,0.0596 +1,0.934,0.936,0.732,0,0,0,0,0,0.329 +1,0.857,0.887,0.554,0,0,0,0,0,0.136 +1,0.779,0.536,0.488,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.608,0.02,0.0513,0,0,0,0,0,0 +0.667,0.608,0.026,0.0829,0,0,0,0,0.0167,0.127 +0.667,0.562,0.0159,0.0495,0,0,0,0,0.25,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.0424 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.0848 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0.517,0.183 +1,0.857,0.263,0.513,0,0,0.164,0.267,0.0333,0.21 +1,0.915,0.327,0.661,0,0,0.194,0.467,0,0.0424 +1,0.973,0.402,0.869,0,0,0,0,0,0.297 +1,0.993,0.541,1,0,0,0,0,0,0.254 +1,0.973,0.758,0.933,0,0,0,0,0,0.0848 +1,0.934,0.936,0.732,0,0,0,0,0,0.127 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0.127 +1,0.64,0.049,0.181,0,0,0,0,0,0.17 +1,0.732,0.128,0.33,0,0,0,0,0,0.17 +1,0.818,0.242,0.481,0,0,0,0,0,0.17 +0.667,0.732,0.198,0.328,0,0,0,0,0,0 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.0848 +0.333,0.647,0.125,0.178,0,0,0,0,0.517,0.0424 +0.333,0.647,0.146,0.177,0,0,0,0,1,0.0848 +0.667,0.647,0.165,0.182,0,0,0,0,0.167,0.212 +0.667,0.758,0.343,0.359,0,0,0,0,0,0 +1,0.915,0.531,0.661,0,0,0,0,0,0.212 +1,0.973,0.549,0.869,0,0,0,0,0.267,0.212 +1,0.993,0.647,1,0,0,0,0,0,0.212 +0.667,0.699,0.296,0.344,0,0,0,0,0,0.0848 +0.667,0.81,0.673,0.504,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0.0848 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.157 +1,0.608,0.0499,0.0743,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0.0167,0 +1,0.608,0.0224,0.0495,0,0,0,0,0.25,0.127 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.732,0.168,0.337,0,0,0,0,0.517,0.127 +0.667,0.732,0.198,0.328,0,0,0,0,1,0.0848 +0.333,0.647,0.118,0.183,0,0,0,0,1,0.297 +0.333,0.647,0.125,0.178,0,0,0,0,1,0.0848 +0.667,0.732,0.274,0.305,0,0,0,0,1,0.17 +0.667,0.732,0.312,0.314,0,0,0,0,0.267,0.0424 +1,0.758,0.343,0.359,0,0,0,0,0,0.127 +1,0.797,0.36,0.457,0,0,0,0,0,0.156 +1,0.973,0.549,0.869,0,0,0,0,0,0.584 +1,0.993,0.647,1,0,0,0,0,0,0.132 +1,0.973,0.851,0.933,0,0,0,0,0.267,0.17 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.857,0.923,0.554,0.419,0.267,0,0,0,0 +1,0.634,0.206,0.196,0.295,0,0,0,0.0167,0.0424 +1,0.667,0.183,0.183,0,0,0,0,0.25,0.0848 +1,0.608,0.0424,0.0743,0,0,0,0,0,0.106 +1,0.608,0.026,0.0578,0,0,0,0,0,0.144 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.654,0.0242,0.053,0,0,0,0,0,0.243 +0.667,0.608,0.026,0.0829,0,0,0,0,0,0.0424 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0.254 +0.333,0.64,0.0449,0.181,0,0,0,0,0,0.17 +0.333,0.647,0.0527,0.19,0,0,0,0,0.267,0.0424 +0.667,0.732,0.105,0.337,0,0,0,0,0.567,0.127 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.254 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.297 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.648 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0424 +1,0.915,0.327,0.661,0,0,0,0,0.267,0 +1,0.973,0.402,0.869,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.297 +1,0.973,0.758,0.933,0,0,0,0,0,0.0424 +1,0.934,0.936,0.732,0,0,0.0283,0.0167,0,0.0424 +1,0.857,0.887,0.554,0,0,0.613,0.717,0,0 +1,0.779,0.536,0.488,0,0,0.427,0,0,0.0182 +0.667,0.614,0.0879,0.116,0,0,0,0,0,0.219 +0.667,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.19 +1,0.64,0.0449,0.181,0,0,0,0,0,0 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0.127 +0.667,0.732,0.105,0.337,0,0,0,0,0.517,0.0848 +0.667,0.732,0.117,0.328,0,0,0,0,1,0.0848 +0.667,0.732,0.129,0.316,0,0,0,0,1,0 +0.667,0.732,0.136,0.307,0,0,0,0,0.3,0.0424 +0.667,0.732,0.153,0.305,0,0,0,0,0,0.127 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0424 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.212 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0167 +1,0.836,0.273,0.596,0,0,0,0,0,0.243 +1,0.993,0.541,1,0,0,0,0,0,0.333 +1,0.973,0.758,0.933,0,0,0,0,0,0.169 +1,0.934,0.936,0.732,0,0,0,0,0,0.256 +1,0.758,0.596,0.386,0,0,0,0,0,0.0822 +1,0.706,0.363,0.342,0,0,0.191,0.517,0,0.17 +1,0.614,0.0879,0.116,0,0,0.167,0.217,0,0 +1,0.608,0.0424,0.0743,0,0,0.596,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.204,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0.152 +1,0.64,0.0449,0.181,0,0,0,0,0,0.0848 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0.548 +0.667,0.732,0.117,0.328,0,0,0,0,0,0.158 +0.667,0.732,0.129,0.316,0,0,0,0,0,0.188 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.401 +0.333,0.647,0.0845,0.177,0.258,0.267,0,0,0,0.0599 +0.667,0.732,0.162,0.314,0.287,0.267,0,0,0,0.212 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0848 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.127 +1,0.973,0.402,0.869,0.571,0.267,0,0,0.767,0 +1,0.993,0.541,1,0,0,0,0,0.0667,0.0424 +1,0.973,0.758,0.933,0,0,0,0,0,0.0424 +1,0.934,0.936,0.732,0,0,0,0,0.267,0 +1,0.758,0.596,0.386,0,0,0,0,0.85,0.0424 +1,0.634,0.189,0.196,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.64,0.0449,0.181,0,0,0,0,0,0 +1,0.732,0.0895,0.33,0,0,0,0,0.267,0.127 +1,0.818,0.149,0.481,0,0,0,0,0.567,0.1 +1,0.818,0.168,0.468,0,0,0,0,0,0.551 +1,0.818,0.186,0.449,0,0,0,0,0,0.119 +0.667,0.732,0.136,0.307,0.371,0.267,0,0,0,0.0424 +0.667,0.732,0.153,0.305,0.474,0,0.285,0.483,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.127 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.17 +1,0.915,0.327,0.661,0,0,0.366,0.517,0,0.17 +1,0.973,0.402,0.869,0,0,0.202,0.217,0,0.212 +1,0.993,0.541,1,0,0,0,0,0,0.127 +0.333,0.699,0.263,0.344,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0,0,0,0.0424 +1,0.857,0.887,0.554,0,0,0,0,0,0 +1,0.779,0.536,0.488,0,0,0,0,0,0.0424 +1,0.72,0.232,0.249,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0.11 +1,0.608,0.026,0.0578,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.168 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.36 +0.333,0.562,0.0159,0.0495,0,0,0,0,0.0167,0 +0.667,0.732,0.117,0.328,0,0,0,0,0.25,0.0424 +0.667,0.732,0.129,0.316,0,0,0,0,0,0 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.17 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0.0848 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0848 +0.333,0.679,0.12,0.253,0,0,0,0,0.267,0.297 +1,0.973,0.402,0.869,0,0,0,0,0,0.212 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0424 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.271 +1,0.81,0.629,0.504,0,0,0,0,0,0.333 +1,0.66,0.306,0.218,0,0,0,0,0,0.339 +1,0.634,0.189,0.196,0,0,0,0,0,0.207 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +0.667,0.647,0.108,0.189,0,0,0,0,0,0 +0.667,0.647,0.118,0.183,0,0,0,0,0,0.0424 +0.667,0.732,0.233,0.307,0,0,0,0,0,0.296 +0.667,0.732,0.274,0.305,0.642,0.267,0,0,0,0.371 +0.667,0.732,0.312,0.314,0.258,0,0,0,0,0.473 +1,0.758,0.343,0.359,0,0,0,0,0,0.424 +1,0.797,0.36,0.457,0,0,0.183,0.517,0,0 +1,0.973,0.549,0.869,0,0,0.29,0.217,0,0.0848 +1,0.993,0.647,1,0,0,0.774,0,0.267,0.0848 +1,0.973,0.851,0.933,0,0,0.399,0,0,0.17 +1,0.934,1,0.732,0,0,0.334,0,0,0.0424 +1,0.857,0.923,0.554,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0.016 +1,0.614,0.101,0.116,0,0,0,0,0,0.223 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0164 +1,0.64,0.049,0.181,0,0,0,0,0.0167,0.327 +1,0.732,0.128,0.33,0,0,0,0,0.25,0.245 +0.333,0.647,0.0928,0.193,0,0,0,0,0,0.212 +0.333,0.647,0.108,0.189,0,0,0,0,0,0.0174 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.177 +0.667,0.732,0.233,0.307,0.247,0.267,0,0,0,0.273 +0.333,0.647,0.146,0.177,0.723,0,0,0,0.267,0 +0.667,0.732,0.312,0.314,0.831,0,0,0,0.567,0.382 +0.667,0.758,0.343,0.359,0.734,0,0,0,0,0 +0.333,0.679,0.189,0.253,0.404,0,0,0,0,0.0424 +0.333,0.699,0.195,0.323,0,0,0.286,0.517,0,0.0848 +0.667,0.849,0.437,0.683,0,0,0.405,0.217,0,0.254 +1,0.973,0.851,0.933,0,0,0.174,0,0.267,0.127 +1,0.934,1,0.732,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0.0848 +1,0.608,0.0424,0.0743,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0169 +1,0.621,0.0355,0.15,0,0,0,0,0,0.268 +1,0.64,0.0449,0.181,0,0,0,0,0,0.163 +0.667,0.647,0.0527,0.19,0,0,0,0,0.517,0 +0.667,0.732,0.105,0.337,0,0,0,0,0.0333,0 +0.667,0.732,0.117,0.328,0.0897,0.0167,0,0,0,0.127 +0.667,0.732,0.129,0.316,0.613,0.8,0,0,0,0.0424 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.297 +1,0.818,0.222,0.432,0,0,0,0,0,0.17 +0.667,0.732,0.162,0.314,0,0,0,0,0,0.0848 +0.667,0.758,0.181,0.359,0,0,0,0,0,0.0424 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.339 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.297 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.0424 +0.667,0.836,0.51,0.638,0,0,0,0,0,0.33 +0.667,0.81,0.629,0.504,0.45,0.517,0,0,0,0.305 +1,0.857,0.887,0.554,0.13,0.0167,0,0,0,0.164 +1,0.706,0.363,0.342,0,0,0,0,0.767,0 +1,0.614,0.0879,0.116,0,0,0,0,0.0667,0.0424 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_6.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_6.csv new file mode 100644 index 0000000000..4c6910ec8e --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_6.csv @@ -0,0 +1,8761 @@ +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,cooking_range,hot_water_fixtures +1,0.612,0.0424,0.0749,0,0,0,0,0,0.161 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.026,0.0841,0.31,0.317,0,0,0,0.285 +1,0.625,0.0355,0.153,0.361,0.75,0,0,0,0 +1,0.645,0.0449,0.184,0,0,0,0,0,0.0756 +1,0.738,0.0895,0.337,0,0,0,0,0.767,0.151 +0.667,0.652,0.0604,0.198,0.353,0.317,0,0,0,0.0378 +0.667,0.738,0.117,0.337,0.662,1,0,0,0,0.113 +0.667,0.738,0.129,0.325,0,0.0333,0,0,0,0.0756 +0.667,0.738,0.136,0.316,0,0,0,0,0,0.437 +0.667,0.738,0.153,0.313,0,0,0,0,0,0.227 +0.667,0.738,0.162,0.318,0,0,0,0,0,0.302 +1,0.863,0.263,0.494,0,0,0,0,0,0.196 +0.667,0.803,0.224,0.421,0,0,0,0,0,0.203 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.0756 +0.667,0.842,0.51,0.683,0,0,0,0,0.317,0 +0.667,0.816,0.629,0.57,0,0,0,0,0.2,0 +0.667,0.764,0.596,0.434,0,0,0,0,0,0 +0.667,0.639,0.189,0.214,0,0,0,0,0,0.107 +1,0.672,0.16,0.184,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.108 +1,0.645,0.0449,0.184,0,0,0,0,0,0.181 +0.667,0.738,0.0895,0.337,0,0,0,0,0,0.215 +0.667,0.738,0.105,0.346,0,0,0,0,0,0.037 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0.227 +0.333,0.652,0.0724,0.187,0.289,0.317,0.601,0.483,0,0.227 +0.333,0.652,0.0759,0.183,0.694,0.75,0,0,0,0.189 +0.333,0.652,0.0845,0.182,0.677,0,0,0,0,0.113 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.151 +0.333,0.665,0.0982,0.198,0,0,0,0,0,0.189 +0.333,0.684,0.12,0.236,0,0,0,0,0,0 +0.333,0.704,0.145,0.302,0,0,0,0,0.0667,0.0378 +0.667,0.855,0.366,0.675,0,0,0,0,1,0.113 +0.667,0.842,0.51,0.683,0,0,0,0,0.217,0.0378 +0.667,0.816,0.629,0.57,0,0,0.143,0.317,0,0 +0.667,0.764,0.596,0.434,0,0,0.215,0.4,0,0 +1,0.784,0.536,0.541,0,0,0,0,0,0.125 +1,0.672,0.16,0.184,0,0,0,0,0,0.106 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.113 +1,0.612,0.0166,0.05,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.645,0.0449,0.184,0,0,0,0,0,0.189 +0.667,0.652,0.0527,0.194,0,0,0,0,0,0.253 +0.667,0.652,0.0604,0.198,0,0,0,0,0,0.141 +0.333,0.566,0.0159,0.05,0,0,0.207,0.317,0,0.0378 +0.667,0.738,0.129,0.325,0,0,0.725,0.4,0,0.189 +0.333,0.652,0.0759,0.183,0,0,0.441,0,0,0.0378 +0.333,0.652,0.0845,0.182,0,0,0.573,0,0,0.0378 +0.333,0.652,0.0888,0.184,0,0,0.569,0,0,0 +0.333,0.665,0.0982,0.198,0,0,0.0419,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.704,0.263,0.367,0,0,0,0,0.317,0.382 +0.667,0.816,0.629,0.57,0,0,0,0,0.2,0.0962 +0.667,0.764,0.596,0.434,0,0,0,0,0,0.137 +0.667,0.711,0.363,0.378,0,0,0,0,0,0 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0518,0,0,0,0,0,0.313 +1,0.612,0.026,0.0841,0,0,0.0681,0.0667,0.517,0.0756 +1,0.625,0.0355,0.153,0,0,0.497,0.65,0,0.233 +1,0.724,0.074,0.319,0,0,0.318,0,0,0.0957 +1,0.824,0.126,0.481,0,0,0.403,0,0,0.397 +1,0.824,0.149,0.495,0,0,0.393,0,0,0.307 +0.667,0.738,0.117,0.337,0,0,0,0,0,0.18 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.684,0.12,0.236,0,0,0,0,0.317,0.0756 +0.333,0.704,0.145,0.302,0,0,0,0,0.2,0.264 +0.333,0.71,0.191,0.363,0,0,0,0,0,0 +0.333,0.704,0.263,0.367,0,0,0,0,0,0.0756 +0.333,0.691,0.322,0.31,0,0,0,0,0,0 +0.667,0.764,0.596,0.434,0,0,0,0,0,0.0756 +0.667,0.639,0.189,0.214,0,0,0,0,0,0.189 +1,0.619,0.0879,0.117,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.235 +1,0.625,0.0355,0.153,0,0,0,0,0.567,0.0722 +1,0.645,0.0449,0.184,0,0,0,0,0.783,0.113 +1,0.652,0.0527,0.194,0,0,0,0,1,0.322 +1,0.652,0.0604,0.198,0,0,0,0,1,0.492 +1,0.652,0.0664,0.194,0.6,0.817,0,0,0.533,0.14 +1,0.652,0.0724,0.187,0,0.25,0,0,0,0 +1,0.738,0.136,0.316,0,0,0,0,0,0.343 +1,0.738,0.153,0.313,0,0,0,0,0,0.231 +0.667,0.738,0.162,0.318,0,0,0,0,0,0.105 +0.333,0.665,0.0982,0.198,0,0,0,0,0.25,0.0378 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.189 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.0378 +0.667,0.842,0.51,0.683,0,0,0,0,0,0.0378 +0.667,0.816,0.629,0.57,0,0,0,0,0,0.151 +0.667,0.764,0.596,0.434,0,0,0,0,0,0 +0.667,0.711,0.363,0.378,0,0,0,0,0,0.06 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.612,0.031,0.0583,0,0,0,0,0,0.0646 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.34 +1,0.804,0.111,0.453,0,0,0,0,0.767,0.63 +1,0.824,0.183,0.481,0,0,0,0,0,0.52 +1,0.824,0.242,0.495,0,0,0,0,0,0.25 +1,0.824,0.289,0.481,0,0,0,0,0,0.357 +0.667,0.738,0.217,0.325,0,0,0,0,0,0.311 +0.667,0.738,0.233,0.316,0,0,0,0,0,0.627 +0.667,0.738,0.274,0.313,0,0,0,0,0,0.583 +0.667,0.738,0.312,0.318,0,0,0,0,0,0.433 +0.667,0.764,0.343,0.346,0,0,0,0,0,0.511 +0.333,0.684,0.189,0.236,0,0,0.114,0.233,0,0.516 +0.333,0.704,0.195,0.302,0,0,0.682,0.25,0,0 +0.333,0.71,0.228,0.363,0,0,0.237,0,0,0 +0.333,0.704,0.296,0.367,0,0,0.565,0,0,0 +0.667,0.816,0.673,0.57,0,0,0,0,0,0.116 +1,0.863,0.923,0.626,0,0,0,0,0,0 +1,0.639,0.206,0.214,0,0,0,0,0,0 +1,0.619,0.101,0.117,0,0,0,0,0,0 +1,0.612,0.0499,0.0749,0,0,0,0,0,0 +1,0.612,0.031,0.0583,0,0,0,0,0,0.234 +1,0.612,0.0224,0.05,0,0,0,0,0,0.189 +1,0.612,0.019,0.05,0,0,0,0,0,0.302 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.652,0.0731,0.194,0,0,0,0,0,0.0756 +1,0.738,0.168,0.346,0,0,0,0,0,0.0756 +0.667,0.652,0.108,0.194,0,0,0,0,0,0.0378 +0.667,0.652,0.118,0.187,0,0,0,0,0.983,0.0378 +0.667,0.652,0.125,0.183,0,0,0,0,0.3,0.0378 +0.333,0.652,0.146,0.182,0,0,0,0,0,0.0378 +0.333,0.652,0.165,0.184,0,0,0,0,0,0.453 +0.333,0.665,0.18,0.198,0,0,0,0,0.25,0 +0.667,0.803,0.36,0.421,0,0,0,0,0,0 +0.667,0.842,0.372,0.553,0,0,0,0,0,0.264 +0.667,0.855,0.437,0.675,0,0,0,0,0,0.113 +0.667,0.842,0.573,0.683,0,0,0,0,0,0.0378 +0.667,0.816,0.673,0.57,0,0,0,0,0,0 +0.667,0.764,0.621,0.434,0,0,0,0,0,0.203 +0.667,0.639,0.206,0.214,0,0,0,0,0,0.113 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.645,0.0449,0.184,0,0,0,0,0,0.474 +0.667,0.738,0.0895,0.337,0,0,0,0,0,0.0756 +0.333,0.652,0.0604,0.198,0,0,0,0,0,0.0756 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0.0756 +0.333,0.652,0.0724,0.187,0,0,0,0,0.567,0 +0.333,0.652,0.0759,0.183,0,0,0,0,0.2,0.189 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.34 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.264 +0.333,0.665,0.0982,0.198,0,0,0,0,0,0.0756 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.0378 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.0378 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.0378 +0.667,0.842,0.51,0.683,0,0,0,0,0,0 +0.667,0.816,0.629,0.57,0,0,0,0,0,0 +0.667,0.665,0.306,0.242,0,0,0,0,0,0 +0.667,0.639,0.189,0.214,0,0,0,0,0,0 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.153,0,0,0,0,0,0.237 +0.667,0.645,0.0449,0.184,0,0,0,0,0.767,0.488 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.738,0.105,0.346,0,0,0,0,0,0 +0.667,0.738,0.117,0.337,0,0,0,0,0,0 +0.667,0.738,0.129,0.325,0,0,0,0,0,0.189 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0.264 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.0378 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.113 +0.333,0.665,0.0982,0.198,0,0,0,0,0,0.189 +0.333,0.684,0.12,0.236,0,0,0,0,0,0 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.264 +0.333,0.71,0.191,0.363,0.579,0.567,0,0,0.0667,0.113 +0,0.566,0.0159,0.05,0.274,0.5,0,0,0.45,0 +0,0.566,0.0159,0.05,0,0,0.277,0.317,0,0 +0.333,0.665,0.306,0.242,0,0,0.437,0.4,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0518,0,0,0,0,0.767,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.153,0,0,0,0,0,0.229 +1,0.724,0.074,0.319,0,0,0,0,0,0.256 +0.333,0.652,0.0527,0.194,0,0,0,0,0,0.189 +0.333,0.652,0.0604,0.198,0,0,0,0,0,0.0756 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0.0756 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.113 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.0378 +0.333,0.665,0.0982,0.198,0,0,0,0,0,0.113 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.0756 +0.333,0.71,0.191,0.363,0,0,0,0,0,0 +0.333,0.704,0.263,0.367,0,0,0,0,0,0.0517 +0.667,0.816,0.629,0.57,0,0,0.072,0.0667,0,0.195 +0.667,0.764,0.596,0.434,0,0,0.287,0.65,0,0 +0.667,0.711,0.363,0.378,0,0,0.192,0,0,0.0633 +0.667,0.672,0.16,0.184,0,0,0,0,0,0.0812 +0.667,0.612,0.0424,0.0749,0,0,0,0,0,0.215 +0.667,0.612,0.026,0.0583,0,0,0,0,0,0.0547 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.724,0.074,0.319,0,0,0,0,0.817,0.264 +1,0.738,0.0895,0.337,0,0,0,0,0.217,0.118 +0.333,0.652,0.0604,0.198,0,0,0,0,0,0.604 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0.189 +0.333,0.652,0.0724,0.187,0,0,0,0,0.0667,0.227 +0.333,0.652,0.0759,0.183,0,0,0,0,0.45,0.113 +0.667,0.738,0.153,0.313,0,0,0,0,0,0.151 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.34 +0.667,0.764,0.181,0.346,0,0,0,0,0,0 +0.667,0.803,0.224,0.421,0,0,0,0,0,0.113 +0.667,0.842,0.273,0.553,0,0,0,0,0,0 +1,1,0.541,0.988,0,0,0,0,0,0.264 +0.667,0.842,0.51,0.683,0,0,0,0,0,0.0756 +0.667,0.816,0.629,0.57,0,0,0,0,0,0 +0.667,0.764,0.596,0.434,0,0,0,0,0,0 +0.667,0.711,0.363,0.378,0,0,0,0,0,0.0756 +1,0.672,0.16,0.184,0,0,0.113,0.233,0,0 +1,0.612,0.0424,0.0749,0,0,0.229,0,0,0.0837 +1,0.612,0.026,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.153,0,0,0,0,0,0.509 +1,0.645,0.0449,0.184,0,0,0,0,0,0.28 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.197 +1,0.738,0.105,0.346,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.652,0.0724,0.187,0,0,0,0,0,0.143 +0.667,0.652,0.0759,0.183,0,0,0,0,0,0.0738 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.129 +0.667,0.738,0.162,0.318,0,0,0,0,0,0.468 +0.333,0.665,0.0982,0.198,0,0,0,0,0,0.151 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.0756 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.0572 +0.333,0.704,0.263,0.367,0,0,0,0,0,0.161 +0.667,0.816,0.629,0.57,0,0,0,0,0,0 +0.667,0.665,0.306,0.242,0,0,0,0,0,0.0735 +1,0.639,0.189,0.214,0.378,0.817,0,0,0,0 +1,0.619,0.0879,0.117,0,0.25,0.0864,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.0327,0.153,0,0,0,0,0.25,0.0756 +1,0.645,0.049,0.184,0,0,0,0,0,0.193 +1,0.738,0.128,0.337,0,0,0,0,0,0.401 +0.667,0.652,0.0928,0.198,0,0,0,0,0,0 +0.667,0.652,0.108,0.194,0,0,0,0,0,0.151 +0.667,0.652,0.118,0.187,0,0,0,0,0,0 +0.667,0.652,0.125,0.183,0,0,0,0,0,0 +0.667,0.652,0.146,0.182,0,0,0,0,0,0.0378 +0.667,0.652,0.165,0.184,0,0,0,0,0,0.405 +0.667,0.665,0.18,0.198,0,0,0,0,0,0.335 +0.667,0.684,0.189,0.236,0,0,0,0,0,0.166 +0.667,0.842,0.372,0.553,0,0,0,0,0,0.191 +0.333,0.71,0.228,0.363,0,0,0,0,0,0.31 +0.667,0.842,0.573,0.683,0,0,0,0,0,0.319 +0.667,0.691,0.345,0.31,0,0,0,0,0,0 +0.667,0.665,0.32,0.242,0,0,0,0,0,0 +1,0.639,0.206,0.214,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.612,0.0241,0.0841,0,0,0,0,0,0.0756 +1,0.625,0.0327,0.153,0,0,0,0,0,0.0756 +1,0.645,0.049,0.184,0,0,0,0,0,0.212 +1,0.738,0.128,0.337,0,0,0,0,0,0.599 +1,0.824,0.242,0.495,0,0,0,0,0,0.244 +0.667,0.738,0.198,0.337,0,0,0,0,0,0.291 +0.333,0.652,0.118,0.187,0,0,0,0,0,0.313 +0.333,0.652,0.125,0.183,0,0,0,0,0,0.27 +0.333,0.652,0.146,0.182,0,0,0,0,0,0.0756 +0.333,0.652,0.165,0.184,0,0,0,0,0,0.0378 +0.667,0.764,0.343,0.346,0,0,0.385,0.717,0,0.185 +0.667,0.803,0.36,0.421,0,0,0.67,0,0,0.112 +0.667,0.842,0.372,0.553,0,0,0.339,0,0,0.534 +0.667,0.855,0.437,0.675,0,0,0.216,0,0,0.435 +1,0.98,0.851,1,0,0,0.309,0,0,0.346 +0.667,0.816,0.673,0.57,0,0,0.411,0,0,0 +0.667,0.764,0.621,0.434,0,0,0,0,0,0 +0.667,0.639,0.206,0.214,0,0,0,0,0,0.0998 +1,0.619,0.101,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.302 +1,0.625,0.0355,0.153,0,0,0,0,0,0.308 +1,0.724,0.074,0.319,0,0,0,0,0.317,0.374 +0.667,0.738,0.0895,0.337,0,0,0,0,0.717,0.161 +0.667,0.738,0.105,0.346,0,0,0.211,0.717,0,0.227 +0.667,0.738,0.117,0.337,0,0,0.331,0,0,0 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0 +0.333,0.652,0.0759,0.183,0,0,0,0,0.817,0.0378 +0.667,0.738,0.153,0.313,0,0,0,0,0.733,0 +0.667,0.738,0.162,0.318,0,0,0,0,0,0 +0.667,0.665,0.0982,0.198,0,0,0,0,0,0.378 +1,0.684,0.12,0.236,0,0,0,0,0,0.151 +0.667,0.704,0.145,0.302,0,0,0,0,0.25,0.0756 +1,0.855,0.366,0.675,0,0,0,0,0,0.0756 +0.667,0.842,0.51,0.683,0,0,0,0,0,0 +0.667,0.816,0.629,0.57,0,0,0,0,0,0 +0.667,0.665,0.306,0.242,0,0,0,0,0,0.175 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.409 +1,0.685,0.0551,0.255,0,0,0,0,0.317,0.499 +1,0.804,0.103,0.453,0,0,0,0,0.717,0.262 +1,0.824,0.126,0.481,0,0,0,0,0,0.394 +0.333,0.652,0.0604,0.198,0,0,0,0,0,0 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.0756 +0.667,0.738,0.136,0.316,0,0,0,0,0,0.0756 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.684,0.12,0.236,0,0,0,0,0.0667,0 +0.333,0.704,0.145,0.302,0,0,0,0,0.7,0.442 +0.667,0.855,0.366,0.675,0,0,0,0,0,0.167 +0.333,0.704,0.263,0.367,0,0,0,0,0,0.325 +0.667,0.816,0.629,0.57,0,0,0,0,0,0.0896 +0.333,0.665,0.306,0.242,0,0,0,0,0,0.335 +1,0.784,0.536,0.541,0,0,0,0,0,0 +1,0.725,0.232,0.252,0,0,0,0,0,0.117 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.685,0.0551,0.255,0,0,0,0,0.517,0.387 +1,0.804,0.103,0.453,0,0,0,0,0,0.548 +0.667,0.738,0.0895,0.337,0,0,0,0,0,0.281 +0.667,0.738,0.105,0.346,0,0,0,0,0.0667,0.345 +0.667,0.738,0.117,0.337,0,0,0,0,0.7,0.104 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.227 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.0378 +0.333,0.704,0.145,0.302,0,0,0,0,0,0.113 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.0756 +0.333,0.704,0.263,0.367,0,0,0,0,0,0 +0.333,0.691,0.322,0.31,0,0,0,0,0,0.0756 +0.667,0.764,0.596,0.434,0,0,0,0,0,0 +0.667,0.639,0.189,0.214,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.026,0.0583,0,0,0,0,0,0.151 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.724,0.074,0.319,0,0,0,0,0,0.462 +0.667,0.738,0.0895,0.337,0,0,0,0,0,0.17 +0.333,0.652,0.0604,0.198,0,0,0,0,0,0.189 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.0378 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0.264 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.302 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.416 +0.333,0.665,0.0982,0.198,0,0,0,0,0.0667,0.113 +0.667,0.803,0.224,0.421,0,0,0,0,0.45,0.0378 +0.333,0.704,0.145,0.302,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.665,0.306,0.242,0,0,0,0,0,0 +0.667,0.639,0.189,0.214,0,0,0,0,0,0.144 +1,0.672,0.16,0.184,0,0,0,0,0,0.0812 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.167 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0584 +1,0.685,0.0551,0.255,0,0,0,0,0,0.126 +1,0.804,0.103,0.453,0,0,0,0,0,0.403 +1,0.824,0.126,0.481,0,0,0,0,0,0.129 +0.667,0.738,0.105,0.346,0,0,0,0,0,0.215 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0.35 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0 +0.667,0.738,0.136,0.316,0.825,0.817,0,0,0.25,0.0756 +0.667,0.738,0.153,0.313,0.273,0.25,0.431,0.817,0,0.151 +0.667,0.738,0.162,0.318,0,0,0.435,0.383,0,0.189 +0.667,0.764,0.181,0.346,0,0,0.545,0,0,0.567 +0.667,0.803,0.224,0.421,0,0,0.253,0,0,0.0756 +1,0.842,0.273,0.553,0,0,0,0,0,0.0756 +0.667,0.71,0.191,0.363,0,0,0,0,0,0.0756 +0.667,0.704,0.263,0.367,0,0,0,0,0,0 +0.667,0.691,0.322,0.31,0,0,0,0,0,0 +0.667,0.665,0.306,0.242,0,0,0,0,0,0 +0.667,0.639,0.189,0.214,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.00381 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0.483,0.189 +0.667,0.645,0.049,0.184,0,0,0,0,0.0333,0 +0.667,0.738,0.128,0.337,0,0,0,0,0,0.227 +0.667,0.738,0.168,0.346,0,0,0,0,0,0.0378 +0.667,0.738,0.198,0.337,0,0,0,0,0,0.189 +0.667,0.738,0.217,0.325,0,0,0,0,0,0.302 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.652,0.146,0.182,0,0,0,0,0,0.227 +0.667,0.738,0.312,0.318,0,0,0.182,0.483,0,0.151 +1,0.863,0.505,0.494,0,0,0,0.233,0,0.151 +0.333,0.684,0.189,0.236,0,0,0,0,0,0.0378 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.704,0.296,0.367,0,0,0,0,0.517,0.0378 +0.333,0.691,0.345,0.31,0,0,0,0,0.517,0.0378 +1,0.863,0.923,0.626,0.62,0.733,0,0,0,0 +1,0.711,0.394,0.378,0,0.333,0.717,0.233,0,0 +1,0.619,0.101,0.117,0,0,0.215,0,0,0 +1,0.612,0.0499,0.0749,0,0,0,0,0,0.0656 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.0327,0.153,0,0,0,0,0.983,0.0378 +1,0.724,0.0799,0.319,0,0,0,0,1,0.27 +0.667,0.738,0.128,0.337,0,0,0,0,0.867,0.206 +0.333,0.652,0.0928,0.198,0,0,0,0,0,0.204 +0.333,0.652,0.108,0.194,0,0,0,0,0,0 +0.333,0.652,0.118,0.187,0,0,0,0,0.25,0.0756 +0.333,0.652,0.125,0.183,0,0,0,0,0,0.227 +0.333,0.652,0.146,0.182,0,0,0,0,0,0.378 +0.333,0.652,0.165,0.184,0,0,0,0,0,0.0756 +0.667,0.764,0.343,0.346,0,0,0,0,0,0.0756 +0.667,0.803,0.36,0.421,0,0,0,0,0,0.0756 +0.333,0.704,0.195,0.302,0,0,0,0,0,0.0756 +0.333,0.71,0.228,0.363,0,0,0,0,0,0.198 +0.667,0.842,0.573,0.683,0,0,0,0,0,0.0378 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.665,0.32,0.242,0,0,0,0,0,0.179 +1,0.639,0.206,0.214,0,0,0,0,0,0.129 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0814 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.645,0.0449,0.184,0,0,0,0,0,0.11 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.652,0.0604,0.198,0,0,0,0,0.517,0 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.189 +0.667,0.738,0.136,0.316,0,0,0,0,0,0.151 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.113 +0.333,0.652,0.0888,0.184,0,0,0,0,0.25,0.302 +0.667,0.764,0.181,0.346,0,0,0,0,0,0.113 +0.667,0.803,0.224,0.421,0,0,0,0,0,0.302 +0.667,0.842,0.273,0.553,0,0,0,0,0,0.0664 +1,1,0.541,0.988,0,0,0,0,0,0.0659 +1,0.98,0.758,1,0.767,0.817,0,0,0,0.0378 +0.667,0.816,0.629,0.57,0,0.25,0,0,0,0 +0.667,0.764,0.596,0.434,0,0,0,0,0,0.0582 +1,0.711,0.363,0.378,0,0,0,0,0,0.216 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0518,0,0,0,0,0.25,0.113 +1,0.612,0.026,0.0841,0,0,0,0,0,0 +0.667,0.625,0.0355,0.153,0,0,0,0,0,0.0378 +0.667,0.724,0.074,0.319,0,0,0,0,0,0.314 +0.333,0.652,0.0527,0.194,0,0,0,0,0.517,0.337 +0.667,0.738,0.105,0.346,0.305,0.317,0,0,0,0.557 +0.333,0.652,0.0664,0.194,0.323,0.75,0,0,0,0.339 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.472 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0.293 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.302,0,0,0,0,0,0 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.227 +0.667,0.842,0.51,0.683,0,0,0,0,0,0.0378 +0.667,0.816,0.629,0.57,0,0,0,0,0,0 +1,0.863,0.887,0.626,0,0,0,0,0,0 +1,0.711,0.363,0.378,0,0,0,0,0,0 +1,0.619,0.0879,0.117,0,0,0,0,0,0.12 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.234 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.153,0,0,0,0,0,0.339 +1,0.645,0.0449,0.184,0.739,0.817,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0.25,0,0,0,0 +0.333,0.652,0.0604,0.198,0,0,0,0,0,0.189 +0.333,0.652,0.0664,0.194,0,0,0,0,0,0 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.113 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.189 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.226 +0.333,0.684,0.12,0.236,0,0,0,0,0,0 +0.333,0.704,0.145,0.302,0,0,0,0,0.517,0.113 +0.667,0.855,0.366,0.675,0,0,0,0,0,0.0378 +0.333,0.704,0.263,0.367,0,0,0,0,0,0 +0.333,0.691,0.322,0.31,0,0,0,0,0,0 +0.667,0.764,0.596,0.434,0,0,0,0,0,0 +0.667,0.711,0.363,0.378,0,0,0,0,0,0 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0.0958 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.026,0.0841,0,0,0.449,0.717,0,0.0378 +1,0.745,0.0747,0.358,0,0,0.529,0,0,0.0756 +1,0.804,0.103,0.453,0,0,0.514,0,0,0.229 +1,0.824,0.126,0.481,0,0,0.271,0,0,0.189 +0.667,0.738,0.105,0.346,0,0,0,0,0.517,0.0378 +0.667,0.738,0.117,0.337,0,0,0,0,0,0.0378 +0.667,0.738,0.129,0.325,0.0865,0.0667,0,0,0,0 +0.667,0.738,0.136,0.316,0.812,1,0,0,0,0.491 +0.667,0.738,0.153,0.313,0.786,0,0,0,0,0.0756 +0.333,0.652,0.0888,0.184,0.165,0,0,0,0,0.136 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.684,0.12,0.236,0.547,0.567,0,0,0,0.0756 +0.333,0.704,0.145,0.302,0.673,0.5,0,0,0,0.397 +0.667,0.855,0.366,0.675,0.645,0,0,0,0,0.132 +0.667,0.842,0.51,0.683,0.658,0,0,0,0,0.185 +0.667,0.816,0.629,0.57,0.611,0,0,0,0,0.113 +0.667,0.764,0.596,0.434,0.812,0,0,0,0,0.113 +1,0.784,0.536,0.541,0.906,0,0,0,0,0.118 +1,0.725,0.232,0.252,0.233,0,0,0,0,0.268 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.0541 +1,0.612,0.026,0.0583,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.153,0,0,0,0,0,0.255 +1,0.724,0.074,0.319,0,0,0,0,0,0.264 +1,0.824,0.126,0.481,0,0,0,0,0,0.58 +1,0.824,0.149,0.495,0,0,0.332,0.717,0,0.0756 +1,0.824,0.168,0.481,0.308,0.317,0.072,0,0,0.227 +1,0.824,0.186,0.463,0.75,0.75,0,0,0,0 +0.667,0.738,0.136,0.316,0.402,0,0,0,0,0.113 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0.113 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.0378 +0.333,0.665,0.0982,0.198,0,0,0,0,0,0.189 +0.333,0.684,0.12,0.236,0,0,0,0,0,0.189 +0.333,0.704,0.145,0.302,0,0,0,0,0,0 +0.333,0.71,0.191,0.363,0,0,0,0,0.317,0.0378 +0.333,0.704,0.263,0.367,0,0,0,0,0.45,0 +0.333,0.691,0.322,0.31,0,0,0,0,0,0.0948 +1,0.863,0.887,0.626,0,0,0,0,0,0.26 +1,0.711,0.363,0.378,0,0,0,0,0,0.0756 +1,0.672,0.16,0.184,0,0,0,0,0,0.0676 +1,0.612,0.0499,0.0749,0,0,0,0,0,0.124 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.0327,0.153,0,0,0,0,0,0.113 +1,0.724,0.0799,0.319,0,0,0,0,0,0.218 +1,0.824,0.183,0.481,0,0,0.618,0.717,0,0.207 +0.667,0.738,0.168,0.346,0,0,0.315,0,0,0.369 +1,0.824,0.289,0.481,0,0,0,0,0,0.0659 +1,0.824,0.317,0.463,0.867,0.983,0,0,0.483,0.165 +1,0.824,0.34,0.449,0.592,0.0833,0,0,0.283,0.262 +0.333,0.652,0.146,0.182,0,0,0,0,0,0.227 +0.333,0.652,0.165,0.184,0,0,0,0,0,0.189 +0.333,0.665,0.18,0.198,0,0,0,0,0,0 +0.333,0.684,0.189,0.236,0,0,0,0,0,0.151 +0.333,0.704,0.195,0.302,0,0,0,0,0,0.0378 +0.333,0.71,0.228,0.363,0,0,0,0,0,0 +0.667,0.842,0.573,0.683,0,0,0,0,0,0.113 +0.667,0.816,0.673,0.57,0,0,0,0,0,0 +0.667,0.764,0.621,0.434,0,0,0,0,0,0 +0.667,0.639,0.206,0.214,0,0,0,0,0,0.33 +0.667,0.619,0.101,0.117,0,0,0,0,0,0 +1,0.612,0.0499,0.0749,0,0,0,0,0,0.164 +1,0.612,0.031,0.0583,0,0,0,0,0,0.204 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.645,0.049,0.184,0,0,0,0,0,0.0378 +1,0.738,0.128,0.337,0,0,0,0,0,0.131 +0.667,0.738,0.168,0.346,0,0,0,0,0,0.189 +0.333,0.652,0.108,0.194,0,0,0,0,0,0.3 +0.667,0.738,0.217,0.325,0,0,0,0,0,0.384 +0.333,0.652,0.125,0.183,0,0,0,0,0,0.343 +0.333,0.652,0.146,0.182,0,0,0,0,0,0.36 +0.667,0.738,0.312,0.318,0,0,0,0,0,0.227 +0.667,0.764,0.343,0.346,0,0,0,0,0,0.113 +0.333,0.684,0.189,0.236,0,0,0,0,0,0.0756 +0.333,0.704,0.195,0.302,0,0,0,0,0.233,0.113 +0.667,0.855,0.437,0.675,0,0,0,0,1,0 +0.667,0.842,0.573,0.683,0,0,0,0,0.05,0 +0.667,0.816,0.673,0.57,0,0,0,0,0,0.0756 +0.667,0.764,0.621,0.434,0,0,0,0,0,0.0725 +0.667,0.639,0.206,0.214,0,0,0,0,0,0.15 +0.667,0.619,0.101,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.026,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.398 +0.667,0.625,0.0355,0.153,0,0,0,0,0,0.381 +0.667,0.645,0.0449,0.184,0,0,0,0,0.567,0.0756 +0.667,0.652,0.0527,0.194,0,0,0,0,0.467,0.0756 +0.667,0.738,0.105,0.346,0,0,0,0,0,0.0768 +0.667,0.738,0.117,0.337,0,0,0,0,0,0.228 +0.333,0.652,0.0724,0.187,0,0,0,0,0,0.164 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0.458 +0,0.566,0.0159,0.05,0,0,0,0,0,0.122 +0.333,0.652,0.0888,0.184,0,0,0,0,0.317,0.227 +0.667,0.764,0.181,0.346,0,0,0,0,0.2,0.113 +0.667,0.803,0.224,0.421,0,0,0,0,0,0 +1,0.98,0.402,0.805,0,0,0,0,0.517,0.189 +0.333,0.71,0.191,0.363,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0.126 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.665,0.306,0.242,0,0,0,0,0,0.0581 +0.667,0.639,0.189,0.214,0,0,0,0,0,0.131 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.196 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.645,0.0449,0.184,0,0,0,0,0,0.177 +0.667,0.652,0.0527,0.194,0,0,0,0,0,0.443 +0.667,0.652,0.0604,0.198,0,0,0,0,0,0.424 +0.667,0.738,0.117,0.337,0,0,0,0,0,0.391 +0.667,0.738,0.129,0.325,0,0,0,0,0,0.121 +0.667,0.738,0.136,0.316,0.673,0.817,0,0,0,0 +0.667,0.738,0.153,0.313,0.861,0.25,0,0,0,0.113 +0.667,0.738,0.162,0.318,0.602,0,0,0,0,0.151 +0.667,0.764,0.181,0.346,0.808,0,0,0,0,0.0756 +0.667,0.803,0.224,0.421,0.367,0,0,0,0,0 +0.333,0.704,0.145,0.302,0,0,0,0,0.317,0.264 +0.333,0.71,0.191,0.363,0,0,0,0,0.2,0.227 +0.333,0.704,0.263,0.367,0,0,0,0,0,0.0756 +0.333,0.691,0.322,0.31,0,0,0,0,0,0.0378 +0.667,0.764,0.596,0.434,0,0,0,0,0,0 +1,0.784,0.536,0.541,0,0,0,0,0,0 +1,0.672,0.16,0.184,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.153,0,0,0,0,0.25,0.244 +1,0.724,0.074,0.319,0,0,0.207,0.233,0,0.4 +1,0.738,0.0895,0.337,0,0,0.295,0,0,0.212 +1,0.738,0.105,0.346,0,0,0.542,0,0,0.214 +1,0.738,0.117,0.337,0,0,0.361,0,0,0.174 +0.667,0.652,0.0724,0.187,0,0,0,0,0,0.378 +0.333,0.652,0.0759,0.183,0,0,0,0,0,0.151 +0.333,0.652,0.0845,0.182,0,0,0,0,0,0 +0.333,0.652,0.0888,0.184,0,0,0,0,0,0.151 +0.667,0.665,0.0982,0.198,0,0,0,0,0,0.0756 +0.667,0.803,0.224,0.421,0.624,0.567,0,0,0,0.112 +0.333,0.704,0.145,0.302,0.205,0.783,0,0,0,0.0378 +0.667,0.855,0.366,0.675,0,0,0,0,0.817,0.189 +0.333,0.704,0.263,0.367,0,0,0,0,0.217,0 +0.333,0.691,0.322,0.31,0,0,0,0,0,0 +0.667,0.665,0.306,0.242,0,0,0,0,0,0 +0.667,0.639,0.189,0.214,0,0,0,0,0,0.0596 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0.0696 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.614,0.0259,0.0583,0,0,0,0,0,0.0756 +1,0.614,0.0183,0.05,0,0,0,0,0,0 +1,0.614,0.0165,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.185 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.188 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.432 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.307 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.567 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.537 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0.152,0.267,0,0 +0.667,0.847,0.507,0.676,0,0,0.447,0.983,0,0.0378 +0.667,0.821,0.625,0.631,0,0,0.226,0,0,0.229 +0.667,0.768,0.592,0.506,0,0,0,0,0,0.138 +0.667,0.715,0.36,0.446,0,0,0,0,0,0.116 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0972 +1,0.614,0.0421,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.647,0.0447,0.183,0,0,0,0,0,0.397 +1,0.742,0.0889,0.333,0,0,0,0,0,0.179 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.654,0.066,0.191,0,0,0,0,0,0.0378 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.302 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.151 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.189 +0,0.566,0.0159,0.05,0,0,0,0,0.5,0.0378 +0.667,0.768,0.179,0.325,0,0,0,0,0,0.0756 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.0378 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.295 +0.333,0.713,0.19,0.325,0,0,0,0,0,0 +0.667,0.847,0.507,0.676,0,0,0,0,0,0.245 +1,0.821,0.625,0.631,0,0,0,0,0,0.114 +1,0.768,0.592,0.506,0,0,0,0,0,0.0648 +1,0.64,0.188,0.248,0,0,0,0,0,0.113 +1,0.621,0.0874,0.117,0,0,0,0,0,0.308 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.614,0.024,0.0836,0,0,0,0,0,0.34 +1,0.627,0.0326,0.151,0,0,0,0,0,0 +1,0.728,0.0794,0.316,0,0,0,0,0.25,0.0756 +0.667,0.742,0.127,0.333,0,0,0.0641,0.45,0,0.0756 +0.667,0.742,0.166,0.34,0,0,0.558,0.05,0,0.0378 +1,0.829,0.287,0.472,0,0,0.0825,0,0,0.264 +0.333,0.654,0.117,0.185,0,0,0,0,0,0.0378 +0.667,0.742,0.231,0.31,0,0,0,0,0.5,0.0378 +0.667,0.742,0.272,0.308,0,0,0.295,0.45,0,0.0378 +0.667,0.742,0.31,0.31,0,0,0.606,0.3,0,0.227 +0.333,0.667,0.179,0.187,0,0,0.355,0,0,0 +0.333,0.686,0.188,0.21,0,0,0.733,0,0,0.189 +0.333,0.706,0.194,0.26,0.184,0.2,0.177,0,0.25,0.0378 +0.667,0.86,0.434,0.601,0.427,0.85,0,0,0,0.0378 +0.667,0.847,0.569,0.676,0,0,0,0,0,0.0756 +0.667,0.693,0.343,0.34,0,0,0,0,0,0 +0.667,0.667,0.317,0.278,0,0,0,0,0,0.0794 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.647,0.0488,0.183,0,0,0,0,0,0.113 +0.667,0.654,0.0727,0.191,0,0,0,0,0,0.296 +0.667,0.742,0.166,0.34,0,0,0,0,0,0.192 +1,0.829,0.287,0.472,0,0,0,0,0,0.229 +0.667,0.742,0.216,0.319,0,0,0,0,0,0.302 +0.333,0.654,0.125,0.18,0.562,0.95,0,0,0,0.0378 +0.667,0.654,0.145,0.179,0.697,0.1,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.686,0.188,0.21,0,0,0,0,0.25,0.0756 +0.667,0.847,0.369,0.47,0,0,0,0,0,0.0378 +0.667,0.86,0.434,0.601,0,0,0,0,0,0.43 +0.667,0.847,0.569,0.676,0,0,0,0,0,0.151 +0.667,0.821,0.668,0.631,0,0,0,0,0,0.0378 +0.667,0.667,0.317,0.278,0,0,0,0,0,0.111 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0145 +1,0.627,0.0353,0.151,0,0,0,0,0,0.177 +1,0.647,0.0447,0.183,0,0,0,0,0,0.154 +1,0.742,0.0889,0.333,0,0,0,0,0,0.183 +1,0.829,0.148,0.485,0,0,0,0,0,0.713 +0.667,0.742,0.116,0.331,0,0,0,0,0,0.139 +0.667,0.742,0.128,0.319,0,0,0,0,0,0.0768 +0.667,0.742,0.135,0.31,0,0,0,0,0,0.189 +0.667,0.654,0.0839,0.179,0,0,0,0,0,0.264 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.0378 +0.333,0.667,0.0976,0.187,0,0,0,0,0.25,0.34 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.0756 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.113 +0.333,0.713,0.19,0.325,0,0,0,0,0,0.0756 +0.333,0.706,0.261,0.363,0,0,0,0,0,0 +0.333,0.693,0.32,0.34,0,0,0,0,0,0.0378 +0.667,0.768,0.592,0.506,0,0,0,0,0,0 +0.667,0.64,0.188,0.248,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.295 +1,0.689,0.0548,0.253,0,0,0,0,0,0.379 +1,0.81,0.102,0.449,0,0,0,0,0,0.648 +1,0.829,0.125,0.474,0,0,0,0,0.5,0.199 +0.667,0.742,0.104,0.34,0,0,0,0,0,0 +0.333,0.654,0.066,0.191,0,0,0,0,0,0.151 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.0378 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.151 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.113 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.113 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.713,0.19,0.325,0,0,0,0,0,0 +0.333,0.706,0.261,0.363,0,0,0,0,0,0.113 +0.667,0.821,0.625,0.631,0,0,0,0,0,0 +0.667,0.667,0.304,0.278,0.333,0.267,0,0,0,0.0378 +1,0.715,0.36,0.446,0.276,0.783,0,0,0,0.0141 +1,0.566,0.0159,0.05,0,0,0,0,0,0.171 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.627,0.0353,0.151,0,0,0,0,0,0.125 +0.667,0.728,0.0735,0.316,0,0,0,0,0,0.211 +0.333,0.654,0.0524,0.191,0,0,0,0,0,0 +0.333,0.654,0.0601,0.195,0,0,0,0,0,0.0756 +0.333,0.654,0.066,0.191,0,0,0,0,0,0.0378 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.0756 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.0756 +0.667,0.742,0.152,0.308,0,0,0,0,0,0.0378 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.151 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.227 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.189 +0.333,0.706,0.144,0.26,0,0,0,0,0,0 +0.333,0.713,0.19,0.325,0,0,0,0,0,0.113 +0.667,0.847,0.507,0.676,0,0,0.323,0.5,0,0.113 +0.667,0.821,0.625,0.631,0,0,0.00785,0,0,0 +0.667,0.768,0.592,0.506,0,0,0,0,0,0.0756 +0.667,0.715,0.36,0.446,0,0,0,0,0,0 +0.667,0.621,0.0874,0.117,0,0,0,0,0,0.0756 +0.667,0.614,0.0421,0.0749,0,0,0,0,0,0 +1,0.614,0.0259,0.0583,0,0,0,0,0,0.103 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0138 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0829 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.654,0.066,0.191,0,0,0,0,0.25,0.0756 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.0756 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.0378 +0.667,0.654,0.0839,0.179,0,0,0,0,0,0.264 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.151 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.113 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.0756 +0.333,0.713,0.19,0.325,0,0,0,0,0.267,0.0756 +0.667,0.847,0.507,0.676,0,0,0.072,0.267,0.5,0.0378 +0.667,0.821,0.625,0.631,0,0,0.213,0.483,0,0 +0.667,0.768,0.592,0.506,0,0,0.38,0,0,0.224 +1,0.79,0.532,0.644,0,0,0,0,0,0.151 +1,0.676,0.159,0.184,0,0,0,0,0,0 +1,0.614,0.0421,0.0749,0,0,0,0,0,0 +1,0.614,0.0259,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.647,0.0447,0.183,0,0,0,0,0,0.0378 +1,0.742,0.0889,0.333,0,0,0,0,0.25,0.151 +0.667,0.742,0.104,0.34,0,0,0,0,0,0.227 +0.667,0.742,0.116,0.331,0,0,0,0,0,0.113 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.189 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.151 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.264 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.713,0.19,0.325,0,0,0,0,0,0.075 +0.667,0.847,0.507,0.676,0,0,0,0,0,0.128 +1,0.821,0.625,0.631,0,0,0,0,0,0.173 +1,0.768,0.592,0.506,0,0,0,0,0,0.148 +1,0.715,0.36,0.446,0,0,0,0,0,0.0756 +1,0.621,0.0874,0.117,0,0,0,0,0,0.211 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.647,0.0488,0.183,0,0,0,0,0,0.0378 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.654,0.0923,0.195,0,0,0,0,0,0.302 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.113 +0.667,0.742,0.216,0.319,0,0,0,0,0,0.236 +0.333,0.654,0.125,0.18,0,0,0,0,0,0.0707 +0.667,0.742,0.272,0.308,0,0,0,0,0.25,0.539 +0.667,0.742,0.31,0.31,0,0,0,0,0,0.686 +1,0.869,0.502,0.462,0,0,0,0,0,0.113 +0.333,0.686,0.188,0.21,0,0,0,0,0,0.0756 +0.333,0.706,0.194,0.26,0,0,0,0,0,0 +0.333,0.713,0.226,0.325,0,0,0,0,0,0.0378 +0.667,0.847,0.569,0.676,0,0,0,0,0,0.151 +1,0.948,0.993,0.921,0,0,0,0,0,0.294 +1,0.869,0.916,0.734,0,0,0,0,0,0.248 +1,0.715,0.392,0.446,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0.2,0.0378 +0.667,0.647,0.0488,0.183,0,0,0,0,0.3,0.0378 +0.667,0.654,0.0727,0.191,0.5,0.45,0,0,0,0.116 +0.667,0.742,0.166,0.34,0.539,0.6,0,0,0,0.191 +0.667,0.742,0.197,0.331,0.615,0,0,0,0,0.185 +1,0.829,0.315,0.454,0.848,0,0,0,0,0 +0.667,0.742,0.231,0.31,0.697,0,0,0,0,0.343 +0.667,0.742,0.272,0.308,0.889,0,0,0,0,0.0378 +0.333,0.654,0.164,0.18,0.327,0,0,0,0,0.151 +0.667,0.768,0.34,0.325,0,0,0.623,0.5,0.25,0.302 +1,0.928,0.527,0.531,0.237,0.2,0.602,0,0,0.151 +0.667,0.847,0.369,0.47,0.502,0.85,0,0,0,0.0756 +0.667,0.86,0.434,0.601,0,0,0,0,0,0 +0.667,0.847,0.569,0.676,0,0,0.148,0.45,0,0.371 +1,0.693,0.343,0.34,0,0,0.072,0.8,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.728,0.0735,0.316,0,0,0,0,0.517,0.356 +1,0.829,0.125,0.474,0,0,0,0,0.517,0.256 +1,0.829,0.148,0.485,0,0,0,0,0.233,0.172 +0.667,0.742,0.116,0.331,0,0,0,0,0,0.125 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.0679 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.168 +0.667,0.742,0.152,0.308,0,0,0,0,0,0.0664 +0.667,0.742,0.161,0.31,0,0,0,0,0,0.0756 +0.667,0.768,0.179,0.325,0,0,0,0,0,0.0756 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.302 +0.333,0.706,0.144,0.26,0,0,0,0,0.25,0.227 +0.333,0.713,0.19,0.325,0,0,0,0,0,0.0378 +0.333,0.706,0.261,0.363,0,0,0,0,0,0.0756 +0.667,0.821,0.625,0.631,0.434,0.517,0,0,0,0.151 +0.333,0.667,0.304,0.278,0.288,0.533,0,0,0,0.0641 +0.667,0.715,0.36,0.446,0,0,0,0,0,0 +1,0.731,0.23,0.252,0,0,0,0,0,0 +1,0.711,0.0947,0.125,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.156 +1,0.689,0.0548,0.253,0,0,0,0,0,0.203 +1,0.728,0.0735,0.316,0,0,0,0,0,0.197 +0.667,0.654,0.0524,0.191,0,0,0,0,0,0.145 +0.667,0.654,0.0601,0.195,0,0,0,0,0,0.121 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.113 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.416 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.279 +0.667,0.807,0.222,0.371,0,0,0,0,0,0.262 +0.667,0.847,0.271,0.47,0,0,0,0,0.267,0.541 +0.667,0.86,0.364,0.601,0,0,0,0,0.233,0 +0.333,0.706,0.261,0.363,0,0,0,0,0,0.166 +0.667,0.821,0.625,0.631,0,0,0,0,0,0.419 +0.667,0.768,0.592,0.506,0,0,0,0,0,0 +1,0.79,0.532,0.644,0,0,0,0,0,0.206 +1,0.621,0.0874,0.117,0,0,0,0,0,0.175 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.614,0.0183,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.654,0.0524,0.191,0,0,0,0,0.5,0.235 +0.667,0.654,0.0601,0.195,0,0,0,0,0,0.231 +0.667,0.742,0.116,0.331,0,0,0,0,0,0.355 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.303 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.0378 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.113 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.0756 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.453 +0.333,0.706,0.144,0.26,0,0,0,0,0.25,0.0378 +0.667,0.86,0.364,0.601,0,0,0,0,0,0.219 +1,0.987,0.752,0.989,0,0,0,0,0,0.31 +0.667,0.821,0.625,0.631,0,0,0,0,0,0 +0.667,0.768,0.592,0.506,0,0,0,0,0,0 +0.667,0.715,0.36,0.446,0,0,0,0,0,0 +0.667,0.621,0.0874,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.614,0.0259,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.647,0.0447,0.183,0,0,0,0,0,0.233 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.127 +0.667,0.654,0.0601,0.195,0,0,0,0,0,0.113 +0.667,0.742,0.116,0.331,0,0,0,0,0,0.0378 +0.667,0.742,0.128,0.319,0,0,0,0,0,0 +0.667,0.742,0.135,0.31,0,0,0,0,0,0.113 +0.667,0.742,0.152,0.308,0,0,0,0,0,0.416 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.151 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.0756 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.0378 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.165 +0.667,0.86,0.364,0.601,0,0,0,0,0.0167,0.293 +0.667,0.847,0.507,0.676,0,0,0,0,0.233,0.372 +0.667,0.821,0.625,0.631,0,0,0,0,0,0.0978 +0.667,0.768,0.592,0.506,0.284,0.267,0,0,0,0 +0.667,0.715,0.36,0.446,0.641,0.783,0,0,0,0 +0.667,0.621,0.0874,0.117,0.498,0.567,0,0,0,0 +1,0.663,0.0684,0.0999,0.383,0.283,0,0,0.25,0.188 +1,0.663,0.036,0.0666,0,0,0,0,0,0.569 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.267,0.168 +1,0.81,0.102,0.449,0,0,0,0,1,0.265 +0.667,0.742,0.0889,0.333,0,0,0.118,0.25,0.517,0.365 +0.667,0.742,0.104,0.34,0,0,0.406,0,0,0.402 +0.667,0.742,0.116,0.331,0,0,0.532,0,0,0.113 +0.333,0.654,0.072,0.185,0,0,0.274,0,0,0.227 +0.333,0.654,0.0754,0.18,0,0,0.26,0,0.517,0.0756 +0.333,0.654,0.0839,0.179,0,0,0,0,1,0.113 +0.333,0.654,0.0882,0.18,0,0,0,0,0.267,0.189 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0 +0.333,0.686,0.119,0.21,0,0,0,0,0.25,0.189 +0.333,0.706,0.144,0.26,0.669,0.767,0,0,0,0.227 +0.333,0.713,0.19,0.325,0.724,0.283,0,0,0,0.323 +0.667,0.847,0.507,0.676,0.203,0,0,0,0,0 +0.667,0.821,0.625,0.631,0,0,0,0,0,0 +0.667,0.768,0.592,0.506,0,0,0,0,0,0 +0.667,0.715,0.36,0.446,0,0,0,0,0,0.235 +1,0.676,0.159,0.184,0.212,0.2,0,0,0,0.0301 +1,0.614,0.0496,0.0749,0,0,0,0,0,0 +1,0.614,0.0309,0.0583,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.647,0.0488,0.183,0,0,0,0,0,0.237 +1,0.742,0.127,0.333,0,0,0,0,0,0.0756 +0.667,0.654,0.0923,0.195,0,0,0,0,0,0.166 +0.667,0.742,0.197,0.331,0,0,0,0,0,0.198 +1,0.742,0.216,0.319,0,0,0,0,0,0.318 +1,0.829,0.338,0.44,0,0,0,0,0,0.363 +0.667,0.742,0.272,0.308,0,0,0,0,0,0.305 +0.333,0.654,0.164,0.18,0,0,0,0,0,0.679 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.686,0.188,0.21,0,0,0,0,0,0 +0.667,0.847,0.369,0.47,0,0,0,0,0,0.113 +0.667,0.86,0.434,0.601,0,0,0,0,0,0 +0.667,0.847,0.569,0.676,0,0,0,0,0,0.116 +0.333,0.693,0.343,0.34,0,0,0,0,0,0.168 +0.667,0.768,0.617,0.506,0,0,0,0,0,0.0659 +0.667,0.715,0.392,0.446,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.647,0.0488,0.183,0,0,0,0,0,0.264 +0.667,0.742,0.127,0.333,0,0,0,0,0,0.0756 +0.333,0.654,0.0923,0.195,0,0,0,0,0,0.113 +0,0.566,0.0181,0.05,0,0,0,0,0,0.13 +0.667,0.742,0.216,0.319,0,0,0.314,0.5,0,0.209 +0.667,0.742,0.231,0.31,0,0,0.568,0,0,0.227 +0.667,0.742,0.272,0.308,0,0,0,0,0,0.0756 +0.667,0.742,0.31,0.31,0,0,0,0,0.45,0.0378 +0.667,0.768,0.34,0.325,0,0,0,0,1,0.189 +0.333,0.686,0.188,0.21,0,0,0,0,1,0.0378 +0.333,0.706,0.194,0.26,0,0,0,0,0.3,0 +0.667,0.86,0.434,0.601,0,0,0,0,0.567,0 +0.667,0.847,0.569,0.676,0,0,0,0,0,0.227 +0.667,0.821,0.668,0.631,0,0,0,0,0,0 +0.667,0.768,0.617,0.506,0,0,0,0,0,0.0756 +0.667,0.64,0.205,0.248,0,0,0,0,0,0 +0.667,0.621,0.1,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.627,0.0353,0.151,0,0,0,0,0.267,0.224 +0.667,0.728,0.0735,0.316,0,0,0,0,0.233,0.275 +0.667,0.742,0.0889,0.333,0,0,0,0,0,0.204 +0.667,0.742,0.104,0.34,0,0,0,0,0,0.113 +0.667,0.742,0.116,0.331,0,0,0,0,0.25,0.0528 +0.667,0.742,0.128,0.319,0,0,0,0,0,0.498 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.0756 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.151 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.0756 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.0378 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.151 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.0378 +0.333,0.713,0.19,0.325,0,0,0,0,0,0.124 +0.333,0.706,0.261,0.363,0,0,0,0,0,0.156 +0.667,0.821,0.625,0.631,0,0,0,0,0,0.379 +0.667,0.768,0.592,0.506,0,0,0,0,0,0.213 +0.667,0.64,0.188,0.248,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.647,0.0447,0.183,0,0,0,0,0,0.233 +0.667,0.654,0.0524,0.191,0,0,0,0,0,0.136 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.654,0.066,0.191,0,0,0,0,0,0.0378 +0.333,0.654,0.072,0.185,0,0,0.0432,0.0167,0,0.227 +0.333,0.654,0.0754,0.18,0,0,0.446,0.483,0,0.0378 +0.333,0.654,0.0839,0.179,0,0,0.408,0,0,0.0378 +0.333,0.654,0.0882,0.18,0,0,0.188,0,0.5,0.0756 +0.667,0.768,0.179,0.325,0,0,0,0,0,0.302 +0.667,0.807,0.222,0.371,0,0,0,0,0,0.113 +0.333,0.706,0.144,0.26,0,0,0,0,0,0 +0.667,0.86,0.364,0.601,0,0,0.524,0.75,0,0.0378 +0.667,0.847,0.507,0.676,0,0,0.406,0,0,0 +0.667,0.821,0.625,0.631,0,0,0.497,0,0,0 +0.667,0.768,0.592,0.506,0,0,0.647,0,0,0.173 +1,0.715,0.36,0.446,0,0,0,0,0,0 +1,0.621,0.0874,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.627,0.0353,0.151,0,0,0,0,0,0.171 +1,0.728,0.0735,0.316,0,0,0,0,0,0.402 +1,0.742,0.0889,0.333,0,0,0,0,0,0.344 +0.667,0.654,0.0601,0.195,0,0,0,0,0,0.306 +0.333,0.654,0.066,0.191,0,0,0,0,0,0 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.113 +0.333,0.654,0.0754,0.18,0,0,0,0,0.25,0.453 +0.667,0.742,0.152,0.308,0,0,0,0,0,0.113 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.0756 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.0378 +0.667,0.807,0.222,0.371,0,0,0,0,0,0.138 +0.667,0.847,0.271,0.47,0.588,0.767,0,0,0,0.0378 +0.667,0.86,0.364,0.601,0,0.283,0,0,0,0.0756 +0.333,0.706,0.261,0.363,0,0,0,0,0.5,0.279 +1,0.948,0.929,0.921,0,0,0,0,0,0.24 +1,0.768,0.592,0.506,0,0,0,0,0,0 +1,0.715,0.36,0.446,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.627,0.0353,0.151,0,0,0,0,0.767,0.378 +1,0.728,0.0735,0.316,0,0,0,0,0.25,0.0378 +1,0.829,0.125,0.474,0,0,0,0,0,0.115 +0.667,0.654,0.0601,0.195,0,0,0,0,0,0.163 +0.667,0.742,0.116,0.331,0,0,0,0,0.25,0.151 +0.667,0.742,0.128,0.319,0,0,0,0,0,0.0699 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0 +0.667,0.742,0.152,0.308,0,0,0,0,0,0.227 +1,0.829,0.233,0.439,0,0,0,0,0,0.246 +0.667,0.768,0.179,0.325,0,0,0.391,0.25,0,0.0756 +0.667,0.807,0.222,0.371,0,0,0.504,0,0,0.113 +0.667,0.847,0.271,0.47,0,0,0,0,0,0.0898 +0.667,0.86,0.364,0.601,0.385,0.267,0,0,0.25,0.245 +1,0.987,0.752,0.989,0.558,0.783,0,0,0,0.0756 +1,0.948,0.929,0.921,0.579,0,0,0,0,0 +0.667,0.667,0.304,0.278,0,0,0,0,0,0.178 +0.667,0.64,0.188,0.248,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.159 +0.667,0.647,0.0447,0.183,0,0,0,0,0,0.116 +0.667,0.654,0.0524,0.191,0,0,0,0,0,0.226 +0.667,0.654,0.0601,0.195,0,0,0,0,0,0.258 +0.333,0.654,0.066,0.191,0,0,0,0,0,0.392 +0.333,0.654,0.072,0.185,0,0,0.182,0.267,0,0.464 +0.667,0.742,0.135,0.31,0,0,0.271,0.233,0,0.441 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.227 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.189 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0 +0.333,0.686,0.119,0.21,0,0,0,0,0.767,0.0378 +0.333,0.706,0.144,0.26,0,0,0,0,0.767,0 +0.333,0.713,0.19,0.325,0,0,0,0,0.5,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.693,0.32,0.34,0,0,0,0,0,0 +1,0.869,0.88,0.734,0,0,0,0,0,0 +0.667,0.715,0.36,0.446,0,0,0,0,0,0.0378 +1,0.621,0.0874,0.117,0,0,0,0,0,0 +1,0.614,0.0496,0.0749,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.614,0.024,0.0836,0,0,0,0,0.25,0.189 +1,0.689,0.047,0.253,0,0,0,0,0,0.635 +1,0.81,0.11,0.449,0,0,0,0,0,0.0756 +0.333,0.654,0.0727,0.191,0,0,0,0,0,0.0756 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.113 +0.333,0.706,0.194,0.26,0,0,0,0,0,0.113 +0.333,0.713,0.226,0.325,0,0,0,0,0,0.0378 +0.333,0.706,0.294,0.363,0,0,0,0,0,0.189 +0.667,0.821,0.668,0.631,0,0,0,0,0,0 +0.667,0.768,0.617,0.506,0,0,0,0,0,0 +0.667,0.64,0.205,0.248,0,0,0,0,0,0 +0.667,0.621,0.1,0.117,0,0,0,0,0,0 +1,0.614,0.0496,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.654,0.0727,0.191,0,0,0.174,0.45,0,0.434 +0.667,0.742,0.166,0.34,0,0,0.344,0.8,0,0.222 +0.667,0.742,0.197,0.331,0,0,0.397,0,0,0.447 +0.667,0.742,0.216,0.319,0,0,0,0,0,0.113 +0.333,0.654,0.125,0.18,0,0,0,0,0,0.302 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.113 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.821,0.668,0.631,0,0,0,0,0,0.189 +0.667,0.768,0.617,0.506,0,0,0,0,0,0 +1,0.715,0.392,0.446,0,0,0,0,0,0.0378 +1,0.621,0.1,0.117,0,0,0,0,0,0.119 +1,0.614,0.0421,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.204 +1,0.663,0.036,0.117,0,0,0,0,0,0.323 +0.667,0.627,0.0353,0.151,0,0,0,0,0,1 +0.333,0.647,0.0447,0.183,0,0,0,0,0,0.378 +0.333,0.654,0.0524,0.191,0,0,0,0,0,0.328 +0.333,0.654,0.0601,0.195,0,0,0,0,0,0.109 +0.667,0.742,0.116,0.331,0,0,0,0,0,0.366 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.189 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0.103 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.0378 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.113 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.0378 +0.333,0.686,0.119,0.21,0,0,0,0,0,0.0756 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.0756 +0.333,0.713,0.19,0.325,0,0,0,0,0,0.288 +0.333,0.706,0.261,0.363,0,0,0,0,0,0.207 +0.333,0.693,0.32,0.34,0,0,0,0,0.517,0.0799 +0.667,0.768,0.592,0.506,0,0,0,0,0.5,0 +0.667,0.715,0.36,0.446,0,0,0,0,0,0.11 +0.667,0.676,0.159,0.184,0,0,0,0,0,0 +1,0.663,0.0684,0.0999,0,0,0,0,0,0 +1,0.614,0.0259,0.0583,0,0,0,0,0,0 +1,0.614,0.0183,0.05,0,0,0,0,0,0.0756 +1,0.614,0.0165,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.627,0.0353,0.151,0,0,0,0,0.25,0.21 +1,0.728,0.0735,0.316,0,0,0,0,0,0.234 +0.667,0.654,0.0524,0.191,0,0,0,0,0,0.221 +0.333,0.654,0.0601,0.195,0,0,0,0,0,0.0756 +0.333,0.654,0.066,0.191,0,0,0,0,0,0.189 +0.333,0.654,0.072,0.185,0,0,0,0,0,0.378 +0.333,0.654,0.0754,0.18,0,0,0,0,0,0 +0.333,0.654,0.0839,0.179,0,0,0,0,0,0.0378 +0.333,0.654,0.0882,0.18,0,0,0,0,0,0.212 +0.333,0.667,0.0976,0.187,0,0,0,0,0.0167,0.115 +0.333,0.686,0.119,0.21,0,0,0,0,0.75,0 +0.333,0.706,0.144,0.26,0,0,0,0,0,0.0378 +0.667,0.86,0.364,0.601,0,0,0,0,0,0 +0.667,0.847,0.507,0.676,0,0,0,0,0,0.0756 +0.667,0.821,0.625,0.631,0.259,0.267,0,0,0,0 +0.667,0.768,0.592,0.506,0.222,0.783,0,0,0,0.333 +1,0.79,0.532,0.644,0,0,0,0,0,0.0689 +1,0.621,0.0874,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.647,0.0447,0.183,0,0,0,0,0,0.218 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.654,0.072,0.185,0,0,0,0,0,0.34 +0.667,0.654,0.0754,0.18,0,0,0,0,0,0.0756 +0.667,0.654,0.0839,0.179,0,0,0,0,0,0.113 +0.667,0.654,0.0882,0.18,0,0,0,0,0,0.0756 +0.333,0.667,0.0976,0.187,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.706,0.144,0.26,0,0,0.0759,0.0167,0,0.158 +0.333,0.713,0.19,0.325,0,0,0.564,0.733,0,0.264 +0.333,0.706,0.261,0.363,0,0,0.616,0,0,0 +0.333,0.693,0.32,0.34,0,0,0,0,0,0.151 +0.333,0.667,0.304,0.278,0,0,0,0,0,0 +0.667,0.715,0.36,0.446,0,0,0,0,0,0.0756 +1,0.621,0.0874,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.133 +0.333,0.566,0.0159,0.05,0,0,0,0,0.233,0.446 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.346 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.263 +0.667,0.677,0.19,0.329,0,0,0,0,0,0.425 +0.667,0.709,0.232,0.398,0.709,0.817,0,0,0,0.354 +0.667,0.719,0.31,0.512,0.598,0.2,0,0,0,0.169 +0.667,0.709,0.432,0.619,0.199,0,0,0,0.483,0.272 +0.667,0.688,0.532,0.641,0,0,0,0,0,0 +1,0.646,0.505,0.56,0,0,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0.173 +1,0.569,0.0759,0.117,0,0,0,0,0,0.202 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.148,0,0,0,0,0.0667,0.0756 +1,0.615,0.0634,0.308,0,0,0,0,1,0.302 +0.667,0.625,0.0764,0.321,0,0,0,0,0.633,0.195 +0.667,0.625,0.0895,0.324,0,0,0,0,0,0.13 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.151 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.151 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0.227 +0.333,0.595,0.073,0.171,0,0,0,0,0,0.0378 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.151 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.0756 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.0756 +0.333,0.642,0.163,0.281,0,0,0,0,0,0.189 +0.667,0.709,0.432,0.619,0,0,0,0,0,0 +0.667,0.688,0.532,0.641,0,0,0,0,0,0.0756 +0.667,0.646,0.505,0.56,0,0,0,0,0,0.0378 +0.667,0.605,0.307,0.353,0,0,0,0,0,0.173 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.194 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0521 +1,0.564,0.0281,0.0583,0,0,0,0,0,0.201 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.59,0.0433,0.179,0,0,0,0,0,0.113 +0.333,0.595,0.0636,0.185,0,0,0,0,0,0.0378 +0.333,0.595,0.0803,0.187,0,0,0,0,0,0.0756 +0.333,0.595,0.0934,0.183,0,0,0,0,0,0.0378 +0.333,0.595,0.101,0.177,0,0,0,0,0,0.535 +0.667,0.625,0.198,0.294,0,0,0,0,0,0.249 +0.333,0.595,0.125,0.171,0,0,0,0,0,0.418 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.621,0.162,0.189,0,0,0,0,0,0.227 +0.333,0.637,0.167,0.224,0,0,0,0,0.4,0.0378 +0.333,0.642,0.194,0.281,0,0,0,0,0.567,0 +0.667,0.709,0.485,0.619,0,0,0,0,0,0.0756 +0.667,0.688,0.57,0.641,0,0,0,0,0,0.0934 +1,0.686,0.78,0.815,0,0,0,0,0,0.169 +1,0.605,0.334,0.353,0,0,0,0,0,0 +1,0.573,0.156,0.184,0,0,0,0,0,0.0756 +1,0.563,0.0699,0.0999,0,0,0,0,0,0.141 +1,0.564,0.0281,0.0583,0,0,0,0,0,0.107 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0.4,0.0756 +1,0.615,0.0685,0.308,0,0,0,0,0.567,0.0919 +1,0.655,0.155,0.456,0,0,0,0,0,0.459 +0.667,0.625,0.143,0.324,0,0,0,0,0,0.113 +0.667,0.625,0.169,0.315,0,0,0,0,0,0.151 +0.333,0.595,0.101,0.177,0,0,0,0,0,0.0378 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.595,0.141,0.171,0,0,0,0,0,0 +0.333,0.606,0.154,0.175,0,0,0,0,0,0.113 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.637,0.167,0.224,0,0,0,0,0,0.237 +0.667,0.642,0.194,0.281,0,0,0,0,0,0.278 +0.667,0.637,0.252,0.335,0,0,0,0,0,0.147 +0.667,0.627,0.294,0.346,0,0,0,0,0,0 +1,0.646,0.526,0.56,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.174 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.226 +1,0.566,0.0159,0.05,0,0,0,0,0,0.248 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0823,0,0,0,0,0,0.113 +1,0.575,0.0316,0.148,0,0,0,0,0,0.402 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0558 +0.667,0.625,0.0764,0.321,0,0,0,0,0,0.329 +0.667,0.625,0.0895,0.324,0,0,0,0,0,0.249 +0.333,0.595,0.0578,0.183,0,0,0.166,0.317,0,0.345 +0.333,0.595,0.0629,0.177,0,0,0.192,0.417,0,0 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.113 +0.333,0.621,0.103,0.189,0,0,0,0,0.483,0.0756 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.151 +0.333,0.642,0.163,0.281,0,0,0,0,0,0.189 +0.333,0.637,0.224,0.335,0.177,0.0667,0,0,0,0 +0.667,0.688,0.532,0.641,0.688,0.95,0,0,0,0.0378 +0.667,0.646,0.505,0.56,0,0,0,0,0,0 +0.667,0.585,0.162,0.201,0,0,0,0,0,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0562 +1,0.575,0.0316,0.148,0,0,0,0,0,0.25 +1,0.59,0.0396,0.179,0,0,0,0,0,0.434 +0.667,0.595,0.0462,0.185,0,0,0,0,0,0.256 +0.667,0.625,0.0895,0.324,0,0,0,0,0,0.171 +1,0.655,0.142,0.448,0,0,0,0,0,0.187 +1,0.655,0.157,0.43,0,0,0,0,0,0.254 +1,0.655,0.166,0.417,0,0,0,0,0,0.57 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.173 +0.667,0.625,0.137,0.293,0,0,0,0,0,0.403 +0.667,0.646,0.153,0.301,0,0,0,0,0,0.0756 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.378 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.0756 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.0756 +0.667,0.709,0.432,0.619,0,0,0,0,0,0.0378 +0.667,0.688,0.532,0.641,0,0,0,0,0,0 +0.667,0.606,0.26,0.305,0,0,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0396,0.179,0,0,0,0,0,0.0505 +1,0.595,0.0462,0.185,0,0,0,0,0,0.288 +0.667,0.625,0.0895,0.324,0,0,0,0,0.0667,0.325 +1,0.655,0.142,0.448,0,0,0,0,0.417,0.352 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.139 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0767,0.171,0,0,0,0,0.567,0.0378 +0.667,0.646,0.153,0.301,0,0,0,0,0.65,0.0378 +0.667,0.677,0.19,0.329,0,0,0,0,0.817,0.302 +0.667,0.709,0.232,0.398,0,0,0,0,0.4,0.151 +0.333,0.642,0.163,0.281,0,0,0,0,0,0.113 +0.333,0.637,0.224,0.335,0,0,0,0,0,0.0378 +0.333,0.627,0.274,0.346,0.335,0.317,0,0,0,0 +0.667,0.646,0.505,0.56,0.278,0.7,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0.208 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0855 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.317,0 +1,0.584,0.0474,0.247,0.671,0.817,0,0,0.4,0.19 +1,0.615,0.0634,0.308,0.109,0.2,0,0,0,0.198 +0.333,0.595,0.0462,0.185,0.305,0.317,0,0,0.233,0.216 +0.333,0.595,0.0527,0.187,0.81,0.7,0.558,0.483,0,0.113 +0.333,0.595,0.0578,0.183,0,0,0.293,0,0,0.289 +1,0.655,0.157,0.43,0,0,0.487,0,0,0.166 +0.667,0.595,0.0658,0.172,0,0,0.535,0,0,0.313 +0.667,0.595,0.073,0.171,0,0,0.513,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.606,0.0846,0.175,0,0,0,0,0,0.0378 +0.667,0.677,0.19,0.329,0,0,0,0,0.483,0.189 +0.667,0.709,0.232,0.398,0,0,0,0,0,0.17 +1,0.796,0.457,0.743,0,0,0,0,0,0.408 +1,0.78,0.64,0.904,0.679,0.817,0,0,0,0.271 +0.667,0.627,0.274,0.346,0.18,0.2,0,0,0,0 +0.667,0.606,0.26,0.305,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.595,0.0462,0.185,0.359,0.567,0,0,0,0.34 +1,0.625,0.0895,0.324,0.945,0.45,0,0,0,0.113 +1,0.625,0.0997,0.315,0.145,0,0,0,0,0.0378 +0.667,0.595,0.0629,0.177,0,0,0,0,0,0 +0.667,0.595,0.0658,0.172,0,0,0,0,0,0.0756 +0.667,0.595,0.073,0.171,0,0,0,0,0,0.0756 +0.667,0.625,0.137,0.293,0,0,0,0,0,0 +0.667,0.646,0.153,0.301,0,0,0,0,0,0.227 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.0378 +0.667,0.709,0.232,0.398,0,0,0,0,0,0 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.133 +0.333,0.637,0.224,0.335,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.606,0.26,0.305,0,0,0,0,0,0 +0.667,0.585,0.162,0.201,0,0,0,0,0,0.0378 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.595,0.125,0.171,0,0,0.497,0.733,0.15,0.0756 +1,0.625,0.265,0.293,0,0,0.467,0,0.567,0.0378 +0.667,0.646,0.291,0.301,0,0,0.38,0,0.483,0.34 +0.667,0.677,0.305,0.329,0,0,0.272,0,0,0.189 +1,0.78,0.464,0.572,0,0,0.374,0,0.483,0.302 +0.333,0.642,0.194,0.281,0,0,0,0,0,0 +0.333,0.637,0.252,0.335,0,0,0,0,0,0 +0.667,0.688,0.57,0.641,0,0,0,0,0,0.0378 +0.667,0.646,0.526,0.56,0,0,0,0,0,0.152 +0.667,0.585,0.176,0.201,0,0,0,0,0,0.0842 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0588 +1,0.564,0.044,0.0749,0,0,0,0,0,0.15 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.733 +1,0.615,0.0685,0.308,0,0,0,0,0,0.4 +0.667,0.625,0.109,0.321,0,0,0,0,0,0.284 +0.667,0.625,0.143,0.324,0,0,0,0,0,0.282 +0.667,0.625,0.169,0.315,0,0,0,0,0,0.063 +0.667,0.625,0.185,0.303,0,0,0,0,0,0 +0.667,0.595,0.108,0.172,0,0,0,0,0,0 +0.667,0.595,0.125,0.171,0,0,0,0,0,0.151 +0.667,0.595,0.141,0.171,0,0,0,0,0,0.0756 +0.667,0.606,0.154,0.175,0,0,0,0,0,0.264 +0.333,0.621,0.162,0.189,0,0,0,0,0,0.0756 +0.333,0.637,0.167,0.224,0,0,0,0,0,0 +0.667,0.719,0.371,0.512,0,0,0,0,0,0.151 +1,0.78,0.719,0.904,0,0,0,0,0,0.399 +1,0.749,0.845,0.937,0,0,0,0,0,0.31 +1,0.646,0.526,0.56,0,0,0,0,0,0.314 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0441 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0572 +0.667,0.59,0.0396,0.179,0,0,0,0,0,0.26 +1,0.625,0.0764,0.321,0,0,0,0,0,0.475 +1,0.625,0.0895,0.324,0,0,0,0,0,0.648 +0.667,0.595,0.0578,0.183,0,0,0,0,0,0.0756 +0.667,0.595,0.0629,0.177,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.227 +0.667,0.606,0.0846,0.175,0,0,0,0,0,0.0378 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.0378 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.0378 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.0378 +0.667,0.709,0.432,0.619,0,0,0.0301,0.317,0.0667,0 +0.667,0.688,0.532,0.641,0.145,0.0667,0,0.417,0.417,0 +0.667,0.646,0.505,0.56,0.709,0.95,0,0,0,0.126 +0.667,0.605,0.307,0.353,0,0,0,0,0,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0 +0.667,0.564,0.0374,0.0749,0,0,0,0,0,0.103 +0.667,0.564,0.0236,0.0583,0,0,0,0,0,0.196 +0.667,0.564,0.0171,0.05,0,0,0,0,0,0.0895 +0.667,0.564,0.0157,0.05,0,0,0,0,0,0.0812 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.148,0,0,0,0,0,0.301 +0.667,0.59,0.0396,0.179,0,0,0,0,0,0.195 +0.667,0.595,0.0462,0.185,0,0,0,0,0,0.41 +0.667,0.595,0.0527,0.187,0,0,0,0,0,0.435 +0.667,0.595,0.0578,0.183,0,0,0,0,0,0.397 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.222 +0.667,0.625,0.116,0.294,0,0,0,0,0.483,0.125 +1,0.655,0.187,0.413,0,0,0,0,0,0.216 +1,0.655,0.198,0.414,0,0,0,0,0,0.43 +0.667,0.646,0.153,0.301,0,0,0,0,0,0.368 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.35 +0.667,0.709,0.232,0.398,0,0,0,0,0,0 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.227 +0.667,0.709,0.432,0.619,0,0,0,0,0,0.0756 +0.667,0.688,0.532,0.641,0,0,0,0,0.233,0 +1,0.686,0.749,0.815,0,0,0,0,0,0.0546 +1,0.624,0.453,0.504,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0.283,0.567,0,0 +1,0.564,0.0374,0.0749,0,0,0.61,0.167,0,0 +1,0.564,0.0236,0.0583,0,0,0.517,0,0,0 +1,0.564,0.0171,0.05,0,0,0.215,0,0,0 +1,0.564,0.0157,0.05,0,0,0.342,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0.0301,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0396,0.179,0,0,0,0,0,0 +0.667,0.625,0.0764,0.321,0,0,0,0,0.0667,0.427 +0.667,0.625,0.0895,0.324,0,0,0,0,0.167,0.249 +0.667,0.625,0.0997,0.315,0,0,0,0,0,0.0378 +0.667,0.625,0.11,0.303,0.0883,0.0667,0,0,0,0.0378 +0.667,0.625,0.116,0.294,0.628,0.95,0,0,0,0.0378 +0.333,0.595,0.073,0.171,0.594,0,0,0,0.317,0.151 +0.667,0.625,0.137,0.293,0.0996,0,0,0,0.4,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.264 +0.667,0.709,0.232,0.398,0,0,0,0,0,0.0756 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.341 +0.667,0.709,0.432,0.619,0,0,0,0,0.317,0.0378 +0.667,0.688,0.532,0.641,0.325,0.317,0,0,1,0 +1,0.646,0.505,0.56,0.908,0.7,0,0,1,0.1 +1,0.605,0.307,0.353,0.558,0,0,0,0.117,0.113 +1,0.577,0.196,0.252,0.639,0,0,0,0,0.164 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.0575 +1,0.564,0.0236,0.0583,0,0,0,0,0,0.13 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0.175,0.0667,0,0,0,0.0756 +0.667,0.566,0.0159,0.05,0.562,0.95,0,0,0,0.0378 +1,0.615,0.0634,0.308,0,0,0,0,0,0.202 +0.667,0.625,0.0764,0.321,0,0,0,0,0,0.367 +0.333,0.595,0.0527,0.187,0,0,0,0,0,0.242 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.0378 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.151 +0.333,0.595,0.0658,0.172,0,0,0,0,0.233,0.113 +0.333,0.595,0.073,0.171,0,0,0,0,0,0.189 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0.113 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.113 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.113 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.0756 +0.333,0.642,0.163,0.281,0,0,0,0,0,0 +0.667,0.709,0.432,0.619,0.226,0.317,0,0,0,0 +0.667,0.688,0.532,0.641,0.607,0.7,0,0,0,0 +0.667,0.646,0.505,0.56,0,0,0,0,0,0.187 +0.667,0.585,0.162,0.201,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0823,0,0,0,0,0,0.189 +1,0.584,0.0474,0.247,0,0,0.471,0.567,0,0 +0.667,0.615,0.0634,0.308,0,0,0.563,0.917,0,0.0756 +0.667,0.625,0.0764,0.321,0,0,0.512,0,0,0 +0.667,0.625,0.0895,0.324,0,0,0.072,0,0,0.38 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.132 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.0378 +0.667,0.595,0.0658,0.172,0,0,0,0,0,0 +0.333,0.595,0.073,0.171,0,0,0,0,0,0.227 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0.151 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.0378 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.627,0.274,0.346,0,0,0,0,0.317,0.0378 +0.667,0.646,0.505,0.56,0,0,0,0,0.4,0 +1,0.605,0.307,0.353,0,0,0,0,0,0.151 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0208,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0201,0.0515,0,0,0,0,0,0.151 +1,0.564,0.0223,0.0823,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.59,0.0433,0.179,0,0,0,0,0,0.0756 +1,0.625,0.109,0.321,0,0,0,0,0,0.0378 +1,0.625,0.143,0.324,0,0,0,0,0,0.0378 +0.667,0.625,0.169,0.315,0,0,0,0,0,0.528 +0.667,0.625,0.185,0.303,0,0,0,0,0,0.298 +0.667,0.625,0.198,0.294,0,0,0,0,0,0.296 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.189 +1,0.625,0.265,0.293,0,0,0,0,0,0.0378 +0.333,0.606,0.154,0.175,0,0,0,0,0,0 +0.333,0.621,0.162,0.189,0,0,0,0,0,0.0378 +0.333,0.637,0.167,0.224,0,0,0,0,0,0.189 +0.667,0.719,0.371,0.512,0,0,0,0,0,0.151 +0.667,0.709,0.485,0.619,0,0,0,0,0,0.108 +1,0.749,0.845,0.937,0,0,0,0,0,0.0852 +1,0.686,0.78,0.815,0,0,0,0,0,0.559 +1,0.605,0.334,0.353,0,0,0,0,0,0.0907 +1,0.569,0.0869,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.109,0.321,0,0,0,0,0,0.205 +0.667,0.625,0.143,0.324,0,0,0.136,0.483,0,0.497 +0.667,0.625,0.169,0.315,0,0,0.0759,0.15,0,0.099 +1,0.655,0.268,0.43,0,0,0.547,0.833,0,0.227 +1,0.655,0.288,0.417,0,0,0.317,0,0,0 +0.667,0.625,0.233,0.292,0,0,0.385,0,0,0.189 +1,0.655,0.388,0.414,0,0,0.306,0,0,0.423 +1,0.686,0.427,0.426,0,0,0.538,0,0,0.0378 +0.667,0.677,0.305,0.329,0,0,0.479,0,0,0.264 +0.667,0.709,0.315,0.398,0,0,0.449,0,0,0 +0.667,0.719,0.371,0.512,0,0,0.435,0,0,0.0756 +0.667,0.709,0.485,0.619,0,0,0,0,0,0.113 +1,0.688,0.57,0.641,0,0,0,0,0,0 +1,0.646,0.526,0.56,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0588 +1,0.59,0.0396,0.179,0,0,0,0,0,0.0525 +1,0.655,0.107,0.456,0,0,0.249,0.567,0,0.124 +0.667,0.625,0.0895,0.324,0,0,0.694,0.667,0,0.187 +0.667,0.625,0.0997,0.315,0,0,0.326,0,0,0.0756 +0.667,0.625,0.11,0.303,0,0,0.45,0,0,0.21 +0.667,0.625,0.116,0.294,0,0,0.323,0,0,0.204 +0.667,0.625,0.13,0.292,0,0,0.754,0,0,0.265 +0.333,0.595,0.0767,0.171,0,0,0.631,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.151 +0.333,0.642,0.163,0.281,0,0,0,0,0,0.0378 +0.333,0.637,0.224,0.335,0,0,0,0,0,0.213 +0.667,0.688,0.532,0.641,0,0,0,0,0.483,0.256 +0.667,0.606,0.26,0.305,0,0,0,0,0,0.3 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.569,0.0759,0.117,0,0,0,0,0,0.214 +1,0.564,0.0374,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0515,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.148,0,0,0,0,0,0.156 +1,0.59,0.0396,0.179,0,0,0,0,0,0.319 +0.667,0.595,0.0462,0.185,0,0,0,0,0,0.103 +0.667,0.625,0.0895,0.324,0,0,0,0,0,0.412 +0.667,0.625,0.0997,0.315,0,0,0,0,0,0.264 +0.667,0.625,0.11,0.303,0,0,0,0,0,0.0756 +0.667,0.625,0.116,0.294,0,0,0,0,0,0.163 +0.667,0.625,0.13,0.292,0,0,0,0,0,0.0855 +0.667,0.625,0.137,0.293,0,0,0,0,0,0.128 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.113 +0.667,0.677,0.19,0.329,0,0,0,0,0.233,0.227 +0.667,0.709,0.232,0.398,0,0,0,0,0,0.264 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.0378 +0.667,0.709,0.432,0.619,0,0,0,0,0,0.151 +1,0.749,0.791,0.937,0,0,0,0,0.483,0 +1,0.686,0.749,0.815,0,0,0,0,0,0 +0.667,0.585,0.162,0.201,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0562 +0.667,0.625,0.0764,0.321,0,0,0,0,0,0.358 +0.667,0.625,0.0895,0.324,0,0,0,0,0,0.343 +0.667,0.625,0.0997,0.315,0,0,0,0,0,0.349 +0.667,0.625,0.11,0.303,0,0,0,0,0,0 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0.0756 +0.333,0.595,0.073,0.171,0,0,0,0,0,0.378 +0,0.566,0.0159,0.05,0,0,0,0,0,0.189 +0.667,0.606,0.0846,0.175,0,0,0,0,0,0.0756 +0.667,0.621,0.103,0.189,0,0,0,0,0,0.302 +0.667,0.709,0.232,0.398,0,0,0,0,0.233,0 +0.667,0.719,0.31,0.512,0,0,0,0,0.0667,0 +1,0.78,0.64,0.904,0,0,0,0,0.417,0.227 +1,0.749,0.791,0.937,0,0,0,0,0,0.0378 +1,0.686,0.749,0.815,0,0,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0.0604 +1,0.573,0.136,0.184,0,0,0,0,0,0.0151 +1,0.563,0.059,0.0999,0,0,0,0,0,0 +1,0.564,0.0236,0.0583,0,0,0,0,0,0 +1,0.564,0.0171,0.05,0,0,0,0,0,0 +1,0.564,0.0157,0.05,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0568 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0851 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.595,0.0578,0.183,0,0,0,0,0.0667,0.0692 +0.667,0.625,0.11,0.303,0,0,0,0,0.167,0.202 +0.667,0.595,0.0658,0.172,0,0,0,0,0.317,0.0882 +0.667,0.595,0.073,0.171,0,0,0,0,0.167,0.0756 +0.667,0.595,0.0767,0.171,0,0,0,0,0,0.189 +0.667,0.606,0.0846,0.175,0,0,0,0,0,0.283 +0.667,0.677,0.19,0.329,0,0,0,0,0.0667,0.281 +0.667,0.709,0.232,0.398,0,0,0,0,0.9,0.208 +0.667,0.719,0.31,0.512,0,0,0,0,0,0 +0.667,0.709,0.432,0.619,0,0,0,0,0,0 +1,0.688,0.532,0.641,0,0,0,0,0,0.0756 +1,0.646,0.505,0.56,0,0,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.584,0.0474,0.247,0,0,0,0,0,0.0929 +0.333,0.59,0.0396,0.179,0.323,0.317,0,0,0,0.43 +0.667,0.625,0.0764,0.321,0.504,0.7,0,0,0,0.35 +0.333,0.595,0.0527,0.187,0,0,0,0,0,0.151 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.0378 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0.416 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.264 +0.333,0.621,0.103,0.189,0,0,0,0,0.317,0.0756 +0.333,0.637,0.124,0.224,0,0,0,0,0.717,0.0756 +0.333,0.642,0.163,0.281,0,0,0,0,0.417,0.0756 +0.667,0.709,0.432,0.619,0,0,0,0,0,0 +0.667,0.688,0.532,0.641,0,0,0,0,0,0 +0.667,0.646,0.505,0.56,0,0,0,0,0,0 +0.667,0.585,0.162,0.201,0,0,0,0,0.567,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0.15,0 +0.667,0.564,0.044,0.0749,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.575,0.0295,0.148,0,0,0,0,0,0.404 +1,0.615,0.0685,0.308,0,0,0,0,0,0.571 +0.667,0.595,0.0636,0.185,0,0,0,0,0,0.295 +0.667,0.595,0.0803,0.187,0,0,0,0,0,0.0756 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.595,0.108,0.172,0,0,0,0,0.233,0.0756 +0.667,0.625,0.233,0.292,0,0,0,0,0,0.0378 +0.333,0.595,0.141,0.171,0,0,0,0,0,0.0378 +0.667,0.646,0.291,0.301,0,0,0,0,0,0.113 +0.667,0.677,0.305,0.329,0,0,0,0,0,0.113 +1,0.78,0.464,0.572,0,0,0,0,0,0.264 +1,0.796,0.547,0.743,0,0,0,0,0,0.113 +0.667,0.709,0.485,0.619,0.69,0.9,0.259,0.65,0,0.0756 +0.667,0.688,0.57,0.641,0.658,0.117,0,0.833,0,0.219 +0.667,0.646,0.526,0.56,0.65,0,0,0,0,0 +0.667,0.605,0.334,0.353,0.767,0,0,0,0,0.244 +0.667,0.569,0.0869,0.117,0,0,0,0,0,0.0539 +1,0.564,0.044,0.0749,0,0,0,0,0,0 +1,0.564,0.0281,0.0583,0,0,0,0,0,0 +1,0.564,0.0208,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.59,0.0433,0.179,0,0,0,0,0,0.0378 +1,0.595,0.0636,0.185,0,0,0.188,0.15,0,0.264 +1,0.595,0.0803,0.187,0,0,0.703,0.333,0,0 +1,0.595,0.0934,0.183,0,0,0.493,0,0,0.251 +1,0.625,0.185,0.303,0,0,0.593,0,0,0.184 +1,0.655,0.288,0.417,0,0,0.562,0,0,0.538 +1,0.655,0.34,0.413,0,0,0.423,0,0.4,0.307 +1,0.655,0.388,0.414,0,0,0.441,0,0.0833,0.113 +1,0.686,0.427,0.426,0,0,0.332,0,0,0.264 +1,0.733,0.449,0.468,0,0,0.363,0,0,0.0378 +1,0.78,0.464,0.572,0,0,0.562,0,0,0.0378 +1,0.796,0.547,0.743,0,0,0.0157,0,0,0.0378 +1,0.78,0.719,0.904,0,0,0,0,0,0.0378 +1,0.688,0.57,0.641,0,0,0,0,0,0 +1,0.646,0.526,0.56,0,0,0,0,0,0.176 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0135 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0171,0.05,0,0,0,0,0,0.668 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0396,0.179,0,0,0,0,0.567,0.0559 +1,0.595,0.0462,0.185,0,0,0,0,0.4,0.379 +0.667,0.595,0.0527,0.187,0,0,0,0,0,0.0756 +0.667,0.625,0.0997,0.315,0,0,0,0,0,0.0756 +0.667,0.625,0.11,0.303,0,0,0,0,0,0.0756 +0.333,0.595,0.0658,0.172,0,0,0,0,0.567,0 +0.333,0.595,0.073,0.171,0,0,0,0,0.15,0.0756 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.621,0.103,0.189,0,0,0,0,0.567,0 +0.667,0.709,0.232,0.398,0,0,0,0,0.4,0.0378 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.0756 +0.333,0.637,0.224,0.335,0,0,0,0,0,0.0756 +0.667,0.688,0.532,0.641,0,0,0,0,0.817,0.113 +0.667,0.646,0.505,0.56,0.412,0.567,0,0,0.15,0.167 +1,0.624,0.453,0.504,0.132,0.45,0,0,0,0.267 +1,0.577,0.196,0.252,0,0,0,0,0,0 +1,0.563,0.059,0.0999,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0515,0,0,0,0,0,0.189 +1,0.564,0.0236,0.0823,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.655,0.107,0.456,0,0,0,0,0,0.21 +1,0.655,0.126,0.461,0,0,0,0,0,0.756 +0.667,0.625,0.0997,0.315,0,0,0,0,0,0.284 +0.667,0.625,0.11,0.303,0,0,0,0,0,0.121 +0.667,0.625,0.116,0.294,0,0,0,0,0,0.308 +0.333,0.595,0.073,0.171,0,0,0,0,0,0.16 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0.151 +0.667,0.646,0.153,0.301,0,0,0,0,0,0.0378 +0.667,0.677,0.19,0.329,0,0,0,0,0.567,0 +0.667,0.709,0.232,0.398,0,0,0,0,0.15,0.354 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.332 +0.333,0.637,0.224,0.335,0,0,0,0,0,0.0378 +0.667,0.688,0.532,0.641,0,0,0,0,0,0 +0.667,0.646,0.505,0.56,0,0,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.148,0,0,0,0,0.233,0.111 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.625,0.0764,0.321,0,0,0,0,0,0.272 +0.667,0.625,0.0895,0.324,0,0,0,0,0,0.431 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.34 +0.667,0.595,0.0629,0.177,0,0,0,0,0,0.0378 +0.667,0.625,0.116,0.294,0.637,0.817,0,0,0,0.175 +0.667,0.625,0.13,0.292,0.16,0.2,0,0,0,0.568 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0.227 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.0756 +0.667,0.677,0.19,0.329,0,0,0,0,0.567,0.0378 +0.667,0.709,0.232,0.398,0,0,0,0,0.217,0.113 +0.333,0.642,0.163,0.281,0,0,0,0,0.167,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.627,0.274,0.346,0.601,0.817,0,0,0,0 +1,0.646,0.505,0.56,0.43,0.2,0,0,0,0 +1,0.605,0.307,0.353,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.291 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0515,0,0,0,0,0,0.22 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0955 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0597 +0.667,0.59,0.0396,0.179,0,0,0,0,0,0.462 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.135 +0.667,0.595,0.0527,0.187,0,0,0,0,0,0.252 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.0976 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.209 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0.118 +0.333,0.595,0.073,0.171,0,0,0,0,0.0667,0.0756 +0.333,0.595,0.0767,0.171,0,0,0,0,0.9,0.113 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.113 +0.333,0.621,0.103,0.189,0,0,0,0,0,0.151 +0.333,0.637,0.124,0.224,0,0,0,0,0,0.206 +0.333,0.642,0.163,0.281,0,0,0,0,0,0.0756 +0.333,0.637,0.224,0.335,0,0,0,0,0,0.0378 +0.667,0.688,0.532,0.641,0,0,0,0,0,0.145 +0.667,0.646,0.505,0.56,0,0,0.237,0.317,0,0 +0.667,0.605,0.307,0.353,0,0,0.671,0.417,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0.156 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.168 +1,0.564,0.0236,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0515,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.148,0,0,0,0,0,0.652 +0.667,0.615,0.0634,0.308,0,0,0,0,0,0.24 +0.333,0.595,0.0462,0.185,0,0,0,0,0,0.0982 +0.333,0.595,0.0527,0.187,0,0,0,0,0,0.335 +0.333,0.595,0.0578,0.183,0,0,0,0,0,0.364 +0.333,0.595,0.0629,0.177,0,0,0,0,0,0.215 +0.333,0.595,0.0658,0.172,0,0,0,0,0,0.0378 +0.333,0.595,0.073,0.171,0,0,0,0,0,0.0378 +0.333,0.595,0.0767,0.171,0,0,0,0,0,0 +0.333,0.606,0.0846,0.175,0,0,0,0,0,0.151 +0.667,0.621,0.103,0.189,0,0,0,0,0,0.0378 +0.667,0.637,0.124,0.224,0,0,0,0,0.483,0.0983 +0.667,0.719,0.31,0.512,0,0,0,0,0,0.162 +0.333,0.637,0.224,0.335,0,0,0,0,0,0 +0.333,0.627,0.274,0.346,0,0,0,0,0,0.0593 +0.667,0.646,0.505,0.56,0,0,0,0,0,0.178 +0.667,0.585,0.162,0.201,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.575,0.0295,0.148,0,0,0,0,0,0.19 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.595,0.0636,0.185,0,0,0,0,0,0.257 +0.667,0.595,0.0803,0.187,0,0,0,0,0,0.465 +1,0.655,0.244,0.448,0,0,0,0,0,0.159 +1,0.655,0.268,0.43,0,0,0,0,0,0.179 +1,0.655,0.288,0.417,0,0,0,0,0,0 +0.333,0.595,0.125,0.171,0,0,0,0,0,0.151 +0.333,0.595,0.141,0.171,0,0,0,0,0,0.189 +0.333,0.606,0.154,0.175,0,0,0,0,0.233,0.302 +0.667,0.677,0.305,0.329,0,0,0,0,0,0.0756 +0.667,0.709,0.315,0.398,0,0,0,0,0,0 +0.667,0.719,0.371,0.512,0,0,0,0,0,0.098 +0.667,0.709,0.485,0.619,0,0,0,0,0,0.196 +0.667,0.688,0.57,0.641,0,0,0,0,0,0.262 +0.667,0.646,0.526,0.56,0,0,0,0,0,0 +0.667,0.585,0.176,0.201,0,0,0,0,0,0 +1,0.569,0.0869,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.101 +1,0.624,0.11,0.304,0,0,0,0,0,0.438 +1,0.624,0.144,0.302,0.85,0.867,0,0,0,0.106 +0.667,0.624,0.17,0.293,0.675,0.117,0,0,0,0.308 +0.333,0.595,0.102,0.166,0.205,0,0,0,0,0 +0.333,0.595,0.109,0.162,0,0,0,0,0,0.189 +0.667,0.624,0.234,0.271,0,0,0,0,0,0.113 +0.667,0.624,0.267,0.271,0,0,0,0,0,0.151 +0.667,0.605,0.156,0.161,0,0,0,0,0,0.278 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.194 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +0.333,0.641,0.196,0.196,0,0,0,0,0,0 +0.333,0.636,0.254,0.241,0,0,0,0,0,0.0756 +0.667,0.626,0.296,0.297,0,0,0,0,0,0.113 +0.667,0.605,0.274,0.329,0,0,0,0,0,0 +0.667,0.584,0.178,0.234,0.59,0.617,0,0,0,0.101 +1,0.569,0.0875,0.117,0.316,0.367,0,0,0,0.221 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.37 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.613,0.0639,0.297,0,0,0,0,0,0.371 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.251 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0.151 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.151 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.151 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.0756 +0.667,0.644,0.155,0.272,0,0,0,0,0,0.0378 +0.667,0.675,0.191,0.276,0,0,0,0,0,0.151 +0.333,0.636,0.125,0.172,0,0,0,0,0.0667,0.227 +0.333,0.641,0.164,0.196,0,0,0,0,0.167,0 +0.667,0.706,0.436,0.433,0,0,0,0,0,0.0378 +0.667,0.686,0.537,0.543,0,0,0,0,0.0667,0 +0.667,0.644,0.509,0.609,0,0,0,0,0.167,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.613,0.0639,0.297,0,0,0,0,0,0.138 +1,0.653,0.108,0.431,0,0,0,0,0,0.365 +0.667,0.624,0.0902,0.302,0,0,0,0,0,0.194 +0.333,0.595,0.0582,0.172,0,0,0,0,0,0.178 +0.333,0.595,0.0633,0.166,0,0,0.0183,0.0667,0,0.312 +0.333,0.595,0.0662,0.162,0,0,0.461,0.7,0,0.302 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.113 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.227 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.113 +0.333,0.621,0.104,0.163,0,0,0,0,0.0667,0 +0.667,0.706,0.234,0.294,0,0,0,0,0.4,0.084 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.189 +0.333,0.636,0.226,0.241,0,0,0,0,0,0 +0.667,0.686,0.537,0.543,0,0,0,0,0,0 +0.667,0.644,0.509,0.609,0,0,0,0,0,0 +0.667,0.603,0.31,0.419,0,0,0,0,0,0.138 +0.667,0.572,0.137,0.184,0,0,0,0,0,0.0901 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0511,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0577 +0.667,0.574,0.0318,0.144,0,0,0,0,0.567,0.11 +0.667,0.589,0.0399,0.174,0,0,0,0,0.367,0.113 +0.667,0.624,0.077,0.304,0,0,0,0,0,0.0937 +0.667,0.624,0.0902,0.302,0,0,0.182,0.317,0,0.248 +0.667,0.624,0.1,0.293,0,0,0.271,0.45,0,0.151 +0.667,0.624,0.111,0.282,0,0,0.393,0,0,0.0756 +0.667,0.624,0.117,0.274,0,0,0,0,0,0.0756 +0.667,0.624,0.131,0.271,0,0,0,0,0,0 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.113 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.151 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.113 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.135 +0.667,0.717,0.313,0.342,0,0,0,0,0,0.281 +0.333,0.636,0.226,0.241,0,0,0.0942,0.0667,0,0 +0.333,0.626,0.276,0.297,0,0,0,1,0,0 +0.667,0.644,0.509,0.609,0,0,0,0.483,0,0 +0.667,0.584,0.163,0.234,0,0,0.493,0.567,0,0 +1,0.572,0.137,0.184,0,0,0.0157,0.2,0,0.0578 +1,0.561,0.0595,0.0999,0,0,0,0,0,0.0144 +1,0.564,0.0238,0.0583,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.589,0.0399,0.174,0,0,0,0,0.0667,0 +1,0.624,0.077,0.304,0,0,0,0,0.167,0.173 +1,0.624,0.0902,0.302,0,0,0,0,0,0.179 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.302 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.378 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.0378 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.0756 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.113 +0.333,0.636,0.226,0.241,0,0,0,0,0,0.34 +0.333,0.626,0.276,0.297,0,0,0,0,0,0 +0.667,0.644,0.509,0.609,0,0,0,0,0,0 +0.667,0.603,0.31,0.419,0,0,0,0,0,0 +0.667,0.572,0.137,0.184,0,0,0,0,0,0 +0.667,0.564,0.0377,0.0749,0,0,0,0,0,0 +0.667,0.564,0.0238,0.0583,0,0,0,0,0,0.0756 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.589,0.0399,0.174,0,0,0,0,0,0.109 +1,0.595,0.0465,0.177,0,0,0,0,0,0.341 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.0378 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.621,0.104,0.163,0,0,0,0,0.467,0.378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.226,0.241,0,0,0,0,0.233,0.378 +0.333,0.626,0.276,0.297,0,0,0,0,0,0.0378 +0.333,0.605,0.262,0.329,0,0,0,0,0,0 +0.667,0.584,0.163,0.234,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0179,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.574,0.0297,0.144,0,0,0,0,0,0 +0.667,0.589,0.0436,0.174,0,0,0,0,0,0.0378 +0.667,0.595,0.0641,0.177,0,0,0,0,0,0.0378 +0.667,0.624,0.144,0.302,0,0,0,0,0,0.181 +0.333,0.595,0.0941,0.172,0,0,0,0,0,0.279 +0.333,0.595,0.102,0.166,0,0,0,0,0,0.0378 +0.333,0.595,0.109,0.162,0,0,0,0,0,0.113 +0.333,0.595,0.126,0.161,0,0,0,0,0,0.227 +0.333,0.595,0.142,0.16,0,0,0,0,0,0.0756 +0.333,0.605,0.156,0.161,0,0,0,0,0,0 +0.333,0.621,0.163,0.163,0,0,0,0,0,0 +0.667,0.706,0.318,0.294,0,0,0,0,0,0.247 +0.667,0.717,0.374,0.342,0,0,0,0,0.117,0.324 +0.667,0.706,0.489,0.433,0,0,0,0,0.117,0.0378 +1,0.746,0.852,0.79,0.436,0.617,0,0,0,0.0378 +1,0.644,0.53,0.609,0.256,0.367,0,0,0,0 +1,0.584,0.178,0.234,0,0,0,0,0,0.231 +1,0.569,0.0875,0.117,0,0,0,0,0,0.136 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0.117,0 +0.667,0.589,0.0436,0.174,0,0,0,0,0.117,0.176 +0.667,0.595,0.0641,0.177,0,0,0,0,0,0.214 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.595,0.0941,0.172,0,0,0,0,0,0.0942 +0.333,0.595,0.102,0.166,0,0,0,0,0.117,0.283 +0.333,0.595,0.109,0.162,0,0,0,0,0.35,0.32 +0.667,0.624,0.234,0.271,0,0,0,0,0.233,0.227 +0.667,0.624,0.267,0.271,0,0,0,0,0,0.302 +0.333,0.605,0.156,0.161,0,0,0,0,0.117,0 +0.333,0.621,0.163,0.163,0,0,0,0,0.583,0.302 +0,0.566,0.0181,0.05,0,0,0,0,0,0.113 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.636,0.254,0.241,0,0,0,0,0,0.0756 +0.333,0.626,0.296,0.297,0,0,0,0,0,0 +0.333,0.605,0.274,0.329,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0238,0.0806,0,0,0,0,0,0.113 +1,0.574,0.0318,0.144,0,0,0,0,0,0.305 +1,0.613,0.0639,0.297,0,0,0,0,0,0.344 +1,0.624,0.077,0.304,0,0,0,0,0,0.295 +0.667,0.624,0.0902,0.302,0,0,0,0,0.7,0.452 +0.333,0.595,0.0582,0.172,0,0,0,0,0,0.137 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0.213 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.167 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.605,0.0853,0.161,0,0,0,0,0.467,0.136 +0.667,0.675,0.191,0.276,0,0,0,0,0,0.128 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.227 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.227 +0.667,0.706,0.436,0.433,0.267,0.317,0,0,0,0 +0.667,0.686,0.537,0.543,0.583,0.733,0,0,0,0.189 +0.667,0.605,0.262,0.329,0.793,0.917,0,0,0,0.0378 +1,0.603,0.31,0.419,0.622,0,0,0,0,0.207 +1,0.566,0.0159,0.05,0.41,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0989 +1,0.595,0.0465,0.177,0,0,0,0,0.0667,0.369 +1,0.653,0.127,0.428,0,0,0,0,0.167,0.422 +1,0.653,0.143,0.415,0,0,0,0,0,0.201 +0.667,0.624,0.111,0.282,0,0,0,0,0,0.344 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.302 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.621,0.104,0.163,0.103,0.0667,0,0,0,0.227 +0.333,0.636,0.125,0.172,0.391,1,0,0,0,0.0378 +0.333,0.641,0.164,0.196,0,0.167,0,0,0,0 +0.667,0.706,0.436,0.433,0,0,0,0,0,0.416 +0.667,0.686,0.537,0.543,0,0,0,0,0,0.151 +1,0.684,0.756,0.888,0,0,0,0,0,0 +1,0.603,0.31,0.419,0,0,0,0,0,0.139 +1,0.569,0.0765,0.117,0,0,0,0,0,0 +1,0.564,0.0377,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.574,0.0318,0.144,0,0,0,0,0,0.0378 +1,0.637,0.0879,0.421,0,0,0,0,0,0.303 +0.667,0.624,0.077,0.304,0,0,0,0,0,0.142 +0,0.566,0.0159,0.05,0,0,0,0,0,0.247 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0.113 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.0756 +0.333,0.595,0.0735,0.161,0,0,0,0,0.567,0.0378 +0.333,0.595,0.0772,0.16,0.658,0.817,0,0,0.45,0.0756 +0.667,0.644,0.155,0.272,0.5,0.167,0,0,0.15,0.0378 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.34 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +0.667,0.706,0.436,0.433,0,0,0,0,0.4,0 +0.667,0.686,0.537,0.543,0,0,0,0,0,0.0756 +0.667,0.644,0.509,0.609,0,0,0,0,0,0 +1,0.603,0.31,0.419,0,0,0,0,0,0 +1,0.572,0.137,0.184,0,0,0,0,0,0 +1,0.561,0.0595,0.0999,0,0,0,0,0,0 +1,0.564,0.0238,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.206 +1,0.574,0.0318,0.144,0,0,0,0,0,0.173 +1,0.613,0.0639,0.297,0,0,0,0,0,0.249 +0.667,0.624,0.077,0.304,0,0,0,0,0,0.165 +0.667,0.624,0.0902,0.302,0,0,0,0,0,0.594 +0.667,0.624,0.1,0.293,0,0,0,0,0,0.374 +0.667,0.624,0.111,0.282,0,0,0,0,0,0.174 +0.667,0.624,0.117,0.274,0,0,0,0,0.0667,0.157 +0.333,0.595,0.0735,0.161,0,0,0,0,0.4,0.412 +1,0.624,0.139,0.271,0,0,0,0,0,0.39 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.227 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.113 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.113 +0.333,0.641,0.164,0.196,0,0,0,0,0.567,0.34 +0.667,0.706,0.436,0.433,0.173,0.0667,0,0,0.133,0 +0.333,0.626,0.276,0.297,0.385,0.917,0,0,0,0.0378 +1,0.684,0.756,0.888,0,0,0,0,0,0 +1,0.584,0.163,0.234,0,0,0,0,0,0.0715 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0485 +1,0.595,0.0465,0.177,0,0,0,0,0,0.358 +1,0.595,0.053,0.176,0,0,0,0,0,0.218 +0.667,0.595,0.0582,0.172,0,0,0,0,0,0.16 +0.667,0.595,0.0633,0.166,0,0,0.0681,0.0667,0,0.0378 +0.667,0.595,0.0662,0.162,0,0,0.576,0.7,0,0.0378 +0.667,0.595,0.0735,0.161,0,0,0.479,0,0,0.0378 +0.667,0.624,0.139,0.271,0,0,0.3,0,0,0.145 +0.667,0.644,0.155,0.272,0,0,0,0,0,0.195 +0.667,0.675,0.191,0.276,0,0,0,0,0,0.32 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.151 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.22 +0.333,0.636,0.226,0.241,0,0,0,0,0,0.0756 +0.667,0.686,0.537,0.543,0,0,0,0,0,0 +0.667,0.644,0.509,0.609,0,0,0,0,0,0 +0.667,0.584,0.163,0.234,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0179,0.05,0,0,0,0,0,0 +1,0.564,0.0201,0.0511,0,0,0,0,0,0.0378 +1,0.564,0.0223,0.0806,0,0,0,0,0,0.0756 +1,0.582,0.0412,0.239,0,0,0,0,0,0.19 +0.667,0.613,0.069,0.297,0,0,0,0,0,0.189 +0.667,0.624,0.11,0.304,0,0,0,0,0,0.586 +0.333,0.595,0.0809,0.176,0,0,0,0,0,0.256 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +0.333,0.595,0.102,0.166,0,0,0,0,0,0.0697 +0.333,0.595,0.109,0.162,0,0,0,0,0,0.0378 +0.333,0.595,0.126,0.161,0,0,0,0,0,0.113 +0.333,0.595,0.142,0.16,0,0,0,0,0,0.0378 +1,0.644,0.293,0.272,0,0,0,0,0,0.0756 +1,0.675,0.308,0.276,0,0,0,0,0,0 +1,0.706,0.318,0.294,0,0,0,0,0,0.0378 +0.333,0.641,0.196,0.196,0,0,0,0,0.233,0.0378 +0.667,0.706,0.489,0.433,0,0,0,0,0,0.371 +1,0.746,0.852,0.79,0,0,0,0,0,0.0391 +1,0.684,0.786,0.888,0,0,0,0,0.233,0 +1,0.603,0.337,0.419,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0733 +1,0.624,0.11,0.304,0,0,0,0,0.467,0.326 +0.667,0.624,0.144,0.302,0,0,0.242,0.617,0,0.587 +0.667,0.624,0.17,0.293,0,0,0.509,0.15,0,0.157 +0.667,0.624,0.186,0.282,0,0,0.649,0,0,0.0756 +0.667,0.624,0.199,0.274,0,0,0.306,0,0,0.211 +0.667,0.624,0.234,0.271,0,0,0.48,0,0,0.457 +0.667,0.624,0.267,0.271,0,0,0.512,0,0,0.136 +1,0.684,0.431,0.383,0,0,0,0,0.233,0.491 +0.667,0.675,0.308,0.276,0,0,0,0,0,0.189 +0.667,0.706,0.318,0.294,0,0,0,0,0,0.0378 +0.667,0.717,0.374,0.342,0,0,0,0,0,0.0756 +0.667,0.706,0.489,0.433,0,0,0,0,0,0 +0.667,0.686,0.574,0.543,0,0,0,0,0,0.113 +0.667,0.644,0.53,0.609,0,0,0,0,0,0.0378 +1,0.603,0.337,0.419,0,0,0,0,0,0.0835 +1,0.569,0.0875,0.117,0,0,0,0,0,0 +1,0.564,0.0377,0.0749,0,0,0,0,0,0 +1,0.564,0.0238,0.0583,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0521 +1,0.564,0.0238,0.0806,0,0,0,0,0,0.339 +1,0.574,0.0318,0.144,0,0,0,0,0,0.182 +1,0.613,0.0639,0.297,0,0,0,0,0,0.212 +0.667,0.624,0.077,0.304,0,0,0,0,0,0.289 +0.333,0.595,0.053,0.176,0,0,0,0,0.467,0.308 +0.333,0.595,0.0582,0.172,0,0,0,0,0,0.264 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.189 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.113 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.0756 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.0756 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.0756 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.0378 +0.333,0.641,0.164,0.196,0,0,0,0,0.467,0.0378 +0.333,0.636,0.226,0.241,0,0,0,0,0,0 +0.667,0.686,0.537,0.543,0,0,0,0,0,0.0398 +0.667,0.644,0.509,0.609,0,0,0,0,0,0 +0.667,0.603,0.31,0.419,0,0,0,0,0,0 +0.667,0.569,0.0765,0.117,0,0,0,0,0,0 +1,0.561,0.0595,0.0999,0,0,0,0,0,0.328 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0546 +1,0.574,0.0318,0.144,0,0,0,0,0,0.156 +1,0.637,0.0879,0.421,0,0,0,0,0,0.196 +1,0.653,0.108,0.431,0,0,0,0,0,0.154 +1,0.653,0.127,0.428,0,0,0,0,0,0.303 +0.667,0.624,0.1,0.293,0,0,0,0,0,0.194 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0.302 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0772,0.16,0,0,0,0,0.567,0 +0.333,0.605,0.0853,0.161,0,0,0,0,0.367,0.151 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.227 +0.333,0.636,0.125,0.172,0,0,0,0,0,0 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.0756 +0.333,0.636,0.226,0.241,0,0,0,0,0,0.209 +0.667,0.686,0.537,0.543,0,0,0,0,0,0.236 +0.667,0.644,0.509,0.609,0,0,0,0,0,0.168 +1,0.622,0.457,0.603,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0511,0,0,0,0,0,0.113 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.574,0.0318,0.144,0,0,0,0,0.317,0.0378 +0.667,0.589,0.0399,0.174,0,0,0,0,0.383,0.0756 +0.667,0.595,0.0465,0.177,0,0,0,0,0,0.209 +0.667,0.595,0.053,0.176,0,0,0,0,0,0.177 +0.667,0.624,0.1,0.293,0,0,0,0,0,0.307 +0.667,0.624,0.111,0.282,0,0,0,0,0,0.211 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.302 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.0756 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.0378 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.113 +0.333,0.636,0.125,0.172,0,0,0,0,0.467,0 +0.333,0.641,0.164,0.196,0,0,0,0,0,0 +0.333,0.636,0.226,0.241,0,0,0,0,0,0 +0.667,0.686,0.537,0.543,0,0,0,0,0,0.286 +1,0.644,0.509,0.609,0.289,0.317,0,0,0,0.14 +1,0.584,0.163,0.234,0.63,0.667,0,0,0,0.0406 +1,0.569,0.0765,0.117,0,0,0,0,0,0 +1,0.564,0.0377,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.589,0.0399,0.174,0,0,0,0,0,0.0756 +1,0.624,0.077,0.304,0,0,0,0,0.0667,0.0378 +0.667,0.595,0.053,0.176,0,0,0,0,0.167,0.17 +0.667,0.595,0.0582,0.172,0,0,0,0,0,0.327 +0.667,0.595,0.0633,0.166,0,0,0,0,0,0.168 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.145 +0.667,0.624,0.131,0.271,0,0,0,0,0,0.0756 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.0378 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.113 +0.333,0.621,0.104,0.163,0.43,0.567,0,0,0,0.0756 +0.667,0.706,0.234,0.294,0.825,0.417,0,0,0.567,0.0378 +0.667,0.717,0.313,0.342,0,0,0,0,0.6,0 +0.333,0.636,0.226,0.241,0,0,0,0,0,0 +0.333,0.626,0.276,0.297,0,0,0,0,0,0 +0.333,0.605,0.262,0.329,0,0,0,0,0,0.17 +1,0.603,0.31,0.419,0,0,0,0,0,0.183 +1,0.569,0.0765,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0511,0,0,0,0,0,0 +1,0.564,0.0238,0.0806,0,0,0,0,0,0.136 +1,0.582,0.0478,0.239,0,0,0,0,0,0.397 +1,0.637,0.0879,0.421,0,0,0,0,0.567,0.265 +1,0.624,0.077,0.304,0,0,0,0,0.133,0.222 +0.667,0.624,0.0902,0.302,0,0,0,0,0,0.0738 +0.667,0.624,0.1,0.293,0,0,0,0,0,0.113 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.113 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0 +0.667,0.675,0.191,0.276,0,0,0,0,0,0.113 +0.667,0.706,0.234,0.294,0,0,0,0,0,0.0898 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.154 +0.333,0.636,0.226,0.241,0,0,0,0,0,0 +0.667,0.686,0.537,0.543,0,0,0,0,0,0 +0.667,0.644,0.509,0.609,0,0,0,0,0,0.0378 +0.667,0.603,0.31,0.419,0,0,0,0,0,0.332 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0282,0.0583,0,0,0,0,0,0.0378 +1,0.564,0.0209,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0881 +1,0.589,0.0436,0.174,0,0,0,0,0,0.289 +1,0.595,0.0641,0.177,0,0,0,0,0,0.426 +1,0.624,0.144,0.302,0,0,0,0,0,0.326 +0.667,0.624,0.17,0.293,0,0,0,0,0,0.726 +0.333,0.595,0.102,0.166,0,0,0.0641,0.867,0,0.0378 +0.333,0.595,0.109,0.162,0,0,0,0.167,0,0.0378 +0.333,0.595,0.126,0.161,0,0,0,0,0,0.264 +0.333,0.595,0.142,0.16,0,0,0,0,0.117,0.0378 +0.667,0.605,0.156,0.161,0,0,0,0,0.117,0.0378 +0.667,0.675,0.308,0.276,0,0,0,0,0,0.151 +0.667,0.706,0.318,0.294,0,0,0,0,0,0 +0.667,0.717,0.374,0.342,0,0,0,0,0,0.0378 +1,0.777,0.725,0.625,0,0,0,0,0,0 +1,0.746,0.852,0.79,0,0,0,0,0,0 +1,0.684,0.786,0.888,0,0,0,0,0,0.0378 +1,0.622,0.496,0.603,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0201,0.0511,0,0,0,0,0,0 +1,0.564,0.0223,0.0806,0,0,0,0,0,0.189 +1,0.582,0.0412,0.239,0,0,0,0,0,0.0378 +0.667,0.589,0.0436,0.174,0,0,0,0,0,0.364 +0.333,0.595,0.0641,0.177,0,0,0,0,0,0.208 +0.333,0.595,0.0809,0.176,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.595,0.109,0.162,0,0,0,0,0,0.491 +0.333,0.595,0.126,0.161,0,0,0,0,0,0.113 +0.333,0.595,0.142,0.16,0,0,0,0,0,0.151 +0.333,0.605,0.156,0.161,0,0,0,0,0,0 +0.333,0.621,0.163,0.163,0,0,0,0,0,0 +0.667,0.706,0.318,0.294,0,0,0,0,0.467,0.0756 +0.667,0.717,0.374,0.342,0,0,0,0,0,0 +0.667,0.636,0.254,0.241,0,0,0,0,0,0.0378 +1,0.686,0.574,0.543,0,0,0,0,0,0.106 +1,0.644,0.53,0.609,0,0,0,0,0,0 +1,0.584,0.178,0.234,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0238,0.0806,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.589,0.0399,0.174,0.169,0.0667,0,0,0,0.0378 +1,0.624,0.077,0.304,0.842,0.917,0,0,0.0667,0.208 +0.667,0.624,0.0902,0.302,0,0,0,0,0.633,0.189 +0.667,0.624,0.1,0.293,0.521,0.567,0,0,0,0.0378 +0.333,0.595,0.0633,0.166,0.263,0.417,0,0,0,0.151 +0.667,0.624,0.117,0.274,0,0,0,0,0,0.113 +0.667,0.624,0.131,0.271,0,0,0.453,0.817,0,0.0756 +0.333,0.595,0.0772,0.16,0,0,0.534,0.217,0,0.189 +0.333,0.605,0.0853,0.161,0,0,0.368,0,0,0.227 +0.333,0.621,0.104,0.163,0,0,0.289,0,0,0.151 +0.667,0.706,0.234,0.294,0,0,0.475,0,0.233,0 +0.667,0.717,0.313,0.342,0,0,0.531,0,0,0.0756 +0.667,0.706,0.436,0.433,0,0,0.592,0,0,0.0378 +0.667,0.686,0.537,0.543,0,0,0.287,0,0,0 +0.667,0.644,0.509,0.609,0,0,0.541,0,0,0 +0.667,0.603,0.31,0.419,0,0,0.495,0,0,0 +0.667,0.572,0.137,0.184,0,0,0.0903,0,0,0 +0.667,0.561,0.0595,0.0999,0,0,0,0,0,0.0875 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0238,0.0806,0,0,0,0,0.233,0.169 +1,0.582,0.0478,0.239,0,0,0,0,0,0.159 +1,0.613,0.0639,0.297,0,0,0,0,0,0.0378 +0.667,0.595,0.0465,0.177,0.246,0.317,0,0,0,0.0378 +0.667,0.595,0.053,0.176,0.451,0.667,0,0,0,0.113 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.204 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.125,0.172,0,0,0,0,0,0.0378 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.0756 +0.333,0.636,0.226,0.241,0,0,0,0,0,0.264 +0.333,0.626,0.276,0.297,0,0,0,0,0.0667,0.0748 +0.667,0.644,0.509,0.609,0.139,0.0667,0,0,0.167,0.364 +0.667,0.603,0.31,0.419,0.583,0.917,0.147,0.317,0,0 +1,0.572,0.137,0.184,0,0,0.616,1,0,0.0901 +1,0.564,0.0377,0.0749,0,0,0,0.233,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0584 +1,0.637,0.0879,0.421,0,0,0,0,0,0.313 +0.333,0.595,0.0465,0.177,0,0,0,0,0,0.444 +0.667,0.624,0.0902,0.302,0,0,0,0,0,0.0378 +0.333,0.595,0.0582,0.172,0,0,0,0,0,0.243 +0.333,0.595,0.0633,0.166,0,0,0,0,0,0 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.0378 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.0969 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.32 +0.333,0.605,0.0853,0.161,0,0,0,0,0,0.0532 +0.667,0.675,0.191,0.276,0,0,0,0,0,0.152 +1,0.777,0.343,0.416,0,0,0,0,0.567,0.113 +1,0.792,0.461,0.488,0,0,0,0,0.367,0.11 +0.667,0.706,0.436,0.433,0,0,0,0,0,0.0378 +0.667,0.686,0.537,0.543,0,0,0.465,0.25,0,0 +1,0.684,0.756,0.888,0,0,0.562,0,0,0.0378 +1,0.622,0.457,0.603,0,0,0.212,0,0,0.171 +1,0.572,0.137,0.184,0,0,0,0,0,0.144 +1,0.566,0.0159,0.05,0,0,0,0,0,0.084 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.204 +0.667,0.595,0.053,0.176,0,0,0,0,0,0.352 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.123 +0.333,0.595,0.0633,0.166,0,0,0.431,0.517,0,0.0378 +0.333,0.595,0.0662,0.162,0,0,0.491,0,0,0 +0.333,0.595,0.0735,0.161,0,0,0.728,0,0,0.0378 +0.333,0.595,0.0772,0.16,0,0,0.47,0,0,0.0756 +0.333,0.605,0.0853,0.161,0,0,0.69,0,0,0.113 +0.333,0.621,0.104,0.163,0,0,0.373,0,0,0.0378 +0.333,0.636,0.125,0.172,0.139,0.0667,0,0,0,0.416 +0.667,0.717,0.313,0.342,0.915,1,0,0,0,0.303 +0.667,0.706,0.436,0.433,0.622,0.167,0,0,0,0.227 +0.667,0.686,0.537,0.543,0.603,0,0,0,0,0 +0.667,0.644,0.509,0.609,0.808,0,0,0,0,0 +0.667,0.603,0.31,0.419,0.0808,0,0,0,0,0 +0.667,0.569,0.0765,0.117,0,0,0,0,0,0 +1,0.564,0.0377,0.0749,0,0,0,0,0,0 +1,0.564,0.0238,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.0667,0.057 +1,0.613,0.0639,0.297,0,0,0,0,0.4,0.0663 +0.667,0.595,0.0465,0.177,0,0,0,0,0,0 +0.333,0.595,0.053,0.176,0,0,0,0,0,0 +0.333,0.595,0.0582,0.172,0.481,0.567,0,0,0,0.113 +0.333,0.595,0.0633,0.166,0.237,0.417,0,0,0,0.0756 +0.333,0.595,0.0662,0.162,0,0,0,0,0,0.453 +0.333,0.595,0.0735,0.161,0,0,0,0,0,0.189 +0.333,0.595,0.0772,0.16,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.409 +0.333,0.636,0.125,0.172,0,0,0,0,0.467,0 +0.333,0.641,0.164,0.196,0,0,0,0,0,0.113 +0.333,0.636,0.226,0.241,0,0,0,0,0,0 +0.667,0.686,0.537,0.543,0,0,0,0,0,0 +0.667,0.644,0.509,0.609,0,0,0,0,0,0.0756 +0.667,0.603,0.31,0.419,0,0,0,0,0,0 +1,0.572,0.137,0.184,0,0,0,0,0,0.161 +1,0.561,0.0705,0.0999,0,0,0,0,0,0.296 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.463 +1,0.582,0.0412,0.239,0,0,0,0,0,0 +1,0.613,0.069,0.297,0.479,0.617,0,0,0,0.0756 +1,0.624,0.11,0.304,0.912,0.367,0,0,0,0.188 +1,0.624,0.144,0.302,0.47,0,0,0,0.617,0.343 +0.333,0.595,0.0941,0.172,0,0,0.168,0.117,0.55,0.108 +0.333,0.595,0.102,0.166,0,0,0.44,0.917,0,0.0756 +1,0.653,0.29,0.385,0.592,0.617,0.365,0.117,0,0.151 +0.667,0.624,0.234,0.271,0.359,0.367,0.139,0.65,0,0.113 +0.333,0.595,0.142,0.16,0,0,0,0,0,0.151 +0.667,0.644,0.293,0.272,0,0,0,0,0,0 +0.333,0.621,0.163,0.163,0,0,0,0,0.367,0.113 +0.667,0.706,0.318,0.294,0,0,0,0,0.1,0.113 +0.667,0.717,0.374,0.342,0,0,0,0,0,0.296 +0.667,0.706,0.489,0.433,0,0,0,0,0,0.399 +0.667,0.686,0.574,0.543,0,0,0,0,0,0.091 +1,0.605,0.274,0.329,0,0,0,0,0,0.0763 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.589,0.0436,0.174,0,0,0,0,0,0 +0.667,0.624,0.11,0.304,0,0,0,0,0.117,0.24 +0.667,0.624,0.144,0.302,0,0,0,0,0.583,0.262 +1,0.653,0.246,0.415,0,0,0.118,0.117,0,0.282 +1,0.653,0.27,0.398,0,0,0.399,1,0,0.154 +1,0.653,0.29,0.385,0,0,0.313,0.433,0,0.429 +1,0.653,0.343,0.382,0,0,0.439,0,0,0.272 +0.667,0.624,0.267,0.271,0,0,0.536,0,0,0.131 +0.333,0.605,0.156,0.161,0,0,0.537,0,0,0.212 +0.333,0.621,0.163,0.163,0,0,0.596,0,0,0.0378 +0.333,0.636,0.168,0.172,0,0,0.331,0,0,0.0756 +0.667,0.717,0.374,0.342,0,0,0.444,0,0,0.227 +0.667,0.706,0.489,0.433,0,0,0.558,0,0,0.264 +0.667,0.686,0.574,0.543,0.111,0.117,0.695,0,0,0.0756 +0.667,0.644,0.53,0.609,0.722,1,0.0157,0,0,0.138 +0.667,0.584,0.178,0.234,0,0.117,0,0,0,0.156 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.141 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.282 +1,0.564,0.0238,0.0583,0,0,0,0,0,0.0873 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +0.667,0.595,0.0465,0.177,0,0,0,0,1,0 +0.667,0.595,0.053,0.176,0,0,0,0,1,0.164 +0.667,0.595,0.0582,0.172,0,0,0,0,0.283,0.227 +0.667,0.624,0.111,0.282,0,0,0,0,0,0.163 +0.667,0.624,0.117,0.274,0,0,0,0,0,0.264 +0.667,0.624,0.131,0.271,0,0,0,0,0,0.512 +0.667,0.595,0.0772,0.16,0,0,0,0,0,0.247 +0.667,0.644,0.155,0.272,0,0,0,0,0,0.294 +0.333,0.621,0.104,0.163,0,0,0,0,0,0.0687 +0.333,0.636,0.125,0.172,0.385,0.567,0,0,0,0 +0.333,0.641,0.164,0.196,0.353,0.417,0,0,0,0.434 +0.333,0.636,0.226,0.241,0,0,0,0,0,0.365 +0.667,0.686,0.537,0.543,0,0,0,0,0,0.189 +1,0.684,0.756,0.888,0,0,0,0,0,0 +1,0.603,0.31,0.419,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0569 +1,0.615,0.0634,0.287,0,0,0,0,0.317,0.0427 +0.667,0.625,0.0764,0.288,0,0,0,0,0.717,0.227 +0.667,0.625,0.0895,0.281,0,0,0,0,0.15,0.0378 +0.667,0.625,0.0997,0.273,0,0,0,0,0,0.264 +0.667,0.625,0.11,0.262,0,0,0,0,0,0.39 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0.164 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.227 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.151 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.151 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.0378 +0.667,0.709,0.232,0.266,0,0,0,0,0.233,0.0378 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.0756 +1,0.78,0.64,0.528,0,0,0,0,0,0.0378 +0.667,0.688,0.532,0.468,0,0,0,0,0,0.0378 +0.667,0.646,0.505,0.554,0,0,0,0,0,0 +0.667,0.585,0.162,0.229,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.564,0.0374,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0579 +1,0.575,0.0316,0.14,0,0,0,0,0,0.252 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.321 +1,0.625,0.0764,0.288,0,0,0,0,0.567,0.145 +1,0.625,0.0895,0.281,0,0,0,0,0.15,0.152 +1,0.625,0.0997,0.273,0,0,0,0,0,0.249 +1,0.625,0.11,0.262,0,0,0,0,0,0.056 +0.667,0.625,0.116,0.254,0,0,0.416,0.567,0,0.317 +0.667,0.625,0.13,0.251,0,0,0.717,0.183,0,0.164 +0.667,0.625,0.137,0.251,0,0,0.435,0,0,0.177 +0.667,0.646,0.153,0.252,0,0,0.295,0,0,0.363 +0.667,0.677,0.19,0.255,0,0,0.445,0,0,0.0378 +0.667,0.709,0.232,0.266,0,0,0.437,0,0,0.151 +0.333,0.642,0.163,0.175,0,0,0.535,0,0,0.227 +0.333,0.637,0.224,0.209,0,0,0.363,0,0,0.0378 +0.667,0.688,0.532,0.468,0,0,0.363,0,0,0 +1,0.686,0.749,0.806,0,0,0,0,0,0.0965 +1,0.605,0.307,0.408,0,0,0,0,0,0.215 +1,0.573,0.136,0.184,0,0,0,0,0,0.22 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.0482 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.14,0,0,0,0,0,0.0756 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.595,0.0462,0.169,0.306,0.317,0,0,0,0 +0.667,0.595,0.0527,0.165,0.596,0.65,0,0,0,0 +0.667,0.625,0.0997,0.273,0,0,0,0,0,0 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.189 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.378 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.264 +0.333,0.621,0.103,0.152,0,0,0,0,0,0 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.113 +0.333,0.642,0.163,0.175,0,0,0,0,0,0 +0.333,0.637,0.224,0.209,0,0,0,0,0.233,0.0756 +0.667,0.688,0.532,0.468,0,0,0,0,0,0.151 +1,0.646,0.505,0.554,0.406,0.567,0,0,0,0.0756 +1,0.605,0.307,0.408,0.494,0.4,0.283,0.317,0,0 +1,0.573,0.136,0.184,0,0,0.562,0.183,0,0 +1,0.564,0.0374,0.0749,0,0,0,0,0,0 +1,0.564,0.0236,0.0583,0,0,0,0,0,0 +1,0.564,0.0171,0.05,0,0,0,0,0,0.189 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.584,0.0474,0.23,0,0,0,0,0,0.15 +0.667,0.59,0.0396,0.168,0,0,0,0,0,0.153 +0.667,0.595,0.0462,0.169,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0658,0.152,0,0,0,0,0.233,0.113 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.0378 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.113 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.0378 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.378 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.151 +0.333,0.637,0.224,0.209,0,0,0,0,0,0.151 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.507 +1,0.606,0.26,0.302,0.171,0.0667,0,0,0.567,0.0409 +1,0.585,0.162,0.229,0.556,0.9,0,0,0.15,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.595,0.0636,0.169,0,0,0,0,0.0667,0.113 +1,0.625,0.143,0.281,0,0,0,0,0.4,0.366 +1,0.655,0.244,0.384,0,0,0,0,0,0.486 +0.333,0.595,0.101,0.156,0,0,0,0,0,0.0756 +0.333,0.595,0.108,0.152,0,0,0,0,0,0.0378 +0.333,0.595,0.125,0.151,0,0,0,0,0,0.0756 +0.667,0.625,0.265,0.251,0,0,0,0,0,0.0756 +0.667,0.646,0.291,0.252,0,0,0,0,0,0.151 +0.667,0.677,0.305,0.255,0,0,0,0,0.233,0.149 +0.667,0.709,0.315,0.266,0,0,0,0,0,0.348 +0.667,0.719,0.371,0.299,0,0,0.0157,0.0667,0,0 +0.667,0.709,0.485,0.368,0,0,0.321,0.95,0,0.0378 +0.667,0.688,0.57,0.468,0,0,0.0825,0,0,0.0378 +0.667,0.646,0.526,0.554,0,0,0,0,0,0.0937 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0606 +0.333,0.59,0.0433,0.168,0,0,0.0877,0.317,0,0.177 +0.333,0.595,0.0636,0.169,0,0,0.309,0.7,0,0.198 +0.667,0.625,0.143,0.281,0,0,0.67,0,0,0.223 +0.667,0.625,0.169,0.273,0,0,0.605,0,0,0.0756 +0.333,0.595,0.101,0.156,0,0,0.521,0,0,0.113 +0.333,0.595,0.108,0.152,0,0,0.442,0,0,0 +0.333,0.595,0.125,0.151,0,0,0.603,0,0,0 +0.333,0.595,0.141,0.15,0,0,0.686,0,0,0.227 +0.333,0.606,0.154,0.151,0,0,0.11,0,0,0.113 +0.333,0.621,0.162,0.152,0,0,0,0,0,0.106 +0.667,0.709,0.315,0.266,0,0,0,0,0,0.113 +0.667,0.719,0.371,0.299,0,0,0,0,0,0.309 +0.333,0.637,0.252,0.209,0,0,0,0,0,0.361 +0.667,0.688,0.57,0.468,0,0,0,0,0,0 +0.667,0.646,0.526,0.554,0,0,0,0,0,0.151 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.2 +1,0.584,0.0474,0.23,0,0,0,0,0,0.433 +0.333,0.59,0.0396,0.168,0,0,0,0,0,0.438 +0.333,0.595,0.0462,0.169,0,0,0,0,0,0.133 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0.227 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.189 +0.667,0.625,0.11,0.262,0,0,0,0,0,0 +0.667,0.625,0.116,0.254,0,0,0,0,0,0.22 +0.667,0.625,0.13,0.251,0,0,0,0,0,0.237 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.0378 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.0756 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.0378 +0.667,0.709,0.432,0.368,0.333,0.817,0,0,0,0.0378 +0.667,0.688,0.532,0.468,0,0.15,0,0,0,0 +0.667,0.646,0.505,0.554,0,0,0,0,0,0.0891 +0.667,0.585,0.162,0.229,0,0,0,0,0,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0.258 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.282 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0281 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.615,0.0634,0.287,0,0,0,0,0,0.319 +0.667,0.625,0.0764,0.288,0.47,0.567,0,0,0.233,0.383 +0.667,0.625,0.0895,0.281,0.808,0.4,0.0641,0.317,0,0.113 +0.667,0.625,0.0997,0.273,0.613,0.317,0.509,0.7,0,0 +0.333,0.595,0.0629,0.156,0.402,0.65,0,0,0,0.189 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0.0756 +0.667,0.595,0.073,0.151,0,0,0,0,0,0.194 +0.667,0.595,0.0767,0.15,0,0,0,0,0,0.264 +0.667,0.606,0.0846,0.151,0,0,0,0,0,0 +0.667,0.621,0.103,0.152,0,0,0,0,0,0.285 +0.667,0.709,0.232,0.266,0,0,0,0,0.233,0.263 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.157 +0.333,0.637,0.224,0.209,0,0,0,0,0,0.273 +0.667,0.627,0.274,0.259,0,0,0,0,0,0 +1,0.646,0.505,0.554,0,0,0,0,0,0.247 +1,0.585,0.162,0.229,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.575,0.0316,0.14,0,0,0,0,0.317,0.113 +1,0.615,0.0634,0.287,0,0,0,0,0.633,0.344 +0.667,0.625,0.0764,0.288,0.43,0.567,0,0,0,0.304 +0.333,0.595,0.0527,0.165,0.853,0.4,0,0,0,0.0378 +0.333,0.595,0.0578,0.161,0.447,0,0,0,0,0 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.0378 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0.233,0.0378 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.189 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.151 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.172 +0.333,0.637,0.124,0.158,0,0,0,0,0,0 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.189 +0.333,0.637,0.224,0.209,0,0,0,0,0.0667,0.0592 +0.667,0.688,0.532,0.468,0,0,0,0,0.4,0.0901 +0.667,0.646,0.505,0.554,0,0,0,0,0,0.202 +1,0.624,0.453,0.588,0,0,0,0,0,0.139 +1,0.569,0.0759,0.117,0,0,0,0,0,0.0975 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.284 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0508,0,0,0,0,0,0.0756 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.302 +1,0.575,0.0316,0.14,0,0,0,0,0,0.282 +1,0.59,0.0396,0.168,0,0,0,0,0,0.206 +1,0.625,0.0764,0.288,0,0,0,0,0,0.105 +1,0.625,0.0895,0.281,0,0,0,0,0,0.459 +1,0.625,0.0997,0.273,0,0,0,0,0,0.0914 +1,0.655,0.157,0.367,0,0,0.0602,0.567,0,0.399 +1,0.655,0.166,0.355,0,0,0,0.183,0,0.224 +0.333,0.595,0.073,0.151,0,0,0,0,0,0 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.302 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.0378 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.0378 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.0756 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.0756 +0.333,0.637,0.224,0.209,0,0,0,0,0,0 +0.667,0.688,0.532,0.468,0.128,0.0667,0,0,0,0.0886 +1,0.686,0.749,0.806,0.613,0.9,0,0,0,0.0822 +1,0.605,0.307,0.408,0,0,0,0,0,0.151 +1,0.569,0.0759,0.117,0,0,0,0,0,0.228 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0157,0.05,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.258 +0.667,0.575,0.0316,0.14,0,0,0,0,0,0.0661 +1,0.615,0.0634,0.287,0,0,0,0,0,0.293 +0.667,0.595,0.0462,0.169,0,0,0,0,0,0.367 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0.0748 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.18 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.118 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.0378 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.0378 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.0378 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.113 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.151 +0.333,0.642,0.163,0.175,0,0,0,0,0.0667,0.113 +0.333,0.637,0.224,0.209,0,0,0,0,0.167,0.0378 +0.333,0.627,0.274,0.259,0,0,0,0,0,0.0949 +0.667,0.646,0.505,0.554,0,0,0,0,0,0.171 +0.667,0.605,0.307,0.408,0,0,0,0,0,0 +1,0.577,0.196,0.252,0,0,0,0,0,0 +1,0.563,0.0699,0.0999,0,0,0,0,0,0.0996 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.19 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.595,0.0636,0.169,0,0,0,0,0.467,0.113 +0.667,0.625,0.143,0.281,0,0,0,0,0,0.266 +0.667,0.625,0.169,0.273,0,0,0,0,0,0.249 +0.667,0.625,0.185,0.262,0,0,0,0,0,0.112 +0.667,0.625,0.198,0.254,0,0,0,0,0.233,0.139 +1,0.655,0.34,0.352,0,0,0,0,0,0.297 +0.333,0.595,0.141,0.15,0,0,0,0,0.0667,0.302 +0.667,0.646,0.291,0.252,0,0,0,0,1,0.189 +0.667,0.677,0.305,0.255,0,0,0,0,0.133,0.0378 +0.667,0.709,0.315,0.266,0,0,0,0,0,0.0756 +0.667,0.719,0.371,0.299,0,0,0,0,0,0 +0.667,0.709,0.485,0.368,0,0,0,0,0,0 +0.667,0.688,0.57,0.468,0,0,0,0,0,0 +0.667,0.606,0.272,0.302,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.569,0.0869,0.117,0,0,0,0,0,0.0569 +1,0.564,0.044,0.0749,0,0,0,0,0,0 +1,0.564,0.0281,0.0583,0,0,0,0,0,0.127 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.575,0.0295,0.14,0,0,0,0,0,0.249 +1,0.615,0.0685,0.287,0,0,0,0,0,0.346 +0.667,0.625,0.109,0.288,0,0,0,0,0,0.189 +0.667,0.625,0.143,0.281,0,0,0,0,0,0.214 +0.667,0.625,0.169,0.273,0,0,0,0,0.467,0.292 +0.333,0.595,0.101,0.156,0,0,0,0,0,0 +0.333,0.595,0.108,0.152,0,0,0,0,0,0.0756 +0.667,0.625,0.233,0.251,0,0,0,0,0,0.0756 +0.333,0.595,0.141,0.15,0,0,0,0,0,0.189 +0.667,0.606,0.154,0.151,0,0,0,0,0,0.378 +0.667,0.621,0.162,0.152,0,0,0,0,0.467,0 +0.667,0.637,0.167,0.158,0,0,0,0,0,0.264 +0.667,0.642,0.194,0.175,0,0,0,0,0,0.227 +0.667,0.637,0.252,0.209,0,0,0,0,0,0.0584 +1,0.688,0.57,0.468,0,0,0,0,0,0.199 +1,0.686,0.78,0.806,0,0,0,0,0,0.125 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.151 +1,0.584,0.0474,0.23,0,0,0,0,0,0.0378 +1,0.615,0.0634,0.287,0,0,0,0,0.0667,0.0756 +1,0.625,0.0764,0.288,0,0,0,0,0.65,0 +0.667,0.625,0.0895,0.281,0,0,0,0,0.0667,0.113 +0.667,0.625,0.0997,0.273,0,0,0,0,0.167,0.0756 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.302 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0.0756 +0.667,0.625,0.13,0.251,0,0,0,0,0,0.151 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.0756 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.0756 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.113 +1,0.78,0.34,0.374,0,0,0,0,0,0 +1,0.796,0.457,0.424,0,0,0,0,0,0.264 +0.667,0.709,0.432,0.368,0,0,0,0,0,0.0378 +0.667,0.688,0.532,0.468,0,0,0,0,0,0 +0.667,0.646,0.505,0.554,0,0,0,0,0,0 +0.667,0.585,0.162,0.229,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.575,0.0316,0.14,0,0,0,0,0,0 +0.667,0.59,0.0396,0.168,0,0,0,0,0.233,0.0756 +0.667,0.625,0.0764,0.288,0,0,0,0,0,0.255 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0.275 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.0669 +0.333,0.595,0.0629,0.156,0,0,0,0,0.317,0.144 +0.333,0.595,0.0658,0.152,0,0,0,0,0.4,0.113 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.227 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.0756 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.189 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.151 +0.667,0.709,0.232,0.266,0,0,0,0,0,0.248 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.328 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0396,0.168,0.361,0.567,0,0,0,0 +0.667,0.625,0.0764,0.288,0.895,0.4,0,0,0,0.206 +0.667,0.625,0.0895,0.281,0.145,0,0.421,0.5,0,0.224 +0.667,0.625,0.0997,0.273,0,0,0.806,0,0,0.273 +0.667,0.625,0.11,0.262,0,0,0.271,0,0,0.225 +0.667,0.625,0.116,0.254,0,0,0.747,0,0,0.217 +0.667,0.625,0.13,0.251,0,0,0.2,0,0,0.0378 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0.218 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.457 +0.667,0.709,0.232,0.266,0,0,0,0,0,0.173 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.416 +0.667,0.709,0.432,0.368,0,0,0,0,0,0.0955 +0.333,0.627,0.274,0.259,0,0,0,0,0.0667,0.311 +1,0.686,0.749,0.806,0,0,0,0,0.167,0 +1,0.624,0.453,0.588,0,0,0,0,0,0.0593 +1,0.577,0.196,0.252,0.361,0.317,0,0,0,0.104 +1,0.564,0.0374,0.0749,0.286,0.65,0,0,0,0 +1,0.564,0.0236,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.59,0.0396,0.168,0,0,0,0,0,0.122 +0.667,0.625,0.0764,0.288,0,0,0,0,0.717,0.524 +0.667,0.625,0.0895,0.281,0,0,0,0,0,0.454 +0.667,0.625,0.0997,0.273,0,0,0,0,0,0.377 +0.667,0.625,0.11,0.262,0,0,0,0,0.317,0.162 +0.333,0.595,0.0658,0.152,0,0,0,0,0.15,0.0378 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.189 +0.667,0.625,0.137,0.251,0,0,0,0,0,0.264 +0.667,0.646,0.153,0.252,0,0,0,0,0,0.189 +0.667,0.677,0.19,0.255,0,0,0,0,0,0.13 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.189 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.0756 +0.667,0.709,0.432,0.368,0,0,0,0,0.467,0.147 +0.333,0.627,0.274,0.259,0,0,0,0,0.0667,0.0636 +1,0.686,0.749,0.806,0,0,0,0,1,0.222 +1,0.585,0.162,0.229,0,0,0,0,0.133,0.0761 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.159 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0547 +1,0.615,0.0634,0.287,0,0,0,0,0,0.465 +1,0.625,0.0764,0.288,0,0,0,0,0,0.191 +1,0.625,0.0895,0.281,0,0,0,0,0,0.41 +0.667,0.625,0.0997,0.273,0,0,0,0,0,0.0756 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.264 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0.0378 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.0756 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.0756 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.0378 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.0378 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.0378 +0.667,0.709,0.432,0.368,0,0,0,0,0.817,0 +0.667,0.688,0.532,0.468,0,0,0,0,1,0.0378 +0.667,0.646,0.505,0.554,0.248,0.317,0,0,0.833,0 +1,0.624,0.453,0.588,0.805,0.65,0,0,0,0.0756 +1,0.573,0.136,0.184,0.581,0,0,0,0,0.0756 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.595,0.0934,0.161,0,0,0,0,0,0.113 +0.667,0.595,0.101,0.156,0,0,0,0,0,0 +0.667,0.595,0.108,0.152,0,0,0,0,0,0.113 +0.667,0.595,0.125,0.151,0,0,0,0,0,0.0378 +0.667,0.595,0.141,0.15,0,0,0,0,0,0.113 +0.667,0.606,0.154,0.151,0,0,0,0,0,0.0756 +0.667,0.677,0.305,0.255,0,0,0,0,0.0667,0.168 +0.667,0.709,0.315,0.266,0,0,0,0,1,0.0756 +0.333,0.642,0.194,0.175,0,0,0,0,0.617,0.231 +0.667,0.709,0.485,0.368,0,0,0,0,0,0.0756 +0.667,0.688,0.57,0.468,0,0,0,0,0,0.0756 +1,0.646,0.526,0.554,0,0,0,0,0,0.0378 +1,0.605,0.334,0.408,0,0,0,0,0,0 +1,0.569,0.0869,0.117,0,0,0,0,0,0 +1,0.564,0.044,0.0749,0,0,0,0,0,0 +1,0.564,0.0281,0.0583,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.109,0.288,0,0,0,0,0,0.232 +0.667,0.625,0.143,0.281,0,0,0,0,0,0.113 +0.333,0.595,0.0934,0.161,0,0,0,0,0,0.378 +0.333,0.595,0.101,0.156,0,0,0,0,0,0.157 +0.667,0.595,0.108,0.152,0,0,0,0,0,0.519 +0.667,0.595,0.125,0.151,0,0,0,0,0,0.231 +0.667,0.595,0.141,0.15,0,0,0,0,0,0.113 +0.333,0.606,0.154,0.151,0,0,0,0,0,0.264 +0.333,0.621,0.162,0.152,0,0,0,0,0,0 +0.333,0.637,0.167,0.158,0,0,0,0,0,0.229 +0.667,0.719,0.371,0.299,0,0,0,0,0,0.241 +0.667,0.709,0.485,0.368,0,0,0,0,0,0.189 +0.667,0.688,0.57,0.468,0,0,0,0,0,0 +0.667,0.646,0.526,0.554,0,0,0,0,0,0.0378 +0.667,0.585,0.176,0.229,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0374,0.0749,0,0,0,0,0,0 +1,0.563,0.0314,0.0666,0,0,0,0,0,0.0756 +1,0.564,0.0171,0.05,0,0,0,0,0,0.302 +1,0.564,0.0157,0.05,0,0,0,0,0,0.227 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.584,0.0474,0.23,0,0,0,0,0,0.22 +0.667,0.59,0.0396,0.168,0,0,0,0,0,0.162 +1,0.625,0.0764,0.288,0,0,0,0,0,0.45 +1,0.625,0.0895,0.281,0,0,0,0,0,0.226 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0607 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.272 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.133 +0,0.566,0.0159,0.05,0,0,0,0,0.233,0.133 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.0378 +0.667,0.709,0.432,0.368,0,0,0,0,0,0.189 +0.667,0.688,0.532,0.468,0,0,0,0,0,0.0378 +0.667,0.646,0.505,0.554,0,0,0,0,0,0 +0.667,0.605,0.307,0.408,0,0,0,0,0,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.564,0.0374,0.0749,0,0,0,0,0,0 +1,0.564,0.0236,0.0583,0,0,0,0,0,0.0378 +1,0.564,0.0171,0.05,0,0,0,0,0,0 +1,0.564,0.0157,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.584,0.0474,0.23,0,0,0,0,0,0.281 +0.667,0.615,0.0634,0.287,0,0,0,0,0,0.189 +0.667,0.625,0.0764,0.288,0,0,0,0,0,0.21 +0.333,0.595,0.0527,0.165,0,0,0,0,0.317,0.256 +0.333,0.595,0.0578,0.161,0,0,0,0,0.15,0.0378 +0.667,0.625,0.11,0.262,0,0,0,0,0,0.0756 +0.667,0.625,0.116,0.254,0,0,0,0,0,0 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.0756 +0.667,0.625,0.137,0.251,0,0,0,0,0,0 +0.667,0.646,0.153,0.252,0,0,0,0,0,0.0378 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.227 +0.333,0.637,0.124,0.158,0,0,0,0,0,0 +0.333,0.642,0.163,0.175,0,0,0,0,0,0 +0.667,0.709,0.432,0.368,0,0,0,0,0,0.0378 +0.667,0.688,0.532,0.468,0,0,0,0,0,0 +0.667,0.646,0.505,0.554,0.534,0.567,0,0,0,0.0915 +1,0.566,0.0159,0.05,0.316,0.4,0,0,0,0.129 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.575,0.0316,0.14,0,0,0,0,0,0.435 +0.667,0.615,0.0634,0.287,0,0,0,0,0.467,0.259 +0.667,0.625,0.0764,0.288,0,0,0,0,0,0.227 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0.302 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.0378 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0 +0.667,0.625,0.13,0.251,0,0,0,0,0,0.189 +0.333,0.595,0.0767,0.15,0,0,0,0,0.467,0.0756 +0.667,0.646,0.153,0.252,0,0,0,0,0,0.097 +0.667,0.677,0.19,0.255,0,0,0,0,0.317,0.236 +0.333,0.637,0.124,0.158,0,0,0,0,0.15,0.151 +0.333,0.642,0.163,0.175,0.474,0.567,0,0,0,0 +0.667,0.709,0.432,0.368,0.641,0.4,0,0,0.467,0 +0.333,0.627,0.274,0.259,0.254,0,0,0,0,0.117 +0.667,0.646,0.505,0.554,0,0,0,0,0,0.137 +0.667,0.585,0.162,0.229,0,0,0,0,0,0 +1,0.573,0.136,0.184,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.249 +1,0.584,0.0474,0.23,0,0,0,0,0.817,0.0707 +0.667,0.615,0.0634,0.287,0,0,0,0,0.617,0.199 +0.333,0.595,0.0462,0.169,0,0,0,0,0,0.0378 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.0378 +0.667,0.625,0.11,0.262,0,0,0,0,0,0 +0.667,0.625,0.116,0.254,0,0,0,0,0,0.151 +0.667,0.625,0.13,0.251,0,0,0,0,0,0.0378 +0.667,0.625,0.137,0.251,0,0,0,0,0,0.0756 +0.667,0.646,0.153,0.252,0,0,0,0,0,0.302 +0.667,0.677,0.19,0.255,0,0,0,0,0,0.0756 +0.333,0.637,0.124,0.158,0,0,0,0,0.467,0.0378 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.113 +0.333,0.637,0.224,0.209,0,0,0,0,0,0.0756 +0.667,0.688,0.532,0.468,0,0,0,0,0,0 +0.667,0.646,0.505,0.554,0,0,0,0,0,0.0515 +0.667,0.605,0.307,0.408,0,0,0,0,0,0.155 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0374,0.0749,0,0,0,0,0,0.196 +1,0.566,0.0159,0.05,0,0,0,0,0,0.199 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.121 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.179 +1,0.64,0.0871,0.405,0,0,0,0,0,0.825 +0.667,0.625,0.0764,0.288,0,0,0,0,0,0.448 +0.667,0.625,0.0895,0.281,0,0,0,0,0,0.197 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.621,0.103,0.152,0,0,0,0,0.467,0 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.189 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.34 +1,0.78,0.64,0.528,0,0,0,0,0.467,0 +1,0.749,0.791,0.677,0,0,0,0,0,0.225 +0.667,0.646,0.505,0.554,0,0,0,0,0,0 +0.667,0.585,0.162,0.229,0,0,0,0,0,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0.151 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0.175,0.0667,0,0,0,0 +1,0.564,0.0201,0.0508,0.692,1,0,0,0,0.0378 +1,0.564,0.0223,0.0788,0.776,0.15,0,0,0,0.0378 +1,0.575,0.0295,0.14,0.286,0,0,0,0,0.227 +1,0.615,0.0685,0.287,0,0,0,0,0.233,0 +0.667,0.595,0.0636,0.169,0,0,0,0,0,0 +0.667,0.595,0.0803,0.165,0,0,0,0,0,0 +0.667,0.595,0.0934,0.161,0,0,0,0,0,0 +0.667,0.595,0.101,0.156,0,0,0,0,0,0.163 +0.667,0.625,0.198,0.254,0.44,0.567,0,0,0,0.388 +0.667,0.625,0.233,0.251,0.0959,0.4,0,0,0,0.113 +0.333,0.595,0.141,0.15,0,0,0,0,0,0 +0.333,0.606,0.154,0.151,0.117,0.0667,0,0,0,0.0378 +0.333,0.621,0.162,0.152,0.592,0.9,0,0,0,0.151 +0.333,0.637,0.167,0.158,0,0,0,0,0,0.0378 +0.333,0.642,0.194,0.175,0,0,0,0,0,0.277 +0.667,0.709,0.485,0.368,0,0,0,0,0,0 +0.667,0.688,0.57,0.468,0,0,0,0,0,0.189 +1,0.646,0.526,0.554,0,0,0,0,0,0 +1,0.605,0.334,0.408,0,0,0,0,0,0 +1,0.569,0.0869,0.117,0,0,0,0,0,0 +1,0.564,0.044,0.0749,0,0,0,0,0,0 +1,0.564,0.0281,0.0583,0,0,0,0,0.233,0 +1,0.564,0.0208,0.05,0,0,0,0,0,0 +1,0.564,0.0179,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0181,0.05,0,0,0,0,0,0.059 +1,0.564,0.0223,0.0788,0,0,0.122,0.567,0,0.059 +1,0.575,0.0295,0.14,0,0,0,0.183,0,0.184 +1,0.615,0.0685,0.287,0,0,0,0,0,0.305 +0.667,0.595,0.0636,0.169,0,0,0,0,0,0.0756 +0.333,0.595,0.0803,0.165,0,0,0,0,0,0.151 +0.333,0.595,0.0934,0.161,0,0,0,0,0,0 +0.333,0.595,0.101,0.156,0,0,0,0,0,0.0756 +0.333,0.595,0.108,0.152,0,0,0,0,0,0 +0.333,0.595,0.125,0.151,0,0,0,0,0,0.0378 +0.333,0.595,0.141,0.15,0,0,0,0,0,0.151 +0.333,0.606,0.154,0.151,0,0,0,0,0,0.0756 +0.333,0.621,0.162,0.152,0,0,0,0,0,0.113 +0.667,0.709,0.315,0.266,0.186,0.0667,0,0,0,0 +0.667,0.719,0.371,0.299,0.573,0.9,0,0,0,0.113 +0.667,0.709,0.485,0.368,0.645,0.0667,0,0,0,0 +0.667,0.688,0.57,0.468,0.771,0.9,0,0,0,0.0378 +0.667,0.606,0.272,0.302,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.615,0.0634,0.287,0,0,0,0,0,0 +0.333,0.595,0.0462,0.169,0,0,0,0,0,0.302 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0.302 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.227 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0 +0.667,0.625,0.116,0.254,0,0,0,0,0,0.449 +0,0.566,0.0159,0.05,0,0,0,0,0,0.183 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.677,0.19,0.255,0,0,0,0,0,0.0378 +0.333,0.637,0.124,0.158,0,0,0,0,0.0667,0 +0.333,0.642,0.163,0.175,0,0,0,0,0.883,0.0378 +1,0.709,0.432,0.368,0,0,0,0,0,0.392 +1,0.749,0.791,0.677,0,0,0,0,0,0.0835 +0.667,0.646,0.505,0.554,0,0,0,0,0,0 +0.667,0.605,0.307,0.408,0,0,0,0,0,0 +0.667,0.569,0.0759,0.117,0,0,0,0,0,0 +0.667,0.564,0.0374,0.0749,0,0,0,0,0,0 +0.667,0.564,0.0236,0.0583,0,0,0,0,0,0 +0.667,0.564,0.0171,0.05,0,0,0,0,0,0 +0.667,0.564,0.0157,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.584,0.0474,0.23,0,0,0,0,0.0667,0.059 +0.667,0.59,0.0396,0.168,0,0,0,0,0.4,0.258 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.189 +0,0.566,0.0159,0.05,0,0,0,0,0,0.249 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.0378 +0.333,0.595,0.0629,0.156,0,0,0,0,0.0667,0.151 +0.333,0.595,0.0658,0.152,0,0,0,0,1,0.189 +0.667,0.625,0.13,0.251,0,0,0,0,1,0 +0.333,0.595,0.0767,0.15,0,0,0,0,0.333,0.189 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.054 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.054 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.0756 +0.667,0.719,0.31,0.299,0,0,0,0,0,0.113 +0.667,0.637,0.224,0.209,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.646,0.505,0.554,0,0,0,0,0,0.0852 +1,0.605,0.307,0.408,0,0,0,0,0,0.0653 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0186,0.0508,0,0,0,0,0,0.119 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.231 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.59,0.0396,0.168,0,0,0,0,0,0.0378 +0.667,0.595,0.0462,0.169,0,0,0.0419,0.0667,0,0 +0.667,0.595,0.0527,0.165,0,0,0.491,0.433,0,0.113 +0.667,0.595,0.0578,0.161,0,0,0,0,0,0.302 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.595,0.0658,0.152,0,0,0,0,0,0.163 +0.667,0.625,0.13,0.251,0,0,0,0,0,0.0756 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.227 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.264 +0.333,0.621,0.103,0.152,0,0,0,0,0.0667,0.189 +0.333,0.637,0.124,0.158,0,0,0,0,0.4,0 +0.333,0.642,0.163,0.175,0,0,0,0,0,0 +0.333,0.637,0.224,0.209,0,0,0,0,0,0 +0.667,0.688,0.532,0.468,0.406,0.567,0,0,0,0.147 +1,0.686,0.749,0.806,0.417,0.4,0,0,0,0.196 +1,0.605,0.307,0.408,0,0,0,0,0,0.176 +1,0.569,0.0759,0.117,0,0,0,0,0,0.0932 +1,0.564,0.0374,0.0749,0,0,0,0,0,0 +1,0.564,0.0236,0.0583,0,0,0,0,0,0.0378 +1,0.564,0.0171,0.05,0,0,0,0,0,0.151 +1,0.564,0.0157,0.05,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0236,0.0788,0,0,0,0,0,0.198 +1,0.575,0.0316,0.14,0,0,0,0,0.567,0.158 +0.667,0.615,0.0634,0.287,0,0,0,0,1,0.0889 +0.333,0.595,0.0462,0.169,0,0,0,0,0.833,0 +0.333,0.595,0.0527,0.165,0,0,0,0,0,0 +0.333,0.595,0.0578,0.161,0,0,0,0,0,0.0756 +0.333,0.595,0.0629,0.156,0,0,0,0,0,0.189 +0.333,0.595,0.0658,0.152,0,0,0,0,0,0.0378 +0.333,0.595,0.073,0.151,0,0,0,0,0,0.235 +0.333,0.595,0.0767,0.15,0,0,0,0,0,0.0886 +0.333,0.606,0.0846,0.151,0,0,0,0,0,0.0378 +0.333,0.621,0.103,0.152,0,0,0,0,0,0.0756 +0.333,0.637,0.124,0.158,0,0,0,0,0,0.0756 +0.333,0.642,0.163,0.175,0,0,0,0,0,0.0378 +0.333,0.637,0.224,0.209,0,0,0,0,0,0 +0.667,0.688,0.532,0.468,0,0,0,0,0,0.0646 +0.667,0.646,0.505,0.554,0,0,0,0,0,0.169 +1,0.624,0.453,0.588,0,0,0,0,0,0 +1,0.569,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.555,0.0406,0.165,0,0,0,0,0,0.228 +1,0.559,0.0473,0.163,0,0,0,0,0,0.195 +0.667,0.552,0.0923,0.266,0,0,0,0,0,0.189 +0.333,0.559,0.0593,0.154,0,0,0,0,0,0.189 +0.667,0.552,0.113,0.247,0,0,0,0,0,0.0756 +0.667,0.559,0.0676,0.145,0,0,0,0,0,0.151 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.151 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.581,0.106,0.145,0,0,0,0,0,0.165 +0.667,0.622,0.239,0.249,0,0,0,0,0,0.372 +0.667,0.598,0.168,0.162,0,0,0,0,0,0.0378 +0.667,0.622,0.446,0.331,0,0,0,0,0,0 +0.667,0.604,0.55,0.417,0.205,0.0667,0,0,0,0 +0.667,0.57,0.521,0.505,0.419,0.867,0,0,0,0.266 +0.667,0.55,0.167,0.221,0,0,0,0,0,0.0735 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +1,0.546,0.16,0.39,0,0,0,0,0,0.151 +1,0.546,0.212,0.374,0,0,0.166,0.0667,0.0667,0 +1,0.546,0.252,0.362,0,0,0.389,0.683,0.4,0.0378 +0.667,0.552,0.191,0.247,0,0,0.618,0,0,0 +0.667,0.552,0.204,0.239,0,0,0.433,0,0,0.113 +0.667,0.552,0.24,0.237,0,0,0.611,0,0,0.0378 +1,0.546,0.401,0.33,0,0,0.302,0,0,0.0756 +0.667,0.57,0.3,0.237,0,0,0,0,0,0.0378 +0.667,0.596,0.315,0.24,0,0,0,0,0,0.113 +0.667,0.622,0.326,0.249,0,0,0,0,0,0.224 +1,0.663,0.565,0.388,0,0,0,0,0,0.358 +1,0.65,0.743,0.471,0,0,0,0,0,0 +0.667,0.604,0.588,0.417,0,0,0,0,0,0.0563 +1,0.572,0.806,0.733,0,0,0,0,0,0.0563 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0.0667,0.151 +0.667,0.544,0.0706,0.279,0,0,0,0,0.4,0 +0.667,0.552,0.113,0.277,0,0,0,0,0,0 +0.333,0.559,0.0826,0.158,0.417,0.567,0,0,0,0.0756 +0.333,0.559,0.0961,0.154,0.844,0.367,0,0,0,0.0988 +0.333,0.559,0.104,0.149,0.385,0,0,0,0,0.0756 +0.333,0.559,0.111,0.145,0,0,0,0,0,0.0378 +0.333,0.559,0.129,0.144,0,0,0,0,0,0.0756 +0.333,0.559,0.146,0.143,0,0,0,0,0,0.264 +0.333,0.568,0.159,0.144,0,0,0,0,0,0.0756 +0.333,0.581,0.167,0.145,0,0,0,0,0,0 +0.333,0.594,0.172,0.149,0,0,0,0,0.0667,0.218 +0.667,0.63,0.383,0.275,0,0,0,0,0.4,0.378 +0.667,0.622,0.501,0.331,0,0,0,0,0,0.224 +0.667,0.604,0.588,0.417,0,0,0,0,0,0.166 +0.667,0.57,0.543,0.505,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.518,0.0488,0.224,0,0,0,0,0.0667,0.591 +1,0.544,0.0653,0.279,0,0,0,0,0.167,0.363 +0.667,0.559,0.0473,0.163,0,0,0,0,0,0.247 +0.667,0.552,0.0923,0.266,0,0,0,0,0,0.404 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0.113 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.0378 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.378 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.0756 +0.333,0.581,0.106,0.145,0,0,0,0,0,0 +0.333,0.594,0.128,0.149,0,0,0,0,0,0.0378 +0.667,0.63,0.32,0.275,0,0,0,0,0,0.087 +0.667,0.622,0.446,0.331,0.539,0.567,0,0,0,0 +0.667,0.604,0.55,0.417,0.374,0.367,0,0,0,0.0579 +0.667,0.568,0.269,0.278,0,0,0,0,0,0 +0.667,0.55,0.167,0.221,0,0,0,0,0,0.206 +1,0.509,0.14,0.184,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.552,0.0923,0.266,0.579,0.817,0,0,0,0.383 +0.333,0.559,0.0593,0.154,0,0.117,0,0,0,0.222 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0.325 +0.667,0.552,0.119,0.239,0,0,0,0,0,0.0378 +0.667,0.552,0.134,0.237,0,0,0,0,0,0.151 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.084 +0.333,0.594,0.231,0.19,0,0,0,0,0,0.0756 +0.667,0.604,0.55,0.417,0,0,0,0,0.233,0.0378 +0.667,0.57,0.521,0.505,0,0,0.0785,0.0667,0,0.0756 +0.667,0.535,0.317,0.392,0,0,0.424,0.433,0,0 +1,0.481,0.203,0.252,0,0,0.272,0,0,0 +1,0.533,0.0383,0.0749,0,0,0.361,0,0,0 +1,0.533,0.0241,0.0583,0,0,0.321,0,0,0 +1,0.533,0.0173,0.05,0,0,0.0183,0,0,0.132 +1,0.533,0.0158,0.05,0,0,0,0,0,0.48 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.137,0,0,0,0,0,0.271 +0.667,0.555,0.0406,0.165,0,0,0,0,0,0.259 +0.667,0.559,0.0473,0.163,0,0,0,0,0,0.182 +1,0.546,0.131,0.374,0,0,0,0,0,0.412 +0.667,0.552,0.103,0.258,0,0,0,0,0,0.509 +0.667,0.552,0.113,0.247,0,0,0,0,0,0.18 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0.34 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.0756 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.0756 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.244 +0,0.566,0.0159,0.05,0,0,0,0,0,0.184 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.585,0.283,0.234,0,0,0,0,0,0 +0.333,0.568,0.269,0.278,0,0,0,0,0,0.151 +0.667,0.55,0.167,0.221,0,0,0,0,0,0 +0.667,0.537,0.0781,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.559,0.0473,0.163,0,0,0,0,0,0.113 +0.667,0.559,0.0541,0.158,0.141,0.0667,0,0,0,0.113 +0.667,0.552,0.103,0.258,0.579,0.867,0,0,0,0.307 +0.667,0.552,0.113,0.247,0.624,0,0,0,0,0.0847 +0.667,0.552,0.119,0.239,0.758,0,0,0,0,0.0378 +0.333,0.559,0.0751,0.144,0.511,0,0.317,0.317,0,0.113 +0.333,0.559,0.0789,0.143,0.517,0,0,0.183,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0.189 +0.333,0.581,0.106,0.145,0,0,0,0,0,0.113 +0.333,0.594,0.128,0.149,0,0,0,0,0,0.227 +0.333,0.598,0.168,0.162,0,0,0,0,0,0.151 +0.333,0.594,0.231,0.19,0,0,0,0,0.317,0.189 +0.667,0.604,0.55,0.417,0,0,0,0,1,0 +0.667,0.568,0.269,0.278,0,0,0,0,1,0.0378 +0.667,0.55,0.167,0.221,0,0,0,0,0.35,0 +1,0.509,0.14,0.184,0,0,0,0,0.4,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.555,0.0406,0.165,0,0,0,0,0,0.266 +1,0.552,0.0788,0.277,0,0,0,0,0,0.45 +1,0.546,0.131,0.374,0,0,0,0,0,0.21 +1,0.546,0.146,0.362,0,0,0,0,0,0.13 +1,0.546,0.162,0.346,0,0,0,0,0,0.106 +1,0.552,0.119,0.239,0,0,0,0,0,0.303 +0.667,0.559,0.0751,0.144,0,0,0,0,0,0.144 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.295 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.648 +0.333,0.581,0.106,0.145,0,0,0,0,0,0 +0.333,0.594,0.128,0.149,0,0,0,0,0,0.189 +0.333,0.598,0.168,0.162,0,0,0,0,0,0 +0.333,0.594,0.231,0.19,0,0,0,0,0,0.0378 +0.333,0.585,0.283,0.234,0,0,0,0,0,0.151 +0.333,0.568,0.269,0.278,0,0,0,0,0,0.0378 +0.667,0.535,0.317,0.392,0,0,0,0,0,0 +0.667,0.537,0.0781,0.117,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.555,0.0444,0.165,0,0,0,0,0,0.113 +1,0.552,0.113,0.277,0,0,0,0,0,0 +0.667,0.552,0.147,0.266,0,0,0,0,0,0 +0.667,0.552,0.174,0.258,0,0,0,0,0,0.332 +0.333,0.559,0.104,0.149,0,0,0,0,0,0 +0.333,0.559,0.111,0.145,0,0,0,0,0,0.151 +0.333,0.559,0.129,0.144,0,0,0,0,0,0.113 +0.333,0.559,0.146,0.143,0,0,0,0,0,0.416 +0.333,0.566,0.0181,0.05,0,0,0,0,0.233,0.227 +0.667,0.596,0.315,0.24,0,0,0,0,0,0 +0.667,0.622,0.326,0.249,0,0,0,0,0,0.189 +0.667,0.63,0.383,0.275,0.306,0.0667,0,0,0,0.264 +0.667,0.622,0.501,0.331,0.746,0.867,0,0,0,0.0378 +0.667,0.604,0.588,0.417,0.545,0,0,0,0,0.0625 +0.667,0.568,0.281,0.278,0.564,0,0,0,0,0 +0.667,0.55,0.182,0.221,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.137 +1,0.555,0.0444,0.165,0,0,0,0,0,0.217 +1,0.559,0.0654,0.163,0,0,0,0,0,0.0756 +0.667,0.559,0.0826,0.158,0,0,0,0,0.567,0.189 +0.667,0.552,0.174,0.258,0,0,0,0,0.367,0 +0.667,0.552,0.191,0.247,0,0,0,0,0,0.113 +0.667,0.552,0.204,0.239,0,0,0,0,0.233,0 +0.667,0.552,0.24,0.237,0.617,0.817,0,0,0,0.0378 +0.667,0.552,0.273,0.237,0,0.117,0,0,0,0.0378 +0.333,0.568,0.159,0.144,0,0,0,0,0,0.453 +0.333,0.581,0.167,0.145,0,0,0,0,0,0.189 +0.333,0.594,0.172,0.149,0,0,0,0,0,0.0378 +0.333,0.598,0.2,0.162,0,0,0,0,0,0.264 +0.667,0.622,0.501,0.331,0,0,0,0,0.567,0.113 +0.667,0.585,0.303,0.234,0,0,0,0,0.367,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.552,0.0788,0.277,0,0,0,0,0,0.0567 +1,0.552,0.0923,0.266,0,0,0,0,0,0.288 +1,0.552,0.103,0.258,0,0,0,0,0,0.253 +0.667,0.559,0.0646,0.149,0,0,0,0,0,0.495 +1,0.546,0.171,0.334,0.521,0.567,0,0,0,0.212 +0.667,0.552,0.134,0.237,0.821,0.367,0,0,0,0.239 +0.667,0.552,0.142,0.237,0.59,0,0,0,0,0.302 +0.667,0.57,0.158,0.237,0,0,0,0,0,0.264 +0.667,0.596,0.196,0.24,0,0,0,0,0,0.0756 +0.667,0.622,0.239,0.249,0,0,0,0,0,0.0378 +0.667,0.63,0.32,0.275,0,0,0,0,0.0667,0.0378 +0.667,0.622,0.446,0.331,0,0,0,0,0.4,0.0756 +0.667,0.604,0.55,0.417,0,0,0,0,0,0.4 +0.667,0.57,0.521,0.505,0,0,0,0,0,0.121 +0.667,0.535,0.317,0.392,0,0,0,0,0,0.215 +0.667,0.537,0.0781,0.117,0,0,0,0,0,0 +0.667,0.533,0.0383,0.0749,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0587 +0.667,0.555,0.0406,0.165,0,0,0,0,0,0.135 +1,0.552,0.0788,0.277,0,0,0,0,0,0.17 +0.667,0.552,0.0923,0.266,0,0,0.0916,0.317,0.817,0.229 +0.667,0.552,0.103,0.258,0,0,0.215,0.433,0.117,0.0756 +0.667,0.552,0.113,0.247,0,0,0.817,0,0,0.0378 +0.667,0.552,0.119,0.239,0,0,0.293,0,0,0.0378 +0.333,0.559,0.0751,0.144,0,0,0.41,0,0,0.0378 +0.333,0.559,0.0789,0.143,0,0,0.346,0,0,0.0756 +0.333,0.568,0.0871,0.144,0,0,0.171,0,0.0667,0.227 +0.333,0.581,0.106,0.145,0,0,0,0,0.867,0.0378 +0.333,0.594,0.128,0.149,0,0,0,0,0,0.0756 +0.333,0.598,0.168,0.162,0,0,0,0,0,0.217 +0.667,0.622,0.446,0.331,0,0,0,0,0,0.0756 +0.667,0.604,0.55,0.417,0,0,0,0,0,0.264 +0.667,0.568,0.269,0.278,0,0,0,0,0,0.14 +1,0.535,0.317,0.392,0,0,0,0,0,0.202 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0.0667,0 +1,0.533,0.0241,0.0583,0,0,0,0,0.4,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0572 +1,0.518,0.0488,0.224,0,0,0,0,0,0.324 +0.667,0.555,0.0406,0.165,0,0,0,0,0.467,0.182 +0.667,0.559,0.0473,0.163,0,0,0,0,0,0.0756 +0.667,0.559,0.0541,0.158,0,0,0,0,0,0.133 +0.333,0.559,0.0593,0.154,0,0,0,0,0,0.346 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0.109 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0.302 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.227 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.0756 +0.667,0.57,0.158,0.237,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.57,0.521,0.505,0,0,0,0,0,0.181 +1,0.535,0.317,0.392,0,0,0,0,0,0.309 +1,0.537,0.0781,0.117,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.133 +1,0.546,0.11,0.39,0,0,0,0,0,0.354 +0.667,0.552,0.0923,0.266,0,0,0,0,0,0.0756 +0.667,0.552,0.103,0.258,0,0,0,0,0,0 +0.667,0.552,0.113,0.247,0,0,0,0,0,0.0378 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0.0756 +0.667,0.552,0.134,0.237,0,0,0,0,0,0.529 +0.667,0.552,0.142,0.237,0,0,0,0,0.467,0.212 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.0378 +0.333,0.581,0.106,0.145,0,0,0,0,0,0 +0.333,0.594,0.128,0.149,0,0,0,0,0,0.416 +0.333,0.598,0.168,0.162,0,0,0,0,0,0.0756 +0.333,0.594,0.231,0.19,0,0,0,0,0,0.0756 +0.333,0.585,0.283,0.234,0,0,0,0,0,0.27 +0.333,0.568,0.269,0.278,0,0,0.204,0.75,0,0.0578 +0.667,0.55,0.167,0.221,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0241,0.0775,0,0,0,0,0,0.28 +1,0.494,0.0653,0.311,0.496,0.567,0,0,0.233,0.0949 +0.667,0.544,0.0653,0.279,0,0.367,0,0,0.567,0.297 +0.667,0.552,0.0788,0.277,0,0,0,0,0.7,0.495 +0.667,0.552,0.0923,0.266,0,0,0,0,0.133,0.133 +0.333,0.559,0.0593,0.154,0,0,0,0,0,0.186 +0.333,0.559,0.0646,0.149,0,0,0,0,0.567,0.105 +0.333,0.559,0.0676,0.145,0,0,0,0,0.367,0.226 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.302 +0.333,0.559,0.0789,0.143,0,0,0,0,0.467,0.0378 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.0756 +0.333,0.581,0.106,0.145,0,0,0,0,0.467,0.227 +0.667,0.622,0.239,0.249,0,0,0,0,0,0.0378 +0.333,0.598,0.168,0.162,0,0,0,0,0,0.0378 +0.333,0.594,0.231,0.19,0,0,0,0,0,0.0378 +0.333,0.585,0.283,0.234,0,0,0,0,0,0.151 +0.667,0.568,0.269,0.278,0,0,0,0,0,0 +0.667,0.55,0.167,0.221,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0881 +1,0.542,0.0301,0.137,0,0,0,0,0,0.161 +0.667,0.555,0.0444,0.165,0,0,0,0,0,0 +0.333,0.559,0.0654,0.163,0,0,0,0,0.467,0.302 +0.333,0.559,0.0826,0.158,0,0,0,0,0,0.187 +0.667,0.552,0.174,0.258,0,0,0,0,0,0.113 +0.333,0.559,0.104,0.149,0,0,0,0,0,0.184 +0.333,0.559,0.111,0.145,0,0,0,0,0,0.208 +0.333,0.559,0.129,0.144,0,0,0,0,0.0667,0.355 +0.333,0.559,0.146,0.143,0,0,0,0,0.4,0.113 +0.667,0.57,0.3,0.237,0,0,0.136,0.317,0,0.264 +0.333,0.581,0.167,0.145,0,0,0,0.95,0,0 +0.667,0.622,0.326,0.249,0,0,0.0563,0,0,0 +0.667,0.63,0.383,0.275,0,0,0.139,0,0.317,0.0378 +0.667,0.622,0.501,0.331,0,0,0,0,0.15,0 +0.667,0.604,0.588,0.417,0,0,0,0,0,0 +0.667,0.57,0.543,0.505,0,0,0,0,0,0.114 +0.667,0.55,0.182,0.221,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0549 +1,0.533,0.0226,0.0775,0,0,0,0,0,0.0137 +0.667,0.542,0.0301,0.137,0,0,0,0,0,0.264 +0.333,0.555,0.0444,0.165,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +0.333,0.559,0.104,0.149,0,0,0,0,0,0.0756 +0.333,0.559,0.111,0.145,0,0,0,0,0,0.0378 +0.333,0.559,0.129,0.144,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +0.667,0.57,0.3,0.237,0,0,0,0,0,0.0756 +0.667,0.596,0.315,0.24,0,0,0,0,0.317,0.0378 +0.667,0.622,0.326,0.249,0,0,0,0,0.15,0.0756 +0.667,0.63,0.383,0.275,0,0,0,0,0,0.189 +0.667,0.622,0.501,0.331,0,0,0,0,0,0.0756 +0.667,0.604,0.588,0.417,0,0,0,0,0,0.0378 +0.667,0.57,0.543,0.505,0,0,0,0,0,0.0567 +0.667,0.535,0.345,0.392,0,0,0,0,0,0.103 +0.667,0.537,0.0894,0.117,0,0,0,0,0,0.0738 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0682 +1,0.533,0.09,0.394,0,0,0,0,0.567,0.385 +0.333,0.559,0.0473,0.163,0,0,0,0,0.133,0.263 +0.333,0.559,0.0541,0.158,0,0,0,0,0,0.231 +0.333,0.559,0.0593,0.154,0,0,0,0,0,0.188 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0.276 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.559,0.0789,0.143,0,0,0,0,0,0.0378 +0.667,0.568,0.0871,0.144,0,0,0,0,0,0.227 +0.667,0.581,0.106,0.145,0,0,0,0,0,0.264 +0.667,0.594,0.128,0.149,0,0,0,0,0,0 +0.667,0.63,0.32,0.275,0,0,0,0,0,0.308 +0.667,0.622,0.446,0.331,0,0,0,0,0,0.577 +0.667,0.604,0.55,0.417,0,0,0,0,0,0.104 +0.667,0.57,0.521,0.505,0,0,0.493,0.567,0,0 +0.667,0.535,0.317,0.392,0,0,0.37,0.183,0,0.0756 +0.667,0.509,0.14,0.184,0,0,0.408,0,0,0 +0.667,0.533,0.0383,0.0749,0,0,0.438,0,0,0.264 +0.667,0.533,0.0241,0.0583,0,0,0.475,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0.0942,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0241,0.0775,0,0,0,0,0,0.477 +0.667,0.542,0.0323,0.137,0,0,0,0,0,0.221 +0.667,0.544,0.0653,0.279,0,0,0,0,0,0.323 +0.333,0.559,0.0473,0.163,0,0,0,0,0,0.331 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.559,0.0593,0.154,0,0,0.433,0.75,0,0 +0.333,0.559,0.0646,0.149,0,0,0.377,0,0,0.0756 +0.667,0.552,0.119,0.239,0,0,0.399,0,0,0.189 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.622,0.239,0.249,0,0,0,0,0,0.292 +1,0.663,0.473,0.388,0,0,0,0,0,0.344 +1,0.65,0.662,0.471,0.291,0.317,0,0,0,0 +1,0.624,0.817,0.601,0.231,0.85,0,0,0,0.0817 +1,0.572,0.774,0.733,0,0,0,0,0.0667,0 +0.667,0.535,0.317,0.392,0,0,0,0,0.167,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0.0692 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0801 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.137,0,0,0,0,0,0.322 +1,0.555,0.0406,0.165,0,0,0,0,0,0.19 +1,0.559,0.0473,0.163,0,0,0,0,0,0.349 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.559,0.0593,0.154,0,0,0,0,0,0 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0.0756 +0.333,0.559,0.0676,0.145,0,0,0,0,0.567,0 +0.333,0.559,0.0751,0.144,0,0,0.438,0.567,0.367,0.0756 +0.667,0.552,0.142,0.237,0,0,0.34,0.183,0,0.185 +0.333,0.568,0.0871,0.144,0,0,0.514,0,0,0.227 +0.333,0.581,0.106,0.145,0.402,0.567,0.0759,0,0,0.189 +0.333,0.594,0.128,0.149,0.726,0.367,0,0,0,0.0756 +0.333,0.598,0.168,0.162,0.598,0,0.113,0.0667,0,0.113 +0.333,0.594,0.231,0.19,0,0,0.135,1,0,0.212 +0.333,0.585,0.283,0.234,0,0,0,0.45,0,0.219 +0.667,0.568,0.269,0.278,0,0,0,0,0,0 +0.667,0.55,0.167,0.221,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.544,0.0653,0.279,0,0,0,0,0,0.189 +0.667,0.552,0.0788,0.277,0,0,0,0,0,0.351 +0.333,0.559,0.0541,0.158,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.227 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.151 +0.333,0.581,0.106,0.145,0,0,0,0,0,0.113 +0.667,0.622,0.239,0.249,0,0,0,0,0.0667,0.0756 +0.667,0.63,0.32,0.275,0,0,0,0,0.633,0.0756 +0.667,0.622,0.446,0.331,0,0,0,0,0,0.0378 +0.333,0.585,0.283,0.234,0,0,0,0,0,0 +0.667,0.57,0.521,0.505,0,0,0,0,0,0.128 +0.667,0.535,0.317,0.392,0,0,0,0,0,0.102 +1,0.537,0.0781,0.117,0,0,0,0,0,0.124 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.544,0.0653,0.279,0,0,0,0,0,0.322 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.132 +0,0.566,0.0159,0.05,0,0,0,0,0,0.482 +0.333,0.559,0.0676,0.145,0,0,0,0,0.0667,0.181 +0.667,0.552,0.134,0.237,0,0,0,0,0.4,0.168 +0.667,0.552,0.142,0.237,0,0,0,0,0.0667,0.228 +0.667,0.57,0.158,0.237,0,0,0,0,0.167,0.276 +0.333,0.581,0.106,0.145,0,0,0,0,0,0.237 +0.667,0.622,0.239,0.249,0,0,0,0,0.567,0.27 +0.667,0.63,0.32,0.275,0,0,0,0,0.133,0.265 +0.667,0.622,0.446,0.331,0,0,0,0,0,0 +0.667,0.604,0.55,0.417,0,0,0,0,0,0 +0.667,0.57,0.521,0.505,0,0,0,0,0,0.305 +0.667,0.55,0.167,0.221,0,0,0,0,0,0.0779 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.137 +0.667,0.555,0.0444,0.165,0,0,0,0,0,0.463 +0.667,0.559,0.0654,0.163,0,0,0,0,0,0.284 +0.667,0.559,0.0826,0.158,0,0,0,0,0.567,0.0556 +0.667,0.552,0.174,0.258,0,0,0,0,0.367,0.302 +0.667,0.552,0.191,0.247,0,0,0,0,0,0.158 +0.333,0.559,0.111,0.145,0,0,0,0,0.233,0 +0.333,0.559,0.129,0.144,0,0,0,0,0,0.113 +0.333,0.559,0.146,0.143,0,0,0,0,0,0.113 +0.667,0.568,0.159,0.144,0,0,0,0,0,0.0756 +0.667,0.581,0.167,0.145,0,0,0,0,0,0.113 +0.667,0.594,0.172,0.149,0.333,0.317,0,0,0,0.0756 +0.667,0.63,0.383,0.275,0.758,0.617,0,0,0,0 +0.667,0.622,0.501,0.331,0.442,0,0,0,0,0.0378 +0.667,0.604,0.588,0.417,0,0,0,0,0,0.0756 +0.667,0.568,0.281,0.278,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.537,0.0894,0.117,0,0,0,0,0,0 +1,0.533,0.0451,0.0749,0,0,0,0,0,0.0756 +1,0.533,0.0286,0.0583,0,0,0,0,0,0 +1,0.533,0.0211,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.237 +0.667,0.552,0.113,0.277,0,0,0,0,0,0.262 +0.667,0.552,0.147,0.266,0,0,0,0,0,0.302 +0.333,0.559,0.0961,0.154,0,0,0,0,0,0.151 +0.333,0.559,0.104,0.149,0,0,0,0,0,0.113 +0.333,0.559,0.111,0.145,0,0,0,0,0,0.113 +0.333,0.559,0.129,0.144,0,0,0,0,0,0.0378 +0.333,0.559,0.146,0.143,0,0,0,0,0,0.0756 +0.333,0.568,0.159,0.144,0,0,0,0,0.317,0.0756 +0.667,0.596,0.315,0.24,0,0,0,0,0.15,0.174 +1,0.65,0.479,0.348,0,0,0,0,0,0.496 +1,0.663,0.565,0.388,0,0,0.178,0.317,0,0.135 +1,0.65,0.743,0.471,0,0,0.607,0.433,0,0.163 +0.667,0.604,0.588,0.417,0,0,0.312,0,0,0 +0.667,0.568,0.281,0.278,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0.151 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.137,0,0,0,0,0,0.29 +1,0.544,0.0653,0.279,0,0,0,0,0,0.473 +0.667,0.559,0.0473,0.163,0,0,0,0,0,0.385 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.113 +0.333,0.559,0.0593,0.154,0,0,0,0,0,0.0378 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0.0378 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.0378 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.113 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.0756 +0.333,0.581,0.106,0.145,0,0,0,0,0,0.227 +0.333,0.594,0.128,0.149,0,0,0,0,0,0.227 +0.333,0.598,0.168,0.162,0,0,0,0,0,0.0378 +0.333,0.594,0.231,0.19,0,0,0,0,0,0.113 +0.333,0.585,0.283,0.234,0,0,0,0,0,0.166 +0.667,0.568,0.269,0.278,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.555,0.0406,0.165,0,0,0,0,0,0 +0.667,0.559,0.0473,0.163,0,0,0,0,0,0.265 +0.667,0.559,0.0541,0.158,0,0,0,0,0,0.417 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0539 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.552,0.119,0.239,0,0,0,0,0,0.151 +0.667,0.552,0.134,0.237,0,0,0,0,0,0.254 +0.667,0.552,0.142,0.237,0,0,0,0,0,0.248 +0.667,0.57,0.158,0.237,0,0,0,0,0,0.113 +0.333,0.581,0.106,0.145,0,0,0,0,0.0667,0.0756 +0.667,0.622,0.239,0.249,0,0,0,0,0.167,0.173 +0.667,0.63,0.32,0.275,0,0,0,0,0,0.302 +0.333,0.594,0.231,0.19,0,0,0,0,0,0 +0.667,0.585,0.283,0.234,0,0,0,0,0,0.0756 +0.667,0.568,0.269,0.278,0,0,0,0,0,0.0756 +0.667,0.55,0.167,0.221,0,0,0,0,0.317,0 +1,0.537,0.0781,0.117,0,0,0,0,0.617,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.555,0.0406,0.165,0,0,0,0,0,0.154 +0.667,0.552,0.0788,0.277,0,0,0.204,0.317,0.317,0.311 +0.667,0.552,0.0923,0.266,0,0,0.268,0.183,0.15,0.0756 +0.667,0.552,0.103,0.258,0,0,0.459,0,0,0.189 +0.667,0.552,0.113,0.247,0,0,0,0,0,0.0756 +0.667,0.552,0.119,0.239,0,0,0,0,0,0.0756 +0.667,0.552,0.134,0.237,0,0,0,0,0,0.0378 +0.667,0.559,0.0789,0.143,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0.0667,0.0756 +0.333,0.598,0.168,0.162,0,0,0,0,0.867,0.302 +0.667,0.622,0.446,0.331,0.485,0.567,0,0,0,0.0756 +0.667,0.604,0.55,0.417,0.167,0.367,0,0,0,0 +0.667,0.57,0.521,0.505,0,0,0,0,0,0 +1,0.52,0.468,0.563,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0241,0.0775,0,0,0,0,0,0.213 +1,0.542,0.0323,0.137,0,0,0,0,0,0.22 +1,0.544,0.0653,0.279,0,0,0,0,0,0.207 +0.667,0.552,0.0788,0.277,0,0,0,0,0.233,0.348 +0.333,0.559,0.0541,0.158,0.677,0.817,0,0,0,0.0378 +0.333,0.559,0.0593,0.154,0,0.117,0,0,0.467,0.264 +0.333,0.559,0.0646,0.149,0,0,0,0,0,0.113 +0.333,0.559,0.0676,0.145,0,0,0,0,0,0 +0.333,0.559,0.0751,0.144,0,0,0,0,0,0.0756 +0.333,0.559,0.0789,0.143,0,0,0,0,0,0.0378 +0.333,0.568,0.0871,0.144,0,0,0,0,0,0.151 +0.333,0.581,0.106,0.145,0,0,0,0,0,0.0378 +0.333,0.594,0.128,0.149,0,0,0,0,0.233,0.0378 +0.667,0.63,0.32,0.275,0,0,0,0,0,0.155 +0.333,0.594,0.231,0.19,0,0,0,0,0,0 +0.333,0.585,0.283,0.234,0,0,0,0,0,0 +0.667,0.57,0.521,0.505,0,0,0,0,0,0 +0.667,0.55,0.167,0.221,0,0,0,0,0,0 +0.667,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.555,0.0406,0.165,0,0,0,0,0,0.25 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.1 +0.667,0.559,0.0541,0.158,0,0,0,0,0,0.0756 +0.667,0.559,0.0593,0.154,0,0,0,0,0,0.113 +0.667,0.559,0.0646,0.149,0.22,0.317,0,0,0,0 +0.667,0.552,0.119,0.239,0.303,0.617,0,0,0.567,0.113 +1,0.546,0.194,0.331,0.229,0.0667,0,0,0.133,0.227 +1,0.546,0.205,0.33,0.831,0.867,0,0,0,0.113 +0.667,0.57,0.158,0.237,0.654,0,0,0,0,0.0378 +0.667,0.596,0.196,0.24,0.12,0,0,0,0,0.34 +0.667,0.622,0.239,0.249,0,0,0,0,0,0.113 +0.333,0.598,0.168,0.162,0,0,0,0,0,0 +0.667,0.622,0.446,0.331,0,0,0,0,0,0.151 +0.667,0.604,0.55,0.417,0,0,0,0,0,0.0756 +1,0.57,0.521,0.505,0,0,0,0,0,0.0756 +1,0.55,0.167,0.221,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +1,0.555,0.0444,0.165,0,0,0,0,0,0.125 +1,0.559,0.0654,0.163,0,0,0,0,0,0.422 +1,0.552,0.147,0.266,0,0,0,0,0,0.0556 +1,0.552,0.174,0.258,0,0,0,0,0,0.159 +1,0.552,0.191,0.247,0,0,0,0,0,0.209 +1,0.552,0.204,0.239,0,0,0,0,0.0667,0.208 +0.667,0.552,0.24,0.237,0,0,0,0,0.4,0.367 +0.667,0.552,0.273,0.237,0,0,0,0,0,0.113 +0.667,0.57,0.3,0.237,0,0,0,0,0,0.318 +0.667,0.596,0.315,0.24,0,0,0,0,0,0.182 +0.333,0.594,0.172,0.149,0,0,0,0,0.0667,0.0756 +0.667,0.63,0.383,0.275,0,0,0,0,0.4,0.0756 +0.667,0.622,0.501,0.331,0,0,0,0,0,0 +0.667,0.604,0.588,0.417,0,0,0,0,0,0 +1,0.57,0.543,0.505,0,0,0,0,0,0 +1,0.55,0.182,0.221,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.553,0.0444,0.163,0,0,0,0,0,0.0756 +0.667,0.55,0.113,0.273,0,0,0.034,0.15,0,0.123 +0.667,0.55,0.148,0.26,0.342,0.4,0.567,0.633,0,0.274 +0.667,0.55,0.175,0.253,0.141,0.517,0.399,0,0,0.0378 +0.667,0.55,0.191,0.242,0,0,0.487,0,0,0 +1,0.542,0.298,0.327,0,0,0.327,0,0.65,0.113 +1,0.542,0.352,0.323,0,0,0.288,0,1,0.374 +1,0.542,0.402,0.323,0,0,0.253,0,0.683,0.268 +0.333,0.566,0.16,0.141,0,0,0,0,0,0.189 +0.667,0.593,0.316,0.235,0,0,0,0,0,0.151 +0.667,0.619,0.327,0.244,0,0,0,0,0,0.0756 +0.667,0.627,0.384,0.271,0,0,0,0,0,0.0378 +0.667,0.619,0.503,0.327,0,0,0,0,0,0.174 +0.667,0.601,0.59,0.413,0,0,0,0,0,0.384 +1,0.567,0.545,0.501,0,0,0,0,0,0.219 +1,0.549,0.182,0.22,0,0,0,0,0,0.132 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0435 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.187 +1,0.529,0.0903,0.39,0,0,0,0,0,0.484 +1,0.542,0.111,0.384,0,0,0,0,0,0.401 +1,0.542,0.131,0.366,0,0,0,0,0,0.308 +0.667,0.55,0.103,0.253,0,0,0,0,0.233,0.177 +0.333,0.558,0.0648,0.146,0,0,0,0,0,0.126 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.0378 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.113 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.151 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.34 +0.333,0.592,0.128,0.147,0,0,0,0,0.0667,0 +0.333,0.596,0.169,0.16,0,0,0,0,1,0.0756 +0.667,0.619,0.448,0.327,0.462,0.567,0,0,1,0.0378 +1,0.619,0.82,0.595,0.158,0.35,0,0,0.267,0.221 +0.667,0.566,0.269,0.276,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0241,0.077,0,0,0,0,0,0.314 +1,0.515,0.0489,0.222,0,0,0,0,0,0.185 +0.667,0.541,0.0655,0.276,0,0,0,0,0.233,0.144 +0.333,0.558,0.0475,0.161,0,0,0,0,0,0.2 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.272 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0648,0.146,0,0,0,0,0.0667,0.0756 +0.333,0.558,0.0678,0.142,0,0,0,0,0.167,0.113 +0.667,0.55,0.135,0.232,0,0,0,0,0,0.0378 +0.667,0.55,0.142,0.232,0,0,0,0,0,0.113 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0 +0.667,0.593,0.196,0.235,0,0,0,0,0,0.264 +0.667,0.619,0.24,0.244,0,0,0,0,0,0 +0.667,0.627,0.321,0.271,0,0,0,0,0,0.146 +0.333,0.592,0.232,0.188,0,0,0,0,0,0 +0.333,0.583,0.284,0.232,0,0,0,0,0,0.0536 +0.667,0.567,0.523,0.501,0,0,0,0,0,0 +0.667,0.533,0.318,0.389,0,0,0,0,0,0.0582 +0.667,0.536,0.0783,0.117,0,0,0,0,0,0.169 +0.667,0.532,0.0384,0.0749,0,0,0,0,0,0.33 +0.667,0.532,0.0241,0.0583,0,0,0,0,0,0 +1,0.498,0.0188,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0189,0.0504,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.54,0.0324,0.136,0,0,0,0,0.0667,0.228 +0.333,0.566,0.0159,0.05,0,0,0,0,0.167,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.0756 +0.667,0.55,0.103,0.253,0,0,0,0,0.817,0.113 +0.667,0.55,0.114,0.242,0,0,0,0,1,0.384 +0.667,0.55,0.12,0.234,0,0,0,0,0.517,0.276 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.264 +0.667,0.567,0.159,0.232,0,0,0,0,0,0.0756 +0.667,0.593,0.196,0.235,0,0,0,0,0,0.264 +0.333,0.592,0.128,0.147,0,0,0,0,0.567,0.0378 +0.667,0.627,0.321,0.271,0,0,0,0,1,0.0756 +0.333,0.592,0.232,0.188,0,0,0,0,1,0.113 +0.667,0.601,0.552,0.413,0,0,0,0,0,0 +0.667,0.567,0.523,0.501,0,0,0,0,0.317,0 +0.667,0.533,0.318,0.389,0,0,0,0,0.15,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.515,0.0489,0.222,0,0,0,0,0,0 +1,0.529,0.0903,0.39,0,0,0,0,0,0.296 +0.667,0.55,0.079,0.273,0,0,0,0,0,0.232 +0.667,0.55,0.0926,0.26,0,0,0,0,0,0.096 +1,0.542,0.147,0.354,0,0,0,0,0,0.17 +0.667,0.55,0.114,0.242,0,0,0,0,0,0.25 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0.302 +0.667,0.55,0.135,0.232,0,0,0,0,0,0.302 +0.667,0.55,0.142,0.232,0,0,0.136,0.567,0,0 +0.667,0.567,0.159,0.232,0,0,0.555,0.467,0,0.264 +0.667,0.593,0.196,0.235,0,0,0.603,0,0.233,0.0378 +1,0.645,0.352,0.341,0,0,0,0,0,0.113 +0.667,0.627,0.321,0.271,0,0,0,0,0,0.0756 +0.667,0.619,0.448,0.327,0,0,0,0,0,0.0378 +0.667,0.601,0.552,0.413,0,0,0,0,0,0.0592 +0.667,0.567,0.523,0.501,0,0,0,0,0,0.097 +1,0.533,0.318,0.389,0,0,0,0,0,0 +1,0.536,0.0783,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0324,0.136,0,0,0,0,0.467,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.558,0.0542,0.155,0,0,0,0,0,0.197 +0.667,0.558,0.0595,0.151,0,0,0,0,0,0.322 +0.667,0.558,0.0648,0.146,0,0,0,0,0.317,0.151 +0.333,0.566,0.0159,0.05,0,0,0,0,0.15,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0.0196,0.317,0,0.0756 +0.333,0.579,0.106,0.142,0,0,0.385,1,0,0.264 +0.333,0.592,0.128,0.147,0,0,0.504,0.25,0,0.0378 +0.333,0.596,0.169,0.16,0,0,0.463,0,0,0 +0.333,0.592,0.232,0.188,0,0,0.546,0,0,0.0378 +0.667,0.601,0.552,0.413,0,0,0.331,0,0,0 +0.667,0.566,0.269,0.276,0,0,0,0,0,0.0378 +0.667,0.549,0.167,0.22,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.532,0.0211,0.05,0,0,0,0,0,0 +1,0.532,0.0181,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.558,0.0655,0.161,0,0,0,0,0,0.477 +1,0.55,0.148,0.26,0.122,0.15,0,0,0,0.411 +0.667,0.55,0.175,0.253,0.669,0.767,0,0,0,0.307 +0.667,0.55,0.191,0.242,0.611,0,0,0,0,0.341 +0.333,0.558,0.111,0.142,0,0,0,0,0,0.113 +0.333,0.558,0.129,0.141,0,0,0,0,0,0.113 +0.667,0.55,0.274,0.232,0,0,0,0,0,0.264 +0.667,0.567,0.301,0.232,0,0,0,0,0,0.113 +0.667,0.593,0.316,0.235,0,0,0,0,0,0.0756 +0.667,0.619,0.327,0.244,0,0,0,0,0.65,0 +0.667,0.627,0.384,0.271,0,0,0,0,0.283,0.0756 +0.667,0.619,0.503,0.327,0,0,0,0,0,0 +1,0.619,0.876,0.595,0,0,0,0,0,0.126 +1,0.568,0.808,0.727,0,0,0,0,0,0.118 +1,0.549,0.182,0.22,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.553,0.0444,0.163,0,0,0,0,0,0.302 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.189 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.558,0.0964,0.151,0,0,0,0,0,0.0378 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.16,0.141,0,0,0,0,0,0.375 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.592,0.172,0.147,0,0,0,0,0,0.189 +0.333,0.596,0.201,0.16,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.583,0.304,0.232,0,0,0,0,0,0 +0.333,0.566,0.282,0.276,0,0,0,0,0,0 +0.333,0.549,0.182,0.22,0,0,0,0,0,0.27 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0241,0.077,0,0,0,0,0,0.113 +1,0.54,0.0324,0.136,0,0,0,0,0,0.0756 +1,0.541,0.0655,0.276,0,0,0,0,0,0.189 +0.333,0.558,0.0475,0.161,0,0,0,0,0,0.189 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.416 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.0378 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.0378 +0.333,0.592,0.128,0.147,0,0,0,0,0,0.0378 +0.333,0.596,0.169,0.16,0,0,0,0,0,0 +0.333,0.592,0.232,0.188,0,0,0,0,0,0.0756 +0.333,0.583,0.284,0.232,0,0,0,0,0,0 +0.667,0.567,0.523,0.501,0,0,0,0,0,0 +1,0.533,0.318,0.389,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0241,0.077,0,0,0,0,0,0.726 +1,0.54,0.0324,0.136,0.164,0.0667,0,0,0,0.311 +1,0.541,0.0655,0.276,0.609,0.85,0,0,0,0.311 +1,0.55,0.079,0.273,0.555,0.817,0,0,0.233,0.349 +0.333,0.566,0.0159,0.05,0,0.1,0,0,0,0.0756 +0.667,0.558,0.0595,0.151,0,0,0,0,0,0.373 +0.667,0.55,0.114,0.242,0,0,0,0,0,0.466 +0.667,0.55,0.12,0.234,0,0,0,0,0,0.218 +0.667,0.55,0.135,0.232,0,0,0,0,0,0.205 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.343 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.282 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.0809 +0.333,0.592,0.128,0.147,0,0,0,0,0,0.151 +0.333,0.596,0.169,0.16,0.115,0.0667,0,0,0,0 +0.667,0.619,0.448,0.327,0.765,0.85,0,0,0,0.0378 +0.667,0.583,0.284,0.232,0.555,0,0,0,0,0.0572 +0.667,0.566,0.269,0.276,0,0,0,0,0,0.118 +1,0.549,0.167,0.22,0,0,0,0,0,0 +1,0.536,0.0783,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.541,0.0655,0.276,0,0,0,0,0,0.164 +1,0.542,0.111,0.384,0,0,0,0,0,0.486 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.273 +0.333,0.558,0.0595,0.151,0,0,0,0,0,0.226 +0.667,0.55,0.114,0.242,0,0,0,0,0,0.223 +0.667,0.55,0.12,0.234,0,0,0,0,0,0.222 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.201 +0.667,0.558,0.0791,0.141,0,0,0,0,0,0.113 +0.667,0.566,0.0873,0.141,0,0,0,0,0.317,0.0378 +1,0.606,0.287,0.327,0,0,0,0,0.383,0.0756 +0.667,0.619,0.24,0.244,0,0,0,0,0,0.0676 +0.333,0.596,0.169,0.16,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.601,0.552,0.413,0,0,0,0,0,0.0477 +1,0.568,0.777,0.727,0.652,0.567,0,0,0,0.151 +1,0.516,0.47,0.559,0.786,0.35,0,0,0,0 +1,0.507,0.141,0.184,0.571,0,0,0,0,0.098 +1,0.532,0.0384,0.0749,0,0,0,0,0,0.0873 +1,0.532,0.0241,0.0583,0,0,0,0,0,0.27 +1,0.532,0.0174,0.05,0,0,0,0,0,0.164 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0407,0.163,0,0,0,0,0.233,0.0378 +0.667,0.558,0.0475,0.161,0,0,0,0,0,0.338 +0.667,0.558,0.0542,0.155,0,0,0,0,0,0.22 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0648,0.146,0,0,0,0,0,0.113 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0.0756 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.0378 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.0756 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.113 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.0756 +0.333,0.592,0.128,0.147,0,0,0,0,0,0.189 +0.667,0.627,0.321,0.271,0,0,0,0,0.467,0 +0.667,0.619,0.448,0.327,0,0,0,0,0,0 +1,0.601,0.552,0.413,0,0,0,0,0,0.189 +1,0.567,0.523,0.501,0,0,0,0,0,0 +1,0.533,0.318,0.389,0,0,0,0,0,0 +1,0.536,0.0783,0.117,0,0,0,0,0,0 +1,0.532,0.0384,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.558,0.0475,0.161,0,0,0,0,0,0.186 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.136 +0.333,0.558,0.0595,0.151,0,0,0,0,0,0.192 +0.333,0.558,0.0648,0.146,0,0,0,0,0,0.121 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0.249 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.479 +0.333,0.592,0.128,0.147,0,0,0,0,0,0.113 +0.667,0.627,0.321,0.271,0,0,0,0,0,0.113 +0.667,0.619,0.448,0.327,0.109,0.0667,0,0,0,0.0378 +0.667,0.601,0.552,0.413,0.87,0.85,0,0,0,0.16 +0.667,0.567,0.523,0.501,0,0,0,0,0,0 +0.667,0.533,0.318,0.389,0,0,0,0,0,0.101 +0.667,0.536,0.0783,0.117,0,0,0,0,0,0.106 +0.667,0.532,0.0452,0.0749,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.54,0.0302,0.136,0,0,0,0,0,0.0378 +0.667,0.541,0.0708,0.276,0,0,0,0,0,0 +0.333,0.558,0.0655,0.161,0,0,0,0,0,0.0756 +0.333,0.558,0.0828,0.155,0,0,0,0,0,0.0378 +0.333,0.558,0.0964,0.151,0,0,0,0,0,0.113 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.558,0.111,0.142,0,0,0,0,0,0.189 +0.333,0.558,0.129,0.141,0,0,0,0,0.65,0.264 +0.333,0.558,0.146,0.141,0,0,0,0,0.283,0.0756 +0.333,0.566,0.16,0.141,0,0,0,0,0,0.113 +0.333,0.579,0.167,0.142,0,0,0,0,0,0.227 +0.667,0.619,0.327,0.244,0,0,0,0,0,0 +0.667,0.627,0.384,0.271,0,0,0,0,0,0.0378 +0.667,0.619,0.503,0.327,0,0,0.461,0.65,0,0.0378 +0.667,0.601,0.59,0.413,0,0,0.216,0.133,0,0.0378 +0.333,0.566,0.282,0.276,0,0,0,0,0,0 +0.667,0.533,0.346,0.389,0,0,0,0,0,0 +0.667,0.536,0.0896,0.117,0,0,0,0,0.467,0 +0.667,0.532,0.0452,0.0749,0,0,0,0,0,0 +0.667,0.532,0.0286,0.0583,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.54,0.0302,0.136,0,0,0,0,0,0.0756 +1,0.553,0.0444,0.163,0,0,0,0,0,0 +0.667,0.558,0.0655,0.161,0,0,0,0,0,0.0865 +0.667,0.55,0.148,0.26,0,0,0,0,0,0.193 +1,0.542,0.253,0.354,0,0,0,0,0,0.279 +0.333,0.558,0.105,0.146,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.558,0.129,0.141,0,0,0,0,0.65,0.151 +0.333,0.558,0.146,0.141,0,0,0,0,0.05,0.416 +0.333,0.566,0.16,0.141,0,0,0,0,0,0.264 +0.667,0.593,0.316,0.235,0,0,0,0,0,0.274 +0.667,0.619,0.327,0.244,0,0,0,0,0,0.264 +0.667,0.627,0.384,0.271,0,0,0,0,0,0 +0.667,0.619,0.503,0.327,0,0,0,0,0,0 +0.667,0.601,0.59,0.413,0,0,0,0,0,0.0756 +0.667,0.566,0.282,0.276,0,0,0,0,0,0 +1,0.533,0.346,0.389,0,0,0,0,0,0 +1,0.536,0.0896,0.117,0,0,0,0,0,0 +1,0.532,0.0384,0.0749,0,0,0,0,0,0.0378 +1,0.532,0.0241,0.0583,0,0,0,0,0,0 +1,0.532,0.0174,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0407,0.163,0,0,0,0,0,0.0756 +1,0.55,0.079,0.273,0,0,0,0,0.467,0.0756 +1,0.55,0.0926,0.26,0,0,0,0,0,0.295 +1,0.55,0.103,0.253,0,0,0,0,0,0.227 +0.667,0.55,0.114,0.242,0,0,0,0,0,0.283 +0.667,0.55,0.12,0.234,0,0,0,0,0,0.361 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.0756 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.0378 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.0756 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.151 +0.667,0.619,0.24,0.244,0,0,0.279,0.567,0,0.472 +0.333,0.596,0.169,0.16,0,0,0,0.217,0,0.0378 +0.667,0.619,0.448,0.327,0,0,0,0,0,0 +0.667,0.601,0.552,0.413,0,0,0,0,0.0667,0.0378 +0.667,0.567,0.523,0.501,0,0,0,0,0.867,0 +1,0.549,0.167,0.22,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0407,0.163,0,0,0,0,0,0.486 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.288 +0.667,0.558,0.0542,0.155,0,0,0,0,0,0 +0.667,0.558,0.0595,0.151,0,0,0,0,0,0 +0.667,0.558,0.0648,0.146,0,0,0,0,0,0.0756 +0.667,0.558,0.0678,0.142,0,0,0,0,0,0.0378 +0.667,0.558,0.0753,0.141,0,0,0,0,0.233,0.151 +0.667,0.558,0.0791,0.141,0,0,0,0,0,0.0941 +0.667,0.567,0.159,0.232,0,0,0,0,0,0.193 +0.667,0.579,0.106,0.142,0,0,0,0,0,0.302 +0.667,0.592,0.128,0.147,0,0,0,0,0,0.0378 +0.333,0.596,0.169,0.16,0,0,0,0,0,0.0378 +0.333,0.592,0.232,0.188,0,0,0,0,0,0.0378 +0.667,0.601,0.552,0.413,0,0,0,0,0,0 +0.667,0.567,0.523,0.501,0,0,0,0,0,0 +0.667,0.533,0.318,0.389,0,0,0,0,0,0.113 +1,0.507,0.141,0.184,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.558,0.0475,0.161,0,0,0,0,0.0667,0.0756 +1,0.542,0.131,0.366,0.156,0.0667,0,0,0.633,0.151 +0.333,0.558,0.0595,0.151,0.592,0.85,0,0,0,0.0378 +0.333,0.558,0.0648,0.146,0.726,0,0,0,0,0 +0.667,0.55,0.12,0.234,0.558,0,0,0,0,0.302 +0.667,0.55,0.135,0.232,0,0,0,0,0,0.189 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.0378 +0.667,0.567,0.159,0.232,0,0,0,0,0.233,0.0756 +0.667,0.593,0.196,0.235,0.179,0.0667,0,0,0,0.302 +0.667,0.619,0.24,0.244,0.532,0.85,0,0,0,0.0756 +0.667,0.627,0.321,0.271,0,0,0,0,0,0.113 +1,0.645,0.664,0.465,0.346,0.567,0,0,0,0.0378 +0.667,0.601,0.552,0.413,0.747,0.35,0,0,0,0.0756 +0.667,0.567,0.523,0.501,0.858,0,0,0,0,0 +1,0.516,0.47,0.559,0.284,0,0,0,0,0.408 +1,0.507,0.141,0.184,0,0,0,0,0,0.124 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0189,0.0504,0,0,0,0,0,0.0934 +1,0.532,0.0241,0.077,0,0,0,0,0.0667,0.259 +0.667,0.566,0.0159,0.05,0,0,0,0,0.633,0.231 +0.667,0.553,0.0407,0.163,0,0,0,0,0,0.113 +0.667,0.55,0.079,0.273,0,0,0,0,0,0.217 +0.333,0.558,0.0542,0.155,0,0,0,0,0.567,0.499 +0.333,0.558,0.0595,0.151,0,0,0,0,1,0 +0.333,0.558,0.0648,0.146,0,0,0,0,0.767,0.151 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0.113 +0.667,0.55,0.135,0.232,0,0,0,0,0.317,0.0378 +0.333,0.558,0.0791,0.141,0,0,0,0,0.617,0.151 +0.667,0.567,0.159,0.232,0,0,0,0,0,0.434 +0.667,0.593,0.196,0.235,0,0,0,0,0,0.283 +0.667,0.619,0.24,0.244,0,0,0,0,0,0.0932 +0.333,0.596,0.169,0.16,0.425,0.567,0,0,0,0.0378 +0.667,0.619,0.448,0.327,0.526,0.567,0,0,0,0 +0.667,0.601,0.552,0.413,0.462,0,0,0,0,0 +0.667,0.567,0.523,0.501,0,0,0,0,0,0 +0.667,0.533,0.318,0.389,0,0,0,0,0,0.143 +1,0.507,0.141,0.184,0,0,0,0,0,0.0727 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0189,0.0504,0,0,0,0,0.233,0.113 +1,0.532,0.0241,0.077,0,0,0,0,0,0.189 +1,0.54,0.0324,0.136,0,0,0,0,0,0.2 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.135 +0.667,0.558,0.0475,0.161,0,0,0,0,0.7,0.297 +0.667,0.558,0.0542,0.155,0,0,0,0,0,0.307 +0.667,0.55,0.103,0.253,0,0,0,0,0,0.425 +0.333,0.558,0.0648,0.146,0,0,0,0,0,0.16 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.189 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.0756 +0.333,0.592,0.128,0.147,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.583,0.284,0.232,0.229,0.317,0,0,0,0.0378 +0.667,0.567,0.523,0.501,0.274,0.6,0,0,0,0.142 +0.667,0.533,0.318,0.389,0,0,0,0,0,0.179 +1,0.507,0.141,0.184,0,0,0,0,0,0 +1,0.532,0.0452,0.0749,0,0,0,0,0,0 +1,0.532,0.0286,0.0583,0,0,0,0,0,0 +1,0.532,0.0211,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.541,0.0708,0.276,0.752,0.65,0,0,0.9,0.0756 +1,0.55,0.113,0.273,0,0.483,0,0,0.733,0 +1,0.55,0.148,0.26,0,0,0,0,0,0.189 +1,0.542,0.253,0.354,0,0,0,0,0,0.113 +1,0.542,0.278,0.338,0,0,0,0,0.15,0.0756 +0.667,0.55,0.205,0.234,0,0,0,0,0.55,0.189 +0.667,0.55,0.241,0.232,0,0,0,0,0,0 +0.667,0.55,0.274,0.232,0,0,0,0,0,0.0378 +1,0.567,0.301,0.232,0,0,0,0,0,0.113 +1,0.593,0.316,0.235,0,0,0,0,0,0.0378 +0.667,0.592,0.172,0.147,0,0,0,0,0,0 +1,0.658,0.567,0.381,0,0,0,0,0,0.0906 +1,0.645,0.745,0.465,0,0,0,0,0,0.0378 +0.667,0.601,0.59,0.413,0,0,0,0,0,0.113 +0.667,0.567,0.545,0.501,0,0,0,0,0,0.0378 +1,0.516,0.51,0.559,0,0,0,0,0,0.104 +1,0.536,0.0896,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.54,0.0302,0.136,0,0,0,0,0,0.113 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.558,0.0655,0.161,0,0,0,0,0,0.113 +0.667,0.558,0.0828,0.155,0,0,0,0,0,0.0763 +0.333,0.558,0.0964,0.151,0,0,0,0,0,0.53 +0.333,0.558,0.105,0.146,0,0,0,0,0,0.336 +0.333,0.558,0.111,0.142,0,0,0,0,0,0.409 +0.333,0.558,0.129,0.141,0,0,0,0,0,0.403 +0.667,0.55,0.274,0.232,0,0,0,0,0,0.428 +0.333,0.566,0.16,0.141,0,0,0,0,0,0.195 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0.0602,0.15,0,0.151 +0.667,0.627,0.384,0.271,0,0,0.415,0.633,0,0.227 +0.667,0.619,0.503,0.327,0,0,0.675,0,0,0.191 +0.667,0.601,0.59,0.413,0,0,0.66,0,0,0.103 +0.333,0.566,0.282,0.276,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.111 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.54,0.0324,0.136,0,0,0,0,0,0.0378 +0.333,0.553,0.0407,0.163,0,0,0,0,0,0.21 +0.333,0.558,0.0475,0.161,0,0,0,0,0,0.407 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.227 +0.333,0.558,0.0595,0.151,0,0,0,0,0,0.0756 +0.333,0.558,0.0648,0.146,0,0,0,0,0.467,0.113 +0.667,0.55,0.12,0.234,0,0,0,0,0,0.0756 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.113 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.0756 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.113 +0.333,0.592,0.128,0.147,0,0,0,0,0,0 +0.667,0.627,0.321,0.271,0,0,0,0,0,0.524 +0.667,0.619,0.448,0.327,0,0,0,0,0,0.113 +0.667,0.601,0.552,0.413,0,0,0,0,0,0.0378 +0.667,0.567,0.523,0.501,0,0,0,0,0,0.272 +0.667,0.549,0.167,0.22,0,0,0,0,0,0.156 +0.667,0.536,0.0783,0.117,0,0,0,0,0,0.202 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0944 +1,0.541,0.0655,0.276,0,0,0,0,0,0.225 +0.667,0.55,0.079,0.273,0,0,0,0,0,0.386 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0648,0.146,0,0,0.0484,0.0667,0,0.444 +0.333,0.558,0.0678,0.142,0,0,0.291,1,0,0.0378 +0.333,0.558,0.0753,0.141,0,0,0.378,0.233,0,0.0773 +0.667,0.55,0.142,0.232,0,0,0,0,0.567,0.197 +0.667,0.567,0.159,0.232,0,0,0,0,0.833,0.151 +0.667,0.593,0.196,0.235,0,0,0,0,0,0.113 +0.667,0.619,0.24,0.244,0,0,0,0,0.567,0.0378 +0.667,0.596,0.169,0.16,0,0,0,0,0.367,0 +0.667,0.592,0.232,0.188,0,0,0,0,0,0.0756 +0.667,0.583,0.284,0.232,0,0,0,0,0,0 +1,0.566,0.269,0.276,0,0,0,0,0,0.154 +1,0.549,0.167,0.22,0,0,0,0,0,0 +1,0.536,0.0783,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0324,0.136,0,0,0,0,0,0 +0.667,0.553,0.0407,0.163,0,0,0,0,0,0.0413 +0.667,0.558,0.0475,0.161,0.154,0.0667,0,0,0,0.328 +1,0.55,0.0926,0.26,0.274,0.85,0,0,0,0.37 +0.667,0.55,0.103,0.253,0,0,0,0,0,0.0623 +0.333,0.558,0.0648,0.146,0,0,0,0,0,0.338 +0.333,0.558,0.0678,0.142,0,0,0,0,0.233,0.189 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.355 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.262 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.0756 +0.333,0.592,0.128,0.147,0,0,0,0,0,0 +0.333,0.596,0.169,0.16,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.583,0.284,0.232,0,0,0,0,0,0.0378 +0.667,0.567,0.523,0.501,0,0,0,0,0,0.0801 +0.667,0.549,0.167,0.22,0,0,0,0,0,0.136 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0158,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.553,0.0407,0.163,0.69,0.817,0,0,0,0.0756 +0.667,0.558,0.0475,0.161,0.239,0.1,0,0,0,0.0756 +0.667,0.558,0.0542,0.155,0,0,0,0,0,0.189 +0.667,0.558,0.0595,0.151,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0678,0.142,0,0,0,0,0.7,0.151 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0.113 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.151 +0.333,0.566,0.0873,0.141,0.528,0.567,0,0,0,0.0378 +0.333,0.579,0.106,0.142,0.536,0.35,0,0,0,0.227 +0.333,0.592,0.128,0.147,0.297,0,0.276,0.567,0,0.0378 +0.333,0.596,0.169,0.16,0,0,0.455,1,0,0.113 +0.667,0.619,0.448,0.327,0,0,0,0,0,0.0378 +0.667,0.601,0.552,0.413,0,0,0,0,0,0 +0.667,0.566,0.269,0.276,0,0,0,0,0.7,0 +0.667,0.549,0.167,0.22,0,0,0,0,0,0 +1,0.536,0.0783,0.117,0,0,0,0,0,0 +1,0.532,0.0384,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0189,0.0504,0,0,0,0,0,0.0756 +1,0.532,0.0241,0.077,0,0,0,0,0,0.0378 +1,0.54,0.0324,0.136,0,0,0,0,0,0.189 +1,0.553,0.0407,0.163,0.133,0.0667,0,0,0,0.0378 +1,0.558,0.0475,0.161,0.586,0.85,0,0,0,0.386 +1,0.55,0.0926,0.26,0,0,0,0,0,0.19 +1,0.55,0.103,0.253,0,0,0,0,0,0.245 +0.667,0.55,0.114,0.242,0,0,0,0,0,0.122 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.558,0.0791,0.141,0,0,0,0,0.0667,0 +0.333,0.566,0.0873,0.141,0,0,0,0,0.633,0.0756 +0.333,0.579,0.106,0.142,0,0,0,0,0,0.264 +0.333,0.592,0.128,0.147,0,0,0,0,0,0.0756 +0.667,0.596,0.169,0.16,0,0,0,0,0,0 +0.667,0.619,0.448,0.327,0,0,0,0,0.817,0.0378 +0.667,0.601,0.552,0.413,0.363,0.317,0,0,0.35,0.0378 +0.667,0.567,0.523,0.501,0.748,0.6,0,0,0,0.0756 +0.667,0.533,0.318,0.389,0.791,0,0,0,0,0.0378 +0.667,0.536,0.0783,0.117,0,0,0,0,0,0.142 +1,0.532,0.0452,0.0749,0,0,0,0,0,0.113 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.54,0.0302,0.136,0,0,0,0,0,0 +1,0.541,0.0708,0.276,0,0,0,0,0,0.0378 +1,0.55,0.113,0.273,0,0,0,0,0,0 +0.667,0.558,0.0828,0.155,0,0,0,0,0,0.141 +0.667,0.558,0.0964,0.151,0,0,0,0,0,0.18 +0.333,0.558,0.105,0.146,0,0,0,0,0,0.138 +0.333,0.558,0.111,0.142,0,0,0,0,0,0.356 +0.333,0.558,0.129,0.141,0,0,0,0,0,0.189 +0.333,0.558,0.146,0.141,0,0,0,0,0,0.158 +0.333,0.566,0.16,0.141,0,0,0,0,0,0.151 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.667,0.619,0.327,0.244,0,0,0.446,0.783,0,0.0378 +0.667,0.627,0.384,0.271,0,0,0.336,0,0,0.0378 +1,0.645,0.745,0.465,0,0,0.599,0,0.15,0.0378 +1,0.619,0.876,0.595,0,0,0,0,0.317,0 +1,0.568,0.808,0.727,0,0,0,0,0,0 +1,0.516,0.51,0.559,0,0,0,0,0,0 +1,0.536,0.0896,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.553,0.0444,0.163,0,0,0,0,0,0.189 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.592,0.172,0.147,0.429,0.4,0,0,0,0.264 +0.333,0.596,0.201,0.16,0.705,0.517,0,0,0,0.378 +0.333,0.592,0.26,0.188,0,0,0,0,0,0.302 +0.333,0.583,0.304,0.232,0,0,0,0,0,0.189 +0.333,0.566,0.282,0.276,0,0,0,0,0,0 +1,0.533,0.346,0.389,0.521,0.65,0,0,0,0 +1,0.566,0.0181,0.05,0,0.483,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0324,0.136,0,0,0,0,0,0.159 +0.667,0.553,0.0407,0.163,0,0,0,0,0,0.133 +0,0.566,0.0159,0.05,0,0,0,0,0,0.102 +0.333,0.558,0.0542,0.155,0,0,0,0,0,0.0756 +0.333,0.558,0.0595,0.151,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0678,0.142,0,0,0,0,0,0.0378 +0.333,0.558,0.0753,0.141,0,0,0,0,0,0 +0.333,0.558,0.0791,0.141,0,0,0,0,0,0.189 +0.333,0.566,0.0873,0.141,0,0,0,0,0,0.378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.1 +0.667,0.592,0.128,0.147,0,0,0,0,0,0.479 +0.667,0.627,0.321,0.271,0,0,0,0,0,0.19 +0.667,0.619,0.448,0.327,0,0,0,0,0,0.17 +0.667,0.601,0.552,0.413,0,0,0,0,0,0 +0.667,0.567,0.523,0.501,0,0,0,0,0,0 +1,0.516,0.47,0.559,0,0,0,0,0,0.151 +1,0.536,0.0783,0.117,0,0,0,0,0,0 +1,0.532,0.0384,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0324,0.136,0,0,0,0,0,0.225 +0.667,0.553,0.0407,0.163,0,0,0,0,0,0.116 +1,0.55,0.079,0.273,0,0,0,0,0,0.276 +0.667,0.558,0.0542,0.155,0,0,0,0,0,0.0378 +0.667,0.55,0.103,0.253,0,0,0,0,0.567,0.151 +0.667,0.55,0.114,0.242,0,0,0.204,0.517,1,0 +0.333,0.558,0.0678,0.142,0,0,0.401,0,0.767,0.0756 +0.667,0.55,0.135,0.232,0,0,0.445,0,0,0.0756 +0.667,0.55,0.142,0.232,0,0,0.289,0,0.467,0.151 +0.667,0.567,0.159,0.232,0,0,0.525,0,0,0.227 +0.667,0.593,0.196,0.235,0,0,0.385,0,0,0.0756 +0.667,0.619,0.24,0.244,0.352,0.317,0.246,0,0,0.0378 +0.667,0.627,0.321,0.271,0.436,0.6,0.132,0,0.233,0.0378 +0.333,0.592,0.232,0.188,0,0,0,0,0,0 +0.333,0.583,0.284,0.232,0,0,0,0,0,0.0756 +0.667,0.566,0.269,0.276,0,0,0,0,0,0 +0.667,0.549,0.167,0.22,0,0,0,0,0,0 +0.667,0.536,0.0783,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0572 +0.667,0.558,0.0461,0.163,0,0,0,0,0.0667,0.503 +1,0.542,0.126,0.374,0,0,0,0,0.883,0.391 +0.667,0.55,0.0996,0.258,0,0,0,0,0,0.291 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.0816 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.0378 +0.333,0.558,0.073,0.144,0,0,0,0,0,0 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.0756 +0.667,0.567,0.153,0.238,0,0,0,0,0,0.0756 +0.667,0.593,0.19,0.241,0,0,0,0,0,0.443 +0.667,0.619,0.232,0.254,0,0,0,0,0,0.555 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.0378 +0.667,0.619,0.432,0.365,0,0,0,0,0,0.151 +0.667,0.601,0.532,0.466,0,0,0,0,0,0.0756 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +0.667,0.533,0.307,0.401,0,0,0,0,0,0 +0.667,0.536,0.0759,0.117,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0236,0.0775,0,0,0,0,0,0.113 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0396,0.165,0,0,0,0,0.0667,0.0756 +1,0.55,0.0764,0.277,0,0,0,0,0.65,0.227 +0.333,0.558,0.0526,0.158,0,0,0,0,0,0.113 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.189 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.0756 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.151 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.0756 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.113 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.0378 +0.667,0.619,0.432,0.365,0,0,0,0,0,0 +0.667,0.601,0.532,0.466,0,0,0,0,0,0 +1,0.568,0.749,0.795,0,0,0,0,0,0 +1,0.533,0.307,0.401,0,0,0,0,0,0 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0186,0.0505,0,0,0,0,0,0 +1,0.498,0.0314,0.105,0,0,0,0,0.467,0.189 +1,0.515,0.0474,0.224,0,0,0,0,0,0.0756 +0.667,0.553,0.0396,0.165,0,0,0,0,0,0 +0.667,0.558,0.0461,0.163,0,0,0,0,0,0.17 +0.667,0.558,0.0526,0.158,0,0,0,0,0,0.279 +0.667,0.558,0.0577,0.154,0,0,0,0,0,0.119 +1,0.55,0.11,0.247,0,0,0,0,0,0.405 +0.667,0.558,0.0657,0.145,0,0,0,0,0,0.113 +0.333,0.558,0.073,0.144,0.109,0.0667,0,0,0,0.264 +0.333,0.558,0.0766,0.143,0.462,0.85,0,0,0,0.113 +0.333,0.566,0.0846,0.144,0.714,0,0,0,0,0.0378 +0.667,0.593,0.19,0.241,0,0,0,0,0,0 +0.667,0.619,0.232,0.254,0,0,0,0,0,0.259 +0.667,0.627,0.31,0.291,0,0,0.0942,0.0667,0,0 +0.667,0.619,0.432,0.365,0,0,0.373,0.683,0,0.182 +1,0.619,0.79,0.674,0,0,0,0,0,0.246 +1,0.567,0.504,0.547,0,0,0,0,0,0.248 +1,0.549,0.161,0.225,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.541,0.0684,0.279,0,0,0,0,0.0667,0.217 +0.667,0.55,0.109,0.277,0,0,0,0,0.4,0.151 +0.667,0.55,0.142,0.266,0,0,0,0,0,0.189 +0.667,0.55,0.169,0.258,0,0,0,0,0,0.292 +0.667,0.55,0.184,0.247,0,0,0,0,0,0.175 +0.333,0.558,0.108,0.145,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0756 +0.667,0.55,0.264,0.237,0,0,0,0,0,0.0378 +0.667,0.566,0.154,0.144,0,0,0,0,0,0.0378 +0.333,0.579,0.162,0.146,0,0,0,0,0,0.0756 +0.333,0.592,0.167,0.152,0,0,0,0,0,0.0378 +0.667,0.627,0.37,0.291,0,0,0,0,0,0.0756 +0.667,0.619,0.485,0.365,0,0,0,0,0,0 +0.667,0.601,0.569,0.466,0,0,0,0,0,0 +0.667,0.566,0.272,0.298,0,0,0.484,0.567,0,0.0756 +0.667,0.549,0.176,0.225,0,0,0.381,0.183,0,0 +0.667,0.536,0.0868,0.117,0,0,0.291,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.55,0.142,0.266,0,0,0,0,0,0.213 +0.667,0.55,0.169,0.258,0,0,0,0,0,0.275 +0.667,0.55,0.184,0.247,0,0,0,0,0,0.458 +0.667,0.55,0.198,0.239,0,0,0,0,0,0.405 +0.667,0.55,0.232,0.237,0,0,0,0,0.0667,0.286 +0.667,0.55,0.264,0.237,0,0,0,0,0.4,0.306 +0.667,0.567,0.29,0.238,0,0,0,0,0,0.187 +0.333,0.579,0.162,0.146,0,0,0,0,0,0.0756 +0.333,0.592,0.167,0.152,0,0,0,0,0,0.416 +0.667,0.627,0.37,0.291,0,0,0,0,0,0.0378 +0.667,0.619,0.485,0.365,0,0,0,0,0,0 +0.667,0.601,0.569,0.466,0,0,0,0,0,0 +0.667,0.567,0.525,0.547,0,0,0,0,0,0 +0.667,0.533,0.334,0.401,0,0,0,0,0,0 +0.667,0.536,0.0868,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0579 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0723 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0396,0.165,0,0,0,0,0,0.0582 +0.667,0.558,0.0461,0.163,0,0,0,0,0,0.559 +0.333,0.558,0.0526,0.158,0,0,0,0,0,0.0907 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0.113 +0.333,0.558,0.0628,0.149,0,0,0.516,0.567,0,0.113 +0.333,0.558,0.0657,0.145,0,0,0.359,0.183,0,0 +0.333,0.558,0.073,0.144,0,0,0.569,0,0,0.113 +0.333,0.558,0.0766,0.143,0,0,0.407,0,0,0.227 +0.333,0.566,0.0846,0.144,0,0,0,0,0.0667,0.0378 +0.333,0.579,0.103,0.146,0,0,0,0,0.65,0.302 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.0378 +0.667,0.596,0.163,0.171,0,0,0,0,0,0.128 +0.667,0.592,0.224,0.208,0,0,0,0,0,0.328 +1,0.619,0.79,0.674,0,0,0,0,0,0.341 +1,0.567,0.504,0.547,0,0,0,0,0,0.0378 +1,0.533,0.307,0.401,0,0,0,0,0,0 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.515,0.0474,0.224,0,0,0,0,0,0.479 +1,0.529,0.087,0.394,0,0,0,0,0,0.141 +0.333,0.558,0.0461,0.163,0,0,0,0,0,0.453 +0.333,0.558,0.0526,0.158,0.32,0.317,0,0,0,0.188 +0.333,0.558,0.0577,0.154,0.259,0.6,0,0,0,0.0722 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.113 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.189 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.227 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.579,0.103,0.146,0,0,0,0,0.567,0.177 +0.333,0.592,0.124,0.152,0,0,0,0,0.217,0.15 +1,0.658,0.457,0.412,0.624,0.817,0,0,0.167,0.525 +1,0.645,0.64,0.523,0,0.1,0,0,0,0.53 +1,0.619,0.79,0.674,0.414,0.567,0,0,0,0.0827 +1,0.568,0.749,0.795,0.355,0.35,0,0,0,0.291 +1,0.516,0.453,0.576,0,0,0,0,0,0.321 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.558,0.0526,0.158,0.35,0.567,0,0,0,0.0756 +1,0.558,0.0577,0.154,0.835,0.35,0,0,0,0 +1,0.558,0.0628,0.149,0.761,0,0,0,0,0 +0.667,0.558,0.0657,0.145,0.598,0,0,0,0,0.302 +0.667,0.55,0.13,0.237,0.331,0,0,0,0.567,0.0378 +0.667,0.55,0.137,0.237,0,0,0,0,0.867,0.113 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.34 +0.667,0.593,0.19,0.241,0,0,0.428,0.5,0.0667,0.34 +0.667,0.619,0.232,0.254,0,0,0.124,0,0.4,0.169 +1,0.658,0.457,0.412,0.162,0.0667,0,0,0,0.266 +0.333,0.592,0.224,0.208,0.395,0.85,0,0,0,0.311 +0.667,0.601,0.532,0.466,0,0,0,0,0,0.143 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +0.667,0.533,0.307,0.401,0,0,0,0,0,0.0579 +0.667,0.536,0.0759,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0236,0.0775,0,0,0,0,0,0.268 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.231 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.558,0.0461,0.163,0,0,0,0,0.317,0 +0.667,0.558,0.0526,0.158,0,0,0,0,0.633,0.113 +0.667,0.55,0.0996,0.258,0,0,0,0,0,0.42 +0.667,0.55,0.11,0.247,0,0,0,0,0,0.24 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.315 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.0378 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.0378 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.0378 +0.667,0.593,0.19,0.241,0,0,0,0,0,0.515 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.189 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.0378 +0.333,0.592,0.224,0.208,0,0,0,0,0,0.146 +0.667,0.601,0.532,0.466,0,0,0,0,0,0.245 +0.667,0.566,0.26,0.298,0,0,0,0,0,0 +1,0.533,0.307,0.401,0,0,0,0,0,0.0756 +1,0.507,0.136,0.184,0,0,0,0,0,0.184 +1,0.532,0.0374,0.0749,0,0,0,0,0,0.155 +1,0.566,0.0159,0.05,0,0,0,0,0,0.133 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0236,0.0775,0,0,0,0,0,0 +1,0.515,0.0474,0.224,0,0,0,0,0.567,0.0756 +1,0.541,0.0633,0.279,0,0,0.487,0.75,0.15,0.0756 +0.667,0.55,0.0764,0.277,0,0,0.188,0,0,0.189 +0.667,0.558,0.0526,0.158,0,0,0,0,0,0.0756 +0.333,0.558,0.0577,0.154,0,0,0,0,0.567,0.0756 +0.333,0.558,0.0628,0.149,0,0,0,0,1,0.0378 +0.333,0.558,0.0657,0.145,0,0,0,0,0.833,0 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.302 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0 +0.667,0.567,0.153,0.238,0,0,0,0,0,0.189 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.113 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.0378 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.227 +0.333,0.592,0.224,0.208,0,0,0,0,0,0 +0.667,0.601,0.532,0.466,0,0,0,0,0,0.0378 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +0.667,0.533,0.307,0.401,0,0,0,0,0,0 +1,0.507,0.136,0.184,0,0,0,0,0,0 +1,0.532,0.044,0.0749,0,0,0,0,0,0 +1,0.532,0.028,0.0583,0,0,0,0,0,0 +1,0.532,0.0208,0.05,0,0,0,0,0,0.0756 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.171 +1,0.553,0.0433,0.165,0,0,0,0,0,0.257 +0.667,0.558,0.0636,0.163,0,0,0,0,0,0.139 +0.667,0.55,0.142,0.266,0,0,0,0,0,0.328 +0.667,0.55,0.169,0.258,0,0,0,0,0,0.096 +0.333,0.558,0.101,0.149,0,0,0,0,0,0.264 +0.333,0.558,0.108,0.145,0,0,0,0,0,0 +0.333,0.558,0.125,0.144,0,0,0,0,0,0 +0.333,0.558,0.141,0.143,0,0,0,0,0,0.0378 +0.333,0.566,0.154,0.144,0,0,0,0,0,0.0378 +0.333,0.579,0.162,0.146,0,0,0,0,0,0.0378 +0.667,0.619,0.315,0.254,0,0,0,0,0,0.176 +0.333,0.596,0.194,0.171,0,0,0,0,0,0.254 +0.333,0.592,0.251,0.208,0,0,0,0,0,0.0756 +0.333,0.583,0.294,0.258,0,0,0,0,0,0.189 +0.667,0.567,0.525,0.547,0,0,0,0,0,0.0378 +0.667,0.549,0.176,0.225,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.532,0.0222,0.0775,0,0,0,0,0,0.155 +1,0.54,0.0295,0.137,0,0,0,0,0,0.188 +1,0.553,0.0433,0.165,0,0,0,0,0,0.521 +1,0.558,0.0636,0.163,0,0,0,0,0.0667,0.291 +1,0.542,0.205,0.374,0,0,0,0,0.167,0.28 +0.333,0.558,0.0933,0.154,0,0,0,0,0,0.0539 +0.333,0.558,0.101,0.149,0.523,0.567,0.315,0.317,0,0.34 +0.333,0.558,0.108,0.145,0.141,0.35,0.0681,0.683,0.567,0.0378 +0.333,0.558,0.125,0.144,0,0,0,0,0.15,0.189 +0.333,0.558,0.141,0.143,0,0,0,0,0,0.151 +0.333,0.566,0.154,0.144,0,0,0,0,0,0.0378 +0.667,0.593,0.305,0.241,0,0,0,0,0,0.0756 +0.667,0.619,0.315,0.254,0,0,0.0942,0.0667,0,0.0378 +0.667,0.627,0.37,0.291,0,0,0.52,0.683,0,0.0378 +0.667,0.619,0.485,0.365,0,0,0.249,0,0,0 +0.667,0.601,0.569,0.466,0,0,0.647,0,0,0 +0.667,0.567,0.525,0.547,0,0,0.162,0,0,0.284 +1,0.533,0.334,0.401,0,0,0,0,0,0.213 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0316,0.137,0,0,0,0,0.0667,0.283 +1,0.529,0.087,0.394,0,0,0,0,0.167,0.236 +1,0.542,0.107,0.39,0,0,0,0,0,0.431 +1,0.542,0.126,0.374,0,0,0,0,0,0.55 +1,0.542,0.141,0.362,0,0,0.304,0.567,0,0.328 +1,0.542,0.157,0.346,0.224,0.0667,0.279,0.183,0,0.163 +0.667,0.55,0.116,0.239,0.461,1,0,0,0,0.101 +0.667,0.55,0.13,0.237,0,0.0833,0,0,0,0.119 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.19 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.355 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.259 +0.333,0.592,0.124,0.152,0.133,0.0667,0,0,0,0.0771 +0.333,0.596,0.163,0.171,0.934,0.85,0,0,0,0.0756 +0.667,0.619,0.432,0.365,0,0,0,0,0,0.227 +0.667,0.601,0.532,0.466,0,0,0,0,0,0 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +0.667,0.533,0.307,0.401,0,0,0,0,0,0.317 +0.667,0.536,0.0759,0.117,0,0,0,0,0,0.353 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0134 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0316,0.137,0,0,0,0,0,0.0573 +1,0.541,0.0633,0.279,0,0,0,0,0.717,0.422 +1,0.55,0.0764,0.277,0,0,0,0,0,0.199 +0.667,0.55,0.0894,0.266,0,0,0,0,0.567,0.0847 +0.667,0.55,0.0996,0.258,0,0,0,0,0.383,0.342 +0.667,0.55,0.11,0.247,0,0,0,0,0,0.273 +0.667,0.55,0.116,0.239,0,0,0,0,0,0.134 +0.667,0.55,0.13,0.237,0,0,0,0,0,0.508 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.28 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.189 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.0378 +0.333,0.592,0.124,0.152,0.329,0.317,0,0,0,0.113 +0.333,0.596,0.163,0.171,0.547,0.6,0,0,0,0.0378 +0.667,0.619,0.432,0.365,0,0,0,0,0,0.0756 +0.667,0.601,0.532,0.466,0,0,0,0,0,0 +0.667,0.567,0.504,0.547,0,0,0,0,0,0.134 +0.667,0.549,0.161,0.225,0,0,0,0,0,0.0967 +1,0.566,0.0159,0.05,0,0,0,0,0,0.13 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.553,0.0396,0.165,0,0,0,0,0,0.113 +0.667,0.558,0.0461,0.163,0,0,0,0,0,0.133 +0.667,0.558,0.0526,0.158,0,0,0,0,0.0667,0.183 +0.667,0.55,0.0996,0.258,0,0,0,0,1,0 +0.667,0.55,0.11,0.247,0,0,0,0,0.617,0.302 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.0378 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.153 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.335 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.2 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.41 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.0378 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.0378 +0.667,0.619,0.432,0.365,0,0,0,0,0,0 +0.667,0.601,0.532,0.466,0,0,0,0,0,0 +0.667,0.567,0.504,0.547,0,0,0,0,0,0.0378 +1,0.516,0.453,0.576,0,0,0,0,0,0.0569 +1,0.536,0.0759,0.117,0,0,0,0,0,0.221 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0396,0.165,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.0526,0.158,0,0,0,0,0,0.105 +0,0.566,0.0159,0.05,0,0,0,0,0,0.104 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0.113 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.264 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.596,0.163,0.171,0,0,0.313,0.5,0,0.0756 +0.667,0.619,0.432,0.365,0,0,0.632,0,0.0667,0 +0.667,0.601,0.532,0.466,0,0,0.319,0,0.4,0 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +0.667,0.533,0.307,0.401,0,0,0,0,0,0 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0531 +1,0.529,0.087,0.394,0,0,0,0,0,0.254 +0.333,0.558,0.0461,0.163,0,0,0,0,0,0.112 +0.333,0.558,0.0526,0.158,0,0,0,0,0,0.23 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0.151 +0.333,0.558,0.0628,0.149,0,0,0.0825,0.0667,0,0 +0.667,0.55,0.116,0.239,0,0,0.539,0.683,0.817,0.0756 +0.667,0.55,0.13,0.237,0,0,0.26,0,0.133,0.151 +0.333,0.558,0.0766,0.143,0,0,0.361,0,0,0.0378 +0.333,0.566,0.0846,0.144,0,0,0.615,0,0,0.113 +0.333,0.579,0.103,0.146,0,0,0.339,0,0,0 +0.333,0.592,0.124,0.152,0,0,0,0,0,0 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.113 +0.333,0.592,0.224,0.208,0,0,0,0,0,0.151 +1,0.619,0.79,0.674,0,0,0,0,0.467,0.233 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +1,0.516,0.453,0.576,0,0,0,0,0,0 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.532,0.044,0.0749,0,0,0,0,0,0.186 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0303 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.532,0.0201,0.0505,0,0,0,0,0,0.461 +1,0.532,0.0222,0.0775,0,0,0,0,0,0.244 +1,0.515,0.0409,0.224,0,0,0.403,0.75,0.317,0.488 +1,0.541,0.0684,0.279,0,0,0.386,0,0.15,0.113 +1,0.542,0.155,0.39,0,0,0.28,0,0,0.238 +1,0.542,0.205,0.374,0,0,0.475,0,0,0.283 +0.667,0.55,0.169,0.258,0,0,0.619,0,0,0.0378 +0.333,0.558,0.101,0.149,0,0,0.547,0,0,0.113 +0.333,0.558,0.108,0.145,0,0,0.535,0,0,0.0378 +0.333,0.558,0.125,0.144,0,0,0.503,0,0,0.113 +0.333,0.558,0.141,0.143,0,0,0.431,0,0,0.151 +0.333,0.566,0.154,0.144,0,0,0.475,0,0,0.0378 +0.333,0.579,0.162,0.146,0,0,0.563,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.592,0.251,0.208,0,0,0,0,0,0.0756 +0.333,0.583,0.294,0.258,0,0,0,0,0,0.713 +0.333,0.566,0.272,0.298,0,0,0,0,0,0.0536 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.536,0.0868,0.117,0,0,0,0,0,0 +1,0.532,0.044,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.113 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.55,0.109,0.277,0,0,0,0,0,0.264 +0.667,0.558,0.0803,0.158,0,0,0,0,0,0.265 +0.667,0.55,0.169,0.258,0,0,0,0,0,0.277 +0.667,0.55,0.184,0.247,0,0,0,0,0,0.228 +0.667,0.55,0.198,0.239,0,0,0.257,0.5,0,0.0635 +0.667,0.55,0.232,0.237,0,0,0.448,0,0,0.0756 +0.667,0.55,0.264,0.237,0,0,0.435,0,0,0 +0.667,0.567,0.29,0.238,0,0,0.597,0,0,0.264 +1,0.593,0.305,0.241,0,0,0,0,0,0.189 +1,0.645,0.464,0.357,0,0,0,0,0.233,0.164 +0.667,0.627,0.37,0.291,0,0,0,0,0,0.248 +1,0.645,0.718,0.523,0,0,0,0,0,0.118 +0.667,0.601,0.569,0.466,0,0,0,0,0,0.21 +1,0.567,0.525,0.547,0,0,0,0,0,0 +1,0.533,0.334,0.401,0,0,0,0,0,0.333 +1,0.536,0.0868,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0236,0.0775,0,0,0,0,0,0.0528 +0.667,0.515,0.0474,0.224,0,0,0,0,0,0.0916 +0.667,0.541,0.0633,0.279,0,0,0,0,0,0.273 +0.667,0.55,0.0764,0.277,0,0,0,0,0,0.444 +0.333,0.558,0.0526,0.158,0,0,0,0,0,0 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.151 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.113 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.264 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.113 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.0756 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.302 +0.667,0.619,0.232,0.254,0,0,0,0,0.0667,0 +0.333,0.596,0.163,0.171,0,0,0,0,0.4,0 +0.333,0.592,0.224,0.208,0,0,0,0,0.0667,0.189 +0.667,0.601,0.532,0.466,0,0,0,0,0.65,0 +0.667,0.566,0.26,0.298,0,0,0,0,0,0 +0.667,0.549,0.161,0.225,0,0,0,0,0,0.311 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.133 +1,0.541,0.0633,0.279,0,0,0,0,0.0667,0.171 +1,0.542,0.107,0.39,0,0,0,0,0.167,0.29 +1,0.542,0.126,0.374,0.291,0.317,0,0,0,0.322 +0.667,0.55,0.0996,0.258,0.586,0.6,0,0,0,0.113 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.0378 +0.333,0.558,0.0657,0.145,0,0,0,0,0.233,0.189 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.151 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.0756 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.0378 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.0378 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.181 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0472 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.583,0.274,0.258,0,0,0.154,0.317,0,0 +0.667,0.566,0.26,0.298,0,0,0.11,0.183,0,0 +0.667,0.549,0.161,0.225,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0572 +1,0.515,0.0474,0.224,0,0,0,0,0,0.575 +1,0.541,0.0633,0.279,0,0,0,0,0,0.31 +1,0.55,0.0764,0.277,0,0,0,0,0,0.248 +1,0.542,0.126,0.374,0,0,0,0,0,0.617 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0.0924 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.0756 +0.333,0.558,0.0657,0.145,0,0,0,0,0.467,0 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.227 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.0756 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.151 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.242 +0,0.566,0.0159,0.05,0,0,0,0,0,0.115 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0589 +0.333,0.583,0.274,0.258,0,0,0,0,0,0.082 +0.667,0.566,0.26,0.298,0,0,0,0,0,0 +0.667,0.549,0.161,0.225,0,0,0,0,0,0 +1,0.507,0.136,0.184,0,0,0,0,0,0.156 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0608 +1,0.553,0.0396,0.165,0,0,0,0,0.317,0.227 +1,0.558,0.0461,0.163,0,0,0,0,0.15,0.151 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.558,0.0577,0.154,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.328 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.264 +1,0.645,0.64,0.523,0,0,0,0,0,0.343 +1,0.619,0.79,0.674,0,0,0,0,0,0.171 +0.667,0.567,0.504,0.547,0,0,0,0,0,0 +0.667,0.533,0.307,0.401,0,0,0,0,0,0.0378 +0.667,0.536,0.0759,0.117,0,0,0,0,0,0.0378 +0.667,0.532,0.0374,0.0749,0,0,0,0,0,0 +1,0.532,0.0236,0.0583,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.515,0.0474,0.224,0,0,0,0,0,0.314 +1,0.529,0.087,0.394,0,0,0,0,0,0.463 +0.667,0.55,0.0764,0.277,0,0,0,0,0,0.229 +0.667,0.55,0.0894,0.266,0,0,0,0,0,0.384 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0.231 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.243 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.229 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.113 +0.333,0.558,0.0766,0.143,0.346,0.317,0,0,0,0.151 +0.333,0.566,0.0846,0.144,0.699,0.6,0,0,0,0.151 +0.333,0.566,0.0159,0.05,0.117,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.592,0.224,0.208,0,0,0,0,0,0 +0.667,0.583,0.274,0.258,0,0,0,0,0,0.113 +0.667,0.566,0.26,0.298,0,0,0,0,0,0.0378 +0.667,0.549,0.161,0.225,0,0,0,0,0,0.139 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.155 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0575 +1,0.55,0.142,0.266,0,0,0,0,0,0.342 +0.667,0.558,0.0933,0.154,0,0,0,0,0,0.31 +0.667,0.558,0.101,0.149,0,0,0,0,0,0.154 +0.667,0.558,0.108,0.145,0,0,0,0,0,0.101 +0.333,0.558,0.125,0.144,0,0,0,0,0,0 +0.333,0.558,0.141,0.143,0,0,0,0,0,0.0378 +0.667,0.567,0.29,0.238,0,0,0,0,0,0.416 +0.667,0.593,0.305,0.241,0,0,0,0,0,0.227 +0.667,0.619,0.315,0.254,0,0,0,0,0,0.302 +0.333,0.596,0.194,0.171,0.282,0.317,0,0,0,0.0378 +0.333,0.592,0.251,0.208,0.212,0.6,0,0,0,0.0756 +1,0.619,0.844,0.674,0.489,0.567,0,0,0,0.188 +1,0.568,0.779,0.795,0.476,0.583,0,0,0,0.0944 +1,0.533,0.334,0.401,0,0,0,0,0,0 +1,0.507,0.155,0.184,0,0,0,0,0,0.0378 +1,0.532,0.044,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.058 +1,0.54,0.0295,0.137,0,0,0,0,0,0.453 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.558,0.0636,0.163,0,0,0,0,0,0.0378 +0.333,0.558,0.0803,0.158,0,0,0,0,0,0 +0.333,0.558,0.0933,0.154,0,0,0,0,0,0.227 +0.333,0.558,0.101,0.149,0,0,0,0,0,0.151 +0.667,0.55,0.198,0.239,0,0,0,0,0,0.289 +0.667,0.55,0.232,0.237,0,0,0,0,0,0.178 +0.667,0.55,0.264,0.237,0,0,0,0,0,0.0378 +0.333,0.566,0.154,0.144,0,0,0,0,0,0.227 +0.333,0.579,0.162,0.146,0,0,0,0,0,0.0378 +0.333,0.592,0.167,0.152,0,0,0,0,0,0.0756 +0.667,0.627,0.37,0.291,0,0,0,0,0,0.264 +0.667,0.619,0.485,0.365,0,0,0,0,0,0.0378 +1,0.619,0.844,0.674,0,0,0,0,0,0.134 +1,0.567,0.525,0.547,0.598,0.817,0,0,0,0 +1,0.533,0.334,0.401,0.607,0.1,0,0,0,0 +1,0.536,0.0868,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0316,0.137,0,0,0,0,0.567,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0.15,0 +0.667,0.558,0.0461,0.163,0,0,0,0,0,0.176 +0.667,0.558,0.0526,0.158,0,0,0,0,0,0.352 +0.667,0.55,0.0996,0.258,0,0,0,0,0,0.2 +0.667,0.55,0.11,0.247,0,0,0,0,0,0.209 +0.667,0.55,0.116,0.239,0,0,0,0,0,0.186 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.0756 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.0378 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.0378 +0.667,0.593,0.19,0.241,0,0,0,0,0,0.227 +0.667,0.619,0.232,0.254,0,0,0,0,0,0.113 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.227 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.26,0.298,0,0,0,0,0,0.212 +1,0.516,0.453,0.576,0,0,0,0,0,0.118 +1,0.536,0.0759,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.136 +1,0.515,0.0474,0.224,0,0,0,0,0,0.517 +1,0.529,0.087,0.394,0,0,0,0,0,0.124 +0.667,0.55,0.0764,0.277,0,0,0,0,0,0.055 +0.333,0.558,0.0526,0.158,0,0,0,0,0,0.419 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0.227 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.213 +0.333,0.558,0.073,0.144,0,0,0,0,0,0 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0.113 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.0378 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.227 +0.333,0.596,0.163,0.171,0,0,0,0,0,0.113 +0.333,0.592,0.224,0.208,0,0,0,0,0,0.175 +0.667,0.601,0.532,0.466,0,0,0,0,0,0.0983 +0.667,0.567,0.504,0.547,0,0,0,0,0.317,0 +1,0.533,0.307,0.401,0,0,0,0,0.4,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.553,0.0396,0.165,0,0,0,0,0.467,0 +0.667,0.558,0.0461,0.163,0,0,0,0,0,0 +0.667,0.55,0.0894,0.266,0,0,0,0,0,0.0756 +0.333,0.558,0.0577,0.154,0,0,0,0,0,0.113 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.0756 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.0378 +0.333,0.558,0.073,0.144,0,0,0,0,0,0.151 +0.333,0.558,0.0766,0.143,0,0,0,0,0,0.189 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.113 +0.667,0.593,0.19,0.241,0,0,0,0,0,0.0378 +1,0.645,0.339,0.357,0,0,0,0,0,0.0378 +0.667,0.627,0.31,0.291,0,0,0,0,0,0.098 +1,0.645,0.64,0.523,0,0,0,0,0,0.287 +0.333,0.583,0.274,0.258,0,0,0,0,0,0.0756 +0.667,0.567,0.504,0.547,0.365,0.567,0,0,0,0 +0.667,0.533,0.307,0.401,0.167,0.35,0,0,0,0.344 +1,0.507,0.136,0.184,0,0,0,0,0,0 +1,0.532,0.0374,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.54,0.0316,0.137,0.374,0.567,0,0,0,0.0378 +1,0.541,0.0633,0.279,0.374,0.35,0,0,0,0.369 +0.667,0.558,0.0461,0.163,0,0,0,0,0,0 +0.333,0.558,0.0526,0.158,0.508,0.567,0,0,0,0.0378 +0.333,0.558,0.0577,0.154,0.37,0.35,0,0,0,0.0756 +0.333,0.558,0.0628,0.149,0,0,0,0,0,0.113 +0.333,0.558,0.0657,0.145,0,0,0,0,0,0.0756 +0.667,0.558,0.073,0.144,0,0,0,0,0,0.189 +0.667,0.558,0.0766,0.143,0,0,0,0,0,0.0756 +0.667,0.566,0.0846,0.144,0,0,0,0,0,0.0756 +0.667,0.579,0.103,0.146,0,0,0,0,0,0 +0.667,0.592,0.124,0.152,0,0,0,0,0,0 +0.667,0.596,0.163,0.171,0,0,0,0,0,0.0378 +0.667,0.592,0.224,0.208,0,0,0,0,0.567,0 +0.667,0.601,0.532,0.466,0,0,0,0,0.15,0 +1,0.567,0.504,0.547,0,0,0,0,0,0 +1,0.533,0.307,0.401,0,0,0,0,0,0 +1,0.507,0.136,0.184,0,0,0.275,0.317,0,0.0756 +1,0.498,0.059,0.0999,0,0,0,0.433,0,0.254 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.532,0.0236,0.0775,0,0,0,0,0,0.325 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.32 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.558,0.0526,0.158,0,0,0,0,0,0.347 +0.667,0.558,0.0577,0.154,0,0,0.207,0.317,0,0.356 +1,0.542,0.157,0.346,0,0,0,0.433,0.233,0.345 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.163 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.333,0.566,0.0846,0.144,0,0,0,0,0,0.189 +0.333,0.579,0.103,0.146,0,0,0,0,0,0.0378 +0.333,0.592,0.124,0.152,0,0,0,0,0,0.151 +0.667,0.627,0.31,0.291,0,0,0,0,0,0.113 +0.333,0.592,0.224,0.208,0,0,0,0,0,0.0756 +0.333,0.583,0.274,0.258,0,0,0,0,0,0.0756 +0.667,0.567,0.504,0.547,0,0,0,0,0,0.219 +0.667,0.533,0.307,0.401,0,0,0,0,0,0.239 +0.667,0.507,0.136,0.184,0,0,0,0,0,0.321 +0.667,0.533,0.0451,0.0749,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.555,0.0444,0.168,0,0,0,0,0,0.127 +1,0.552,0.113,0.288,0,0,0,0,0,0.34 +1,0.552,0.147,0.281,0,0,0,0,0,0.476 +1,0.552,0.174,0.273,0,0,0,0,0,0.321 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.559,0.111,0.152,0,0,0,0,0.483,0.151 +0.667,0.559,0.129,0.151,0,0,0,0,0,0.302 +0.333,0.559,0.146,0.151,0,0,0,0,0,0.227 +0.333,0.568,0.159,0.151,0,0,0,0,0,0.0756 +0.333,0.581,0.167,0.156,0,0,0,0,0,0.0378 +0.333,0.594,0.172,0.169,0,0,0,0,0,0 +0.667,0.63,0.383,0.354,0,0,0,0,0,0.0756 +0.667,0.622,0.501,0.458,0,0,0,0,0,0.0756 +0.667,0.604,0.588,0.559,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.537,0.0894,0.117,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.542,0.0301,0.14,0,0,0,0,0,0.232 +1,0.555,0.0444,0.168,0,0,0,0,0,0.139 +1,0.552,0.113,0.288,0,0,0,0,0,0.0378 +1,0.546,0.212,0.396,0,0,0,0,0,0.343 +1,0.546,0.252,0.384,0,0,0,0,0,0.484 +0.667,0.552,0.191,0.262,0,0,0,0,0,0.0756 +0.333,0.559,0.111,0.152,0,0,0,0,0,0.0378 +0.333,0.559,0.129,0.151,0,0,0,0,0,0.0756 +0.667,0.552,0.273,0.251,0,0,0,0,0,0.0756 +0.667,0.57,0.3,0.253,0,0,0,0,0,0.0378 +0.333,0.581,0.167,0.156,0,0,0,0,0,0.113 +0.667,0.622,0.326,0.289,0,0,0,0,0,0.0756 +0.667,0.63,0.383,0.354,0,0,0,0,0,0.113 +0.667,0.622,0.501,0.458,0,0,0,0,0.233,0 +0.667,0.585,0.303,0.304,0,0,0,0,0,0.113 +0.333,0.566,0.0181,0.05,0,0,0.257,0.733,0,0.0756 +0.667,0.55,0.182,0.222,0,0,0.319,0.0167,0,0 +1,0.537,0.0894,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0188,0.0508,0,0,0,0,0,0.345 +1,0.533,0.0241,0.0788,0,0,0,0,0,0.327 +1,0.542,0.0323,0.14,0,0,0,0,0,0.202 +1,0.544,0.0653,0.287,0,0,0,0,0,0.227 +0.667,0.559,0.0473,0.169,0.126,0.0667,0,0,0,0.158 +0.667,0.559,0.0541,0.165,0.88,0.867,0,0,0,0.113 +0.667,0.552,0.103,0.273,0.727,0,0,0,0,0.302 +0.333,0.559,0.0646,0.156,0.735,0,0,0,0,0.0378 +0.333,0.559,0.0676,0.152,0.248,0,0,0,0,0.0378 +0.333,0.559,0.0751,0.151,0,0,0,0,0.717,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.189 +0.333,0.581,0.106,0.156,0,0,0,0,0.233,0.0378 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.264 +0.333,0.598,0.168,0.202,0,0,0,0,0,0.0378 +0.333,0.594,0.231,0.254,0,0,0.154,0.317,0,0.113 +0.667,0.604,0.55,0.559,0,0,0.355,0.433,0,0 +0.667,0.568,0.269,0.32,0,0,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.14,0,0,0,0,0,0.187 +1,0.544,0.0653,0.287,0,0,0,0,0.0667,0.166 +0.667,0.559,0.0473,0.169,0,0,0,0,0.167,0 +0.667,0.559,0.0541,0.165,0,0,0,0,0,0.113 +0.667,0.559,0.0593,0.161,0,0,0,0,0,0.264 +1,0.552,0.113,0.262,0,0,0.407,0.817,0,0.113 +1,0.552,0.119,0.254,0,0,0.377,0.45,0,0 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.0378 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.0378 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0.189 +0.333,0.581,0.106,0.156,0,0,0,0,0,0.113 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.113 +0.333,0.598,0.168,0.202,0,0,0,0,0.483,0.113 +0.333,0.594,0.231,0.254,0,0,0,0,0,0 +0.333,0.585,0.283,0.304,0,0,0,0,0,0 +0.667,0.57,0.521,0.589,0,0,0,0,0,0 +0.667,0.535,0.317,0.394,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.233,0 +1,0.542,0.0323,0.14,0,0,0,0,0.0667,0.151 +1,0.533,0.09,0.405,0,0,0,0,0.9,0.189 +0.667,0.552,0.0788,0.288,0,0,0,0,0,0.151 +0.333,0.559,0.0541,0.165,0.205,0.317,0,0,0,0 +0.333,0.559,0.0593,0.161,0.588,0.85,0,0,0,0.113 +0.333,0.559,0.0646,0.156,0.466,0,0,0,0.567,0.0378 +0.667,0.552,0.119,0.254,0,0,0,0,0.15,0.113 +0.667,0.552,0.134,0.251,0,0,0,0,0,0.0756 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.323 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0.0993 +0.333,0.581,0.106,0.156,0,0,0,0,0,0.288 +0.333,0.594,0.128,0.169,0,0,0,0,0.717,0.189 +0.667,0.63,0.32,0.354,0,0,0,0,0,0.0756 +0.333,0.594,0.231,0.254,0,0,0,0,0,0.0378 +0.333,0.585,0.283,0.304,0,0,0,0,0,0 +0.667,0.57,0.521,0.589,0,0,0,0,0,0.0571 +1,0.55,0.167,0.222,0,0,0,0,0,0.253 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0 +1,0.533,0.0173,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0241,0.0788,0,0,0,0,0.55,0.21 +0.667,0.566,0.0159,0.05,0,0,0,0,1,0.137 +0.667,0.544,0.0653,0.287,0,0,0,0,1,0.365 +0,0.566,0.0159,0.05,0,0,0,0,0.1,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0593,0.161,0,0,0,0,0,0.192 +0,0.566,0.0159,0.05,0,0,0,0,0.567,0.302 +0.333,0.559,0.0676,0.152,0,0,0,0,0.15,0.0756 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.0756 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.0756 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0.0756 +0.333,0.581,0.106,0.156,0,0,0,0,0,0 +0.667,0.622,0.239,0.289,0.353,0.317,0,0,0,0.0378 +0.333,0.598,0.168,0.202,0.694,0.617,0,0,0,0.178 +0.667,0.622,0.446,0.458,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0.166 +0.667,0.57,0.521,0.589,0,0,0,0,0,0 +1,0.535,0.317,0.394,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0.0378 +1,0.533,0.0383,0.0749,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0188,0.0508,0,0,0,0,0,0.29 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.555,0.0406,0.168,0,0,0,0,0,0.206 +1,0.552,0.0788,0.288,0,0,0,0,0,0.318 +1,0.552,0.0923,0.281,0,0,0,0,0,0.176 +1,0.546,0.146,0.384,0,0,0,0,0,0.524 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.302 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.568,0.0871,0.151,0,0,0,0,0,0.0378 +0.667,0.596,0.196,0.261,0,0,0,0,0,0.0378 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.398 +0.333,0.598,0.168,0.202,0,0,0,0,0,0.119 +0.333,0.594,0.231,0.254,0,0,0,0,0,0.113 +0.667,0.604,0.55,0.559,0,0,0,0,0,0.177 +0.667,0.57,0.521,0.589,0,0,0,0,0,0.255 +0.667,0.55,0.167,0.222,0,0,0,0,0,0.236 +1,0.537,0.0781,0.117,0,0,0,0,0,0.194 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.494,0.054,0.32,0,0,0,0,0.483,0.404 +0.667,0.544,0.0706,0.287,0,0,0,0,0,0.218 +0.667,0.552,0.113,0.288,0,0,0,0,0,0 +0.333,0.559,0.0826,0.165,0,0,0,0,0,0.151 +0.333,0.559,0.0961,0.161,0,0,0,0,0,0.0378 +0.333,0.559,0.104,0.156,0,0,0,0,0.483,0 +0.667,0.552,0.204,0.254,0,0,0,0,0,0.0756 +0.333,0.559,0.129,0.151,0,0,0,0,0,0.189 +0.333,0.559,0.146,0.151,0,0,0,0,0,0.227 +0.333,0.568,0.159,0.151,0,0,0,0,0,0.302 +0.667,0.596,0.315,0.261,0,0,0,0,0,0.0378 +0.667,0.622,0.326,0.289,0,0,0,0,0,0.113 +0.667,0.63,0.383,0.354,0,0,0,0,0,0.0378 +0.667,0.622,0.501,0.458,0,0,0,0,0,0.343 +0.667,0.604,0.588,0.559,0,0,0,0,0,0.313 +1,0.57,0.543,0.589,0,0,0,0,0,0.166 +1,0.55,0.182,0.222,0,0,0,0,0,0.102 +1,0.537,0.0894,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.542,0.0301,0.14,0,0,0,0,0,0.147 +1,0.555,0.0444,0.168,0,0,0,0,0.483,0.254 +1,0.546,0.16,0.407,0,0,0,0,0.233,0.113 +1,0.546,0.212,0.396,0,0,0,0,0,0 +0.667,0.552,0.174,0.273,0,0,0,0,0,0.0378 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0.233,0 +0.333,0.559,0.129,0.151,0.526,0.483,0,0,0.483,0.0378 +0,0.566,0.0181,0.05,0.444,0.45,0,0,0,0.264 +0.333,0.568,0.159,0.151,0,0,0,0,0,0.264 +0.333,0.581,0.167,0.156,0,0,0,0,0.233,0.0756 +0.667,0.622,0.326,0.289,0.682,0.983,0,0,0.25,0.189 +0.667,0.63,0.383,0.354,0.799,0.183,0,0,0,0.376 +1,0.622,0.501,0.458,0,0,0,0,0,0.0378 +1,0.604,0.588,0.559,0,0,0,0,0,0.0378 +1,0.568,0.281,0.32,0,0,0,0,0,0 +1,0.55,0.182,0.222,0,0,0,0,0,0 +1,0.537,0.0894,0.117,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.14,0,0,0,0,0.233,0.0378 +0.667,0.555,0.0406,0.168,0,0,0,0,0,0.363 +0.333,0.559,0.0473,0.169,0,0,0,0,0,0.532 +0.333,0.559,0.0541,0.165,0,0,0,0,0,0.159 +0.333,0.559,0.0593,0.161,0,0,0,0,0,0.105 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0.0756 +0.333,0.581,0.106,0.156,0,0,0,0,0,0.151 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.302 +0.333,0.598,0.168,0.202,0.481,0.567,0,0,0.317,0.151 +0.667,0.622,0.446,0.458,0.803,0.367,0,0,0.4,0.0756 +0.667,0.604,0.55,0.559,0.594,0,0,0,0,0 +0.667,0.57,0.521,0.589,0.451,0,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.14,0,0,0,0,0.317,0.375 +1,0.533,0.09,0.405,0,0,0,0,0.4,0.15 +0.667,0.552,0.0788,0.288,0,0,0,0,0,0.156 +0.667,0.552,0.0923,0.281,0,0,0,0,0,0.192 +0.333,0.559,0.0593,0.161,0,0,0,0,0,0.189 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.0756 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.302 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0.0667,0.0756 +0.333,0.581,0.106,0.156,0,0,0,0,0.167,0.264 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.227 +0.333,0.598,0.168,0.202,0,0,0,0,0,0.169 +0.333,0.594,0.231,0.254,0,0,0,0,0,0.142 +0.667,0.604,0.55,0.559,0,0,0,0,0,0 +0.667,0.57,0.521,0.589,0,0,0,0,0,0.061 +1,0.535,0.317,0.394,0,0,0,0,0,0.105 +1,0.537,0.0781,0.117,0,0,0,0,0,0.194 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.559,0.0473,0.169,0,0,0,0,0,0.265 +0.667,0.552,0.0923,0.281,0.588,0.567,0,0,0,0.34 +0.333,0.559,0.0593,0.161,0.802,0.367,0,0,0,0.189 +0.333,0.559,0.0646,0.156,0.587,0,0,0,0,0 +0.333,0.559,0.0676,0.152,0.645,0,0,0,0.0667,0.113 +0.333,0.559,0.0751,0.151,0.348,0,0,0,0.167,0.416 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0 +0.333,0.581,0.106,0.156,0,0,0,0,0,0.0756 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.0378 +0.667,0.63,0.32,0.354,0,0,0,0,0,0 +0.667,0.622,0.446,0.458,0,0,0,0,0,0.0378 +0.667,0.604,0.55,0.559,0,0,0,0,0,0 +0.667,0.57,0.521,0.589,0,0,0,0,0,0.194 +0.667,0.535,0.317,0.394,0,0,0,0,0,0 +0.667,0.537,0.0781,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0.209 +1,0.533,0.0173,0.05,0,0,0,0,0,0.298 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0546 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.214 +1,0.518,0.0488,0.23,0.117,0.0667,0,0,0.483,0.113 +0.667,0.555,0.0406,0.168,0.85,0.867,0,0,0,0.518 +0.667,0.552,0.0788,0.288,0,0,0,0,0,0.704 +0.667,0.552,0.0923,0.281,0.566,0.817,0,0,0,0.376 +0.667,0.552,0.103,0.273,0,0.117,0,0,0,0.0988 +0.667,0.552,0.113,0.262,0,0,0,0,0,0.177 +0.667,0.552,0.119,0.254,0,0,0,0,0,0.14 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.594,0.128,0.169,0,0,0,0,0.317,0.227 +0.333,0.598,0.168,0.202,0,0,0,0,1,0.151 +0.333,0.594,0.231,0.254,0,0,0,0,0.133,0 +0.667,0.604,0.55,0.559,0,0,0,0,0,0 +1,0.57,0.521,0.589,0,0,0,0,0,0 +1,0.535,0.317,0.394,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0158,0.05,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.395 +1,0.555,0.0406,0.168,0,0,0,0,0,0.521 +1,0.552,0.0788,0.288,0,0,0,0,0,0.112 +0.667,0.552,0.0923,0.281,0,0,0,0,0,0.227 +0.667,0.552,0.103,0.273,0,0,0,0,0,0.0756 +0.667,0.552,0.113,0.262,0,0,0,0,0,0.113 +0.667,0.552,0.119,0.254,0,0,0,0,0,0.409 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.409 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.581,0.106,0.156,0,0,0,0,0,0 +0.333,0.594,0.128,0.169,0,0,0,0,0.483,0 +0.333,0.598,0.168,0.202,0,0,0,0,0,0.113 +0.667,0.622,0.446,0.458,0,0,0,0,0,0.151 +0.667,0.604,0.55,0.559,0,0,0,0,0,0 +1,0.57,0.521,0.589,0,0,0,0,0,0 +1,0.535,0.317,0.394,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.533,0.0226,0.0788,0,0,0,0,0,0.113 +1,0.542,0.0301,0.14,0,0,0,0,0,0.354 +1,0.544,0.0706,0.287,0,0,0,0,0,0.152 +1,0.552,0.113,0.288,0,0,0,0,0,0 +0.667,0.559,0.0826,0.165,0,0,0,0,0,0 +0.333,0.559,0.0961,0.161,0,0,0,0,0,0.113 +0.333,0.559,0.104,0.156,0,0,0,0,0,0.0756 +0.333,0.559,0.111,0.152,0,0,0,0,0,0.0378 +0.333,0.559,0.129,0.151,0,0,0,0,0,0.227 +0.333,0.559,0.146,0.151,0,0,0,0,0,0.302 +0.333,0.568,0.159,0.151,0,0,0.17,0.733,0,0.151 +0.667,0.596,0.315,0.261,0,0,0.497,0.283,0,0.0378 +0.333,0.594,0.172,0.169,0,0,0.586,0,0,0 +0.333,0.598,0.2,0.202,0,0,0.419,0,0,0.113 +0.667,0.622,0.501,0.458,0,0,0,0,0,0.151 +0.333,0.585,0.303,0.304,0,0,0,0,0,0.14 +1,0.572,0.806,0.859,0,0,0,0,0,0.124 +1,0.52,0.509,0.566,0,0,0,0,0,0.0648 +1,0.537,0.0894,0.117,0,0,0,0,0,0.0794 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.197 +1,0.544,0.0706,0.287,0,0,0,0,0,0.491 +1,0.546,0.16,0.407,0,0,0,0,0,0.337 +0.667,0.552,0.147,0.281,0,0,0.389,0.983,0,0.155 +0.333,0.559,0.0961,0.161,0,0,0.0183,0.533,0,0.0378 +0.333,0.559,0.104,0.156,0,0,0.576,0,0.233,0.0378 +0.333,0.559,0.111,0.152,0,0,0.475,0,0.733,0 +0.667,0.552,0.24,0.251,0,0,0,0,0,0.151 +0.333,0.559,0.146,0.151,0,0,0,0,0,0.189 +0.333,0.568,0.159,0.151,0,0,0,0,0,0.264 +0.333,0.581,0.167,0.156,0,0,0,0,0,0.0756 +0.667,0.622,0.326,0.289,0.714,0.933,0,0,0,0.189 +0.667,0.63,0.383,0.354,0,0,0,0,0.233,0 +0.667,0.622,0.501,0.458,0,0,0.148,0.25,0,0 +1,0.624,0.873,0.814,0,0,0.589,0,0,0.113 +1,0.57,0.543,0.589,0,0,0.128,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.14,0,0,0,0,0,0.529 +1,0.544,0.0653,0.287,0,0,0,0,0,0.404 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0593,0.161,0,0,0,0,0,0.0756 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.264 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.302 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0 +0.333,0.568,0.0871,0.151,0.201,0.0667,0,0,0.233,0.0378 +0.667,0.596,0.196,0.261,0.605,0.867,0,0,0,0.106 +0.333,0.594,0.128,0.169,0.735,0,0,0,0,0 +0.333,0.598,0.168,0.202,0,0,0,0,0.233,0.189 +0.333,0.594,0.231,0.254,0,0,0,0,0.233,0.151 +0.667,0.604,0.55,0.559,0,0,0,0,0,0.0756 +0.667,0.57,0.521,0.589,0,0,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.239 +1,0.542,0.0323,0.14,0,0,0,0,0.567,0.176 +0.667,0.555,0.0406,0.168,0,0,0,0,0.217,0.141 +0.667,0.552,0.0788,0.288,0,0,0,0,0.167,0.218 +0.667,0.552,0.0923,0.281,0,0,0,0,0,0.0756 +0.667,0.552,0.103,0.273,0,0,0,0,0,0.113 +0.667,0.552,0.113,0.262,0,0,0,0,0,0 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.301 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.142 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0.0667,0.113 +0.667,0.63,0.32,0.354,0,0,0,0,1,0 +0.667,0.622,0.446,0.458,0,0,0,0,0.133,0.178 +0.667,0.604,0.55,0.559,0,0,0,0,0,0.242 +0.667,0.57,0.521,0.589,0,0,0.577,0.75,0,0 +1,0.535,0.317,0.394,0,0,0.305,0,0,0 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.258 +0.333,0.555,0.0406,0.168,0,0,0,0,0,0.111 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.0756 +0.333,0.559,0.0676,0.152,0,0,0,0,0.567,0.151 +0.667,0.559,0.0751,0.151,0,0,0,0,0.633,0.227 +0.667,0.559,0.0789,0.151,0,0,0,0,0.0667,0.264 +1,0.57,0.158,0.253,0,0,0,0,0.167,0.0756 +1,0.611,0.286,0.367,0,0,0,0,0,0.539 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.0378 +0.667,0.63,0.32,0.354,0,0,0,0,0.717,0.0756 +0.667,0.622,0.446,0.458,0,0,0,0,0,0.0756 +0.667,0.604,0.55,0.559,0.16,0.0667,0,0,0,0.0378 +0.667,0.568,0.269,0.32,0.607,0.867,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.555,0.0406,0.168,0,0,0,0,0.233,0 +0.667,0.559,0.0473,0.169,0,0,0,0,0,0.189 +0.667,0.559,0.0541,0.165,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.148 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.538 +0.333,0.559,0.0676,0.152,0,0,0,0,0.233,0.381 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.192 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.0378 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0.113 +0.333,0.581,0.106,0.156,0.502,0.817,0,0,0,0.113 +0.333,0.594,0.128,0.169,0,0.117,0,0,0,0.34 +0.333,0.598,0.168,0.202,0,0,0,0,0,0.189 +0.333,0.594,0.231,0.254,0,0,0,0,0,0.113 +0.333,0.585,0.283,0.304,0,0,0,0,0,0 +0.667,0.568,0.269,0.32,0,0,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0 +0.667,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0.133 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.22 +1,0.533,0.09,0.405,0,0,0,0,0.817,0.278 +1,0.546,0.11,0.407,0,0,0,0,0.467,0.553 +0.667,0.552,0.0923,0.281,0,0,0,0,0.4,0.302 +0.667,0.552,0.103,0.273,0,0,0,0,0,0.154 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.113 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.113 +0.667,0.552,0.134,0.251,0,0,0,0,0,0.688 +0.667,0.559,0.0789,0.151,0,0,0,0,0,0.305 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.231,0.254,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.542,0.0301,0.14,0,0,0,0,0.483,0.0727 +1,0.533,0.0968,0.405,0,0,0,0,0,0.22 +0.667,0.552,0.113,0.288,0,0,0,0,0,0.17 +0.667,0.552,0.147,0.281,0,0,0,0,0,0.459 +1,0.546,0.252,0.384,0,0,0,0,0,0.217 +0.667,0.552,0.191,0.262,0,0,0,0,0,0.337 +1,0.546,0.297,0.355,0,0,0,0,0,0.239 +0.667,0.552,0.24,0.251,0,0,0,0,0,0.531 +0.667,0.552,0.273,0.251,0,0,0.0942,0.233,0,0.125 +0.667,0.57,0.3,0.253,0,0,0.444,0.783,0,0.168 +1,0.611,0.464,0.367,0,0,0.569,0,0,0.151 +0.667,0.622,0.326,0.289,0,0,0.487,0,0,0.151 +0.667,0.63,0.383,0.354,0,0,0.0183,0,0,0.152 +0.667,0.622,0.501,0.458,0,0,0,0,0,0.34 +0.667,0.604,0.588,0.559,0,0,0,0,0,0 +1,0.57,0.543,0.589,0,0,0,0,0,0 +1,0.55,0.182,0.222,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.533,0.0226,0.0788,0,0,0,0,0.483,0.0378 +1,0.542,0.0301,0.14,0,0,0,0,0,0 +1,0.555,0.0444,0.168,0,0,0,0,0,0.113 +1,0.552,0.113,0.288,0,0,0,0,0.967,0.469 +1,0.552,0.147,0.281,0,0,0,0,0,0.124 +0.667,0.559,0.0961,0.161,0,0,0,0,0,0.355 +0.667,0.559,0.104,0.156,0,0,0,0,0.233,0.101 +0.667,0.552,0.204,0.254,0,0,0,0,0,0.115 +0.667,0.552,0.24,0.251,0,0,0,0,0,0.378 +1,0.552,0.273,0.251,0,0,0,0,0,0.0756 +0.667,0.57,0.3,0.253,0,0,0,0,0,0.227 +1,0.611,0.464,0.367,0,0,0,0,0.483,0.236 +0.667,0.622,0.326,0.289,0,0,0,0,0,0.189 +0.333,0.598,0.2,0.202,0,0,0,0,0,0.0378 +0.333,0.594,0.26,0.254,0,0,0,0,0,0 +0.333,0.585,0.303,0.304,0,0,0,0,0,0.0756 +0.333,0.568,0.281,0.32,0,0,0,0,0,0 +0.333,0.55,0.182,0.222,0,0,0,0,0,0 +0.333,0.537,0.0894,0.117,0,0,0,0,0,0 +0.333,0.533,0.0383,0.0749,0,0,0,0,0,0.151 +0.667,0.533,0.0241,0.0583,0,0,0,0,0,0.444 +0.667,0.533,0.0173,0.05,0,0,0,0,0,0.0378 +0.667,0.533,0.0158,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.318 +0.667,0.555,0.0406,0.168,0,0,0,0,0,0.0676 +0.333,0.559,0.0473,0.169,0,0,0,0,0,0.0623 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.667,0.552,0.119,0.254,0,0,0,0,0,0.81 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.392 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0.317,0.0378 +0.333,0.581,0.106,0.156,0,0,0,0,0.4,0.0756 +0.333,0.594,0.128,0.169,0,0,0,0,0.317,0.136 +0.667,0.63,0.32,0.354,0.331,0.317,0,0,1,0.0985 +0.667,0.622,0.446,0.458,0.581,0.617,0,0,0.367,0 +0.667,0.604,0.55,0.559,0,0,0,0,0,0.189 +0.667,0.57,0.521,0.589,0,0,0,0,0,0.0567 +0.667,0.55,0.167,0.222,0,0,0,0,0,0.274 +1,0.509,0.14,0.184,0,0,0,0,0,0.151 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.14,0,0,0,0,0,0.425 +1,0.544,0.0653,0.287,0,0,0,0,0,0.243 +1,0.552,0.0788,0.288,0,0,0,0,0,0.221 +0.667,0.559,0.0541,0.165,0,0,0,0,0.483,0.173 +0.667,0.552,0.103,0.273,0.325,0.317,0,0,0,0.114 +0.667,0.552,0.113,0.262,0.667,0.617,0,0,0,0.512 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.347 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.227 +0.333,0.566,0.0159,0.05,0,0,0,0,0.233,0.0756 +0.667,0.57,0.158,0.253,0,0,0,0,0,0.411 +0.667,0.596,0.196,0.261,0,0,0,0,0,0.44 +0.333,0.594,0.128,0.169,0,0,0,0,0,0.113 +0.333,0.598,0.168,0.202,0,0,0,0,0,0 +0.333,0.594,0.231,0.254,0.581,0.817,0,0,0,0.151 +0.667,0.604,0.55,0.559,0.56,0.117,0,0,0.233,0 +0.667,0.57,0.521,0.589,0,0,0,0,0,0 +1,0.52,0.468,0.566,0.103,0.0667,0,0,0,0.0756 +1,0.537,0.0781,0.117,0.541,0.75,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.204 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.122 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.152 +0.667,0.555,0.0406,0.168,0,0,0,0,0,0.261 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0541,0.165,0,0,0,0,0.233,0.227 +0.333,0.559,0.0593,0.161,0,0,0,0,0,0 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.189 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.0378 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.151 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.189 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0.416 +0.667,0.596,0.196,0.261,0,0,0,0,0.0667,0.113 +1,0.622,0.239,0.289,0,0,0,0,0.417,0.0378 +1,0.63,0.32,0.354,0,0,0,0,0,0.0378 +0.667,0.622,0.446,0.458,0,0,0,0,0,0 +0.667,0.604,0.55,0.559,0,0,0,0,0,0 +0.667,0.57,0.521,0.589,0,0,0,0,0,0 +0.667,0.55,0.167,0.222,0,0,0,0,0,0 +1,0.537,0.0781,0.117,0,0.117,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.237 +1,0.542,0.0323,0.14,0,0,0,0,0,0.41 +1,0.555,0.0406,0.168,0,0,0,0,0,0.3 +1,0.552,0.0788,0.288,0,0,0,0,0,0.477 +1,0.552,0.0923,0.281,0,0,0,0,0,0.214 +1,0.552,0.103,0.273,0,0,0,0,0.717,0.346 +1,0.552,0.113,0.262,0,0,0,0,0,0.204 +1,0.546,0.171,0.355,0,0,0,0,0,0.198 +1,0.546,0.194,0.352,0,0,0,0,0,0.259 +1,0.546,0.205,0.352,0,0,0,0,0,0.113 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.15 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.622,0.446,0.458,0.65,0.817,0,0,0.317,0 +1,0.624,0.817,0.814,0.203,0.117,0,0,1,0 +0.667,0.568,0.269,0.32,0,0,0,0,1,0.145 +1,0.55,0.167,0.222,0,0,0,0,0.1,0.101 +1,0.537,0.0781,0.117,0,0,0,0,0,0 +1,0.533,0.0383,0.0749,0,0,0,0,0,0 +1,0.533,0.0241,0.0583,0,0,0,0,0,0 +1,0.533,0.0173,0.05,0,0,0,0,0,0.0378 +1,0.533,0.0158,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.542,0.0323,0.14,0,0,0,0,0,0.267 +1,0.555,0.0406,0.168,0,0,0,0,0,0.203 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.559,0.0593,0.161,0,0,0,0,0,0.113 +0.333,0.559,0.0646,0.156,0,0,0,0,0,0.294 +0.333,0.559,0.0676,0.152,0,0,0,0,0,0.229 +0.333,0.559,0.0751,0.151,0,0,0,0,0,0.108 +0.333,0.559,0.0789,0.151,0,0,0,0,0,0.579 +0.333,0.568,0.0871,0.151,0,0,0,0,0,0 +0.333,0.581,0.106,0.156,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.594,0.231,0.254,0,0,0,0,0,0.113 +0.333,0.585,0.283,0.304,0,0,0,0,0,0.0756 +0.333,0.568,0.269,0.32,0,0,0,0,0,0.128 +1,0.535,0.317,0.394,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.533,0.0226,0.0788,0,0,0,0,0,0.271 +1,0.542,0.0301,0.14,0,0,0,0,0,0 +1,0.555,0.0444,0.168,0,0,0,0,0,0.302 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.14 +0.667,0.552,0.174,0.273,0,0,0,0,0,0.282 +0.333,0.559,0.104,0.156,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0.177,0.233,0,0 +0.333,0.559,0.146,0.151,0,0,0.478,0.517,0,0.189 +0.667,0.57,0.3,0.253,0,0,0.478,0,0,0.327 +0.333,0.581,0.167,0.156,0,0,0.513,0,0.233,0.0378 +0.333,0.594,0.172,0.169,0,0,0,0,0.25,0.113 +0.333,0.598,0.2,0.202,0,0,0,0,0,0.0664 +0.667,0.622,0.501,0.458,0,0,0,0,0,0.0378 +0.667,0.604,0.588,0.559,0,0,0,0,0,0.0378 +1,0.572,0.806,0.859,0,0,0,0,0,0 +1,0.55,0.182,0.222,0,0,0,0,0,0.0756 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.544,0.0706,0.287,0,0,0.0458,0.483,0,0.472 +0.667,0.559,0.0654,0.169,0,0,0.393,0.267,0,0 +0.333,0.559,0.0826,0.165,0,0,0.48,0,0.717,0.0756 +0.667,0.552,0.174,0.273,0,0,0.522,0,0,0.34 +0.667,0.552,0.191,0.262,0,0,0.275,0,0,0.0378 +0.333,0.559,0.111,0.152,0,0,0.411,0,0,0.34 +0.333,0.559,0.129,0.151,0,0,0.425,0,0,0.113 +0.333,0.559,0.146,0.151,0,0,0.486,0,0,0.0378 +0.333,0.568,0.159,0.151,0,0,0.319,0,0,0.0378 +0.333,0.581,0.167,0.156,0,0,0.26,0,0,0 +0.333,0.594,0.172,0.169,0,0,0,0,0,0.189 +0.667,0.63,0.383,0.354,0,0,0,0,0,0.34 +0.667,0.622,0.501,0.458,0,0,0,0,0,0.0702 +0.667,0.604,0.588,0.559,0,0,0,0,0,0.322 +0.667,0.57,0.543,0.589,0,0,0,0,0,0 +0.667,0.535,0.345,0.394,0,0,0,0,0,0.513 +1,0.509,0.161,0.184,0,0,0,0,0,0 +1,0.564,0.0348,0.0749,0,0,0,0,0,0 +1,0.564,0.0224,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.614,0.0577,0.297,0,0,0,0,0.567,0 +0.667,0.595,0.0427,0.177,0,0,0,0,1,0.0378 +0.333,0.595,0.0486,0.176,0,0,0,0,0.933,0.162 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.388 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0.113 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.113 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0.113 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.151 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0.227 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.113 +0.333,0.636,0.113,0.202,0,0,0,0,0.0667,0 +0.333,0.641,0.148,0.254,0,0,0,0,0.433,0 +0.333,0.636,0.203,0.312,0,0,0,0,0.25,0 +0.333,0.626,0.248,0.338,0,0,0,0,0,0 +0.667,0.605,0.236,0.309,0,0,0,0,0,0.0577 +1,0.584,0.147,0.205,0,0,0,0,0,0.116 +1,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0178,0.0511,0,0,0,0,0,0.149 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.408 +0.667,0.574,0.0296,0.144,0,0,0,0,0,0.49 +0.333,0.59,0.0368,0.174,0,0,0,0,0,0.148 +0.333,0.595,0.0427,0.177,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0532,0.172,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0.189 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.227 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0.207 +0.333,0.595,0.0702,0.161,0,0,0,0,0.5,0.436 +0.667,0.645,0.139,0.277,0,0,0,0,0,0.0378 +0.667,0.676,0.172,0.297,0,0,0,0,0,0.189 +0.667,0.707,0.21,0.353,0,0,0,0,0.0667,0.0756 +0.333,0.641,0.148,0.254,0,0,0,0,0.183,0 +0.333,0.636,0.203,0.312,0,0,0,0,0,0.164 +0.667,0.686,0.481,0.626,0,0,0,0,0,0.106 +0.667,0.645,0.456,0.569,0,0,0,0,0,0.0756 +1,0.622,0.409,0.514,0,0,0,0,0,0 +1,0.572,0.123,0.184,0,0,0,0,0,0 +1,0.564,0.0348,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0368,0.174,0,0,0,0,0,0.227 +1,0.624,0.0695,0.304,0,0,0,0,0,0.0378 +0.667,0.624,0.0813,0.302,0,0,0,0,0,0.0756 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.34 +0.667,0.624,0.0996,0.282,0,0,0,0,0.567,0.0378 +0.333,0.595,0.0604,0.162,0,0,0,0,0.433,0 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0.151 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0 +0.667,0.605,0.0774,0.163,0,0,0,0,0,0.0756 +0.667,0.621,0.0938,0.174,0,0,0,0,0,0.113 +0.667,0.636,0.113,0.202,0,0,0,0,0,0.189 +0.667,0.717,0.28,0.458,0,0,0,0,0,0.189 +0.667,0.707,0.39,0.575,0,0,0,0,0.25,0.0756 +0.667,0.686,0.481,0.626,0,0,0,0,0,0.0565 +0.667,0.605,0.236,0.309,0,0,0,0,0,0.239 +1,0.584,0.147,0.205,0,0,0,0,0,0 +1,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.564,0.0348,0.0749,0,0,0,0,0,0 +1,0.564,0.0224,0.0583,0,0,0,0,0,0 +1,0.564,0.0165,0.05,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.574,0.0296,0.144,0,0,0,0,0,0.234 +1,0.614,0.0577,0.297,0,0,0,0,0,0.206 +0.667,0.624,0.0695,0.304,0,0,0,0,0,0.594 +0.333,0.595,0.0486,0.176,0,0,0,0,0,0.129 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.564 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.624,0.105,0.274,0,0,0,0,0,0.287 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0.0756 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.0378 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0.0756 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.113 +0.667,0.717,0.28,0.458,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +0.667,0.686,0.481,0.626,0,0,0,0,0.183,0.151 +0.667,0.645,0.456,0.569,0,0,0,0,0,0.0378 +1,0.622,0.409,0.514,0,0,0,0,0,0 +1,0.572,0.123,0.184,0,0,0,0,0,0 +1,0.564,0.0348,0.0749,0,0,0,0,0,0 +1,0.564,0.0224,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0178,0.0511,0,0,0,0,0,0.113 +1,0.564,0.0224,0.0806,0,0,0,0,0,0.0756 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.595,0.0427,0.177,0,0,0,0,0,0.0403 +0.667,0.624,0.0813,0.302,0,0,0,0,0,0.293 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.369 +0.667,0.624,0.0996,0.282,0,0,0,0,0,0.173 +0.667,0.624,0.105,0.274,0,0,0,0,0,0.205 +0.667,0.624,0.118,0.271,0.276,0.0667,0,0,0,0.115 +0.333,0.595,0.0702,0.161,1,0.917,0,0,0,0.227 +0.333,0.605,0.0774,0.163,0,0,0.598,0.7,0,0.0756 +0.333,0.621,0.0938,0.174,0,0,0.234,0,0,0.34 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +0.667,0.641,0.148,0.254,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.626,0.248,0.338,0,0,0.162,0.567,0,0.123 +1,0.645,0.456,0.569,0,0,0.0877,0.367,0,0.134 +1,0.584,0.147,0.205,0,0,0,0,0,0 +1,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.595,0.0855,0.172,0,0,0,0,0,0.0912 +0.333,0.595,0.0927,0.166,0,0,0,0,0,0.305 +0.333,0.595,0.0986,0.162,0,0,0,0,0,0.38 +0.333,0.595,0.114,0.161,0,0,0,0,0,0.403 +0.333,0.595,0.129,0.161,0,0,0,0,0,0.0378 +0.333,0.605,0.14,0.163,0,0,0,0,0,0.113 +0.333,0.621,0.147,0.174,0,0,0,0,0,0.113 +0,0.566,0.0181,0.05,0,0,0,0,0,0.113 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.636,0.228,0.312,0,0,0,0,0,0.0378 +0.667,0.626,0.266,0.338,0,0,0,0,0,0.0378 +1,0.645,0.475,0.569,0,0,0,0,0,0.0756 +1,0.603,0.302,0.36,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.562,0.0205,0.0523,0,0,0,0,0,0.0378 +1,0.562,0.0244,0.111,0,0,0,0,0,0.0378 +1,0.583,0.0375,0.239,0,0,0,0,0,0.0378 +1,0.614,0.0624,0.297,0,0,0,0,0.0667,0 +0.667,0.624,0.0991,0.304,0,0,0,0,0.433,0.113 +0.333,0.595,0.0737,0.176,0,0,0,0,0,0.0378 +0.333,0.595,0.0855,0.172,0,0,0,0,0,0.113 +0.333,0.595,0.0927,0.166,0,0,0,0,0,0.151 +0.667,0.624,0.179,0.274,0,0,0.188,0.567,0,0.0807 +0.667,0.624,0.21,0.271,0,0,0,0.133,0,0.2 +0.667,0.624,0.239,0.272,0,0,0,0,0,0.366 +0.333,0.605,0.14,0.163,0,0,0,0,0.317,0.0378 +0.333,0.621,0.147,0.174,0,0,0,0,0.433,0.113 +0.333,0.636,0.152,0.202,0,0,0,0,0,0.0378 +0.667,0.717,0.335,0.458,0.141,0.0667,0,0,0,0 +0.667,0.707,0.438,0.575,0.782,0.917,0,0,0,0.0378 +0.667,0.626,0.266,0.338,0.667,0,0,0,0,0 +0.667,0.605,0.247,0.309,0.645,0,0,0,0,0 +0.667,0.584,0.16,0.205,0.667,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0.133,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0178,0.0511,0,0,0,0,0,0.0756 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.189 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.595,0.0532,0.172,0,0,0,0,0.5,0.084 +0.667,0.624,0.0996,0.282,0,0,0,0,0,0.35 +0.667,0.624,0.105,0.274,0,0,0,0,0,0.139 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.0378 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0.0378 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.113 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.34 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.0756 +0.333,0.636,0.203,0.312,0,0,0,0,0.0667,0.0378 +1,0.686,0.481,0.626,0,0,0,0,0.183,0 +1,0.645,0.456,0.569,0,0,0,0,0,0.0847 +1,0.603,0.278,0.36,0,0,0,0,0,0 +1,0.572,0.123,0.184,0,0,0,0,0,0.162 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.574,0.0296,0.144,0,0,0,0,0,0.232 +1,0.638,0.0786,0.421,0,0,0,0,0,0.348 +0.667,0.624,0.0695,0.304,0,0,0,0,0,0.13 +0.333,0.595,0.0486,0.176,0,0,0,0,0,0.227 +0.333,0.595,0.0532,0.172,0,0,0,0,0,0 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0.119 +0.333,0.595,0.0604,0.162,0,0,0,0,0.317,0.226 +0.333,0.566,0.0159,0.05,0,0,0,0,0.183,0 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.113 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.707,0.21,0.353,0,0,0,0,0,0.222 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.0756 +0.333,0.636,0.203,0.312,0,0,0,0,0,0 +0.333,0.626,0.248,0.338,0,0,0,0,0,0 +0.667,0.645,0.456,0.569,0,0,0,0,0,0 +0.667,0.603,0.278,0.36,0,0,0,0,0,0.0569 +1,0.572,0.123,0.184,0,0,0,0,0,0.0569 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0224,0.0806,0,0,0,0,0,0.193 +1,0.583,0.0433,0.239,0,0,0,0,0,0.26 +0.667,0.59,0.0368,0.174,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0486,0.176,0,0,0,0,0.25,0 +0.333,0.595,0.0532,0.172,0,0,0,0,0,0.113 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0.0756 +0.333,0.595,0.0604,0.162,0.325,0.317,0,0,0,0.151 +0.333,0.595,0.0669,0.161,0.603,0.667,0,0,0,0.0756 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.0756 +0.333,0.605,0.0774,0.163,0.665,0.817,0,0,0,0.151 +0.333,0.621,0.0938,0.174,0.538,0.167,0,0,0,0.264 +0.333,0.636,0.113,0.202,0.648,0,0.215,0.7,0,0.0756 +0.333,0.641,0.148,0.254,0,0,0.411,0,0,0.0756 +0.333,0.636,0.203,0.312,0,0,0.335,0,0,0 +0.333,0.626,0.248,0.338,0,0,0.113,0,0,0.17 +0.333,0.605,0.236,0.309,0,0,0,0,0,0.316 +0.667,0.603,0.278,0.36,0,0,0.395,0.7,0,0.0873 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.583,0.0433,0.239,0,0,0,0,0,0.474 +1,0.614,0.0577,0.297,0,0,0,0,0,0.381 +0.667,0.624,0.0695,0.304,0.32,0.0667,0,0,0,0.103 +0.667,0.624,0.0813,0.302,0.445,0.917,0,0,0,0.372 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.36 +0.667,0.624,0.0996,0.282,0,0,0,0,0,0.227 +0.667,0.624,0.105,0.274,0,0,0,0,0,0.0378 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.0378 +0.333,0.605,0.0774,0.163,0,0,0,0,0.25,0 +0.667,0.676,0.172,0.297,0,0,0,0,0,0 +1,0.778,0.307,0.505,0,0,0,0,0,0 +1,0.793,0.413,0.662,0,0,0,0,0,0.0378 +1,0.778,0.578,0.837,0,0,0,0,0,0 +0.667,0.686,0.481,0.626,0,0,0,0,0,0.0378 +0.667,0.645,0.456,0.569,0,0,0,0,0,0 +0.667,0.603,0.278,0.36,0,0,0,0,0,0.213 +1,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.564,0.0348,0.0749,0,0,0,0,0,0 +1,0.564,0.0224,0.0583,0,0,0,0,0,0.0442 +1,0.566,0.0159,0.05,0,0,0,0,0,0.17 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.583,0.0433,0.239,0,0,0,0,0,0.127 +0.667,0.59,0.0368,0.174,0,0,0,0,0,0.434 +0.333,0.595,0.0427,0.177,0,0,0,0,0,0.39 +0.333,0.595,0.0486,0.176,0,0,0,0,0,0.706 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0852 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0.236 +0.667,0.624,0.105,0.274,0,0,0,0,0,0.226 +0.667,0.624,0.118,0.271,0,0,0,0,0,0.113 +0.667,0.595,0.0702,0.161,0,0,0,0,0,0.0378 +0.667,0.605,0.0774,0.163,0,0,0,0,0,0.227 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.0378 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.34 +0.667,0.717,0.28,0.458,0,0,0,0,0,0 +0.667,0.707,0.39,0.575,0,0,0,0,0,0.0378 +0.667,0.686,0.481,0.626,0,0,0,0,0,0.0378 +0.667,0.645,0.456,0.569,0,0,0,0,0,0.0929 +1,0.622,0.409,0.514,0,0,0,0,0,0.116 +1,0.572,0.123,0.184,0,0,0,0,0,0.098 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.595,0.0927,0.166,0,0,0,0,0,0.119 +0.667,0.595,0.0986,0.162,0,0,0.0942,0.0667,0,0.0763 +0.667,0.595,0.114,0.161,0,0,0.639,0.633,0,0.151 +0.667,0.624,0.239,0.272,0,0,0.474,0,0,0.302 +0.333,0.605,0.14,0.163,0,0,0.0864,0,0,0.34 +0.333,0.621,0.147,0.174,0,0,0,0,0,0 +0.333,0.636,0.152,0.202,0,0,0,0,0,0.113 +0.667,0.717,0.335,0.458,0,0,0,0,0,0.113 +0.667,0.707,0.438,0.575,0,0,0,0,0,0.189 +1,0.747,0.763,0.914,0,0,0,0,0,0.315 +1,0.684,0.704,0.829,0,0,0,0,0,0.343 +1,0.584,0.16,0.205,0,0,0.17,0.567,0,0.0596 +0.667,0.566,0.0181,0.05,0,0,0,0.133,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0193,0.0511,0,0,0,0,0,0.463 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.624,0.0991,0.304,0,0,0,0,0,0.203 +0.333,0.595,0.0737,0.176,0,0,0,0,0.0667,0 +0.333,0.595,0.0855,0.172,0,0,0,0,0.433,0.0378 +0.333,0.595,0.0927,0.166,0,0,0,0,0,0.0756 +0.333,0.595,0.0986,0.162,0,0,0,0,0.0667,0.113 +0.667,0.595,0.114,0.161,0,0,0,0,1,0.302 +0.667,0.595,0.129,0.161,0,0,0,0,0.433,0 +0.667,0.605,0.14,0.163,0,0,0,0,0,0.0756 +1,0.676,0.276,0.297,0,0,0,0,0,0.113 +0.667,0.636,0.152,0.202,0,0,0,0,0,0.367 +0.667,0.641,0.177,0.254,0.235,0.317,0,0,0,0.189 +0.667,0.636,0.228,0.312,0.618,0.667,0,0,0.317,0.0535 +0.667,0.686,0.514,0.626,0,0,0,0,0.183,0.159 +0.333,0.605,0.247,0.309,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.569,0.0796,0.117,0,0,0,0,0,0.187 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0329 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0368,0.174,0,0,0,0,0,0.254 +1,0.624,0.0695,0.304,0,0,0,0,0,0.549 +0.667,0.624,0.0813,0.302,0,0,0,0,0,0.411 +0.333,0.595,0.0532,0.172,0,0,0,0,0,0.203 +0,0.566,0.0159,0.05,0,0,0,0,0,0.215 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0.151 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.227 +0.333,0.636,0.113,0.202,0,0,0,0,0.5,0.0756 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.0378 +0.333,0.636,0.203,0.312,0,0,0,0,0,0.25 +0.667,0.686,0.481,0.626,0,0,0,0,0.0667,0.295 +0.667,0.645,0.456,0.569,0,0,0,0,0.683,0 +0.667,0.603,0.278,0.36,0,0,0,0,0,0 +0.667,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0152,0.05,0,0,0.0942,0.0667,0,0.151 +1,0.566,0.0159,0.05,0,0,0.187,0.633,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.614,0.0577,0.297,0,0,0,0,0.0667,0.53 +1,0.653,0.0963,0.431,0,0,0.0942,0.0667,0.433,0.125 +0.667,0.624,0.0813,0.302,0,0,0.298,1,0,0.193 +0.667,0.624,0.0905,0.293,0,0,0.535,0.35,0,0.0817 +0.333,0.595,0.0577,0.166,0,0,0.61,0,0,0.302 +0.333,0.595,0.0604,0.162,0,0,0.425,0,0,0.0378 +0.333,0.595,0.0669,0.161,0,0,0.334,0,0,0.0378 +0.667,0.624,0.125,0.272,0,0,0.654,0,0,0.256 +0.667,0.645,0.139,0.277,0,0,0.188,0,0.5,0.151 +0.333,0.621,0.0938,0.174,0,0,0.0982,0.0667,0,0.151 +0.667,0.707,0.21,0.353,0,0,0.321,0.4,0,0.0756 +0.667,0.717,0.28,0.458,0,0,0.779,0,0,0 +0.333,0.636,0.203,0.312,0,0,0.381,0,0,0.264 +0.667,0.686,0.481,0.626,0,0,0.512,0,0,0 +0.667,0.645,0.456,0.569,0,0,0.323,0,0,0 +1,0.603,0.278,0.36,0,0,0.671,0,0,0 +1,0.569,0.0695,0.117,0,0,0.317,0,0,0 +1,0.564,0.0348,0.0749,0,0,0.5,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.173 +1,0.583,0.0433,0.239,0,0,0,0,0,0.165 +1,0.638,0.0786,0.421,0,0,0,0,0,0.264 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.595,0.0486,0.176,0,0,0.349,0.317,0,0 +0.333,0.595,0.0532,0.172,0,0,0.521,0.383,0,0 +0.667,0.624,0.0996,0.282,0,0,0.517,0,0,0.0378 +0.667,0.624,0.105,0.274,0,0,0.253,0,0,0.0378 +0.667,0.624,0.118,0.271,0,0,0.699,0,0,0.34 +0.667,0.624,0.125,0.272,0,0,0.453,0,0,0.0378 +0.667,0.645,0.139,0.277,0,0,0.22,0,0,0.0756 +0.667,0.676,0.172,0.297,0,0,0.378,0,0,0.0378 +0.667,0.707,0.21,0.353,0.103,0.0667,0.11,0,0,0.151 +0.667,0.717,0.28,0.458,0.609,0.917,0,0,0,0.113 +0.667,0.707,0.39,0.575,0.348,0,0,0,0,0 +0.667,0.686,0.481,0.626,0,0,0,0,0,0 +0.667,0.645,0.456,0.569,0,0,0,0,0,0 +1,0.584,0.147,0.205,0,0,0,0,0,0 +1,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.189 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0368,0.174,0,0,0,0,0.567,0.0756 +1,0.595,0.0427,0.177,0,0,0,0,0.183,0 +1,0.624,0.0813,0.302,0,0,0,0,0,0.124 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.168 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.189 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0.402 +0.667,0.595,0.0702,0.161,0,0,0,0,0,0.126 +0.667,0.605,0.0774,0.163,0,0,0,0,0,0.226 +0.667,0.621,0.0938,0.174,0,0,0,0,0,0.317 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.189 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.378 +0.333,0.636,0.203,0.312,0,0,0,0,0,0.194 +0.667,0.686,0.481,0.626,0,0,0,0,0,0.243 +1,0.645,0.456,0.569,0,0,0,0,0,0 +1,0.584,0.147,0.205,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0178,0.0511,0,0,0,0,0,0.0756 +1,0.564,0.0224,0.0806,0,0,0,0,0,0 +1,0.574,0.0296,0.144,0,0,0.11,0.0667,0.25,0 +1,0.59,0.0368,0.174,0,0,0.236,0.633,0,0.0756 +0.667,0.595,0.0427,0.177,0,0,0.696,0,0,0 +0.667,0.624,0.0813,0.302,0,0,0.336,0,0,0.383 +0.333,0.595,0.0532,0.172,0,0,0.764,0,0,0.229 +0.333,0.595,0.0577,0.166,0,0,0.599,0,0,0.0756 +0.333,0.595,0.0604,0.162,0,0,0.295,0,0,0.0756 +0.333,0.595,0.0669,0.161,0,0,0,0,0,0.151 +0.333,0.595,0.0702,0.161,0,0,0,0,0.0667,0.113 +0.667,0.645,0.139,0.277,0,0,0,0,0.433,0.791 +0.667,0.676,0.172,0.297,0,0,0.262,0.567,0,0.151 +0.667,0.707,0.21,0.353,0.406,0.567,0.177,0.133,0,0.0756 +0.667,0.717,0.28,0.458,0.575,0.417,0,0,0.25,0 +0.667,0.707,0.39,0.575,0,0,0.66,0.7,0,0 +1,0.747,0.713,0.914,0,0,0.455,0,0,0.171 +1,0.684,0.676,0.829,0,0,0.359,0,0,0.133 +1,0.603,0.278,0.36,0,0,0.245,0,0,0.0899 +1,0.572,0.123,0.184,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.638,0.0845,0.421,0,0,0,0,0,0.373 +1,0.653,0.14,0.431,0,0,0,0,0,0.176 +0.667,0.624,0.129,0.302,0,0,0,0,0,0.152 +0.667,0.624,0.153,0.293,0,0,0,0,0,0.298 +0.667,0.624,0.167,0.282,0,0,0,0,0,0.368 +0.667,0.624,0.179,0.274,0,0,0,0,0,0.541 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.621,0.147,0.174,0,0,0,0,0,0.302 +0.667,0.707,0.285,0.353,0,0,0,0,0,0.113 +0.667,0.717,0.335,0.458,0,0,0,0,0.5,0.0756 +0.667,0.707,0.438,0.575,0,0,0,0,0,0 +0.667,0.686,0.514,0.626,0,0,0,0,0,0.153 +1,0.645,0.475,0.569,0,0,0,0,0.25,0 +1,0.603,0.302,0.36,0,0,0,0,0,0 +1,0.569,0.0796,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.309 +1,0.59,0.0403,0.174,0,0,0,0,0,0.249 +1,0.653,0.14,0.431,0,0,0,0,0,0.18 +1,0.653,0.185,0.428,0,0,0,0,0,0.438 +0.667,0.624,0.153,0.293,0,0,0,0,0,0.135 +0.333,0.595,0.0927,0.166,0,0,0,0,0,0.0916 +0.333,0.595,0.0986,0.162,0,0,0,0,0,0.0756 +0.333,0.595,0.114,0.161,0,0,0,0,0,0.0756 +0.333,0.595,0.129,0.161,0,0,0,0,0,0.151 +0.667,0.645,0.263,0.277,0,0,0,0,0,0.0756 +0.667,0.676,0.276,0.297,0,0,0,0,0,0.113 +0.667,0.707,0.285,0.353,0.233,0.317,0,0,0,0.0756 +0.667,0.717,0.335,0.458,0.767,0.667,0,0,0,0.0378 +0.667,0.707,0.438,0.575,0.282,0,0,0,0,0.0756 +0.667,0.686,0.514,0.626,0,0,0,0,0,0.151 +0.667,0.645,0.475,0.569,0,0,0,0,0,0 +0.667,0.584,0.16,0.205,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.564,0.0152,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0569 +1,0.614,0.0577,0.297,0,0,0,0,0.0667,0.278 +1,0.653,0.0963,0.431,0,0,0,0,0.183,0.149 +0.667,0.624,0.0813,0.302,0,0,0,0,0,0.327 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.225 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0.399 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.321 +0.333,0.595,0.0669,0.161,0,0,0,0,0.5,0.0378 +0.667,0.624,0.125,0.272,0,0,0.414,0.567,0,0.151 +0.667,0.645,0.139,0.277,0,0,0.584,0.85,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.232 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.265 +0.667,0.707,0.39,0.575,0,0,0,0,0,0.227 +0.667,0.686,0.481,0.626,0,0,0,0,0,0 +0.667,0.645,0.456,0.569,0,0,0,0,0,0 +0.667,0.603,0.278,0.36,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.574,0.0296,0.144,0,0,0,0,0,0.224 +1,0.614,0.0577,0.297,0,0,0,0,0,0.549 +0.667,0.595,0.0427,0.177,0,0,0,0,0,0.237 +0.667,0.595,0.0486,0.176,0,0,0,0,0,0 +0.667,0.595,0.0532,0.172,0,0,0,0,0,0.113 +0.667,0.624,0.0996,0.282,0,0,0,0,0,0.211 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.204 +0.667,0.624,0.118,0.271,0,0,0,0,0,0.113 +0.667,0.624,0.125,0.272,0,0,0,0,0,0.34 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.0756 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.496 +0.667,0.707,0.39,0.575,0,0,0,0,0,0.236 +0.667,0.686,0.481,0.626,0,0,0,0,0,0.0378 +0.667,0.605,0.236,0.309,0,0,0,0,0,0 +0.667,0.584,0.147,0.205,0,0,0,0,0,0 +0.667,0.569,0.0695,0.117,0,0,0,0,0,0.151 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.155 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.564,0.0224,0.0806,0,0,0,0,0,0.216 +0.667,0.574,0.0296,0.144,0,0,0,0,0,0.23 +0.667,0.59,0.0368,0.174,0,0,0,0,0,0.0756 +0.667,0.595,0.0427,0.177,0,0,0,0,0,0.0756 +0.667,0.595,0.0486,0.176,0,0,0,0,0,0.113 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.151 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.0756 +0.667,0.624,0.118,0.271,0,0,0,0,0,0.113 +0.333,0.595,0.0702,0.161,0,0,0,0,0,0.113 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.0378 +0.333,0.636,0.113,0.202,0,0,0,0,0,0.0756 +0.333,0.641,0.148,0.254,0,0,0,0,0,0.302 +0.667,0.707,0.39,0.575,0,0,0,0,0.817,0.0756 +0.667,0.686,0.481,0.626,0,0,0,0,1,0 +0.667,0.645,0.456,0.569,0,0,0,0,0.683,0 +0.667,0.603,0.278,0.36,0,0,0,0,0,0.0893 +1,0.569,0.0695,0.117,0,0,0,0,0,0.115 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.667,0.614,0.0577,0.297,0,0,0,0,0,0.219 +0.667,0.624,0.0695,0.304,0,0,0,0,0.5,0.392 +0.667,0.624,0.0813,0.302,0,0,0,0,0,0.183 +0.333,0.595,0.0532,0.172,0,0,0,0,0,0 +0.333,0.595,0.0577,0.166,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0.317,0.0378 +0.333,0.595,0.0702,0.161,0,0,0,0,0.183,0.151 +0.333,0.605,0.0774,0.163,0,0,0,0,0,0.113 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.302 +0.667,0.707,0.21,0.353,0,0,0,0,0,0.113 +0.667,0.717,0.28,0.458,0,0,0,0,0,0 +0.667,0.707,0.39,0.575,0,0,0,0,0,0 +0.667,0.686,0.481,0.626,0.327,0.317,0,0,0,0 +0.667,0.645,0.456,0.569,0.679,0.667,0,0,0,0 +1,0.622,0.409,0.514,0,0,0,0,0,0 +1,0.572,0.123,0.184,0,0,0,0,0,0.224 +1,0.564,0.0348,0.0749,0,0,0,0,0,0 +1,0.564,0.0224,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0427,0.177,0,0,0,0,0,0.115 +0.333,0.595,0.0486,0.176,0,0,0,0,0,0.23 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.416 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0985 +0.667,0.636,0.113,0.202,0,0,0,0,0.0667,0.308 +0.667,0.717,0.28,0.458,0,0,0,0,0.933,0.355 +0.333,0.636,0.203,0.312,0,0,0,0,0,0.335 +0.333,0.626,0.248,0.338,0,0,0,0,0,0.0756 +0.667,0.645,0.456,0.569,0,0,0,0,0,0.188 +0.667,0.584,0.147,0.205,0,0,0,0,0,0.237 +0.667,0.569,0.0695,0.117,0,0,0,0,0,0.0857 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.59,0.0403,0.174,0,0,0.0759,0.0667,0,0.171 +1,0.624,0.0991,0.304,0,0,0.2,1,0,0.506 +1,0.624,0.129,0.302,0,0,0,0.35,0,0.129 +1,0.653,0.22,0.415,0,0,0,0,0,0.218 +0.333,0.595,0.0927,0.166,0,0,0,0,0,0.0932 +0.333,0.595,0.0986,0.162,0,0,0,0,0,0 +0.333,0.595,0.114,0.161,0,0,0,0,0,0 +0.333,0.595,0.129,0.161,0,0,0,0,0,0.113 +0.333,0.605,0.14,0.163,0,0,0,0,0,0.151 +0.333,0.621,0.147,0.174,0,0,0,0,0,0 +0.333,0.636,0.152,0.202,0,0,0,0,0,0.0756 +0.333,0.641,0.177,0.254,0,0,0,0,0,0.227 +0.333,0.636,0.228,0.312,0,0,0,0,0,0.0378 +0.333,0.626,0.266,0.338,0,0,0,0,0,0.0607 +0.667,0.645,0.475,0.569,0,0,0,0,0,0.099 +0.667,0.584,0.16,0.205,0,0,0,0,0,0.107 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0265,0.0583,0,0,0,0,0,0.113 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.564,0.0173,0.05,0,0,0,0,0,0.207 +1,0.566,0.0181,0.05,0,0,0,0,0,0.369 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0597 +1,0.653,0.14,0.431,0,0,0,0,0,0.529 +1,0.653,0.185,0.428,0,0,0,0,0,0.319 +1,0.653,0.22,0.415,0,0,0,0,0,0.174 +0.667,0.624,0.167,0.282,0,0,0,0,0,0.328 +0.333,0.595,0.0986,0.162,0,0,0,0,0,0.189 +0.333,0.595,0.114,0.161,0,0,0,0,0,0.0756 +0.333,0.595,0.129,0.161,0,0,0,0,0,0.227 +0.333,0.605,0.14,0.163,0,0,0,0,0,0.113 +0.333,0.621,0.147,0.174,0,0,0,0,0.5,0.0756 +0.333,0.636,0.152,0.202,0,0,0,0,0,0 +0.333,0.641,0.177,0.254,0,0,0,0,0,0 +0.667,0.707,0.438,0.575,0,0,0,0,0,0.113 +0.667,0.686,0.514,0.626,0,0,0,0,0,0 +0.667,0.605,0.247,0.309,0,0,0,0,0,0 +0.667,0.584,0.16,0.205,0,0,0,0,0,0.111 +1,0.569,0.0796,0.117,0,0,0,0,0,0.113 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.574,0.0296,0.144,0,0,0,0,0.25,0.0378 +1,0.638,0.0786,0.421,0,0,0,0,0,0.165 +1,0.653,0.0963,0.431,0,0,0,0,0,0.438 +0.667,0.624,0.0813,0.302,0,0,0,0,0,0.182 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.0983 +0.667,0.624,0.0996,0.282,0,0,0,0,0,0.0378 +0.667,0.624,0.105,0.274,0,0,0.0301,0.0667,0.567,0.151 +0.333,0.595,0.0669,0.161,0,0,0.565,0.633,1,0.227 +0.333,0.595,0.0702,0.161,0,0,0.535,0,0.183,0.0378 +0.333,0.605,0.0774,0.163,0,0,0.668,0,0,0.0756 +0.333,0.621,0.0938,0.174,0,0,0.0759,0,0,0.302 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.203,0.312,0,0,0,0,0,0.38 +0.333,0.626,0.248,0.338,0,0,0,0,0,0 +0.667,0.645,0.456,0.569,0,0,0,0,0,0.189 +1,0.584,0.147,0.205,0,0,0,0,0,0.0528 +0.667,0.569,0.0695,0.117,0,0,0,0,0,0 +1,0.562,0.0538,0.0999,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.59,0.0368,0.174,0,0,0,0,0,0.062 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.177 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.624,0.0905,0.293,0,0,0,0,0,0.151 +0.667,0.624,0.0996,0.282,0.117,0.0667,0,0,0.5,0.269 +0.667,0.624,0.105,0.274,0.767,1,0,0,0,0.0756 +0.667,0.624,0.118,0.271,0,0.15,0,0,0,0 +0.667,0.595,0.0702,0.161,0,0,0,0,0,0.113 +0.667,0.605,0.0774,0.163,0,0,0,0,0,0.0756 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.227 +0.333,0.636,0.113,0.202,0,0,0,0,0,0 +0.333,0.641,0.148,0.254,0.115,0.0667,0,0,0,0 +0.333,0.636,0.203,0.312,0.536,0.917,0,0,0,0.189 +0.333,0.626,0.248,0.338,0.68,0,0,0,0,0.227 +0.667,0.645,0.456,0.569,0,0,0,0,0,0 +1,0.622,0.409,0.514,0,0,0,0,0,0 +1,0.572,0.123,0.184,0,0,0,0,0,0.0807 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0563 +0.667,0.59,0.0368,0.174,0,0,0,0,0.5,0.33 +0.333,0.595,0.0427,0.177,0,0,0,0,0,0.126 +0.333,0.595,0.0486,0.176,0.179,0.0667,0,0,0,0 +0.333,0.595,0.0532,0.172,0.733,1,0,0,0,0.378 +0.333,0.595,0.0577,0.166,0,0.15,0,0,0,0.0378 +0.333,0.595,0.0604,0.162,0,0,0,0,0,0.113 +0.667,0.624,0.118,0.271,0,0,0,0,0,0 +0.667,0.595,0.0702,0.161,0,0,0,0,0,0.151 +0.667,0.605,0.0774,0.163,0,0,0,0,0,0.264 +0.333,0.621,0.0938,0.174,0,0,0,0,0,0.151 +0.667,0.707,0.21,0.353,0.308,0.317,0,0,0,0 +0.667,0.717,0.28,0.458,0.611,0.667,0,0,0.0667,0.162 +0.667,0.707,0.39,0.575,0,0,0,0,0.183,0.0789 +0.333,0.626,0.248,0.338,0,0,0,0,0,0 +0.333,0.605,0.236,0.309,0,0,0,0,0,0.0756 +0.667,0.603,0.278,0.36,0,0,0,0,0,0.113 +0.667,0.569,0.0695,0.117,0,0,0,0,0,0.0378 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.192 +1,0.589,0.0366,0.179,0,0,0,0,0,0.115 +0.667,0.594,0.0424,0.185,0,0,0,0,0,0.311 +0.667,0.594,0.0483,0.187,0,0,0,0,0.433,0.195 +0.667,0.594,0.0528,0.183,0,0,0,0,0.1,0.124 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0 +0.667,0.594,0.06,0.172,0,0,0,0,0.267,0 +0.667,0.594,0.0665,0.171,0,0,0,0,0,0.0756 +0.667,0.594,0.0697,0.175,0,0,0,0,0,0.378 +0.667,0.605,0.0769,0.195,0,0,0,0,0,0.151 +0.667,0.674,0.17,0.429,0,0,0,0,0,0.0378 +0.667,0.705,0.208,0.558,0,0,0,0,0.267,0.264 +0.667,0.716,0.278,0.653,0,0,0,0,0,0.0378 +0.667,0.705,0.387,0.635,0,0,0,0,0,0.382 +1,0.744,0.708,0.754,0,0,0,0,0,0.104 +0.667,0.643,0.452,0.397,0,0,0,0,0,0 +0.667,0.602,0.276,0.348,0,0,0,0,0,0 +0.667,0.571,0.122,0.184,0.137,0.0667,0,0,0,0 +1,0.563,0.0346,0.0749,0.697,0.867,0,0,0,0 +1,0.563,0.0223,0.0583,0.308,0,0,0,0,0.0725 +1,0.563,0.0164,0.05,0,0,0,0,0,0 +1,0.563,0.0151,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.589,0.0366,0.179,0,0,0,0,0.533,0.189 +0.667,0.594,0.0424,0.185,0,0,0,0,0.183,0.0378 +0.667,0.594,0.0483,0.187,0,0,0,0,0.0833,0.34 +0.667,0.594,0.0528,0.183,0,0,0,0,0,0.0756 +0.667,0.594,0.0574,0.177,0,0,0,0,0,0.113 +0.667,0.594,0.06,0.172,0,0,0,0,0,0 +0.667,0.594,0.0665,0.171,0,0,0,0,0,0.0756 +0.667,0.594,0.0697,0.175,0,0,0,0,0,0.225 +1,0.682,0.199,0.486,0,0,0,0,0.267,0.302 +0.667,0.674,0.17,0.429,0,0,0,0,0,0.0756 +0.667,0.705,0.208,0.558,0,0,0,0,0,0.0378 +0.667,0.716,0.278,0.653,0.602,0.683,0.425,0.433,0,0.151 +0.333,0.636,0.202,0.342,0.216,0.367,0.302,0.267,0,0 +0.333,0.625,0.246,0.285,0,0,1,0,0,0.141 +0.667,0.643,0.452,0.397,0,0,0.072,0,0,0 +1,0.584,0.146,0.199,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0.117,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0601 +1,0.563,0.0192,0.0515,0,0,0,0,0,0.504 +1,0.563,0.0212,0.0823,0,0,0,0,0,0 +1,0.573,0.0277,0.148,0,0,0,0,0,0.131 +1,0.612,0.0619,0.308,0,0,0,0,0,0.0832 +0.667,0.623,0.0983,0.321,0,0,0,0,0,0.113 +0.333,0.594,0.0732,0.187,0,0,0,0,0,0.189 +0.333,0.594,0.0849,0.183,0,0,0,0,0,0.113 +0.667,0.623,0.166,0.303,0,0,0,0,0,0 +0.333,0.594,0.0979,0.172,0,0,0,0,0,0.227 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.594,0.128,0.175,0,0,0,0,0.533,0.0756 +0.333,0.605,0.139,0.195,0,0,0,0,0,0.34 +0.333,0.62,0.146,0.239,0,0,0,0,0,0.0756 +0.333,0.636,0.15,0.304,0,0,0,0,0,0.0378 +0.667,0.716,0.332,0.653,0,0,0,0,0,0 +0.667,0.705,0.435,0.635,0,0,0,0,0,0.189 +0.667,0.685,0.51,0.519,0,0,0,0,0,0 +0.667,0.605,0.245,0.224,0,0,0,0,0,0.0378 +1,0.602,0.3,0.348,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0608 +1,0.589,0.04,0.179,0,0,0,0,0,0.076 +0.667,0.566,0.0181,0.05,0,0,0,0,0.533,0.0756 +0.667,0.623,0.128,0.324,0,0,0.0157,0.0667,0,0 +0.667,0.623,0.152,0.315,0,0,0.0942,0.633,0,0.172 +0.667,0.623,0.166,0.303,0,0,0,0,0,0.221 +1,0.651,0.257,0.417,0,0,0,0,0,0.0756 +0.667,0.594,0.113,0.171,0,0,0,0,0,0.0378 +0.333,0.594,0.128,0.175,0,0,0,0,0.0667,0.302 +0.667,0.605,0.139,0.195,0,0,0,0,0.467,0.113 +0.667,0.674,0.274,0.429,0,0,0.0825,0.0667,0.533,0.113 +0.667,0.705,0.283,0.558,0,0,0.682,0.867,0,0 +0.333,0.641,0.175,0.352,0,0,0.677,0,0,0.0378 +0.333,0.636,0.227,0.342,0,0,0,0,0,0 +1,0.685,0.51,0.519,0,0,0,0,0,0 +1,0.643,0.471,0.397,0,0,0,0,0,0.0378 +1,0.584,0.159,0.199,0,0,0,0,0,0.0704 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.151 +1,0.573,0.0294,0.148,0,0,0,0,0,0.283 +1,0.636,0.078,0.437,0,0,0,0,0.533,0.333 +0.333,0.594,0.0424,0.185,0,0,0,0,0,0.0878 +0.333,0.594,0.0483,0.187,0.22,0.183,0,0,0,0.151 +0.333,0.594,0.0528,0.183,0.596,0.867,0,0,0,0 +0.333,0.594,0.0574,0.177,0.733,0,0,0,0,0.0378 +0.333,0.594,0.06,0.172,0,0,0,0,0,0 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.227 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.34 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.264 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0756 +0.333,0.636,0.112,0.304,0.197,0.183,0,0,0,0.327 +0.333,0.641,0.147,0.352,0.555,0.867,0,0,0,0.162 +0.333,0.636,0.202,0.342,0,0,0,0,0,0.133 +0.667,0.685,0.477,0.519,0,0,0,0,0,0.158 +0.667,0.643,0.452,0.397,0.519,0.933,0,0,0,0 +1,0.602,0.276,0.348,0,0.383,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.563,0.0177,0.0515,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.589,0.0366,0.179,0,0,0,0,0,0.189 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.623,0.0807,0.324,0,0,0.00785,0.183,0,0.274 +0.333,0.594,0.0528,0.183,0,0,0.425,0.517,0,0.0447 +0.333,0.594,0.0574,0.177,0,0,0,0,0.183,0.0756 +0.333,0.594,0.06,0.172,0,0,0,0,1,0.34 +0.333,0.594,0.0665,0.171,0,0,0,0,0.183,0.0378 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.0378 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.113 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.151 +0.333,0.636,0.112,0.304,0,0,0,0,0,0.151 +0.333,0.641,0.147,0.352,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.643,0.452,0.397,0,0,0.527,0.7,0,0 +1,0.62,0.405,0.498,0,0,0.359,0,0.533,0.351 +1,0.571,0.122,0.184,0,0,0,0,0,0.133 +1,0.566,0.0159,0.05,0,0,0,0,0,0.083 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.563,0.0177,0.0515,0,0,0,0,0,0.113 +1,0.561,0.0287,0.115,0.0695,0.183,0,0,0.683,0.0378 +1,0.581,0.043,0.247,0.769,0.867,0,0,0.133,0.271 +1,0.612,0.0573,0.308,0,0,0,0,0,0.135 +1,0.623,0.069,0.321,0,0,0,0,0,0.634 +0.667,0.594,0.0483,0.187,0,0,0,0,0,0.301 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0.207,0.433,0,0 +0.333,0.594,0.06,0.172,0,0,0.305,0.267,0,0.0756 +0.333,0.594,0.0665,0.171,0,0,0.249,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.112,0.304,0,0,0,0,0.183,0.0916 +0.333,0.641,0.147,0.352,0,0,0,0,0.35,0.151 +0.667,0.705,0.387,0.635,0,0,0,0,0,0.0756 +0.667,0.685,0.477,0.519,0,0,0,0,0,0 +0.667,0.605,0.234,0.224,0,0,0,0,0,0 +0.667,0.584,0.146,0.199,0,0,0,0,0,0.314 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.155 +1,0.589,0.0366,0.179,0,0,0,0,0.183,0.205 +1,0.623,0.069,0.321,0,0,0,0,0.35,0.186 +0.667,0.623,0.0807,0.324,0,0,0,0,0,0.324 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0.31 +0.333,0.594,0.0574,0.177,0,0,0,0,0.533,0.151 +0.333,0.594,0.06,0.172,0,0,0,0,0,0.0378 +0.667,0.623,0.117,0.292,0,0,0,0,0,0.138 +0.667,0.623,0.124,0.3,0,0,0,0,0,0.2 +0.667,0.643,0.138,0.341,0,0,0,0,0,0.166 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0756 +0.667,0.705,0.208,0.558,0,0,0,0,0,0.0756 +0.667,0.716,0.278,0.653,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.685,0.477,0.519,0,0,0,0,0,0.0756 +0.667,0.643,0.452,0.397,0,0,0,0,0,0 +0.667,0.602,0.276,0.348,0.406,0.433,0,0,0,0 +0.667,0.571,0.122,0.184,0.186,0.617,0,0,0,0.0493 +0.667,0.563,0.0346,0.0749,0,0,0,0,0,0 +1,0.563,0.0223,0.0583,0,0,0,0,0,0 +1,0.563,0.0164,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.246 +1,0.589,0.0366,0.179,0,0,0,0,0,0.298 +1,0.594,0.0424,0.185,0,0,0,0,0,0.247 +0.667,0.623,0.0807,0.324,0,0,0,0,0,0.189 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0.179 +0.333,0.594,0.06,0.172,0,0,0,0,0,0.264 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.113 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.0378 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.189 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0378 +0.333,0.636,0.112,0.304,0,0,0,0,0,0 +0.333,0.641,0.147,0.352,0,0,0,0,0,0.227 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.685,0.477,0.519,0,0,0,0,0,0.0819 +0.667,0.605,0.234,0.224,0,0,0,0,0,0 +0.667,0.584,0.146,0.199,0,0,0,0,0,0 +1,0.568,0.0691,0.117,0,0,0,0,0,0.0943 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.398 +1,0.589,0.04,0.179,0,0,0,0,0,0.208 +1,0.623,0.0983,0.321,0,0,0,0,0,0.597 +1,0.623,0.128,0.324,0,0,0,0,0,0.294 +1,0.651,0.218,0.448,0,0,0,0,0,0.58 +1,0.651,0.24,0.43,0,0,0,0,0,0.485 +0.667,0.623,0.178,0.294,0,0,0,0,0,0 +0.333,0.594,0.113,0.171,0,0,0,0,0,0 +0.333,0.594,0.128,0.175,0,0,0.247,0.567,0,0.151 +0.333,0.605,0.139,0.195,0,0,0.592,0.133,0,0.34 +0.667,0.62,0.146,0.239,0,0,0.322,0,0,0 +0.667,0.636,0.15,0.304,0,0,0.433,0,0,0.113 +0.667,0.716,0.332,0.653,0,0,0.563,0,0,0 +0.667,0.705,0.435,0.635,0,0,0.33,0,0,0.189 +0.667,0.685,0.51,0.519,0,0,0.238,0,0,0.0378 +0.667,0.605,0.245,0.224,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.245 +1,0.563,0.0407,0.0749,0,0,0,0,0,0 +1,0.563,0.0264,0.0583,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0.267,0.0756 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.113 +0.667,0.594,0.0732,0.187,0,0,0,0,0.0667,0 +0.667,0.623,0.152,0.315,0,0,0,0,0.2,0 +0.667,0.623,0.166,0.303,0,0,0,0,0,0.0756 +0.667,0.623,0.178,0.294,0,0,0,0,0,0.0378 +0.667,0.623,0.209,0.292,0,0,0,0,0,0.416 +0.667,0.623,0.237,0.3,0.408,0.317,0,0,0,0.151 +0.667,0.643,0.261,0.341,0.498,0.733,0,0,0,0.189 +0.667,0.674,0.274,0.429,0,0,0,0,0.0667,0.151 +0.333,0.636,0.15,0.304,0,0,0,0,0.467,0.0378 +0.333,0.641,0.175,0.352,0,0,0,0,0,0 +0.667,0.705,0.435,0.635,0,0,0,0,0,0.0378 +0.667,0.685,0.51,0.519,0,0,0,0,0,0 +1,0.682,0.698,0.571,0,0,0,0,0,0 +1,0.602,0.3,0.348,0,0,0,0,0,0.0378 +1,0.568,0.079,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.183,0.112 +0.667,0.612,0.0573,0.308,0,0,0,0,0.9,0.192 +0.667,0.623,0.069,0.321,0,0,0,0,0,0.506 +0.667,0.623,0.0807,0.324,0,0,0,0,0,0.273 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.151 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.302 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.0378 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0756 +0.667,0.705,0.208,0.558,0.124,0.183,0,0,0.533,0.0756 +0.667,0.716,0.278,0.653,0.429,0.867,0,0,0,0.113 +0.333,0.636,0.202,0.342,0,0,0,0,0.683,0.0378 +0.333,0.625,0.246,0.285,0,0,0,0,0.4,0.277 +1,0.682,0.671,0.571,0,0,0,0,0.933,0 +1,0.602,0.276,0.348,0,0,0,0,0.983,0.255 +1,0.571,0.122,0.184,0,0,0,0,0,0.0888 +1,0.561,0.0534,0.0999,0,0,0,0,0,0 +1,0.563,0.0223,0.0583,0,0,0,0,0,0.0378 +1,0.563,0.0164,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.563,0.0177,0.0515,0,0,0,0,0,0.0756 +1,0.563,0.0223,0.0823,0,0,0,0,0,0.0378 +1,0.573,0.0294,0.148,0,0,0,0,0,0.0378 +1,0.589,0.0366,0.179,0,0,0,0,0,0.151 +1,0.594,0.0424,0.185,0,0,0,0,0,0 +0.667,0.594,0.0483,0.187,0,0,0,0,0,0 +0.667,0.594,0.0528,0.183,0,0,0,0,0,0.0697 +0.667,0.594,0.0574,0.177,0,0,0.196,0.183,0,0 +0.667,0.623,0.104,0.294,0,0,0.483,0.517,0,0.0756 +0.667,0.623,0.117,0.292,0,0,0.347,0,0,0.402 +0.667,0.623,0.124,0.3,0,0,0,0,0,0.239 +0.667,0.643,0.138,0.341,0,0,0,0,0,0.155 +0.667,0.674,0.17,0.429,0,0,0,0,0,0.176 +0.667,0.705,0.208,0.558,0,0,0,0,0.533,0.218 +0.667,0.716,0.278,0.653,0,0,0,0,0,0.0378 +0.333,0.636,0.202,0.342,0,0,0,0,0,0 +0.333,0.625,0.246,0.285,0,0,0,0,0,0 +0.667,0.643,0.452,0.397,0,0,0,0,0,0.0431 +1,0.602,0.276,0.348,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.168 +1,0.612,0.0573,0.308,0,0,0,0,0.183,0.176 +1,0.651,0.0955,0.456,0,0,0,0,0.0833,0.737 +0.333,0.594,0.0483,0.187,0,0,0,0,0,0.33 +0.333,0.594,0.0528,0.183,0,0,0,0,0.533,0.0378 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0 +0.333,0.594,0.06,0.172,0,0,0,0,0,0.416 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.227 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.189 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.112,0.304,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0.183,0 +0.667,0.705,0.387,0.635,0,0,0,0,0.633,0.0378 +0.667,0.685,0.477,0.519,0,0,0,0,0,0 +0.667,0.643,0.452,0.397,0,0,0,0,0,0.117 +1,0.602,0.276,0.348,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.612,0.0573,0.308,0.398,0.683,0.12,0.433,0,0.0756 +0.667,0.594,0.0424,0.185,0,0.367,0.249,0.267,0,0.264 +0.667,0.594,0.0483,0.187,0,0,0.459,0,0,0 +0.667,0.594,0.0528,0.183,0,0,0.433,0,0,0 +0.667,0.594,0.0574,0.177,0,0,0.668,0,0,0.302 +0.667,0.594,0.06,0.172,0,0,0.365,0,0,0.0378 +0.667,0.623,0.117,0.292,0,0,0.238,0,0,0.0378 +0.667,0.594,0.0697,0.175,0,0,0,0,0.267,0 +0.667,0.605,0.0769,0.195,0,0,0,0,0,0.0756 +0.667,0.62,0.0931,0.239,0,0,0,0,0,0.151 +0.667,0.636,0.112,0.304,0,0,0,0,0,0.189 +0.667,0.641,0.147,0.352,0,0,0,0,0,0.113 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.113 +0.667,0.625,0.246,0.285,0,0,0,0,0,0 +0.667,0.605,0.234,0.224,0,0,0,0,0,0.333 +1,0.602,0.276,0.348,0,0,0,0,0,0 +1,0.571,0.122,0.184,0,0,0,0,0,0.0756 +1,0.563,0.0346,0.0749,0,0,0,0,0,0.0378 +1,0.563,0.0223,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.589,0.0366,0.179,0,0,0,0,0,0.307 +0.667,0.594,0.0424,0.185,0,0,0,0,0,0.453 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0.0378 +0.333,0.594,0.06,0.172,0,0,0,0,0,0.0378 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.151 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.264 +0.333,0.605,0.0769,0.195,0,0,0,0,0.817,0.0378 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.264 +0.333,0.636,0.112,0.304,0,0,0,0,0,0 +0.333,0.641,0.147,0.352,0,0,0,0,0,0.0378 +0.333,0.636,0.202,0.342,0,0,0,0,0,0 +0.333,0.625,0.246,0.285,0,0,0,0,0.533,0 +0.333,0.605,0.234,0.224,0,0,0,0,0,0 +0.333,0.584,0.146,0.199,0,0,0,0,0,0.151 +0.667,0.568,0.0691,0.117,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.313 +0.333,0.566,0.0181,0.05,0,0,0,0,0,0.151 +0.333,0.594,0.0979,0.172,0,0,0,0,0,0.151 +0,0.566,0.0181,0.05,0,0,0,0,0,0.263 +0.333,0.594,0.128,0.175,0,0,0,0,0,0.202 +0.333,0.605,0.139,0.195,0,0,0,0,0.817,0.113 +0.333,0.62,0.146,0.239,0,0,0,0,0,0.113 +0.333,0.636,0.15,0.304,0,0,0,0,0,0 +0.667,0.716,0.332,0.653,0,0,0,0,0,0.151 +0.333,0.636,0.227,0.342,0,0,0,0,0,0.364 +0.667,0.685,0.51,0.519,0,0,0,0,0.0667,0.0378 +0.667,0.643,0.471,0.397,0,0,0,0,1,0.227 +1,0.62,0.441,0.498,0,0,0,0,0.0167,0.126 +1,0.568,0.079,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0607 +1,0.589,0.04,0.179,0,0,0,0,0,0.268 +1,0.623,0.0983,0.321,0,0,0,0,0,0.137 +1,0.623,0.128,0.324,0,0,0,0,0,0.504 +1,0.651,0.218,0.448,0,0,0,0,0,0.157 +0.667,0.623,0.166,0.303,0,0,0,0,0,0.19 +0.667,0.623,0.178,0.294,0,0,0,0,0,0.563 +0.333,0.594,0.113,0.171,0,0,0,0,0,0.302 +0.333,0.594,0.128,0.175,0,0,0,0,0,0.189 +0.333,0.605,0.139,0.195,0,0,0,0,0,0 +0.333,0.62,0.146,0.239,0,0,0,0,0,0.227 +0.333,0.636,0.15,0.304,0,0,0,0,0,0.113 +0.333,0.641,0.175,0.352,0,0,0,0,0.317,0 +0.667,0.705,0.435,0.635,0,0,0,0,0.5,0 +0.667,0.685,0.51,0.519,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.589,0.0366,0.179,0,0,0,0,0,0.235 +0.667,0.623,0.069,0.321,0,0,0,0,0,0.414 +0.333,0.594,0.0483,0.187,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.491 +0.667,0.643,0.138,0.341,0,0,0,0,0,0.189 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0378 +0.333,0.636,0.112,0.304,0,0,0,0,0.533,0.264 +0.333,0.641,0.147,0.352,0,0,0,0,0,0.113 +0.333,0.636,0.202,0.342,0,0,0,0,0,0.151 +0.667,0.685,0.477,0.519,0,0,0,0,0.683,0.0378 +1,0.605,0.234,0.224,0,0,0,0,0.133,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.589,0.0366,0.179,0,0,0,0,0.683,0.237 +0.667,0.623,0.069,0.321,0,0,0,0,0.683,0.459 +0.667,0.623,0.0807,0.324,0,0,0,0,0,0.318 +0.667,0.623,0.0898,0.315,0,0,0,0,0,0.0756 +0.667,0.623,0.0989,0.303,0,0,0,0,0,0.287 +0.333,0.594,0.06,0.172,0,0,0,0,0.533,0 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.151 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.189 +0.333,0.605,0.0769,0.195,0,0,0,0,0.267,0.113 +0.667,0.674,0.17,0.429,0,0,0,0,0,0.113 +0.667,0.705,0.208,0.558,0,0,0,0,0,0 +0.333,0.641,0.147,0.352,0,0,0,0,0,0 +0.667,0.705,0.387,0.635,0.449,0.433,0,0,0,0 +0.667,0.685,0.477,0.519,0.305,0.617,0,0,0,0.119 +1,0.682,0.671,0.571,0,0,0,0,0,0.113 +1,0.62,0.405,0.498,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.563,0.0177,0.0515,0,0,0,0,0,0.227 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.0378 +1,0.636,0.078,0.437,0,0,0,0,0,0.514 +1,0.651,0.0955,0.456,0,0,0,0,0,0.283 +0.667,0.623,0.0807,0.324,0,0,0,0,0,0.0378 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0.227 +0.333,0.594,0.0574,0.177,0,0,0,0,0.533,0 +0.333,0.594,0.06,0.172,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.0378 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.0378 +0.667,0.674,0.17,0.429,0,0,0,0,0,0.264 +0.667,0.705,0.208,0.558,0,0,0,0,0,0.151 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.202,0.342,0,0,0,0,0,0.0378 +0.333,0.625,0.246,0.285,0,0,0,0,0,0.113 +0.667,0.643,0.452,0.397,0,0,0,0,0,0.0681 +0.667,0.602,0.276,0.348,0,0,0,0,0,0 +0.667,0.568,0.0691,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.561,0.0196,0.053,0,0,0,0,0,0.0855 +1,0.561,0.0287,0.115,0,0,0,0,0.533,0.888 +1,0.581,0.043,0.247,0,0,0,0,0,0.104 +0.667,0.612,0.0573,0.308,0,0,0,0,0,0.287 +0.333,0.594,0.0424,0.185,0,0,0,0,0,0.227 +0.333,0.594,0.0483,0.187,0,0,0,0,0,0 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0.189 +0.333,0.594,0.0574,0.177,0,0,0,0,0.533,0.151 +0.333,0.594,0.06,0.172,0,0,0,0,0,0 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.189 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0.113 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0378 +0.333,0.636,0.112,0.304,0,0,0,0,0,0.264 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.625,0.246,0.285,0,0,0,0,0,0 +1,0.682,0.671,0.571,0,0,0,0,0,0 +1,0.602,0.276,0.348,0,0,0,0,0,0 +1,0.571,0.122,0.184,0,0,0,0,0,0.0598 +1,0.561,0.0534,0.0999,0,0,0,0,0,0 +1,0.563,0.0223,0.0583,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +1,0.563,0.0151,0.05,0,0,0,0,0,0.34 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.284 +0.667,0.589,0.0366,0.179,0,0,0,0,0,0.369 +1,0.651,0.0955,0.456,0,0,0,0,0,0.538 +0.667,0.594,0.0483,0.187,0,0,0,0,0,0.0939 +0.667,0.594,0.0528,0.183,0,0,0,0,0,0.269 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0.287 +0.333,0.594,0.06,0.172,0,0,0,0,0,0.395 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0389 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.302 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0378 +0.333,0.636,0.112,0.304,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.202,0.342,0,0,0,0,0,0 +0.333,0.625,0.246,0.285,0,0,0,0,0,0 +0.667,0.643,0.452,0.397,0,0,0,0,0,0.151 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0448 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.409 +1,0.573,0.0277,0.148,0,0,0,0,0,0.056 +1,0.612,0.0619,0.308,0,0,0,0,0,0.277 +1,0.651,0.138,0.456,0,0,0,0,0,0.504 +1,0.651,0.183,0.461,0,0,0,0,0.0667,0.224 +0.667,0.623,0.152,0.315,0,0,0,0,0.2,0.0756 +0.667,0.623,0.166,0.303,0,0,0,0,0,0.189 +0.333,0.594,0.0979,0.172,0,0,0,0,0,0 +0.333,0.594,0.113,0.171,0,0,0,0,0,0.113 +0.333,0.594,0.128,0.175,0,0,0,0,0,0.276 +0.667,0.643,0.261,0.341,0,0,0,0,0,0 +1,0.729,0.402,0.618,0,0,0.177,0.317,0,0.0378 +0.667,0.705,0.283,0.558,0,0,0.664,0.15,0,0.0756 +0.667,0.716,0.332,0.653,0,0,0.483,0,0,0.0378 +0.667,0.705,0.435,0.635,0,0,0,0,0,0 +0.667,0.685,0.51,0.519,0,0,0,0,0,0.138 +1,0.643,0.471,0.397,0,0,0,0,0,0.16 +1,0.584,0.159,0.199,0,0,0,0,0,0 +1,0.568,0.079,0.117,0,0,0,0,0,0 +1,0.563,0.0407,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.109 +1,0.581,0.0372,0.247,0,0,0,0,0,0.245 +0.667,0.589,0.04,0.179,0,0,0,0,0,0.332 +0.667,0.623,0.0983,0.321,0,0,0,0,0,0.423 +0.667,0.623,0.128,0.324,0,0,0,0,0,0.36 +0.667,0.623,0.152,0.315,0,0,0,0,0,0.255 +0.667,0.623,0.166,0.303,0,0,0,0,0,0.113 +0.667,0.623,0.178,0.294,0,0,0,0,0,0.174 +0.667,0.623,0.209,0.292,0,0,0,0,0,0.479 +0.333,0.594,0.128,0.175,0,0,0,0,0,0.227 +0.333,0.605,0.139,0.195,0,0,0,0,0,0 +0.333,0.62,0.146,0.239,0,0,0.446,0.567,0,0.0756 +0.333,0.636,0.15,0.304,0,0,0.41,0.133,0,0.151 +0.333,0.641,0.175,0.352,0,0,0.686,0,0.267,0.0378 +0.667,0.705,0.435,0.635,0,0,0.381,0,0,0.453 +0.667,0.625,0.264,0.285,0,0,0.37,0,0,0 +0.667,0.605,0.245,0.224,0,0,0,0,0,0.0378 +0.667,0.584,0.159,0.199,0,0,0,0,0,0.234 +1,0.568,0.079,0.117,0,0,0,0,0,0.0284 +1,0.563,0.0346,0.0749,0,0,0,0,0,0.0865 +1,0.563,0.0223,0.0583,0,0,0,0,0,0 +1,0.563,0.0164,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.151 +1,0.573,0.0294,0.148,0,0,0,0,0.533,0.227 +1,0.589,0.0366,0.179,0,0,0,0,0,0.24 +0.667,0.594,0.0424,0.185,0,0,0,0,0,0.0756 +0.667,0.594,0.0483,0.187,0,0,0,0,0,0.151 +0.667,0.594,0.0528,0.183,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.151 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0756 +0.333,0.636,0.112,0.304,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.636,0.202,0.342,0,0,0,0,0,0 +0.333,0.625,0.246,0.285,0,0,0,0,0,0 +0.667,0.643,0.452,0.397,0,0,0,0,0,0 +0.667,0.602,0.276,0.348,0,0,0,0,0,0 +1,0.568,0.0691,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.563,0.0223,0.0823,0,0,0,0,0.683,0.0378 +1,0.581,0.043,0.247,0,0,0,0,0.133,0.531 +1,0.612,0.0573,0.308,0,0,0,0,0,0.178 +0.667,0.623,0.069,0.321,0,0,0,0,0,0.594 +0.667,0.623,0.0807,0.324,0,0,0,0,0,0.386 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0.0378 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0.227 +0.667,0.623,0.104,0.294,0,0,0,0,0,0.0814 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.189 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.0756 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0378 +0.333,0.636,0.112,0.304,0,0,0,0,0,0.151 +0.667,0.716,0.278,0.653,0,0,0,0,0,0 +0.333,0.636,0.202,0.342,0,0,0,0,0,0.0378 +0.333,0.625,0.246,0.285,0,0,0,0,0,0.0378 +0.333,0.605,0.234,0.224,0,0,0,0,0,0.0378 +0.333,0.584,0.146,0.199,0,0,0,0,0,0.0653 +0.667,0.568,0.0691,0.117,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.0573,0.308,0,0,0,0,0,0.256 +0.667,0.594,0.0424,0.185,0,0,0,0,0,0.159 +0.667,0.594,0.0483,0.187,0,0,0,0,0,0.0756 +0.667,0.594,0.0528,0.183,0,0,0,0,0,0.0756 +0.667,0.594,0.0574,0.177,0,0,0,0,0.683,0.113 +0.667,0.623,0.104,0.294,0,0,0,0,0.133,0 +0.667,0.623,0.117,0.292,0,0,0,0,0,0.0378 +0.333,0.594,0.0697,0.175,0,0,0,0,0,0.189 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.264 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.151 +0.667,0.636,0.112,0.304,0,0,0,0,0,0.0378 +0.667,0.641,0.147,0.352,0,0,0,0,0,0.0378 +0.667,0.636,0.202,0.342,0,0,0,0,0,0.151 +0.667,0.625,0.246,0.285,0,0,0,0,0,0 +0.667,0.605,0.234,0.224,0,0,0,0,0,0 +1,0.602,0.276,0.348,0,0,0,0,0,0.113 +1,0.571,0.122,0.184,0,0,0,0,0,0.161 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.227 +0.667,0.612,0.0573,0.308,0.107,0.183,0.321,0.683,0.533,0.276 +0.667,0.623,0.069,0.321,0.404,0.867,0.373,0.0167,0.933,0.227 +0.667,0.623,0.0807,0.324,0,0,0.0471,0,0.7,0.264 +0.667,0.623,0.0898,0.315,0,0,0.0864,0.467,0,0.113 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.227 +0.333,0.605,0.0769,0.195,0,0,0,0,0,0.416 +0.333,0.62,0.0931,0.239,0,0,0,0,0,0.0378 +0.667,0.705,0.208,0.558,0,0,0,0,0,0.0756 +0.667,0.716,0.278,0.653,0,0,0,0,0,0.227 +0.667,0.705,0.387,0.635,0,0,0,0,0,0.0378 +0.667,0.685,0.477,0.519,0,0,0,0,0,0 +0.667,0.643,0.452,0.397,0,0,0,0,0,0 +0.667,0.602,0.276,0.348,0,0,0,0,0,0 +0.667,0.568,0.0691,0.117,0,0,0,0,0,0.0302 +0.667,0.563,0.0346,0.0749,0,0,0,0,0,0 +1,0.563,0.0223,0.0583,0,0,0,0,0,0.11 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.573,0.0294,0.148,0,0,0,0,0,0.302 +1,0.612,0.0573,0.308,0,0,0,0,0.183,0.243 +0.667,0.594,0.0424,0.185,0,0,0,0,0.9,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.594,0.0528,0.183,0,0,0,0,0,0.14 +0.333,0.594,0.0574,0.177,0,0,0,0,0,0.396 +0.333,0.594,0.06,0.172,0,0,0,0,0,0.151 +0.333,0.594,0.0665,0.171,0,0,0,0,0,0.302 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.204 +0.667,0.605,0.0769,0.195,0,0,0,0,0,0.0756 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.625,0.246,0.285,0,0,0,0,0,0.189 +0.333,0.605,0.234,0.224,0,0,0,0,0,0.113 +0.667,0.602,0.276,0.348,0.139,0.183,0,0,0,0.222 +0.667,0.571,0.122,0.184,0.602,0.867,0,0,0,0 +0.667,0.612,0.0499,0.0749,0.154,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.612,0.0224,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.0327,0.151,0,0,0,0,0.267,0 +1,0.645,0.049,0.183,0,0,0,0,0,0.113 +1,0.738,0.128,0.333,0,0,0,0,0,0.113 +1,0.738,0.168,0.34,0,0,0,0,0,0.113 +1,0.824,0.289,0.472,0,0,0,0,0,0.176 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0.0667,0 +0.333,0.652,0.146,0.179,0,0,0,0,1,0.0378 +0.333,0.652,0.165,0.183,0,0,0,0,0.05,0.0378 +0.333,0.665,0.18,0.206,0,0,0,0,0,0.0756 +0.333,0.684,0.189,0.256,0,0,0,0,0,0.0378 +0.667,0.842,0.372,0.602,0,0,0,0,0,0.0378 +0.667,0.855,0.437,0.69,0.549,0.817,0,0,0,0.0756 +0.667,0.842,0.573,0.644,0.72,0.267,0,0,0,0.0378 +0.667,0.816,0.673,0.509,0.0583,0,0,0,0.0667,0.189 +0.667,0.764,0.621,0.389,0,0,0,0,0.2,0.103 +0.667,0.711,0.394,0.345,0,0,0,0,0,0.171 +0.667,0.619,0.101,0.117,0,0,0,0,0,0 +1,0.612,0.0499,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.625,0.0327,0.151,0,0,0,0,0,0.0378 +1,0.645,0.049,0.183,0,0,0,0,0,0.0756 +1,0.738,0.128,0.333,0,0,0,0,0,0.0563 +0.667,0.738,0.168,0.34,0,0,0,0,0,0.321 +0.333,0.652,0.108,0.191,0,0,0,0,0,0.189 +0.333,0.652,0.118,0.185,0,0,0,0,0,0.227 +0.333,0.652,0.125,0.18,0,0,0,0,0,0.0378 +0.333,0.652,0.146,0.179,0,0,0,0,0,0 +0.333,0.652,0.165,0.183,0,0,0,0,0,0.0378 +0.333,0.665,0.18,0.206,0,0,0,0,0,0.0756 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.71,0.228,0.37,0,0,0,0,0.55,0.0378 +0.333,0.704,0.296,0.347,0,0,0,0,0,0 +0.667,0.816,0.673,0.509,0,0,0,0,0,0 +1,0.764,0.621,0.389,0,0,0,0,0,0 +1,0.711,0.394,0.345,0.432,0.567,0,0,0,0.0583 +1,0.672,0.183,0.184,0.186,0.517,0,0,0,0.443 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.625,0.0355,0.151,0,0,0,0,0,0.151 +1,0.645,0.0449,0.183,0,0,0.0759,0.0667,0,0 +1,0.738,0.0895,0.333,0,0,0.609,0.667,0.567,0.0756 +0.667,0.652,0.0604,0.195,0,0,0,0,0.833,0.0756 +0.667,0.652,0.0664,0.191,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.652,0.0888,0.183,0,0,0,0,0.0667,0.0756 +0.667,0.764,0.181,0.362,0,0,0,0,1,0.0378 +0.667,0.803,0.224,0.461,0,0,0,0,0.333,0.151 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.189 +0.333,0.71,0.191,0.37,0,0,0,0,0,0.189 +0.333,0.704,0.263,0.347,0,0,0,0,0,0.173 +0.667,0.816,0.629,0.509,0,0,0,0,0.55,0.158 +0.667,0.764,0.596,0.389,0,0,0,0,0,0.113 +1,0.711,0.363,0.345,0,0,0,0,0,0.105 +1,0.672,0.16,0.184,0,0,0,0,0,0.0883 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.026,0.0583,0,0,0,0,0,0.0687 +1,0.612,0.0183,0.05,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.645,0.0449,0.183,0,0,0,0,0,0.185 +1,0.824,0.126,0.474,0,0,0,0,0.0667,0.337 +1,0.824,0.149,0.485,0,0,0,0,0.2,0.598 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.341 +0.667,0.738,0.129,0.319,0,0,0,0,0,0.219 +1,0.824,0.196,0.44,0,0,0,0,0,0.295 +1,0.824,0.222,0.436,0,0,0,0,0,0.717 +0.667,0.738,0.162,0.316,0,0,0.0419,0.0667,0,0.113 +0.667,0.764,0.181,0.362,0,0,0.463,1,0,0 +0.667,0.803,0.224,0.461,0,0,0.357,0.167,0,0.0756 +0.667,0.704,0.145,0.326,0,0,0,0,0,0.113 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.691,0.322,0.279,0,0,0,0,0,0.097 +1,0.764,0.596,0.389,0,0,0,0,0,0.118 +1,0.711,0.363,0.345,0,0,0,0,0,0 +1,0.672,0.16,0.184,0,0,0,0,0,0 +1,0.612,0.0424,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0517,0,0,0,0,0,0.151 +1,0.659,0.0362,0.117,0,0,0,0,0,0.258 +1,0.685,0.0551,0.253,0,0,0,0,0,0.229 +0.667,0.724,0.074,0.316,0,0,0,0,0.317,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0.233,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.652,0.0664,0.191,0,0,0,0,0,0 +0.333,0.652,0.0724,0.185,0,0,0,0,0,0.0378 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.0378 +0.333,0.652,0.0845,0.179,0,0,0.034,0.733,0,0.0756 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.665,0.0982,0.206,0,0,0,0,0.267,0.604 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.0378 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.0378 +0.667,0.855,0.366,0.69,0,0,0,0,0,0 +0.667,0.704,0.263,0.347,0,0,0,0,0,0.0756 +0.667,0.691,0.322,0.279,0,0,0,0,0,0 +0.667,0.665,0.306,0.22,0,0,0,0,0,0.0378 +1,0.784,0.536,0.493,0,0,0,0,0,0.135 +1,0.672,0.16,0.184,0,0,0,0,0,0 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0517,0,0,0,0,0,0.0756 +1,0.612,0.026,0.0836,0,0,0,0,0,0.361 +0.667,0.625,0.0355,0.151,0,0,0,0,0,0.539 +1,0.724,0.074,0.316,0,0,0,0,0,0.173 +1,0.738,0.0895,0.333,0,0,0,0,0,0.373 +1,0.824,0.149,0.485,0,0,0,0,0,0.252 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.169 +0.667,0.738,0.129,0.319,0,0,0,0,0,0.0756 +0.667,0.738,0.136,0.31,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.704,0.145,0.326,0,0,0,0,0,0 +0.333,0.71,0.191,0.37,0,0,0,0,0,0.0378 +0.333,0.704,0.263,0.347,0,0,0,0,0,0.0378 +0.333,0.691,0.322,0.279,0,0,0,0,0,0 +0.667,0.764,0.596,0.389,0,0,0,0,0,0 +1,0.639,0.189,0.198,0,0,0,0,0,0 +1,0.619,0.0879,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.026,0.0836,0,0,0,0,0,0.232 +1,0.625,0.0355,0.151,0,0,0,0,0.567,0.048 +1,0.724,0.074,0.316,0,0,0,0,0.267,0.363 +0.667,0.652,0.0527,0.191,0,0,0,0,0,0 +0.667,0.738,0.105,0.34,0,0,0,0,0,0.0773 +0.333,0.652,0.0664,0.191,0,0,0,0,0,0.173 +0,0.566,0.0159,0.05,0,0,0,0,0,0.225 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.227 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0.189 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0.317,0.0378 +0.333,0.704,0.145,0.326,0,0,0,0,0.233,0.113 +0.333,0.71,0.191,0.37,0,0,0,0,0,0.0756 +0.667,0.842,0.51,0.644,0,0,0,0,0,0.189 +0.667,0.816,0.629,0.509,0,0,0,0,0,0.167 +0.667,0.764,0.596,0.389,0,0,0,0,0,0 +0.667,0.711,0.363,0.345,0,0,0,0,0,0.0546 +1,0.619,0.0879,0.117,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.625,0.0327,0.151,0,0,0,0,0,0.0378 +0.667,0.724,0.0799,0.316,0,0,0.12,0.0667,0,0 +0.667,0.738,0.128,0.333,0,0,0.504,0.667,0,0.189 +0.667,0.738,0.168,0.34,0,0,0.529,0,0,0.171 +0.667,0.738,0.198,0.331,0,0,0.585,0,0,0.165 +0.667,0.738,0.217,0.319,0,0,0.42,0,0,0.0934 +1,0.824,0.34,0.44,0,0,0.291,0,0,0.094 +0.667,0.738,0.274,0.308,0,0,0.466,0,0,0.483 +0.333,0.652,0.165,0.183,0,0,0.421,0,0,0.189 +0.667,0.764,0.343,0.362,0,0,0.471,0,0,0.264 +0.333,0.684,0.189,0.256,0,0,0.463,0,0,0.0756 +0.333,0.704,0.195,0.326,0,0,0,0,0,0.0756 +0.333,0.71,0.228,0.37,0,0,0,0,0.317,0.0756 +0.333,0.704,0.296,0.347,0,0,0,0,0.517,0.0756 +0.333,0.691,0.345,0.279,0,0,0,0,0,0.0756 +0.667,0.764,0.621,0.389,0,0,0,0,0,0 +0.667,0.711,0.394,0.345,0,0,0,0,0,0.138 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.738,0.128,0.333,0,0,0,0,0,0.151 +1,0.824,0.242,0.485,0,0,0,0,0,0.262 +0.667,0.738,0.198,0.331,0,0,0,0,0.0667,0.174 +0.333,0.652,0.118,0.185,0,0,0,0,1,0.113 +0.333,0.652,0.125,0.18,0,0,0,0,0.05,0.0378 +0.333,0.652,0.146,0.179,0,0,0,0,0,0.0756 +0.333,0.652,0.165,0.183,0,0,0,0,0,0 +0.333,0.665,0.18,0.206,0,0,0,0,0,0.42 +0.333,0.684,0.189,0.256,0,0,0,0,0,0.0944 +0.667,0.842,0.372,0.602,0,0,0,0,0,0.429 +0.333,0.71,0.228,0.37,0,0,0,0,0,0.0433 +0.333,0.704,0.296,0.347,0,0,0,0,0,0.0378 +0.333,0.691,0.345,0.279,0,0,0,0,0,0.189 +0.667,0.764,0.621,0.389,0,0,0,0,0,0.416 +1,0.784,0.582,0.493,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0568 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.0851 +0.667,0.625,0.0355,0.151,0,0,0,0,0.55,0.189 +0.667,0.724,0.074,0.316,0,0,0,0,0,0.0378 +0.333,0.652,0.0527,0.191,0,0,0,0,0,0.151 +0.333,0.652,0.0604,0.195,0,0,0,0,0,0.0756 +0.333,0.652,0.0664,0.191,0,0,0,0,0,0.227 +0.333,0.652,0.0724,0.185,0,0,0,0,0,0 +0.333,0.652,0.0759,0.18,0,0,0,0,0.817,0.113 +0.333,0.652,0.0845,0.179,0,0,0,0,0.3,0.113 +0.667,0.738,0.162,0.316,0,0,0,0,0,0.0378 +0.667,0.764,0.181,0.362,0,0,0,0,0,0.189 +0.667,0.803,0.224,0.461,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.326,0.571,0.567,0,0,0,0 +0.333,0.71,0.191,0.37,0.558,0.517,0,0,0,0.151 +0.333,0.704,0.263,0.347,0.148,0,0,0,0,0.0378 +0.667,0.816,0.629,0.509,0,0,0,0,0,0.111 +0.667,0.764,0.596,0.389,0,0,0,0,0,0 +0.667,0.711,0.363,0.345,0,0,0,0,0,0 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.0166,0.05,0,0,0,0,0,0.113 +1,0.612,0.02,0.0517,0,0,0,0,0,0.113 +1,0.612,0.026,0.0836,0,0,0,0,0,0.189 +1,0.625,0.0355,0.151,0,0,0,0,0,0.0962 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.101 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.665,0.0982,0.206,0,0,0,0,0,0.151 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.227 +0.667,0.842,0.273,0.602,0.427,0.817,0,0,0.0667,0.113 +0.333,0.71,0.191,0.37,0.611,0.833,0.106,0.317,0.2,0.0378 +0.333,0.704,0.263,0.347,0.117,0.517,0.459,0.417,0,0 +0.667,0.816,0.629,0.509,0,0,0.425,0,0,0.175 +0.667,0.764,0.596,0.389,0,0,0.279,0,0,0.124 +1,0.784,0.536,0.493,0,0,0.509,0,0,0 +1,0.725,0.232,0.252,0,0,0.499,0,0,0.144 +1,0.659,0.0689,0.0999,0,0,0.219,0,0,0.237 +1,0.566,0.0159,0.05,0,0,0.151,0,0,0.0725 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.625,0.0355,0.151,0,0,0,0,0.0667,0.185 +1,0.724,0.074,0.316,0,0,0,0,0.483,0.361 +1,0.738,0.0895,0.333,0,0,0,0,0,0.241 +1,0.824,0.149,0.485,0,0,0,0,0,0.284 +0.333,0.652,0.0664,0.191,0,0,0,0,0,0 +0.333,0.652,0.0724,0.185,0,0,0,0,0,0.227 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.0756 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0.167 +0.667,0.738,0.162,0.316,0,0,0,0,0,0.278 +0.333,0.665,0.0982,0.206,0,0,0,0,0.0667,0.0756 +0.333,0.684,0.12,0.256,0,0,0,0,0.2,0 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.189 +0.333,0.71,0.191,0.37,0,0,0,0,0,0.0756 +0.333,0.704,0.263,0.347,0,0,0,0,0.317,0 +0.667,0.816,0.629,0.509,0,0,0,0,0.233,0 +0.667,0.764,0.596,0.389,0.241,0.317,0,0,0,0.056 +1,0.784,0.536,0.493,0.492,0.767,0,0,0,0.242 +1,0.619,0.0879,0.117,0,0,0,0,0,0.118 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0517,0,0,0,0,0,0.0878 +1,0.612,0.026,0.0836,0,0,0,0,0,0.171 +1,0.625,0.0355,0.151,0,0,0,0,0,0.235 +1,0.645,0.0449,0.183,0,0,0,0,0,0.0655 +1,0.738,0.0895,0.333,0,0,0,0,0,0.407 +0.667,0.652,0.0604,0.195,0,0,0,0,0,0.0898 +1,0.824,0.168,0.472,0,0,0,0,0,0.339 +0.667,0.738,0.129,0.319,0,0,0,0,0,0.189 +0.667,0.738,0.136,0.31,0,0,0,0,0,0.153 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0.0378 +0.333,0.652,0.0888,0.183,0,0,0,0,0,0.0378 +0.333,0.665,0.0982,0.206,0,0,0,0,0,0.0756 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.113 +0.333,0.704,0.145,0.326,0,0,0,0,0,0 +0.667,0.855,0.366,0.69,0,0,0,0,0,0.113 +0.667,0.842,0.51,0.644,0.558,0.567,0,0,0,0.211 +0.667,0.816,0.629,0.509,0.094,0.517,0,0,0,0.222 +0.667,0.764,0.596,0.389,0,0,0,0,0,0.219 +0.333,0.639,0.189,0.198,0,0,0,0,0,0.286 +1,0.619,0.0879,0.117,0,0,0,0,0,0.12 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.724,0.074,0.316,0,0,0,0,0.317,0.191 +0.667,0.738,0.0895,0.333,0,0,0,0,0.517,0.134 +0.667,0.738,0.105,0.34,0,0,0,0,0,0.161 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.0689 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.0378 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.665,0.0982,0.206,0,0,0,0,0,0.302 +0.333,0.684,0.12,0.256,0,0,0,0,0.567,0.264 +0.333,0.704,0.145,0.326,0,0,0,0,1,0.0462 +0.667,0.855,0.366,0.69,0,0,0,0,1,0.297 +0.667,0.842,0.51,0.644,0,0,0,0,0.317,0.113 +0.667,0.816,0.629,0.509,0,0,0,0,1,0.0961 +0.667,0.665,0.306,0.22,0,0,0,0,0.05,0.169 +1,0.639,0.189,0.198,0,0,0,0,0,0.136 +1,0.619,0.0879,0.117,0,0,0,0,0,0.226 +1,0.612,0.0499,0.0749,0,0,0,0,0,0 +1,0.612,0.031,0.0583,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.612,0.0215,0.0517,0,0,0,0,0,0.0378 +1,0.612,0.0241,0.0836,0,0,0,0,0,0.151 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0595 +0.667,0.652,0.0731,0.191,0,0,0,0,0,0.248 +0.667,0.738,0.168,0.34,0,0,0,0,0,0.399 +0.667,0.738,0.198,0.331,0,0,0,0,0,0.551 +0.333,0.652,0.118,0.185,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0,0.0378 +0.333,0.652,0.165,0.183,0,0,0,0,0,0.151 +0.333,0.665,0.18,0.206,0,0,0,0,0,0.168 +0.667,0.803,0.36,0.461,0,0,0,0,0,0.176 +0.333,0.704,0.195,0.326,0,0,0,0,0,0.0756 +0.333,0.71,0.228,0.37,0,0,0,0,0.0667,0 +0.667,0.842,0.573,0.644,0,0,0,0,0.2,0.0378 +0.667,0.816,0.673,0.509,0,0,0,0,0,0.0865 +1,0.764,0.621,0.389,0,0,0,0,0,0.061 +1,0.639,0.206,0.198,0,0,0,0,0,0.0378 +1,0.619,0.101,0.117,0,0,0,0,0,0.119 +1,0.612,0.0499,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0.0527 +1,0.652,0.0731,0.191,0,0,0,0,0,0.398 +1,0.738,0.168,0.34,0,0,0,0,0,0.168 +1,0.738,0.198,0.331,0,0,0,0,0,0 +1,0.738,0.217,0.319,0,0,0,0,0,0.189 +0.667,0.652,0.125,0.18,0,0,0,0,0,0.0756 +0.667,0.738,0.274,0.308,0,0,0,0,0,0.301 +0.667,0.738,0.312,0.316,0,0,0,0,0,0.665 +0.667,0.764,0.343,0.362,0,0,0,0,0,0.296 +0.333,0.684,0.189,0.256,0,0,0,0,0,0.0378 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0.333,0.71,0.228,0.37,0,0,0,0,0,0.0947 +0.667,0.704,0.296,0.347,0,0,0.321,0.567,0,0.145 +0.667,0.691,0.345,0.279,0,0,0,0.167,0.267,0.113 +0.667,0.665,0.32,0.22,0,0,0.317,0.567,0,0 +0.667,0.566,0.0181,0.05,0,0,0.0903,0.167,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.738,0.0895,0.333,0,0,0,0,0.267,0.0378 +0.667,0.652,0.0604,0.195,0,0,0,0,0,0.113 +0.667,0.652,0.0664,0.191,0,0,0,0,0,0.151 +0.667,0.738,0.129,0.319,0,0,0.321,0.567,0,0.0756 +1,0.824,0.196,0.44,0,0,0.568,0.417,0,0.113 +0.667,0.738,0.153,0.308,0.312,0.317,0.0903,0,0,0.151 +0.667,0.738,0.162,0.316,0.658,0.767,0,0,0,0.227 +0.667,0.764,0.181,0.362,0.763,0,0,0,0,0.264 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.189 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.227 +0.333,0.71,0.191,0.37,0,0,0,0,0,0.0906 +0.667,0.842,0.51,0.644,0,0,0,0,0,0.227 +0.667,0.816,0.629,0.509,0,0,0,0,0.817,0 +1,0.863,0.887,0.559,0.526,0.567,0,0,0.0167,0 +1,0.784,0.536,0.493,0.222,0.517,0,0,0,0.0753 +1,0.619,0.0879,0.117,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +1,0.625,0.0355,0.151,0,0,0,0,0.767,0.0934 +1,0.724,0.074,0.316,0,0,0,0,0,0.185 +1,0.738,0.0895,0.333,0,0,0,0,0,0.288 +1,0.738,0.105,0.34,0,0,0,0,0,0.163 +0.667,0.652,0.0664,0.191,0,0,0,0,0,0.0378 +0.667,0.652,0.0724,0.185,0,0,0,0,0,0.34 +0.667,0.652,0.0759,0.18,0,0,0,0,0,0.0756 +0.667,0.652,0.0845,0.179,0,0,0,0,0,0.151 +0.667,0.652,0.0888,0.183,0,0,0,0,0,0.151 +1,0.863,0.263,0.518,0,0,0,0,0,0.402 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.189 +0.333,0.704,0.145,0.326,0.147,0.0667,0,0,0.317,0.0756 +0.667,0.855,0.366,0.69,0.632,1,0,0,0.233,0.151 +0.667,0.842,0.51,0.644,0,0.0167,0,0,0,0 +0.667,0.816,0.629,0.509,0,0,0,0,0,0.0569 +0.667,0.764,0.596,0.389,0,0,0,0,0,0.345 +1,0.784,0.536,0.493,0,0,0,0,0,0.133 +1,0.672,0.16,0.184,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +1,0.804,0.103,0.449,0,0,0,0,0.483,0.274 +1,0.824,0.126,0.474,0,0,0,0,0,0.458 +0.667,0.738,0.105,0.34,0,0,0,0,0,0.104 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.0378 +0.667,0.652,0.0724,0.185,0,0,0,0,0,0.0378 +0.667,0.738,0.136,0.31,0,0,0,0,0,0.253 +0,0.566,0.0159,0.05,0,0,0,0,0,0.124 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.665,0.0982,0.206,0,0,0,0,0,0.151 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.28 +0,0.566,0.0159,0.05,0,0,0,0,0,0.486 +0.667,0.842,0.51,0.644,0,0,0,0,0.55,0.151 +0.667,0.816,0.629,0.509,0,0,0,0,0,0.0378 +0.667,0.764,0.596,0.389,0,0,0,0,0,0.252 +0.667,0.639,0.189,0.198,0,0,0,0,0,0.379 +1,0.619,0.0879,0.117,0,0,0,0,0,0.124 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.117 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0517,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.253 +1,0.685,0.0551,0.253,0,0,0,0,0,0.398 +0.667,0.645,0.0449,0.183,0,0,0,0,0,0.326 +0.667,0.652,0.0527,0.191,0,0,0,0,0,0.6 +0.667,0.738,0.105,0.34,0,0,0,0,0.55,0.0697 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.286 +0.333,0.652,0.0724,0.185,0,0,0.275,0.567,0,0.0756 +0.333,0.652,0.0759,0.18,0,0,0.136,0.917,0.55,0 +0.333,0.652,0.0845,0.179,0.476,0.567,0,0,0,0 +0.667,0.738,0.162,0.316,0.31,0.517,0,0,0,0.367 +0.667,0.764,0.181,0.362,0,0,0,0,0,0.0942 +0.333,0.684,0.12,0.256,0,0,0,0,0,0.0756 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.0378 +0.333,0.71,0.191,0.37,0,0,0,0,0,0 +0.333,0.704,0.263,0.347,0,0,0,0,0,0.153 +0.333,0.691,0.322,0.279,0,0,0,0,0,0.123 +0.333,0.665,0.306,0.22,0,0,0,0,0,0.0378 +1,0.784,0.536,0.493,0,0,0,0,0,0.217 +1,0.619,0.0879,0.117,0,0,0,0,0,0 +1,0.612,0.0424,0.0749,0,0,0,0,0,0 +1,0.612,0.026,0.0583,0,0,0,0,0,0.0378 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0517,0,0,0,0,0,0.557 +1,0.612,0.026,0.0836,0,0,0,0,0,0.113 +1,0.625,0.0355,0.151,0,0,0,0,0,0.491 +1,0.724,0.074,0.316,0,0,0,0,0,0.25 +0.667,0.738,0.0895,0.333,0,0,0,0,0,0.141 +0.333,0.652,0.0604,0.195,0,0,0,0,0,0.229 +0.333,0.652,0.0664,0.191,0,0,0,0,0,0.271 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0934 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.652,0.0845,0.179,0,0,0,0,0.267,0.0756 +0.667,0.652,0.0888,0.183,0,0,0,0,0,0.113 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +1,0.855,0.366,0.69,0,0,0,0,0.483,0.0378 +1,0.842,0.51,0.644,0,0,0,0,0,0.227 +1,0.816,0.629,0.509,0,0,0,0,0,0.17 +1,0.863,0.887,0.559,0,0,0,0,0,0.0784 +1,0.784,0.536,0.493,0,0,0,0,0,0.317 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.612,0.0241,0.0836,0,0,0,0,0,0.357 +0.667,0.625,0.0327,0.151,0,0,0,0,0,0.549 +0.667,0.645,0.049,0.183,0,0,0,0,0,0.25 +0.667,0.652,0.0731,0.191,0,0,0,0,0,0.395 +0.667,0.738,0.168,0.34,0,0,0,0,0,0.264 +0.667,0.738,0.198,0.331,0,0,0,0,0,0.0378 +0.333,0.652,0.118,0.185,0,0,0,0,0,0 +0.333,0.652,0.125,0.18,0,0,0,0,0.0667,0 +0.667,0.738,0.274,0.308,0,0,0,0,0.483,0.0378 +0.667,0.738,0.312,0.316,0.135,0.0667,0,0,0,0.0756 +0.667,0.764,0.343,0.362,0.658,1,0,0,0,0.0378 +0.667,0.803,0.36,0.461,0.575,0.3,0,0,0,0.151 +0.667,0.842,0.372,0.602,0.823,0,0,0,0,0.0756 +0.667,0.855,0.437,0.69,0.568,0,0,0,0,0.113 +0.667,0.842,0.573,0.644,0.934,0,0,0,0,0.0378 +0.667,0.816,0.673,0.509,0.834,0,0,0,0,0 +1,0.764,0.621,0.389,0.245,0,0,0,0,0.098 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.0452 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.659,0.0301,0.117,0,0,0,0,0,0.446 +1,0.685,0.0473,0.253,0,0,0,0,0.267,0.42 +1,0.724,0.0799,0.316,0,0,0,0,0,0.356 +0.667,0.652,0.0731,0.191,0,0,0,0,0,0.247 +0.667,0.652,0.0928,0.195,0,0,0,0,0,0.159 +0.667,0.738,0.198,0.331,0,0,0,0,0.567,0 +0.667,0.738,0.217,0.319,0,0,0,0,0.55,0.113 +0.667,0.652,0.125,0.18,0,0,0,0,0,0 +1,0.738,0.274,0.308,0,0,0,0,0,0 +1,0.738,0.312,0.316,0,0,0,0,0,0.529 +0.667,0.764,0.343,0.362,0,0,0,0,0,0.227 +0.667,0.684,0.189,0.256,0,0,0,0,0,0.264 +0.333,0.704,0.195,0.326,0,0,0,0,0,0.227 +0.667,0.855,0.437,0.69,0,0,0,0,0,0.0756 +0.667,0.842,0.573,0.644,0.0639,0.0667,0,0,0.55,0.227 +0.667,0.816,0.673,0.509,0.496,1,0,0,0.267,0.0378 +1,0.764,0.621,0.389,0,0.0167,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.612,0.02,0.0517,0,0,0,0,0,0.213 +1,0.612,0.026,0.0836,0,0,0,0,0,0.235 +1,0.625,0.0355,0.151,0,0,0,0,0,0.154 +1,0.645,0.0449,0.183,0,0,0,0,0,0.312 +1,0.652,0.0527,0.191,0,0,0,0,0,0.349 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0 +0.667,0.652,0.0664,0.191,0,0,0,0,0,0.151 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0.0378 +0.333,0.652,0.0845,0.179,0,0,0,0,0.0667,0.0378 +0.333,0.652,0.0888,0.183,0,0,0,0,0.483,0.264 +0.333,0.665,0.0982,0.206,0,0,0,0,0,0.378 +0.667,0.803,0.224,0.461,0,0,0,0,0,0.0378 +0.333,0.704,0.145,0.326,0,0,0,0,0,0 +0.333,0.71,0.191,0.37,0,0,0,0,0,0 +0.333,0.704,0.263,0.347,0,0,0,0,0,0 +0.667,0.816,0.629,0.509,0,0,0,0,0,0.537 +0.667,0.764,0.596,0.389,0,0,0,0,0,0.151 +0.667,0.639,0.189,0.198,0,0,0,0,0,0 +0.667,0.619,0.0879,0.117,0,0,0,0,0,0.181 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.0753 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0562 +1,0.645,0.0449,0.183,0,0,0,0,0,0.308 +0.667,0.652,0.0527,0.191,0,0,0,0,0,0.279 +0.667,0.652,0.0604,0.195,0,0,0,0,0,0.0378 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.214 +0.667,0.738,0.129,0.319,0,0,0,0,0,0.411 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.0378 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0.0378 +0.333,0.652,0.0888,0.183,0,0,0,0,0,0.0378 +0.667,0.764,0.181,0.362,0,0,0,0,0,0.0756 +0.333,0.684,0.12,0.256,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.151 +0.333,0.71,0.191,0.37,0,0,0,0,0,0.189 +0.333,0.704,0.263,0.347,0,0,0,0,0,0.151 +0.333,0.691,0.322,0.279,0,0,0,0,0.0667,0 +0.667,0.764,0.596,0.389,0,0,0,0,0.483,0 +1,0.711,0.363,0.345,0,0,0,0,0,0 +1,0.619,0.0879,0.117,0,0,0,0,0,0 +1,0.612,0.0424,0.0749,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.0964 +1,0.612,0.026,0.0836,0,0,0,0,0,0.199 +1,0.685,0.0551,0.253,0,0,0,0,0,0.251 +1,0.804,0.103,0.449,0,0,0,0,0.0667,0.166 +0.667,0.738,0.0895,0.333,0,0,0,0,0.483,0.113 +0.667,0.738,0.105,0.34,0,0,0,0,0,0.264 +0.667,0.738,0.117,0.331,0,0,0,0,0,0.138 +0.333,0.652,0.0724,0.185,0,0,0,0,0,0 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.189 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0.113 +0.333,0.652,0.0888,0.183,0,0,0.297,0.233,0,0.302 +0.333,0.665,0.0982,0.206,0,0,0,0,0,0.0756 +0.333,0.684,0.12,0.256,0,0,0,0,0,0 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.704,0.263,0.347,0,0,0,0,0,0 +0.333,0.691,0.322,0.279,0,0,0,0,0,0 +0.667,0.665,0.306,0.22,0,0,0,0,0,0 +1,0.711,0.363,0.345,0,0,0,0,0,0 +1,0.672,0.16,0.184,0,0,0,0,0,0 +1,0.612,0.0424,0.0749,0,0,0,0,0,0.0756 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0.179 +0.667,0.566,0.0159,0.05,0,0,0,0,0,0.305 +0.667,0.652,0.0527,0.191,0,0,0.12,0.567,0.817,0.113 +0.667,0.652,0.0604,0.195,0,0,0,0.167,0.583,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.652,0.0724,0.185,0,0,0,0,0.267,0.0378 +0.333,0.652,0.0759,0.18,0,0,0,0,0,0.0378 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0.0531 +0.333,0.684,0.12,0.256,0,0,0.11,0.0667,0,0.499 +0.333,0.704,0.145,0.326,0,0,0.365,0.917,0,0.264 +0.333,0.71,0.191,0.37,0,0,0.23,0,0,0.189 +0.333,0.704,0.263,0.347,0.154,0.0667,0.0825,0,0.817,0.0378 +0.667,0.816,0.629,0.509,0.466,1,0,0,0.0167,0.265 +0.667,0.764,0.596,0.389,0,0.0167,0,0,0,0 +1,0.711,0.363,0.345,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +1,0.724,0.074,0.316,0,0,0,0,0.2,0.454 +1,0.738,0.0895,0.333,0,0,0,0,0,0.335 +1,0.738,0.105,0.34,0.115,0.0667,0,0,0,0.141 +0.667,0.652,0.0664,0.191,0.588,1,0,0,0,0 +0.667,0.652,0.0724,0.185,0,0.0167,0,0,0,0.113 +0.667,0.738,0.136,0.31,0,0,0,0,0,0.0756 +0.667,0.738,0.153,0.308,0,0,0,0,0,0.681 +0.667,0.738,0.162,0.316,0,0,0,0,0,0.499 +0.667,0.764,0.181,0.362,0,0,0,0,0,0.468 +0.667,0.803,0.224,0.461,0,0,0,0,0,0.404 +0.333,0.704,0.145,0.326,0,0,0,0,0,0.185 +0,0.566,0.0159,0.05,0,0,0,0,0,0.174 +0,0.566,0.0159,0.05,0,0,0,0,0,0.273 +0.333,0.691,0.322,0.279,0,0,0,0,0.267,0.227 +0.333,0.665,0.306,0.22,0,0,0,0,0,0 +0.333,0.566,0.0159,0.05,0,0,0,0,0.0667,0 +1,0.619,0.0879,0.117,0,0,0,0,0.2,0 +1,0.612,0.0499,0.0749,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.625,0.0327,0.151,0,0,0,0,0,0.0756 +0.667,0.724,0.0799,0.316,0.267,0.317,0,0,0,0.113 +0.667,0.738,0.128,0.333,0.744,1,0,0,0,0.0756 +0.667,0.738,0.168,0.34,0.68,0.05,0,0,0,0.277 +0.667,0.738,0.198,0.331,0.771,0,0,0,0,0 +0.667,0.738,0.217,0.319,0.65,0,0.158,0.317,0,0.0378 +0.667,0.738,0.233,0.31,0.214,0,0.267,0.917,0,0 +0.333,0.652,0.146,0.179,0,0,0.459,0,0,0.227 +0.667,0.738,0.312,0.316,0,0,0.52,0,0,0.189 +1,0.863,0.505,0.518,0,0,0,0,0,0.151 +1,0.803,0.36,0.461,0,0,0,0,0,0 +1,0.98,0.549,0.878,0,0,0,0,0,0.112 +0.333,0.71,0.228,0.37,0.137,0.0667,0,0,0.267,0.336 +1,0.98,0.851,0.941,0.763,1,0,0,0,0.389 +1,0.941,1,0.738,0,0.0167,0,0,0,0.209 +1,0.863,0.923,0.559,0,0,0,0,0,0.118 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +1,0.566,0.0181,0.05,0,0,0,0,0,0 +0.667,0.566,0.0181,0.05,0,0,0,0,0,0.131 +0.667,0.645,0.049,0.183,0,0,0,0,0,0.247 +0.667,0.738,0.128,0.333,0,0,0,0,0,0.143 +0.333,0.652,0.0928,0.195,0,0,0,0,0,0.128 +0,0.566,0.0181,0.05,0,0,0,0,0,0 +0,0.566,0.0181,0.05,0,0,0,0,0.317,0 +0.667,0.738,0.233,0.31,0,0,0,0,1,0.119 +0.333,0.652,0.146,0.179,0,0,0,0,1,0.264 +0.333,0.652,0.165,0.183,0,0,0,0,0.783,0.113 +0.333,0.665,0.18,0.206,0,0,0,0,0,0.302 +0.333,0.684,0.189,0.256,0,0,0,0,0,0.189 +0.333,0.704,0.195,0.326,0,0,0,0,0,0.113 +0.667,0.855,0.437,0.69,0,0,0,0,0,0.0756 +0.667,0.842,0.573,0.644,0,0,0,0,0,0 +0.667,0.816,0.673,0.509,0,0,0,0,0,0 +1,0.863,0.923,0.559,0,0,0.0681,0.0667,0,0 +1,0.639,0.206,0.198,0,0,0.343,1,0,0 +1,0.619,0.101,0.117,0.404,0.567,0.152,0.417,0,0 +1,0.612,0.0424,0.0749,0.867,0.517,0,0,0,0.0378 +1,0.566,0.0159,0.05,0.258,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.566,0.0159,0.05,0,0,0,0,0,0 +1,0.645,0.0449,0.183,0,0,0,0,0,0.113 +1,0.738,0.0895,0.333,0,0,0,0,0,0.287 +1,0.738,0.105,0.34,0,0,0,0,0,0.261 +0.333,0.652,0.0664,0.191,0,0,0,0,0,0.157 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0,0.566,0.0159,0.05,0,0,0,0,0,0 +0.333,0.652,0.0845,0.179,0,0,0,0,0,0 +0.333,0.652,0.0888,0.183,0,0,0.0942,0.567,0,0 +0.333,0.665,0.0982,0.206,0,0,0.861,0.167,0,0.113 +0.333,0.684,0.12,0.256,0,0,0.493,0,0,0.216 +0.667,0.842,0.273,0.602,0,0,0.673,0,0,0.17 +0.667,0.855,0.366,0.69,0,0,0.34,0,0,0.151 +0.667,0.842,0.51,0.644,0.434,0.567,0.102,0,0,0.319 +1,0.941,0.936,0.738,0.671,0.517,0,0,0.0667,0.267 +0.667,0.764,0.596,0.389,0.432,0,0,0,0.483,0.0997 +0.667,0.639,0.189,0.198,0,0,0,0,0,0.0378 +1,0.672,0.16,0.184,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv index 3c40c64f8e..2bf1e933e9 100644 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv @@ -1,8761 +1,8761 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0.3,0,0,0,0.281,0.608,0.026,0,0,0.106 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.128 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0428 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0857 -0.333,0.181,0.181,0,0.8,0,0,0.281,0.647,0.0759,0.516,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.196,0.196,0.217,0,0,0,0.281,0.66,0.0982,0,0,0.0857 -0.667,0.418,0.418,0.55,0,0,0,0.14,0.797,0.224,0,0,0.0428 -1,0.798,0.798,0,0.167,0,0,0,0.973,0.402,0.234,0,0 -1,0.979,0.979,0,0.633,0,0,0,0.993,0.541,0.572,0,0.128 -1,0.991,0.991,0,0.667,0,0,0,0.973,0.758,0.548,0,0.257 -1,0.823,0.823,0,0.133,0,0,0,0.934,0.936,0.503,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0.277,0,0.175 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.205 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.285 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.231 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0546 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.403 -0.333,0.192,0.192,0,0.667,0,0,0.281,0.647,0.0527,0.601,0,0.0428 -0.333,0.196,0.196,0,0.133,0,0,0.281,0.647,0.0604,0.146,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.453 -1,0.798,0.798,0.717,0,0,0,0,0.973,0.402,0,0,0.357 -1,0.979,0.979,0.05,0,0,0,0,0.993,0.541,0,0,0.109 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.128 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.104 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.0889 -1,0.253,0.253,0.467,0,0,0,0.14,0.68,0.0551,0,0,0.168 -1,0.449,0.449,0.567,0,0,0,0,0.798,0.103,0,0,0.0915 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.251 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.225 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0603 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.467 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.491 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0428 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0.717,0,0,0,0.281,0.66,0.0982,0,0,0.0857 -1,0.602,0.602,0.833,0,0,0,0,0.915,0.327,0,0,0.171 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.0857 -0.667,0.669,0.669,0.25,0,0,0,0.14,0.849,0.366,0,0,0.165 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.43 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.348 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.102 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.207 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.0851 -1,0.0513,0.0513,0.55,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.206 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.167 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0.217,0,0,0,0.281,0.66,0.0982,0,0,0.214 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.798,0.798,0.333,0,0,0,0,0.973,0.402,0,0,0.0857 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.214 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.0428 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.352 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.462 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.202 -1,0.0513,0.0513,0.217,0,0,0,0.281,0.608,0.02,0,0,0.0995 -0.667,0.0833,0.0833,0.0333,0,0,0,0.281,0.608,0.026,0,0,0.0882 -1,0.253,0.253,0.217,0,0,0,0.14,0.68,0.0551,0,0,0.193 -1,0.316,0.316,0.817,0,0,0,0.14,0.719,0.074,0,0,0.113 -1,0.334,0.334,0,0.917,0,0,0.14,0.732,0.0895,0.648,0,0.156 -1,0.49,0.49,0,0.15,0,0,0,0.818,0.149,0.0535,0,0.386 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.347 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0,0.544 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0.667,0,0,0.281,0.66,0.0982,0.608,0,0.0428 -0.667,0.418,0.418,0.467,0.133,0,0,0.14,0.797,0.224,0.358,0,0.257 -0.667,0.548,0.548,0.3,0.417,0,0,0.14,0.836,0.273,0.39,0,0.128 -1,0.979,0.979,0,0.65,0,0,0,0.993,0.541,0.166,0,0.315 -0.667,0.363,0.363,0,0.667,0,0,0.281,0.699,0.263,0.494,0,0.128 -1,0.565,0.565,0,0.133,0,0,0.14,0.81,0.629,0.229,0,0.0428 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.214 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.171 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.102 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.136 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.0984 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.135 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.432 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.0428 -0.333,0.182,0.182,0.133,0,0,0,0.281,0.647,0.165,0,0,0.0857 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.18,0,0,0.128 -0.667,0.418,0.418,0.667,0,0,0,0.14,0.797,0.36,0,0,0.171 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.428 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.0428 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.128 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.12 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.0818 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.0839 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.0608 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.171 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.0428 -0.333,0.181,0.181,0.25,0,0,0,0.281,0.647,0.125,0,0,0.0857 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.257 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0.128 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.171 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.214 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.0428 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.128 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.129 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.116 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.155 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.355,0.355,0.3,0,0,0,0,0.74,0.0747,0,0,0 -0.667,0.316,0.316,0.767,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.171 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.343 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.128 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0428 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0931 -0.667,0.343,0.343,0.767,0,0,0,0.14,0.758,0.181,0,0,0.238 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.171 -0.667,0.548,0.548,0.967,0,0,0,0.14,0.836,0.273,0,0,0.182 -1,0.669,0.669,0.317,0,0,0,0.14,0.849,0.366,0,0,0.0428 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.128 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.117 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.167 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.178 -1,0.0833,0.0833,0.217,0,0,0,0.281,0.608,0.026,0,0,0.0984 -1,0.253,0.253,0.3,0,0,0,0.14,0.68,0.0551,0,0,0.0837 -0.667,0.183,0.183,0.467,0,0,0,0.281,0.64,0.0449,0,0,0.171 -0.333,0.192,0.192,0.05,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0.617,0,0.281,0.647,0.0604,0,0.342,0.0857 -0.333,0.192,0.192,0,0,0,0.267,0.281,0.647,0.0664,0,0.458,0.0857 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.514,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.514,0.0857 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.608,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.54,0.0857 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.545,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.502,0.343 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.693,0.0428 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0.42,0.0428 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.354,0.101 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.696,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.278,0.0857 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.196,0.196,0,0,0.319,0,0.281,0.647,0.0604,0,0.111,0 -0.333,0.192,0.192,0,0,0.596,0.417,0.281,0.647,0.0664,0,0.694,0.0428 -0.333,0.186,0.186,0,0,0,0.667,0.281,0.647,0.0724,0,0.348,0 -0.333,0.181,0.181,0.467,0,0,0,0.281,0.647,0.0759,0,0.384,0 -0.667,0.311,0.311,0.05,0,0,0,0.14,0.732,0.153,0,0.421,0.0428 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.633,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.214 -0.333,0.234,0.234,0,0,0.298,0,0.281,0.679,0.12,0,0.0563,0.0428 -0.667,0.548,0.548,0,0,0,0.817,0.14,0.836,0.273,0,0.537,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0.912,0.171 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.666,0.0857 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.703,0.0857 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.799,0.0857 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0.477,0.3 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.0193,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.127 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0598 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0.967,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.343,0.343,0.317,0,0,0,0.14,0.758,0.181,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0.0857 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.257 -1,0.979,0.979,0.25,0,0,0,0,0.993,0.541,0,0,0.171 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.171 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0428 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0428 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.203 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.118 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0,0,0.638,0,0.281,0.66,0.0982,0,0.19,0 -0.333,0.234,0.234,0,0,0.277,0.533,0.281,0.679,0.12,0,0.704,0 -0.333,0.299,0.299,0.967,0,0,0,0.281,0.699,0.145,0,0.19,0 -0.667,0.669,0.669,0.0667,0,0,0,0.14,0.849,0.366,0,0,0.343 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.214 -1,0.823,0.823,0.25,0,0,0,0,0.934,0.936,0,0,0.0857 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.143 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.383 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.0965 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0473,0,0,0 -1,0.316,0.316,0,0.333,0,0,0.14,0.719,0.0799,0.314,0,0.191 -1,0.477,0.477,0.517,0.467,0,0,0,0.818,0.183,0.355,0,0.0428 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.171 -0.667,0.334,0.334,0.517,0,0,0,0.14,0.732,0.198,0,0,0.0857 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.0428 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.128 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.0428 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0428 -0.667,0.343,0.343,0,0,0.298,0.567,0.14,0.758,0.343,0,0.338,0.0857 -1,0.602,0.602,0,0,0,0.25,0,0.915,0.531,0,0,0.128 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.214 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.102 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.333,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.0428 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.0641 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.062 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.151 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.294 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.229 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.238 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.14 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.0539 -0.667,0.315,0.315,0.133,0,0,0,0.14,0.732,0.312,0,0,0.0857 -1,0.343,0.343,0.633,0,0,0,0.14,0.758,0.343,0,0,0.0857 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.0428 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.3 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.171 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.214 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.0428 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.214 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.3 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0975 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.173 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.175 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.385 -0.333,0.192,0.192,0.217,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0.214 -0.333,0.192,0.192,0.0667,0,0.638,0,0.281,0.647,0.0664,0,0.431,0.0857 -0.333,0.186,0.186,0,0,0.277,0.533,0.281,0.647,0.0724,0,0.347,0.214 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.698,0.0428 -0.333,0.18,0.18,0.25,0,0,0,0.281,0.647,0.0845,0,0.31,0.128 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.214 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.669,0.669,0,0.917,0,0,0.14,0.849,0.366,0.745,0,0.171 -0.667,0.677,0.677,0,0.15,0,0,0.14,0.836,0.51,0.645,0,0.0857 -0.667,0.565,0.565,0,0.8,0,0,0.14,0.81,0.629,0.567,0,0.128 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0.178,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.171 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.128 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0428 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0.667,0,0,0.281,0.699,0.145,0.474,0,0.248 -1,0.979,0.979,0,0.133,0,0,0,0.993,0.541,0,0,0.128 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.214 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.171 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0925 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.341 -0.667,0.316,0.316,0.467,0,0,0,0.14,0.719,0.074,0,0,0.0818 -0.667,0.192,0.192,0.817,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0857 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.128 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.214 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.23 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0.667,0,0,0.281,0.66,0.0982,0.557,0,0.473 -0.667,0.418,0.418,0,0.4,0,0,0.14,0.797,0.224,0,0,0.0428 -0.667,0.548,0.548,0.25,0,0,0,0.14,0.836,0.273,0,0,0.0857 -1,0.979,0.979,0,0.667,0,0,0,0.993,0.541,0.497,0,0.385 -1,0.677,0.677,0,0.133,0,0,0.14,0.836,0.51,0,0,0.171 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.343 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.0799 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.248 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.38 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.279 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.421 -0.667,0.313,0.313,0.467,0,0,0,0.14,0.732,0.136,0,0,0.152 -0.667,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0.0428 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.0857 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.128 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.0428 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.128 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.145 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.172 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0946 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0428 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0857 -0.333,0.186,0.186,0,0,0.617,0.267,0.281,0.647,0.0724,0,0.469,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.214 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0857 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.0428 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.0428 -0.667,0.548,0.548,0.967,0,0,0,0.14,0.836,0.273,0,0,0.269 -1,0.979,0.979,0.0667,0,0,0,0,0.993,0.541,0,0,0.357 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.251 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.102 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.183,0.183,0.133,0,0,0,0.281,0.64,0.049,0,0,0.201 -1,0.334,0.334,0.117,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.0857 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0428 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.128 -0.667,0.315,0.315,0.25,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.108 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.214 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.214 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0.3 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.347 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0.311 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.222 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.279 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.211 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.179 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.119 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.416 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.488 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.0274 -1,0.448,0.448,0,0,0.617,0.317,0,0.818,0.459,0,0.45,0 -1,0.49,0.49,0.517,0,0,0.217,0,0.857,0.505,0,0,0.0857 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.0857 -1,0.798,0.798,0,0,0.851,0,0,0.973,0.549,0,0.431,0.128 -1,0.979,0.979,0,0,0.0638,0.833,0,0.993,0.647,0,0.49,0.0428 -1,0.991,0.991,0,0,0,0.25,0,0.973,0.851,0,0.807,0.0428 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.627,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.699,0.128 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0.801,0.171 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0.357,0 -1,0.124,0.124,0,0,0,0,0,0.701,0.0954,0,0.52,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.0833,0.0833,0,0,0.638,0,0.281,0.608,0.026,0,0.45,0.189 -0.667,0.151,0.151,0,0,0.277,0.533,0.281,0.621,0.0355,0,0.259,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0.617,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0.232,0.0428 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0428 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0857 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.171 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0857 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.0428 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.128 -1,0.798,0.798,0.467,0,0,0,0,0.973,0.402,0,0,0.0428 -1,0.979,0.979,0.817,0.667,0,0,0,0.993,0.541,0.569,0,0 -1,0.991,0.991,0,0.133,0,0,0,0.973,0.758,0.771,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.114,0,0.321 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.171 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.277,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0896 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.0732 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.209 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0.0992 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.0857 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.128 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.347 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.128 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0.298,0.15,0.281,0.699,0.145,0,0.217,0.122 -0.667,0.669,0.669,0.217,0,0,0.667,0.14,0.849,0.366,0,0.667,0.233 -0.667,0.677,0.677,0.55,0,0,0,0.14,0.836,0.51,0,0.344,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.162,0.257 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.363 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0988 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0.05,0,0,0,0.281,0.621,0.0355,0,0,0.0672 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.192 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.0589 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.442 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.646 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.426 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.373 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.222 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.206 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.128 -0.333,0.234,0.234,0.467,0,0,0,0.281,0.679,0.12,0,0,0.137 -0.333,0.299,0.299,0.817,0,0,0,0.281,0.699,0.145,0,0,0.19 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.0857 -0.667,0.363,0.363,0,0.417,0,0,0.281,0.699,0.263,0.54,0,0.207 -1,0.823,0.823,0,0.383,0,0,0,0.934,0.936,0.109,0,0.566 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.0857 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0362 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.461 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.136 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.372 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.355 -1,0.49,0.49,0,0,0.298,0.4,0,0.818,0.149,0,0.26,0.161 -1,0.477,0.477,0,0,0,0.417,0,0.818,0.168,0,0.812,0.311 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0.138,0.199 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0.124 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.171 -0.333,0.234,0.234,0.467,0,0,0,0.281,0.679,0.12,0,0,0.171 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.0428 -1,0.979,0.979,0.0833,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.257 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.19 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.142 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.312 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.151 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.192,0.192,0.717,0,0,0,0.281,0.647,0.0527,0,0,0.0857 -0.667,0.343,0.343,0.05,0,0,0,0.14,0.732,0.105,0,0,0.3 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.214 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.0857 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.299,0.299,0.967,0,0,0,0.281,0.699,0.145,0,0,0 -1,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.171 -1,0.677,0.677,0.617,0,0,0,0.14,0.836,0.51,0,0,0.23 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.27 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.0428 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.428 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.0428 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0.213,0,0.421,0.562,0.0181,0,0.0145,0 -1,0.183,0.183,0,0,0.404,0.567,0.281,0.64,0.049,0,0.632,0 -1,0.192,0.192,0.633,0,0,0.25,0.281,0.647,0.0731,0,0,0.0622 -1,0.343,0.343,0.65,0.0833,0,0,0.14,0.732,0.168,0.149,0,0.128 -1,0.334,0.334,0,0.717,0,0,0.14,0.732,0.198,0.509,0,0.171 -1,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.0428 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.0428 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.281 -1,0.49,0.49,0.517,0,0,0,0,0.857,0.505,0,0,0.164 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.262 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.33 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.373 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.253 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.0428 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0857 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.171 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0636 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.0868 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.0951 -0.667,0.186,0.186,0,0,0.213,0,0.281,0.647,0.118,0,0.037,0.15 -0.667,0.313,0.313,0,0,0.702,0.267,0.14,0.732,0.233,0,0.527,0.507 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0.528,0.259 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.445,0.466 -0.667,0.343,0.343,0.383,0,0,0,0.14,0.758,0.343,0,0.383,0.249 -0.667,0.418,0.418,0.133,0,0,0,0.14,0.797,0.36,0,0,0.0857 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.214 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.0857 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.135 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0791 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.0472 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.098 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.193 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.0428 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0857 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.171 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.214 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.042 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0894 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0582 -1,0.0833,0.0833,0.517,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.259 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.353 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.453 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.256 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.214 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0857 -0.333,0.182,0.182,0,0.167,0,0,0.281,0.647,0.0888,0.238,0,0.0428 -0.333,0.196,0.196,0,0.633,0,0,0.281,0.66,0.0982,0.248,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.428 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.171 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.323 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.126 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0.667,0.298,0.4,0.14,0.68,0.0551,0.557,0.158,0.251 -0.667,0.316,0.316,0.517,0.8,0,0.683,0.14,0.719,0.074,0.572,0,0 -0.667,0.334,0.334,0,0.4,0,0,0.14,0.732,0.0895,0.635,0,0.0857 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0.287,0,0.214 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.171 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0857 -0.333,0.181,0.181,0,0.8,0,0,0.281,0.647,0.0759,0.713,0,0.0428 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0428 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.385 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.55,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.257 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.0651 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.101 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.131 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.482 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0679 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.162 -0.667,0.316,0.316,0.417,0,0,0,0.14,0.736,0.128,0,0,0.268 -0.667,0.307,0.307,0.85,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0428 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.128 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.0857 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.343 -0.667,0.595,0.595,0.25,0,0,0,0.14,0.854,0.364,0,0,0.0428 -0.667,0.67,0.67,0,0.117,0,0,0.14,0.841,0.507,0.122,0,0.402 -1,0.913,0.913,0,0.667,0,0,0,0.941,0.929,0.548,0,0.249 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.285 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.106 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.17 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.167,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.19,0.19,0.0833,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.128 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.0857 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.128 -1,0.674,0.674,0,0.117,0,0,0,0.98,0.399,0.161,0,0.214 -0.667,0.595,0.595,0,0.667,0,0,0.14,0.854,0.364,0.708,0,0.343 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.257 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.281 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.128 -0.667,0.0495,0.0495,0,0,0.319,0.333,0.421,0.562,0.0159,0,0.241,0 -1,0.116,0.116,0,0,0,0.717,0.281,0.616,0.0874,0,0.505,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.174 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0.638,0.0167,0.281,0.61,0.0215,0,0.6,0 -1,0.116,0.116,0,0,0,0.767,0.14,0.658,0.0299,0,0.347,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.047,0,0,0.114 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.146 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.177,0.177,0,0.783,0,0,0.281,0.649,0.145,0.8,0,0.0403 -0.333,0.178,0.178,0.35,0,0,0,0.281,0.649,0.164,0.129,0,0.0857 -0.333,0.186,0.186,0.917,0,0,0,0.281,0.662,0.179,0,0,0.0428 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.3 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.214 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.0857 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.3 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.156 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.14 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.212 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0.167,0.0953 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.0857 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.0428 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.509 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.278 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.19 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.171 -0.333,0.186,0.186,0.1,0,0,0,0.281,0.662,0.179,0,0,0.471 -0.667,0.367,0.367,0.4,0,0,0,0.14,0.802,0.358,0,0,0.3 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.0857 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.214 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.0857 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.214 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.117 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.658,0.036,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.0765 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.12 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.313 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.17 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.525 -0.667,0.33,0.33,0,0,0.574,0,0.14,0.736,0.0889,0,0.301,0.175 -0.667,0.337,0.337,0,0,0.383,0.583,0.14,0.736,0.104,0,0.69,0.239 -0.333,0.189,0.189,0,0,0,0.467,0.281,0.649,0.066,0,0.645,0.128 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.399,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.606,0.128 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.471,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.5,0.0857 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.585,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.46,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.768,0.128 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.293,0.343 -1,0.98,0.98,0.917,0,0,0,0,0.98,0.752,0,0,0.141 -1,0.913,0.913,0.35,0,0,0,0,0.941,0.929,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.214 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0794 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0732 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.127 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.245 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.344 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.513 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.378 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.22 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.326 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0988 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.0428 -0.333,0.178,0.178,0.667,0,0,0,0.281,0.649,0.0882,0,0,0.0428 -0.333,0.186,0.186,0.35,0,0,0,0.281,0.662,0.0976,0,0,0.0428 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.214 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0428 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.128 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.298 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.082 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.281 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.178 -0.667,0.313,0.313,0,0,0.638,0.0833,0.14,0.723,0.0735,0,0.519,0.123 -0.667,0.33,0.33,0,0,0,0.7,0.14,0.736,0.0889,0,0.555,0.0428 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.74,0.0857 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.791,0.128 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0428 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0779 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.3 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0.117,0,0,0.281,0.682,0.119,0.119,0,0.0857 -0.333,0.258,0.258,0,0.667,0,0,0.281,0.701,0.144,0.603,0,0.503 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0.424,0,0.434 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.413 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0857 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.187 -1,0.351,0.351,0.25,0,0,0,0,0.745,0.0742,0,0,0.203 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0.0428 -0,0.0495,0.0495,0,0.617,0,0,0.421,0.562,0.0159,0.647,0,0.257 -0.333,0.193,0.193,0,0.167,0,0,0.281,0.649,0.0601,0.754,0,0.0857 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.606,0,0.0428 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.247 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0582 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0428 -0,0.0495,0.0495,0,0,0.638,0.333,0.421,0.562,0.0159,0,0.392,0.0428 -0.333,0.186,0.186,0,0,0,0.717,0.281,0.662,0.0976,0,0.513,0.171 -0.667,0.367,0.367,0.917,0,0,0,0.14,0.802,0.222,0,0.643,0.0857 -1,0.674,0.674,0.867,0,0,0,0,0.98,0.399,0,0.0788,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.128 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.246 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.225 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.246 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0665 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0675 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0846 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0428 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.428 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0428 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.257 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.128 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0,0.0428 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.171 -0.333,0.258,0.258,0.167,0,0,0,0.281,0.701,0.144,0,0,0.139 -0.667,0.595,0.595,0.6,0,0,0,0.14,0.854,0.364,0,0,0.439 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.303 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.255 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.223 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0651 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.783,0,0,0.421,0.562,0.0181,0.672,0,0 -1,0.193,0.193,0.5,0,0,0,0.281,0.649,0.0923,0,0,0.0787 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.153 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.105 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -0.667,0.305,0.305,0,0.783,0,0,0.14,0.736,0.272,0.625,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0.688,0,0.3 -0.333,0.186,0.186,0.25,0,0.319,0.267,0.281,0.662,0.179,0.368,0.584,0 -1,0.526,0.526,0,0,0,0.783,0,0.922,0.527,0,0.793,0.128 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.429,0.295 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.157 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.343 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.272 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.257 -1,0.638,0.638,0,0,0.319,0.517,0,0.784,0.578,0,0.347,0.0853 -1,0.183,0.183,0,0,0,0.267,0.14,0.671,0.182,0,0,0.0744 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.0756 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.291 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.667,0.189,0.189,0,0,0.638,0.0167,0.281,0.649,0.108,0,0.714,0.214 -0.667,0.183,0.183,0,0,0,1,0.281,0.649,0.117,0,0.442,0 -0.667,0.307,0.307,0,0,0,0.3,0.14,0.736,0.231,0,0.397,0.257 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.199,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.302,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.741,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0.608,0 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.389,0.343 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.551,0.0857 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0.548,0.257 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0.101,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.0857 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.068 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.0732 -1,0.0495,0.0495,0.25,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0784 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.133 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.491 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.0857 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0428 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0428 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0.417,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.322,0.322,0.0833,0,0,0,0.14,0.762,0.179,0,0,0.0857 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.171 -0.667,0.466,0.466,0.167,0,0,0,0.14,0.841,0.271,0,0,0.0857 -0.667,0.595,0.595,0.85,0,0.255,0,0.14,0.854,0.364,0,0.19,0.352 -0.667,0.67,0.67,0.25,0,0.383,0.25,0.14,0.841,0.507,0,0,0.0857 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0857 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0857 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0708 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0939 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.0901 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.39 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.254 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.171 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.503 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.112 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.917,0,0.574,0,0.281,0.623,0.0353,0,0.0659,0 -0.667,0.181,0.181,1,0,0.383,0.583,0.281,0.642,0.0447,0,0.539,0 -0.667,0.33,0.33,1,0,0,0.2,0.14,0.736,0.0889,0,0.738,0.186 -0.667,0.337,0.337,0.667,0,0,0,0.14,0.736,0.104,0,0.847,0.137 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.847,0.128 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.471 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.343 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0.25,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.345 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.242 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0266 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0.117,0,0,0.421,0.562,0.0159,0.151,0,0.0428 -0.333,0.193,0.193,0,0.933,0,0,0.281,0.649,0.0601,0.793,0,0.0428 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.186,0.186,0.0833,0,0,0,0.281,0.662,0.0976,0,0,0.208 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.868,0.868,0.917,0,0,0,0,1,0.537,0,0,0.385 -0.667,0.67,0.67,0.1,0,0,0,0.14,0.841,0.507,0,0,0.0857 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0428 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.554 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0.957,0.0833,0.281,0.61,0.0183,0,0.416,0 -1,0.0495,0.0495,0.117,0,0,0.433,0.281,0.61,0.0165,0,0.199,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.444,0.444,0,0,0.894,0,0,0.804,0.102,0,0.447,0.164 -1,0.47,0.47,0,0,0.0638,0.783,0,0.824,0.125,0,0.743,0.077 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.495,0.107 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.786,0.0689 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.555,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.547,0.257 -0.333,0.177,0.177,0.167,0,0,0,0.281,0.649,0.0839,0,0.579,0.0428 -0.333,0.0495,0.0495,0.0833,0.117,0,0,0.421,0.562,0.0159,0.156,0,0.0428 -0.667,0.186,0.186,0,0.667,0,0,0.281,0.662,0.0976,0.572,0,0.128 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.0428 -0.667,0.258,0.258,0.417,0,0,0,0.281,0.701,0.144,0,0,0.0428 -1,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.0857 -1,0.67,0.67,0.367,0,0,0,0.14,0.841,0.507,0,0,0.471 -1,0.913,0.913,0.667,0,0,0,0,0.941,0.929,0,0,0.203 -1,0.727,0.727,0.1,0,0,0,0,0.863,0.88,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0901 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.138 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -1,0.328,0.328,0,0.55,0.17,0,0.14,0.736,0.197,0.486,0.0836,0 -1,0.316,0.316,0,0.233,0.149,0.767,0.14,0.736,0.216,0,0.532,0 -0.667,0.178,0.178,0.1,0,0,0.283,0.281,0.649,0.125,0,0.746,0.257 -0.667,0.177,0.177,0.667,0,0,0,0.281,0.649,0.145,0,0.773,0.0428 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0.611,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0.424,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0.347,0.3 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.646,0.128 -1,0.868,0.868,0,0.55,0,0,0,1,0.642,0.462,0.45,0 -1,0.98,0.98,0,0.233,0,0,0,0.98,0.845,0,0.362,0.171 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.709,0.214 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0.518,0.0428 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.257 -1,0.249,0.249,0,0,0,0,0,0.725,0.264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0551 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.23 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.468,0.468,0,0,0.638,0.267,0,0.824,0.287,0,0.357,0 -1,0.449,0.449,0,0,0,0.783,0,0.824,0.315,0,0.502,0 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.437,0.128 -1,0.305,0.305,0.6,0,0,0,0.14,0.736,0.272,0,0,0.3 -1,0.307,0.307,0.417,0,0,0,0.14,0.736,0.31,0,0,0.171 -1,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.171 -1,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.171 -1,0.674,0.674,0,0.05,0,0,0,0.98,0.545,0.136,0,0.337 -1,0.868,0.868,0,0.733,0,0,0,1,0.642,0.484,0,0.481 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0.25,0,0.25 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.591 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.0128 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.132 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0832 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.263 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0809 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.0428 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.3 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0857 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.128 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.3 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.332 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0828 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0763 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.171 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.171 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0968 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.268 -0.667,0.251,0.251,0.167,0,0,0,0.14,0.684,0.0548,0,0,0.253 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.19,0.19,0.617,0,0,0,0.281,0.649,0.0524,0,0,0.165 -0.333,0.193,0.193,0,0,0.894,0,0.281,0.649,0.0601,0,0.481,0.296 -0.333,0.189,0.189,0,0,0.0638,0.783,0.281,0.649,0.066,0,0.463,0.028 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.325,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.712,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.138,0.0428 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0.5,0,0,0,0.281,0.662,0.0976,0,0,0.27 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.099 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.3 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.428 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.153 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0857 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0428 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0.417,0,0.255,0,0.421,0.562,0.0159,0,0.125,0.0748 -1,0.351,0.351,1,0,0.702,0.333,0,0.745,0.0742,0,0.315,0.0653 -0.667,0.313,0.313,1,0,0,0.45,0.14,0.723,0.0735,0,0.529,0.239 -0.333,0.19,0.19,0.133,0,0,0,0.281,0.649,0.0524,0,0.5,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.524,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.362,0.0857 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.482,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0.54,0.128 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.711,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.81,0.128 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.531,0.0428 -0.667,0.367,0.367,0.417,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0.0833,0,0,0,0.14,0.841,0.271,0,0,0.171 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0857 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0428 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.128 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0857 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.164 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.125 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0.417,0,0,0,0.281,0.61,0.0259,0,0,0.077 -0.667,0.251,0.251,0.85,0,0,0,0.14,0.684,0.0548,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.208,0.208,0.667,0,0,0,0.281,0.682,0.119,0,0,0.328 -1,0.674,0.674,0.1,0,0,0,0,0.98,0.399,0,0,0.255 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.128 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0857 -1,0.727,0.727,0.167,0,0,0,0,0.863,0.88,0,0,0.349 -1,0.638,0.638,0.85,0,0,0,0,0.784,0.532,0,0,0.107 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.126 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0403 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0857 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.171 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.128 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.36,0.36,0.417,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.337,0.337,0.85,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0.6,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.047,0,0,0 -0.333,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.495 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.098 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.419 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.203 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.604 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.153 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.214 -0.667,0.367,0.367,0.35,0,0.489,0,0.14,0.802,0.358,0,0.342,0.0428 -0.667,0.466,0.466,1,0,0.468,0.517,0.14,0.841,0.369,0,0.259,0.171 -1,0.868,0.868,0.183,0,0.809,0.267,0,1,0.642,0,0.365,0 -1,0.98,0.98,0,0,0.149,0.517,0,0.98,0.845,0,0.256,0.171 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.752,0.0428 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.119 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.176 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.124 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.147 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.128 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.557 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.0857 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.3 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.171 -0.667,0.595,0.595,0,0,0.17,0,0.14,0.854,0.434,0,0.0932,0.0428 -0.667,0.67,0.67,0,0,0.149,0.767,0.14,0.841,0.569,0,0.195,0.171 -0.667,0.625,0.625,0,0,0,0.283,0.14,0.815,0.668,0,0,0.228 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.159 -1,0.15,0.15,0.5,0,0,0,0,0.706,0.0461,0,0,0.0653 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.156 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.32 -0.667,0.33,0.33,0.5,0,0,0,0.14,0.736,0.0889,0,0,0.304 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.128 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.0428 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0946 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.0857 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0428 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0428 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.286 -0.667,0.367,0.367,0.25,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.385 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.128 -1,0.913,0.913,0,0,0.638,0.0833,0,0.941,0.929,0,0.466,0.0428 -1,0.727,0.727,0,0,0,0.7,0,0.863,0.88,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0939 -0.667,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0159,0,0,0.167 -0.667,0.251,0.251,0.35,0,0,0,0.14,0.684,0.0548,0,0,0.0139 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.162 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.29 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.204 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0428 -0.333,0.177,0.177,0.417,0,0,0,0.281,0.649,0.0839,0,0,0.0428 -0.333,0.178,0.178,0.0833,0,0,0,0.281,0.649,0.0882,0,0,0.128 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.343 -0.333,0.208,0.208,0.25,0,0,0,0.281,0.682,0.119,0,0,0.214 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.0428 -1,0.868,0.868,0,0.617,0,0,0,1,0.537,0.615,0,0.3 -1,0.98,0.98,0,0.167,0,0,0,0.98,0.752,0.666,0,0.0428 -1,0.913,0.913,0.417,0,0,0,0,0.941,0.929,0.117,0,0 -1,0.727,0.727,0.6,0.617,0,0,0,0.863,0.88,0.62,0,0.0428 -1,0.246,0.246,0,0.167,0,0,0.281,0.636,0.188,0.463,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.496,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0.713,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.667,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0159,0,0,0.296 -0.667,0.313,0.313,1,0,0,0,0.14,0.723,0.0735,0,0,0.157 -0.667,0.33,0.33,0.1,0,0,0,0.14,0.736,0.0889,0,0,0.107 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0428 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.171 -0.667,0.307,0.307,0,0.367,0,0,0.14,0.736,0.161,0.418,0,0.0857 -0.333,0.186,0.186,0,0.417,0,0,0.281,0.662,0.0976,0.273,0,0.0428 -0.333,0.208,0.208,0.25,0,0,0,0.281,0.682,0.119,0,0,0.257 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.214 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0857 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0857 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0.19,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.171 -1,0.114,0.114,0.717,0,0,0,0.14,0.559,0.0314,0,0,0.203 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.239 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.217 -0.667,0.318,0.318,0,0,0.936,0,0.14,0.621,0.0764,0,0.482,0.3 -0.333,0.185,0.185,0,0,0,0.517,0.281,0.591,0.0527,0,0.524,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0.0884,0.343 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0857 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0.717,0,0,0,0.281,0.602,0.0846,0,0,0.0857 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.0857 -0.667,0.395,0.395,0.967,0.667,0,0,0.14,0.704,0.232,0.48,0,0.0857 -0.667,0.507,0.507,0,0.1,0,0,0.14,0.714,0.31,0.652,0,0.0857 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.28,0,0.128 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0857 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.156 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.282 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.192 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.112 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.3 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0428 -0.333,0.175,0.175,0.467,0,0,0,0.281,0.591,0.0629,0,0,0.0857 -0.333,0.171,0.171,0.0167,0.767,0,0,0.281,0.591,0.0658,0.789,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0.1,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.175 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0857 -0.667,0.395,0.395,0.717,0,0,0,0.14,0.704,0.232,0,0,0.237 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.302 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.046 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.358 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.548 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.49 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.104 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.129 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.362 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.199 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.134 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.127 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.171,0.171,0,0.75,0.106,0,0.281,0.591,0.108,0.706,0.037,0.187 -1,0.409,0.409,0.55,0.267,0.511,0.483,0,0.651,0.34,0.139,0.278,0.321 -0.667,0.29,0.29,0.167,0,0,0.55,0.14,0.621,0.265,0,0,0.0428 -0.667,0.298,0.298,0.05,0,0,0,0.14,0.642,0.291,0,0,0.257 -0.667,0.326,0.326,0.183,0.5,0,0,0.14,0.673,0.305,0.63,0,0 -0.667,0.395,0.395,0,0.267,0.106,0,0.14,0.704,0.315,0.295,0.106,0.128 -0.667,0.507,0.507,0,1,0.511,0.483,0.14,0.714,0.371,0.47,0.78,0.214 -1,0.895,0.895,0,0.0167,0,0.283,0,0.774,0.719,0.441,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.214 -1,0.807,0.807,0,0.75,0,0,0,0.682,0.78,0.674,0,0 -1,0.5,0.5,0,0.267,0,0,0,0.62,0.492,0.445,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.518,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.396,0,0.132 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0744 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.182 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.0694 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.154 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.062 -1,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.3 -0.667,0.0495,0.0495,0.55,0,0.298,0,0.421,0.562,0.0181,0,0.14,0.171 -0.667,0.171,0.171,0.667,0,0,0.767,0.281,0.591,0.108,0,0.527,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0.519,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.259,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.0857 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.385 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.214 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.0428 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0 -0.667,0.555,0.555,0,0,0.298,0,0.14,0.642,0.526,0,0.371,0 -0.667,0.35,0.35,0,0,0,0.983,0.14,0.6,0.334,0,0.482,0.0857 -1,0.249,0.249,0,0,0,0.05,0,0.573,0.224,0.166,0.404,0 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0.666,0.257 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.76,0.0428 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.391,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.596,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.147,0.147,0.717,0,0,0,0.281,0.571,0.0316,0,0,0.0857 -0.667,0.177,0.177,0.983,0,0,0,0.281,0.586,0.0396,0,0,0.0428 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.321,0.321,0,0.767,0,0,0.14,0.621,0.0895,0.45,0,0.228 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.375 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.561 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0.617,0,0.281,0.591,0.0767,0,0.291,0.128 -0.667,0.298,0.298,0,0,0,0.767,0.14,0.642,0.153,0,0.672,0.171 -0.667,0.326,0.326,0.467,0,0,0,0.14,0.673,0.19,0,0.207,0 -0.667,0.395,0.395,0.25,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.3 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.635,0.635,0,0.667,0,0,0.14,0.683,0.532,0.555,0,0 -0.667,0.555,0.555,0,0.1,0,0,0.14,0.642,0.505,0.866,0,0.128 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.298 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.164 -0,0.0495,0.0495,0,0,0.936,0.15,0.421,0.562,0.0159,0,0.691,0.171 -0.333,0.175,0.175,0,0,0,0.883,0.281,0.591,0.0629,0,0.773,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.539,0.0428 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.674,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.429,0.0428 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0.463,0.0428 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.428,0.0428 -1,0.567,0.567,0,0.417,0,0,0,0.774,0.34,0.396,0.529,0.128 -1,0.736,0.736,0,0.6,0,0,0,0.79,0.457,0.757,0.49,0.0428 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.489,0.921,0.128 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.603,0.0836,0.0857 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.531,0,0.0857 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.764,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0.16,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0.233,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.201 -0.667,0.305,0.305,0.217,0,0,0,0.14,0.611,0.0634,0,0,0.155 -0.667,0.318,0.318,0.5,0,0,0,0.14,0.621,0.0764,0,0,0.465 -0.333,0.185,0.185,0,0.767,0,0,0.281,0.591,0.0527,0.718,0,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0857 -0.333,0.175,0.175,0.217,0,0,0,0.281,0.591,0.0629,0,0,0.0857 -0.333,0.171,0.171,1,0.167,0,0,0.281,0.591,0.0658,0.276,0,0.0428 -0.333,0.169,0.169,0.233,0.85,0,0,0.281,0.591,0.073,0.59,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0.421,0,0.0857 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.647,0,0.0428 -0.333,0.188,0.188,0.233,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.395,0.395,0,0,0.298,0.517,0.14,0.704,0.232,0,0.328,0.171 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0.633,0.214 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.418,0.128 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.886,0.128 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.307,0.118 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0917 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.182 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.185,0.185,0.267,0,0,0,0.281,0.591,0.0527,0,0,0.0428 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0857 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0428 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.128 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.128 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.257 -1,0.736,0.736,0.967,0,0,0,0,0.79,0.457,0,0,0.208 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.26 -1,0.928,0.928,0.467,0,0,0,0,0.744,0.791,0,0,0.0529 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.138 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.359 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.559 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0.5,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -1,0.318,0.318,0,0.167,0,0,0.14,0.621,0.0764,0.282,0,0 -1,0.321,0.321,0,0.6,0,0,0.14,0.621,0.0895,0.696,0,0.249 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.458,0,0.195 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.679,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0.194,0,0.271 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0857 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0.417,0,0,0.281,0.602,0.0846,0.328,0,0 -1,0.326,0.326,0.233,0.35,0,0,0.14,0.673,0.19,0.301,0,0.171 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.0857 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0428 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.171 -1,0.928,0.928,0.483,0,0,0,0,0.744,0.791,0,0,0.206 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.128 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.423 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.134 -0.667,0.185,0.185,0.05,0,0,0,0.281,0.591,0.0803,0,0,0.192 -0.333,0.181,0.181,0.917,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.0826 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.208 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.316 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.285 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.0428 -0.667,0.326,0.326,0.05,0,0,0,0.14,0.673,0.305,0,0,0.428 -0.667,0.395,0.395,0.433,0,0,0,0.14,0.704,0.315,0,0,0.0428 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.171 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.0857 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.0428 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.223 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.176 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0686 -1,0.0816,0.0816,0.3,0,0,0,0.281,0.56,0.0223,0,0,0.0739 -0.667,0.0495,0.0495,0.917,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0.233,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.0428 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.0428 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.39 -0.667,0.292,0.292,0.483,0,0,0,0.14,0.621,0.198,0,0,0.379 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.459 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.223 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.0428 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.128 -1,0.567,0.567,0,0,0.106,0,0,0.774,0.464,0,0.0273,0 -1,0.736,0.736,0,0,0.83,0.233,0,0.79,0.547,0,0.317,0.128 -1,0.895,0.895,0,0,0,0.283,0,0.774,0.719,0,0.519,0.0857 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.838,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0.346,0.171 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.286 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.0794 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.225 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.147,0.147,0.717,0.417,0,0,0.281,0.571,0.0316,0.387,0,0 -0.667,0.305,0.305,0.25,0.35,0,0,0.14,0.611,0.0634,0.153,0,0.152 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.251 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.254 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.469 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.132 -0.333,0.17,0.17,0.217,0,0,0,0.281,0.591,0.0767,0,0,0.0857 -0.333,0.174,0.174,0.0167,0,0,0,0.281,0.602,0.0846,0,0,0.214 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0857 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.171 -1,0.895,0.895,0,0.667,0,0,0,0.774,0.64,0.538,0,0.0677 -1,0.928,0.928,0,0.35,0,0,0,0.744,0.791,0.265,0,0.0953 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.251 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0548 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.43 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.0768 -0.333,0.184,0.184,0,0.917,0,0,0.281,0.591,0.0462,0.423,0,0.122 -0.333,0.185,0.185,0,0.1,0,0,0.281,0.591,0.0527,0.633,0,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0.499,0,0.0428 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.301,0,0.3 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.171 -0.333,0.169,0.169,0.217,0,0,0,0.281,0.591,0.073,0,0,0.171 -0.333,0.17,0.17,0.75,0,0,0,0.281,0.591,0.0767,0,0,0.128 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.171 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.278 -1,0.736,0.736,0,0.167,0,0,0,0.79,0.457,0.346,0,0.0629 -1,0.895,0.895,0,0.6,0.617,0,0,0.774,0.64,0.261,0.431,0.0734 -1,0.928,0.928,0,0,0,0.9,0,0.744,0.791,0,0.362,0.171 -1,0.302,0.302,0,0,0,0.133,0.281,0.602,0.26,0,0.204,0.0428 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.325,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.11 -1,0.342,0.342,0,0,0,0,0,0.589,0.0632,0,0,0.337 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.128 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.128 -0.333,0.181,0.181,0.217,0,0,0,0.281,0.591,0.0578,0,0,0.128 -0.333,0.175,0.175,0.5,0,0,0,0.281,0.591,0.0629,0,0,0.257 -0.333,0.171,0.171,0,0.417,0,0,0.281,0.591,0.0658,0.348,0,0.128 -0.333,0.169,0.169,0,0.35,0.319,0,0.281,0.591,0.073,0.0951,0.00965,0.0857 -0.333,0.17,0.17,0,0,0.298,0.65,0.281,0.591,0.0767,0,0.514,0 -0.333,0.174,0.174,0,0,0,0.117,0.281,0.602,0.0846,0,0.584,0.214 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.286 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.278,0.278,0,0.417,0,0,0.281,0.638,0.163,0.384,0,0 -1,0.895,0.895,0,0.35,0,0,0,0.774,0.64,0.548,0,0.376 -1,0.928,0.928,0,0,0.298,0,0,0.744,0.791,0.545,0.0884,0 -1,0.807,0.807,0,0,0,0.767,0,0.682,0.749,0.43,0.569,0.325 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0837 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.123 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.163 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0428 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0857 -0.333,0.175,0.175,0,0,0.617,0.4,0.281,0.591,0.0629,0,0.42,0.343 -0.667,0.292,0.292,0,0,0,0.367,0.14,0.621,0.116,0,0.635,0.0857 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.116,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.32 -0.667,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0857 -0.667,0.222,0.222,0.217,0,0,0,0.281,0.633,0.124,0,0,0.201 -0.333,0.278,0.278,1,0,0,0,0.281,0.638,0.163,0,0,0.121 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.128 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0428 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0428 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.149 -1,0.177,0.177,0.717,0,0,0,0.281,0.586,0.0396,0,0,0.0832 -0.333,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.214 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0857 -0,0.0495,0.0495,0,0.767,0,0,0.421,0.562,0.0159,0.514,0,0.0857 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0.499,0,0.0857 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.351 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0857 -1,0.928,0.928,0,0.167,0,0,0,0.744,0.791,0.2,0,0.214 -1,0.555,0.555,0,0.85,0,0,0.14,0.642,0.505,0.688,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.171 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0428 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.214 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.171 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.189 -1,0.507,0.507,0.483,0,0,0,0.14,0.714,0.371,0,0,0.399 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.3 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.185,0.185,0.183,0,0,0,0.281,0.591,0.0803,0.0866,0,0 -0.667,0.312,0.312,0,0.767,0,0,0.14,0.621,0.169,0.676,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.694,0,0.0428 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0.0543,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.3 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0428 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.0428 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.171 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.237 -1,0.736,0.736,0.233,0,0,0,0,0.79,0.547,0,0,0.249 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.171 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.0857 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.0428 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.237 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.205 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.128 -0.333,0.171,0.171,0.967,0,0,0,0.281,0.591,0.0658,0,0,0.14 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,0.467,0,0,0,0.14,0.621,0.137,0,0,0.0857 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.3 -0.667,0.395,0.395,0,0,0.936,0,0.14,0.704,0.232,0,0.391,0 -1,0.736,0.736,0,0.917,0,0.767,0,0.79,0.457,0.37,0.532,0.171 -1,0.895,0.895,0,0.1,0,0,0,0.774,0.64,0,0,0.411 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0428 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.165 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0.217,0,0,0,0.281,0.586,0.0396,0,0,0.206 -0.667,0.318,0.318,0.75,0,0,0,0.14,0.621,0.0764,0,0,0.0732 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.246 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.0577 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.171 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.3 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.128 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0.467,0,0,0,0.281,0.602,0.0846,0,0,0.0428 -0.667,0.326,0.326,0.5,0,0,0,0.14,0.673,0.19,0,0,0.3 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.0428 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -0.667,0.613,0.613,0,0.167,0,0,0.14,0.704,0.432,0.319,0,0.3 -1,0.928,0.928,0,0.6,0,0,0,0.744,0.791,0.514,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.322 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0825 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.0582 -1,0.305,0.305,0.483,0,0,0,0.14,0.611,0.0634,0,0,0.118 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.076 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.0428 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.214 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0857 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0857 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.185 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.495 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.125 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.6 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0857 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.0428 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0.267,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.311 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.0615 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.359 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.391 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0.617,0.15,0.281,0.591,0.0629,0,0.379,0.171 -0.333,0.171,0.171,0,0,0,0.367,0.281,0.591,0.0658,0,0.407,0.0428 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.482,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.305,0 -0.333,0.174,0.174,0.217,0,0,0,0.281,0.602,0.0846,0,0,0.0857 -0.333,0.188,0.188,0.75,0,0,0,0.281,0.617,0.103,0,0,0.0857 -0.333,0.222,0.222,0.467,0,0,0,0.281,0.633,0.124,0,0,0.171 -1,0.736,0.736,0.25,0,0,0,0,0.79,0.457,0,0,0.214 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0857 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0857 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -1,0.305,0.305,0.233,0,0,0,0.14,0.611,0.0634,0,0,0.158 -0.667,0.184,0.184,0,0,0.319,0,0.281,0.591,0.0462,0,0.0965,0.331 -0.667,0.321,0.321,0,0,0.617,0.4,0.14,0.621,0.0895,0,0.236,0.113 -0.667,0.312,0.312,0,0,0,0.367,0.14,0.621,0.0997,0,0.543,0.0988 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.218 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.301 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.227 -0.667,0.29,0.29,0.217,0,0,0,0.14,0.621,0.137,0,0,0.156 -0.667,0.298,0.298,0.267,0,0.617,0.4,0.14,0.642,0.153,0,0.596,0 -1,0.464,0.464,0,0,0,0.117,0,0.728,0.277,0,0.648,0.0428 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.559,0.128 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0.603,0.514 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.342,0.255 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.214 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.128 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.214 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0927 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.214 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.55,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.3,0.3,0.667,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.146 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0.115 -1,0.41,0.41,0.233,0,0,0,0,0.651,0.388,0,0,0.137 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.225 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.3 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.176 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.128 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.0857 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.295 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.273 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.257 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0235,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.0662 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.0997 -1,0.426,0.426,0.483,0,0,0,0,0.651,0.268,0,0,0.137 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,0,0,0.298,0,0.14,0.621,0.265,0,0.175,0.123 -0.667,0.298,0.298,0,0,0,0.767,0.14,0.642,0.291,0,0.424,0.182 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.399,0.295 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.529,0 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0.442,0.257 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.527,0.106 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.0857 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.171 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.214 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0.217,0,0,0,0.281,0.56,0.0236,0,0,0.225 -1,0.342,0.342,0.5,0,0,0,0,0.589,0.0632,0,0,0.0825 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.0906 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.306 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.106 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.293 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.233 -0.333,0.171,0.171,0.467,0,0,0,0.281,0.591,0.0658,0,0,0.198 -0.667,0.289,0.289,0.75,0,0,0,0.14,0.621,0.13,0,0,0.153 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0428 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0428 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0428 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.257 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0857 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.171 -1,0.928,0.928,0,0.667,0,0,0,0.744,0.791,0.591,0,0.171 -1,0.555,0.555,0,0.35,0,0,0.14,0.642,0.505,0.131,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.14 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.236 -1,0.433,0.433,0,0,0.617,0.15,0,0.635,0.0871,0,0.26,0.0768 -0.667,0.318,0.318,0,0,0,0.617,0.14,0.621,0.0764,0,0.228,0.102 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.592,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0.314,0.246 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.521,0.171 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.809,0.0857 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.592,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.518,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.542,0.257 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.201,0 -0.667,0.395,0.395,0.967,0,0,0,0.14,0.704,0.232,0,0.781,0.385 -1,0.736,0.736,1,0,0,0,0,0.79,0.457,0,0.635,0.0857 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0.129,0.475 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0,0.256 -1,0.807,0.807,0.9,0,0,0,0,0.682,0.749,0,0,0.464 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.295 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.165 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.076 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.134 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.3 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.3 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0428 -0.667,0.326,0.326,0.967,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0428 -1,0.895,0.895,0,0.767,0,0,0,0.774,0.64,0.606,0,0.171 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.343 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0525,0.0525,0,0,0,0,0.14,0.559,0.0213,0,0,0.276 -1,0.114,0.114,0.217,0,0,0,0.14,0.559,0.0314,0,0,0.0891 -1,0.245,0.245,1,0,0,0,0.14,0.58,0.0474,0,0,0.202 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0.274 -0.333,0.184,0.184,0.95,0,0,0,0.281,0.591,0.0462,0,0,0.162 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0428 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.128 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.128 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.171 -0.667,0.395,0.395,0.967,0.667,0,0,0.14,0.704,0.232,0.611,0,0.0428 -0.667,0.507,0.507,0.483,0.35,0,0,0.14,0.714,0.31,0.749,0,0.187 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.535,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0.531,0,0.0857 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.35,0,0.128 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.427 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0.75,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.128 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.128 -0.333,0.222,0.222,0.717,0,0,0,0.281,0.633,0.124,0,0,0.128 -1,0.736,0.736,0.983,0,0,0,0,0.79,0.457,0,0,0.128 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.635,0.635,0.217,0,0,0,0.14,0.683,0.532,0,0,0.0857 -1,0.555,0.555,0.0167,0,0,0,0.14,0.642,0.505,0,0,0.0428 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0656 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0977 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.239 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.183 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.121 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.302 -1,0.413,0.413,0,0,0,0,0,0.651,0.288,0,0,0.111 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.0428 -1,0.29,0.29,0.8,0,0,0,0.14,0.621,0.265,0,0,0.128 -1,0.174,0.174,0.417,0,0,0,0.281,0.602,0.154,0,0,0 -1,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.128 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.257 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.342 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.343 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.128 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0.122 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.153 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.219 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.0491 -1,0.299,0.299,0.233,0,0,0,0.14,0.619,0.144,0,0,0.166 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.0428 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.127 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.217 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.257 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.0857 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.428 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.465 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.336 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.236 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.0428 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0.0428 -0.333,0.326,0.326,0,0,0,0,0.281,0.601,0.274,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.403 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.14 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0.217,0,0,0,0.14,0.578,0.0478,0,0,0.13 -0.667,0.295,0.295,0.483,0,0,0,0.14,0.609,0.0639,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0857 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.171 -0.333,0.17,0.17,0,0.417,0,0,0.281,0.59,0.0582,0.409,0,0.139 -0.333,0.164,0.164,0,0.317,0,0,0.281,0.59,0.0633,0.688,0,0.214 -0.333,0.16,0.16,0,0.667,0,0,0.281,0.59,0.0662,0.419,0,0.0428 -0.333,0.159,0.159,0,0.0667,0,0,0.281,0.59,0.0735,0.531,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0.715,0,0.0428 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.684,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.53,0,0.0857 -1,0.291,0.291,0.967,0,0,0,0.14,0.701,0.234,0.241,0,0.257 -1,0.339,0.339,0.2,0,0,0,0.14,0.712,0.313,0,0,0.171 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.3 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.128 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.278 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.141 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.104 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.4 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.139 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.196 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.139 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.178 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.323 -0.667,0.269,0.269,0.217,0,0,0,0.14,0.64,0.155,0,0,0.0428 -0.333,0.162,0.162,0.483,0,0,0,0.281,0.616,0.104,0,0,0.128 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.0857 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.373 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.2 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.214 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0857 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.343 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.162 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.351 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.214 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.171 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.471 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.421 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.194 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.175 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.23 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.111 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.527 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.257 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.171 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.128 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.416 -0.667,0.429,0.429,0.467,0,0,0,0.14,0.701,0.436,0,0,0.0756 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0428 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.28 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.0794 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.104 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.113 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.255 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.214 -0.333,0.159,0.159,0.217,0,0,0,0.281,0.601,0.0853,0,0,0.214 -0.667,0.274,0.274,0.0167,0,0,0,0.14,0.671,0.191,0,0,0.128 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.3 -1,0.484,0.484,0,0.667,0,0,0,0.787,0.461,0.209,0,0.0857 -1,0.619,0.619,0.717,0.0667,0,0,0,0.771,0.646,0,0,0.273 -1,0.783,0.783,0.933,0,0,0,0,0.741,0.797,0,0,0.301 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.0857 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.301,0.301,0,0,0.0638,0,0.14,0.619,0.11,0,0,0 -1,0.299,0.299,0,0,0.255,0.233,0.14,0.619,0.144,0,0.547,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0.381,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.131,0,0.0857 -0.333,0.16,0.16,0,0.967,0.383,0,0.281,0.59,0.109,0.295,0.121,0 -1,0.269,0.269,0,0.0167,0.596,0.417,0.14,0.619,0.234,0,0.46,0.214 -1,0.268,0.268,0,0,0,0.317,0.14,0.619,0.267,0,0.477,0.0428 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.128 -1,0.412,0.412,0,0.467,0,0,0,0.771,0.468,0.474,0,0 -1,0.484,0.484,0,0.517,0,0,0,0.787,0.551,0.543,0,0.214 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.126,0,0.328 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.185 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.214 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.291 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.257 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0405 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.184 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.0423 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.161 -0.667,0.164,0.164,0.0167,0,0,0,0.281,0.59,0.102,0,0,0.123 -0.667,0.16,0.16,0.45,0,0,0,0.281,0.59,0.109,0,0,0.214 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.268 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.166 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.214 -0.333,0.162,0.162,0.0167,0,0,0,0.281,0.616,0.163,0,0,0.11 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0.0857 -1,0.484,0.484,0.633,0,0,0,0,0.787,0.551,0,0,0.0428 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.557 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.128 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.0857 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.0441 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.092 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.367 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.214 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.0857 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0.217,0,0,0,0.281,0.59,0.053,0,0,0.0428 -0.333,0.17,0.17,1,0,0,0,0.281,0.59,0.0582,0,0,0.128 -0.333,0.164,0.164,1,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0.133,0,0,0,0.281,0.59,0.0662,0,0,0.214 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.128 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0428 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.171 -1,0.412,0.412,0.717,0,0,0,0,0.771,0.343,0,0,0.502 -1,0.484,0.484,0.45,0,0,0,0,0.787,0.461,0,0,0.42 -1,0.619,0.619,0,0.167,0,0,0,0.771,0.646,0.312,0,0.299 -1,0.783,0.783,0,0.817,0.638,0,0,0.741,0.797,0.637,0.103,0.376 -1,0.88,0.88,0,0,0.0213,0.867,0,0.679,0.756,0.642,0.0884,0.217 -1,0.415,0.415,0,0,0,0.117,0.14,0.599,0.31,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.201 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.187 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.0653 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.35 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.316 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0428 -0.667,0.159,0.159,0.467,0,0,0,0.281,0.601,0.0853,0,0,0 -0.667,0.162,0.162,0.45,0,0,0,0.281,0.616,0.104,0,0,0.125 -1,0.291,0.291,0.483,0,0,0,0.14,0.701,0.234,0,0,0.343 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0428 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0857 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0428 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0428 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.331 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.224 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0422 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0563 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.282 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0984 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.128 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0428 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.2 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.257 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.3 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.354 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.205 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.214 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.295 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.0428 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.171 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0857 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.685 -0.333,0.159,0.159,0,0.667,0,0,0.281,0.601,0.0853,0.587,0,0 -0.667,0.274,0.274,0,0.0667,0,0,0.14,0.671,0.191,0,0,0 -0.333,0.17,0.17,0,0.667,0,0,0.281,0.631,0.125,0.579,0,0.0428 -0.667,0.339,0.339,0.217,0.0667,0,0,0.14,0.712,0.313,0,0,0.0986 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.444 -1,0.783,0.783,0.2,0,0,0,0,0.741,0.797,0,0,0.293 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0428 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,0.95,0,0,0,0.14,0.557,0.0214,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.362 -0.667,0.295,0.295,0.717,0,0,0,0.14,0.609,0.0639,0,0,0.0428 -0.667,0.301,0.301,0.933,0,0,0,0.14,0.619,0.077,0,0,0.142 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.557 -1,0.412,0.412,0.217,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0.25,0,0,0,0,0.787,0.461,0,0,0.128 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.171 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.184 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.3 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0777 -0.667,0.172,0.172,0.0167,0,0,0,0.281,0.585,0.0436,0,0,0.245 -0.667,0.175,0.175,0.217,0.467,0,0,0.281,0.59,0.0641,0.557,0,0.109 -0.667,0.299,0.299,0,0.267,0,0,0.14,0.619,0.144,0.63,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.406,0,0.0428 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.727,0,0.3 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.501,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.128 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.0857 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0.267,0,0,0,0.14,0.671,0.308,0,0,0.0857 -0.667,0.291,0.291,0.433,0,0,0,0.14,0.701,0.318,0,0,0.0428 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.214 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.128 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.0428 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.3 -1,0.249,0.249,0,0,0,0,0,0.571,0.226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.178 -1,0.175,0.175,0.0167,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.424,0.424,0.45,0.217,0,0,0,0.648,0.206,0.233,0,0 -1,0.411,0.411,0,0.517,0,0,0,0.648,0.246,0.299,0,0.0428 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.159,0.159,0,0.467,0,0,0.281,0.59,0.126,0.397,0,0.128 -0.333,0.159,0.159,0,0.267,0,0,0.281,0.59,0.142,0.545,0,0.0857 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0.255,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0.171 -1,0.412,0.412,0.267,0,0,0,0,0.771,0.468,0,0,0.642 -1,0.484,0.484,0.433,0,0,0,0,0.787,0.551,0,0,0.0857 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.0428 -1,0.783,0.783,0.767,0,0,0,0,0.741,0.852,0,0,0.557 -1,0.88,0.88,0.4,0,0,0,0,0.679,0.786,0,0,0.166 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0857 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.171 -0.667,0.17,0.17,0,0,0.319,0.383,0.281,0.631,0.125,0,0.357,0.171 -1,0.339,0.339,0,0,0,0.85,0.14,0.712,0.313,0,0.616,0.3 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.825,0.171 -1,0.538,0.538,0.217,0,0,0,0.14,0.681,0.537,0,0.249,0.128 -1,0.88,0.88,0.0167,0,0,0,0,0.679,0.756,0,0,0.171 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.257 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.167 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0.319,0.633,0.281,0.59,0.0633,0,0.399,0 -0.333,0.16,0.16,0.467,0,0,0.1,0.281,0.59,0.0662,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.214 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.24 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.119 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.257 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.128 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.128 -1,0.538,0.538,0,0.733,0,0,0.14,0.681,0.537,0.589,0,0.214 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.257 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.7,0,0,0,0.281,0.56,0.0238,0,0,0.144 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.315 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.093 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0672 -0.333,0.174,0.174,0,0.417,0,0,0.281,0.59,0.053,0.336,0,0.0857 -0.333,0.17,0.17,0,0.317,0,0,0.281,0.59,0.0582,0.0968,0,0.0857 -0.333,0.164,0.164,0.217,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.667,0.271,0.271,0.717,0,0,0,0.14,0.619,0.117,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0428 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.257 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.0428 -0,0.0495,0.0495,0,0,0.66,0.367,0.421,0.562,0.0159,0,0.678,0.0857 -0.667,0.429,0.429,0,0,0,0.617,0.14,0.701,0.436,0,0.982,0.0428 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.559,0.0857 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.0428 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0.25,0,0,0,0.14,0.578,0.0478,0,0,0.131 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.348 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0999 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.171 -1,0.484,0.484,0.217,0.733,0,0,0,0.787,0.461,0.693,0,0 -1,0.619,0.619,0.25,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.0428 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.199 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.201 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0.717,0,0,0,0.14,0.578,0.0478,0,0,0.194 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.141 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.343 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0,0.733,0,0,0.14,0.701,0.234,0.601,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0.66,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.659,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.0968,0,0.214 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.477 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.0427 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.185 -0.667,0.279,0.279,0.233,0,0,0,0.14,0.619,0.186,0,0,0.0428 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.214 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.3 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.0857 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.171 -0.667,0.274,0.274,0.267,0,0,0,0.14,0.671,0.308,0,0,0.257 -0.667,0.291,0.291,0.433,0,0,0,0.14,0.701,0.318,0,0,0.224 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.396 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.149 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.128 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.042 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.0848 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.124 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0.214 -0.667,0.291,0.291,0.267,0,0,0,0.14,0.701,0.318,0,0,0.128 -1,0.484,0.484,0.2,0.717,0,0,0,0.787,0.551,0.513,0,0.128 -1,0.619,0.619,0,0.267,0,0,0,0.771,0.725,0.613,0,0.0857 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0.649,0,0.0428 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0.752,0,0.171 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.671,0,0.214 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0.261,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0.66,0.117,0.421,0.562,0.0159,0,0.283,0.119 -1,0.417,0.417,0.95,0,0,0.367,0,0.633,0.0879,0,0.863,0.0927 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0.209,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0.695,0 -1,0.411,0.411,0.717,0,0,0,0,0.648,0.143,0,0.953,0 -0.667,0.279,0.279,0.45,0.417,0,0,0.14,0.619,0.111,0.537,0.455,0.257 -0.667,0.271,0.271,0,0.317,0,0,0.14,0.619,0.117,0.112,0,0.0857 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.214 -0.333,0.162,0.162,0.217,0,0,0,0.281,0.616,0.104,0,0,0.0857 -0.333,0.17,0.17,0.25,0,0.979,0.117,0.281,0.631,0.125,0,0.241,0.3 -1,0.484,0.484,0,0.667,0.638,0.117,0,0.787,0.461,0.528,0.378,0.0428 -1,0.619,0.619,0,0.317,0.0213,0.733,0,0.771,0.646,0.666,0.58,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.307,0.539,0.0857 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.351 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0722 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.403 -0.667,0.301,0.301,0,0,0.319,0,0.14,0.619,0.077,0,0.135,0.3 -0.333,0.174,0.174,0,0,0,0.883,0.281,0.59,0.053,0,0.251,0.3 -0.333,0.17,0.17,0,0,0,0.1,0.281,0.59,0.0582,0,0.444,0.214 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0857 -0.333,0.16,0.16,0.7,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.0428 -0.667,0.269,0.269,0,0,0.319,0.133,0.14,0.64,0.155,0,0.323,0.0428 -0.667,0.274,0.274,0,0,0,0.85,0.14,0.671,0.191,0,0.342,0.214 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.3 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.175 -1,0.619,0.619,0.717,0,0,0,0,0.771,0.646,0,0,0.197 -1,0.783,0.783,0.217,0.733,0,0,0,0.741,0.797,0.724,0,0.27 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0.0806,0,0.277 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.128 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.281,0.56,0.0157,0,0,0.0428 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.378 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.385 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.365 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.13 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.343 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0.66,0.117,0.421,0.562,0.0159,0,0.333,0.171 -0.333,0.162,0.162,0.217,0,0,0.617,0.281,0.616,0.104,0,0,0.128 -0.667,0.291,0.291,0.25,0,0,0,0.14,0.701,0.234,0,0,0.0857 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0428 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.128 -1,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.347 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.553 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0584 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.163 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.113 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.114 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.128 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.214 -0.667,0.274,0.274,0.233,0,0,0,0.14,0.671,0.191,0,0,0.257 -0.667,0.291,0.291,0,0.417,0,0,0.14,0.701,0.234,0.382,0,0 -0.667,0.339,0.339,0.467,0.317,0,0,0.14,0.712,0.313,0.484,0,0.3 -1,0.619,0.619,0.7,0,0,0,0,0.771,0.646,0.621,0,0.0428 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.341,0,0.0428 -0.667,0.603,0.603,0,0,0.638,0,0.14,0.64,0.509,0,0.161,0.0857 -0.667,0.415,0.415,0,0,0.0213,0.233,0.14,0.599,0.31,0,0.593,0.214 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.213 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.164 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.364 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.131 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.214 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0857 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.333 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.253 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.159,0.159,0.467,0,0,0,0.281,0.601,0.0853,0,0,0.0428 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.385 -1,0.412,0.412,0,0.417,0,0,0,0.771,0.343,0.492,0,0 -1,0.484,0.484,0,0.317,0.66,0.117,0,0.787,0.461,0.363,0.653,0 -1,0.619,0.619,0,0,0,0.367,0,0.771,0.646,0,0.412,0.0857 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0857 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.0857 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.349 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0.153,0,0 -0.667,0.174,0.174,0,0.967,0,0,0.281,0.59,0.0809,0.491,0,0.257 -0.667,0.17,0.17,0,0.0167,0,0,0.281,0.59,0.0941,0.149,0,0 -0.667,0.164,0.164,0,0.733,0,0,0.281,0.59,0.102,0.659,0,0.0857 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.565,0,0.557 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.619,0.234,0.275,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.0428 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.0428 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.0896 -0,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0181,0,0,0.514 -0.333,0.194,0.194,0.167,0,0,0,0.281,0.637,0.196,0,0,0.257 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.0857 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.0426 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.197 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0404 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0399 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.135 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.208 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.0428 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.619,0.234,0,0,0.0428 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0.0857 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.3 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.171 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.0857 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.171 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.214 -1,0.538,0.538,0,0,0.66,0,0.14,0.681,0.574,0,0.281,0 -1,0.603,0.603,0,0,0,0.483,0.14,0.64,0.53,0,0.671,0.256 -1,0.597,0.597,0.267,0,0,0,0,0.617,0.496,0,0.4,0.0711 -1,0.183,0.183,0.433,0,0,0,0.14,0.568,0.157,0,0,0.107 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.273 -0.667,0.172,0.172,0.217,0,0,0,0.281,0.585,0.0399,0,0,0.0428 -0.667,0.175,0.175,0.25,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.339,0.339,0.25,0,0,0,0.14,0.712,0.313,0,0,0.171 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0 -0.667,0.538,0.538,0,0.417,0,0,0.14,0.681,0.537,0.353,0,0.0428 -1,0.603,0.603,0,0.567,0,0,0.14,0.64,0.509,0.452,0,0.128 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.0515 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.27 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.259 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.0946 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.306 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.242 -0.333,0.154,0.154,0.217,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0.733,0,0,0,0.281,0.591,0.0658,0,0,0.3 -0.333,0.149,0.149,0,0,0.319,0,0.281,0.591,0.073,0,0.0145,0.0428 -0.333,0.149,0.149,0.217,0,0,0.483,0.281,0.591,0.0767,0,0.619,0.128 -0.333,0.149,0.149,0.0167,0,0,0,0.281,0.602,0.0846,0,0,0.0857 -1,0.353,0.353,0.467,0,0,0,0,0.728,0.277,0,0,0.101 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.333 -0.667,0.365,0.365,0,0,0.319,0,0.14,0.704,0.432,0,0.0932,0.113 -1,0.464,0.464,0,0,0.638,0.383,0.14,0.683,0.532,0,0.283,0.513 -1,0.549,0.549,0,0,0,0.35,0.14,0.642,0.505,0,0,0.0541 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0851 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.235 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.249 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0837 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.311 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.237 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.101 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.171 -0.667,0.252,0.252,0.217,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,0.5,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.171 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.171 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.3 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0857 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.176 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.136 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.454 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.31 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.106 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.128 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.257 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.214 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.385 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.467,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.365,0.365,0,0.667,0,0,0.14,0.704,0.432,0.645,0,0.15 -1,0.464,0.464,0,0.05,0,0,0.14,0.683,0.532,0,0,0.092 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.171 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.138 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.128 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.131 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.171 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.343 -0.333,0.149,0.149,0,0.417,0,0,0.281,0.591,0.073,0.394,0,0 -0.333,0.149,0.149,0,0.55,0,0,0.281,0.591,0.0767,0.195,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0.717,0,0,0,0.14,0.673,0.19,0,0,0.128 -1,0.371,0.371,1,0.417,0,0,0,0.774,0.34,0.38,0,0.214 -1,0.42,0.42,1,0.3,0,0,0,0.79,0.457,0.564,0,0.3 -1,0.523,0.523,0.9,0,0,0,0,0.774,0.64,0.423,0,0.128 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.224,0,0.187 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.0857 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.307 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.29 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.417,0,0,0.421,0.562,0.0181,0.65,0,0.0849 -0.667,0.278,0.278,0,0.3,0,0,0.14,0.621,0.143,0.37,0,0.0901 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.327 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0.129 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.082 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.0857 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.0428 -0.667,0.249,0.249,0.467,0,0,0,0.14,0.642,0.291,0,0,0.0428 -0.667,0.252,0.252,0.25,0,0,0,0.14,0.673,0.305,0,0,0.171 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.171 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.222 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.0857 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.171 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.137 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.121 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0.301 -0.333,0.16,0.16,0.433,0,0.319,0,0.281,0.591,0.0934,0,0.116,0.175 -0.667,0.259,0.259,0,0,0.638,0.383,0.14,0.621,0.185,0,0.45,0.194 -0.333,0.15,0.15,0,0,0,0.6,0.281,0.591,0.108,0,0.429,0.257 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0.576,0.0428 -0.667,0.149,0.149,0,0.167,0,0,0.281,0.591,0.141,0.267,0,0 -0.667,0.149,0.149,0,0.55,0,0,0.281,0.602,0.154,0.295,0,0.155 -0.667,0.252,0.252,0.217,0,0,0,0.14,0.673,0.305,0,0,0.211 -0.667,0.264,0.264,0.25,0,0.638,0.383,0.14,0.704,0.315,0,0.868,0.368 -0.667,0.296,0.296,0,0,0,0.35,0.14,0.714,0.371,0,0,0.41 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.128 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.128 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.0428 -0.333,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0181,0,0,0.145 -0.667,0.116,0.116,0.483,0,0,0,0.281,0.565,0.0869,0,0,0.128 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.248 -0.667,0.228,0.228,0.467,0,0,0,0.14,0.58,0.0474,0,0,0.219 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.168 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.0428 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.214 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.128 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0857 -0,0.0495,0.0495,0,0,0.319,0,0.421,0.562,0.0159,0,0.241,0.114 -0.333,0.149,0.149,0,0,0,0.733,0.281,0.602,0.0846,0,0.481,0.0857 -0.667,0.252,0.252,0.467,0,0,0,0.14,0.673,0.19,0,0,0.0428 -0.333,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0.171 -0.667,0.296,0.296,0.45,0,0,0,0.14,0.714,0.31,0,0,0.128 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.164 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.138 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0428 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.103 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.129 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0.7,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0.967,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.128 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.171 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.142 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.557 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.128 -1,0.671,0.671,0,0.717,0,0,0,0.744,0.791,0.676,0,0.0428 -1,0.799,0.799,0,0.167,0,0,0,0.682,0.749,0.613,0,0.337 -1,0.405,0.405,0.467,0.8,0,0,0.14,0.6,0.307,0.747,0,0.101 -1,0.183,0.183,0.25,0,0,0,0.14,0.569,0.136,0.0764,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0372 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.205 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.025 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.102 -0.333,0.139,0.139,0,0.167,0,0,0.281,0.571,0.0316,0.246,0,0 -0.333,0.167,0.167,0,0.8,0,0,0.281,0.586,0.0396,0.655,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.672,0,0.0428 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0.165,0,0.0405 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.137 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.171 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.301 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.354 -0.333,0.151,0.151,0.233,0,0,0,0.281,0.617,0.103,0,0,0.128 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.0428 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.385 -1,0.523,0.523,0,0,0.319,0,0,0.774,0.64,0,0.135,0.128 -1,0.671,0.671,0,0,0.638,0.383,0,0.744,0.791,0,0.945,0.0857 -1,0.799,0.799,0,0,0,0.35,0,0.682,0.749,0,0.29,0.0857 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.355 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.248 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.3 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.257 -0.333,0.154,0.154,0.217,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.251,0.251,0.0167,0,0,0,0.14,0.621,0.116,0,0,0.0857 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.171 -0.333,0.149,0.149,0.95,0,0,0,0.281,0.602,0.0846,0,0,0.3 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0428 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.41 -1,0.42,0.42,0.217,0,0,0,0,0.79,0.457,0,0,0.171 -1,0.523,0.523,0.733,0,0,0,0,0.774,0.64,0,0,0.18 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.113 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.457 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.0915 -1,0.0503,0.0503,0.0167,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.351 -1,0.317,0.317,0.217,0,0,0,0,0.589,0.0632,0,0,0.269 -1,0.402,0.402,0.0167,0,0,0,0,0.635,0.0871,0,0,0.0857 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.337 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.171 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.0428 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.264 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.077 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.0746 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.154,0.154,0.217,0,0,0,0.281,0.591,0.101,0,0,0.214 -0.333,0.15,0.15,0.733,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.3 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.257 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.128 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.128 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.0428 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.214 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.0428 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.0857 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.0857 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0.0608 -1,0.0781,0.0781,0.25,0,0,0,0.281,0.56,0.0223,0,0,0.433 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0.161 -1,0.284,0.284,0.217,0,0,0,0.14,0.611,0.0685,0,0,0.0968 -1,0.286,0.286,0.0167,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.164,0.164,0,0.417,0,0,0.281,0.591,0.0803,0.382,0,0 -0.333,0.16,0.16,0,0.3,0,0,0.281,0.591,0.0934,0.346,0,0.0428 -0.333,0.154,0.154,0,0,0.638,0,0.281,0.591,0.101,0,0.325,0 -0.667,0.251,0.251,0,0,0.319,0.633,0.14,0.621,0.198,0,0.584,0.171 -0.333,0.149,0.149,0,0,0,0.35,0.281,0.591,0.125,0,0.495,0.335 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.614,0 -0.667,0.249,0.249,0.233,0,0,0,0.14,0.642,0.291,0,0.801,0.171 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.608,0.257 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0.621,0.214 -0.333,0.173,0.173,0,0.417,0,0,0.281,0.638,0.194,0.365,0.886,0.3 -0.667,0.365,0.365,0,0.55,0,0,0.14,0.704,0.485,0.458,0,0.0428 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.0857 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.0857 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0.217,0,0,0,0.281,0.591,0.0578,0,0,0.0428 -0.667,0.259,0.259,0.983,0,0,0,0.14,0.621,0.11,0,0,0.0428 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.0857 -0.667,0.249,0.249,0,0,0.957,0.133,0.14,0.621,0.13,0,0.391,0.214 -0.667,0.249,0.249,0,0,0,0.6,0.14,0.621,0.137,0,0,0.128 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.171 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.264,0.264,0.717,0,0,0,0.14,0.704,0.232,0,0,0.257 -1,0.42,0.42,0.717,0,0,0,0,0.79,0.457,0,0,0.569 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.6 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0993 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.319,0.383,0.281,0.56,0.0171,0,0.505,0 -1,0.0495,0.0495,0,0,0,0.35,0.281,0.56,0.0157,0,0.506,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.203 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.215 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.14 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.144 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.165 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.128 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.343 -0.333,0.157,0.157,0.233,0,0,0,0.281,0.633,0.124,0,0,0.0428 -1,0.42,0.42,0,0.717,0,0,0,0.79,0.457,0.435,0,0.128 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.767,0,0 -1,0.671,0.671,0.467,0,0,0,0,0.744,0.791,0.528,0,0.148 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.509,0,0.0428 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0486 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.12 -1,0.228,0.228,0.0167,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.0857 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.169 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.442 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.174 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.252,0.252,0.467,0,0,0,0.14,0.673,0.19,0,0,0.385 -0.667,0.264,0.264,0.233,0,0,0,0.14,0.704,0.232,0,0,0.214 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.128 -1,0.464,0.464,0,0.717,0,0,0.14,0.683,0.532,0.718,0,0.128 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0.635,0,0.128 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0.119,0,0.295 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0827 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.983,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.284,0.284,0.717,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0.233,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.257 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.128 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.171 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0.467,0.167,0,0,0.14,0.704,0.432,0.241,0,0.0428 -1,0.671,0.671,0,0.8,0,0,0,0.744,0.791,0.601,0,0.0428 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.574,0,0.128 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.386 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.194 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.553 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.17 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0.717,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,1,0.667,0,0,0.14,0.714,0.31,0.577,0,0 -1,0.523,0.523,0.683,0.05,0,0,0,0.774,0.64,0.372,0,0.171 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.3 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.142 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0899 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.157 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.149 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.067 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.159 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0.0857 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.659 -1,0.349,0.349,0,0,0,0,0,0.651,0.34,0,0,0.333 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.143 -1,0.349,0.349,0.717,0,0.638,0,0,0.682,0.427,0,0.199,0 -1,0.353,0.353,0.967,0,0.319,0.633,0,0.728,0.449,0,0.404,0.0857 -1,0.371,0.371,0,0,0,0.35,0,0.774,0.464,0,0.5,0.0857 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.585,0.385 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.622,0.257 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0.289,0 -1,0.799,0.799,0.233,0,0,0,0,0.682,0.78,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.134 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.0815 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.191 -1,0.168,0.168,0.717,0,0,0,0.281,0.591,0.0636,0,0,0.076 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.0428 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.171 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.0857 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.0857 -0.333,0.149,0.149,0.467,0,0,0,0.281,0.602,0.154,0,0,0.128 -0.667,0.252,0.252,0.967,0.167,0.638,0.133,0.14,0.673,0.305,0.243,0.0225,0.171 -1,0.371,0.371,0,0.8,0,0.6,0,0.774,0.464,0.304,0,0.171 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0428 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.0428 -0.667,0.464,0.464,0.217,0,0,0,0.14,0.683,0.57,0,0,0.272 -1,0.799,0.799,0.0167,0,0,0,0,0.682,0.78,0,0,0.214 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.214 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.0857 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.214 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0781,0.0781,0.733,0,0,0,0.281,0.56,0.0236,0,0,0.214 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.272 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.11 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.323 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.128 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0.233,0,0,0,0.281,0.591,0.073,0,0,0.324 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.228 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0428 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.0428 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.0857 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.171 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.171 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.246 -0.667,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.166 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.119 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0428 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0857 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0857 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.257 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.128 -0.667,0.296,0.296,0.717,0,0,0,0.14,0.714,0.31,0,0,0.258 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0.683,0,0,0,0,0.744,0.791,0,0,0.0428 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.189 -1,0.317,0.317,0.233,0,0,0,0,0.589,0.0632,0,0,0.0439 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.202 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.244 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.141 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.344 -0.667,0.259,0.259,0.233,0,0,0,0.14,0.621,0.11,0,0,0.274 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.157,0.157,0.967,0,0,0,0.281,0.633,0.124,0,0,0.0857 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.6 -1,0.523,0.523,0.433,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0622 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.214 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.0937 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0636 -0.667,0.139,0.139,0.467,0,0.319,0,0.281,0.571,0.0316,0,0.0225,0.143 -0.667,0.167,0.167,0,0,0.638,0.383,0.281,0.586,0.0396,0,0.111,0 -0.333,0.168,0.168,0,0,0,0.6,0.281,0.591,0.0462,0,0,0.46 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0428 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.132 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.171 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.215 -1,0.371,0.371,0.967,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0.233,0,0,0,0,0.79,0.457,0,0,0.128 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.758 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0.131 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.205 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.302 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.214 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.128 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.0428 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.0428 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.343 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.128 -1,0.405,0.405,0.467,0,0,0,0.14,0.6,0.307,0,0,0.188 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.407 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.12 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.0641 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -0.667,0.16,0.16,0.467,0,0,0,0.281,0.591,0.0934,0,0,0.128 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.3 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.0857 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.214 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.16 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.269 -0.667,0.296,0.296,0.717,0,0,0,0.14,0.714,0.371,0,0,0.451 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.367 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.152 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.137 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.0428 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.417,0,0,0.421,0.562,0.0181,0.329,0,0 -1,0.0495,0.0495,0,0.3,0,0,0.421,0.562,0.0181,0.392,0,0 -1,0.167,0.167,0.217,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.168,0.168,0.0167,0,0.319,0.383,0.281,0.591,0.0636,0,0.347,0 -0.667,0.278,0.278,0,0,0,0.1,0.14,0.621,0.143,0,0.453,0.0428 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0.593,0.171 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.323,0.0857 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.0428 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.171 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.0428 -0.667,0.149,0.149,0.217,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.151,0.151,0.5,0,0,0,0.281,0.617,0.162,0,0,0.385 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.214 -1,0.42,0.42,0,0.667,0,0,0,0.79,0.547,0.528,0,0.0428 -1,0.523,0.523,0,0.05,0,0,0,0.774,0.719,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.0857 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.0428 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.334 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.081 -0.667,0.167,0.167,0,0.717,0,0,0.281,0.586,0.0396,0.747,0,0.197 -0.667,0.286,0.286,0,0,0.319,0.633,0.14,0.621,0.0764,0.124,0.841,0 -0.333,0.164,0.164,0,0,0,0.35,0.281,0.591,0.0527,0,0.596,0.171 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.441,0.0428 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.302,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.46,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.779,0.171 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.602,0.128 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.441,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.264,0.264,0.967,0,0,0,0.14,0.704,0.232,0,0,0.0428 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0.257 -1,0.523,0.523,0.683,0,0,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.128 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.152 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.511 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0.319,0,0.281,0.591,0.0527,0,0.272,0.128 -0.333,0.16,0.16,0,0,0.319,0.633,0.281,0.591,0.0578,0,0.523,0.214 -0.667,0.259,0.259,0,0,0,0.1,0.14,0.621,0.11,0,0.376,0.0428 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.574,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.568,0.0428 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.305,0.0857 -0.333,0.149,0.149,0,0,0.319,0,0.281,0.602,0.0846,0,0.116,0.0428 -0.667,0.252,0.252,0.467,0,0.319,0.633,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.733,0,0,0.35,0.14,0.704,0.232,0,0,0.334 -1,0.42,0.42,0,0,0.638,0,0,0.79,0.457,0,0.435,0.429 -1,0.523,0.523,0,0,0.319,0.633,0,0.774,0.64,0,0.253,0.128 -1,0.671,0.671,0,0,0,0.1,0,0.744,0.791,0,0,0.0428 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.214 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.257 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.102 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.0715 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.282 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.162 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.257 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0428 -0.333,0.157,0.157,0.233,0,0,0,0.281,0.633,0.124,0,0,0.0428 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.0857 -1,0.671,0.671,0.467,0,0,0,0,0.744,0.791,0,0,0.248 -1,0.799,0.799,0.25,0.417,0,0,0,0.682,0.749,0.407,0,0.427 -1,0.582,0.582,0,0.3,0,0,0,0.62,0.453,0.467,0,0.0857 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0977 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0806 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.24 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.229 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.243 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.128 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.144 -0.667,0.264,0.264,0.467,0,0,0,0.14,0.704,0.232,0,0,0.22 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.0572 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.581 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.293 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.226 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0857 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.315 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.104 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.357 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.0857 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.171 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.171 -0.667,0.263,0.263,0.467,0,0,0,0.421,0.548,0.147,0,0,0.0428 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.0857 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.0857 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.667,0.235,0.235,0.717,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,0.883,0,0.319,0,0.421,0.591,0.315,0,0.0932,0.0428 -1,0.247,0.247,0,0,0.638,0.383,0.421,0.617,0.326,0,0.879,0.0428 -1,0.384,0.384,0,0,0,0.333,0.912,0.658,0.565,0,0,0.32 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.214 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.171 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.245 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.128 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.3 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.128 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.0857 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.171 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.128 -1,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.235,0.235,0.467,0,0,0,0.421,0.548,0.24,0,0,0.149 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.0677 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.363 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.128 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.128 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.214 -1,0.467,0.467,0.217,0,0,0,1,0.645,0.743,0,0,0.48 -1,0.413,0.413,0.483,0,0,0,0.807,0.6,0.588,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.219,0.219,0,0.7,0,0,0.614,0.546,0.182,0.683,0,0.0428 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0.112,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.238 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.218 -0.667,0.162,0.162,0.217,0,0,0,0.421,0.555,0.0473,0,0,0.128 -0.333,0.156,0.156,0.483,0,0,0,0.421,0.555,0.0541,0,0,0.385 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.257 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.142,0.142,0.467,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0,0.7,0,0,0.421,0.617,0.239,0.506,0,0 -0.667,0.273,0.273,0,0.7,0,0,0.749,0.626,0.32,0.582,0,0.0857 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.598,0,0.0857 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.154,0,0.0428 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.303 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.0543 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.145 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0.7,0,0,0,0.614,0.529,0.0241,0,0,0.298 -1,0.222,0.222,0.217,0,0.957,0,0.807,0.514,0.0488,0,0.309,0 -0.667,0.277,0.277,1,0,0,0.883,0.421,0.54,0.0653,0,0.54,0 -0.667,0.274,0.274,0.433,0,0,0.0833,0.421,0.548,0.0788,0,0.14,0.0428 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.257 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0428 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.238,0.238,0.217,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.345,0.345,0.0167,0,0,0,0.421,0.645,0.351,0,0,0.171 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.257 -1,0.328,0.328,0.217,0,0,0,0.807,0.617,0.446,0,0,0 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.0857 -1,0.726,0.726,0.2,0,0,0,1,0.568,0.774,0,0,0.296 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.224 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.206 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.315 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.163,0.163,0.233,0,0,0,0.421,0.551,0.0406,0,0,0.0428 -0.667,0.274,0.274,0,0.917,0,0,0.421,0.548,0.0788,0.732,0,0.404 -0.333,0.156,0.156,0,0.0167,0,0,0.421,0.555,0.0541,0.576,0,0.0857 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0.297,0,0.3 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.257 -0.333,0.142,0.142,0,0,0.319,0,0.421,0.555,0.0751,0,0.0193,0.0428 -0.667,0.142,0.142,0,0,0,0.883,0.421,0.555,0.0789,0,0.709,0.128 -0.667,0.142,0.142,0,0,0,0.0833,0.421,0.564,0.0871,0,0,0 -0.667,0.144,0.144,0.217,0,0,0,0.421,0.576,0.106,0,0,0.214 -1,0.345,0.345,0.0167,0,0,0,0.421,0.645,0.351,0,0,0.343 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0428 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.128 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0863 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.083 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.414 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.211 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.0857 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.0428 -0.667,0.235,0.235,0.217,0,0,0,0.421,0.566,0.158,0,0,0.0857 -1,0.332,0.332,0.483,0,0,0,0.421,0.606,0.286,0,0,0.0428 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0857 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.214 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.0981 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.359 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.116 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.234 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.179 -0.667,0.136,0.136,0,0.917,0.638,0.383,0.614,0.538,0.0323,0.484,0.0322,0 -0.667,0.163,0.163,0.217,0.0167,0,0.817,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0.483,0,0,0,0.421,0.555,0.0473,0,0,0.0428 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.343 -0.667,0.256,0.256,0.467,0,0,0,0.421,0.548,0.103,0,0,0.231 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.143,0.143,0,0.667,0,0,0.421,0.555,0.0676,0.557,0,0 -0.667,0.235,0.235,0,0.0333,0,0,0.421,0.548,0.134,0.0679,0,0.0857 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0.233,0,0,0,0.421,0.591,0.196,0,0,0.0857 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.171 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.171 -1,0.467,0.467,0,0,0.319,0.233,1,0.645,0.662,0,0.428,0.128 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.375,0.0428 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.45,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0.0884,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0729 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.133 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.296 -1,0.274,0.274,0.467,0,0,0,0.421,0.548,0.113,0,0,0.205 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.517 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.392 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.24 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.362 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.104 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.337 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.214 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.343 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0 -0.667,0.328,0.328,0.717,0,0.638,0,0.807,0.617,0.501,0,0.251,0.214 -1,0.595,0.595,0.217,0,0.319,0.233,1,0.619,0.873,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0857 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.128 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.263,0.263,0.25,0,0.638,0.383,0.421,0.548,0.147,0,0.386,0 -1,0.359,0.359,0,0,0,0.333,0.421,0.542,0.252,0,0.595,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0.492,0.214 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.842,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0.608,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0.412,0.0857 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.128 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.385 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.0857 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.0857 -1,0.467,0.467,0.967,0,0,0,1,0.645,0.743,0,0,0.214 -0.667,0.413,0.413,0.217,0,0,0,0.807,0.6,0.588,0,0,0.128 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.0857 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0428 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0.319,0.133,0.614,0.529,0.0241,0,0.204,0 -1,0.136,0.136,0,0,0,0.583,0.614,0.538,0.0323,0,0.741,0.185 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0.297,0.109 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.108 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.186 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.432 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.151 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.156 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.3 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.118 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.171 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.257 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.214 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.214 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.128 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.214 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.171 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.258 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0.638,0.133,0.421,0.562,0.0159,0,0.606,0.161 -0.667,0.274,0.274,0,0,0,0.583,0.421,0.548,0.0788,0,0.744,0.604 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.362,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.0788,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0857 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.3 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0428 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.128 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0857 -0.667,0.238,0.238,0.217,0,0,0,0.421,0.591,0.196,0,0,0.171 -1,0.345,0.345,0.0167,0.167,0,0,0.421,0.645,0.351,0.248,0,0.258 -1,0.384,0.384,0.217,0.533,0,0,0.912,0.658,0.473,0.649,0,0.0894 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.0428 -1,0.595,0.595,0.667,0,0,0,1,0.619,0.817,0,0,0.215 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.0428 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0546 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0663 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.157 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.214 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.171 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0857 -0.333,0.144,0.144,0.7,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0,0.667,0,0,0.421,0.617,0.239,0.713,0,0.214 -0.667,0.273,0.273,0.233,0.0333,0,0,0.749,0.626,0.32,0,0,0.0428 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.0857 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.101 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.319 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.21 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.147 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.199 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.338 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.126 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0992 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.257 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.128 -0.667,0.235,0.235,0,0,0.638,0.383,0.421,0.548,0.134,0,0.416,0.0428 -0.667,0.235,0.235,0.217,0,0,0.817,0.421,0.548,0.142,0,0.405,0.14 -1,0.328,0.328,0.0167,0,0,0,0.421,0.568,0.23,0,0.482,0.0857 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.0428 -0.667,0.148,0.148,0.467,0,0,0,0.421,0.589,0.128,0,0,0.428 -1,0.273,0.273,0,0.167,0,0,0.749,0.626,0.32,0.302,0,0.0857 -1,0.328,0.328,0,0.533,0,0,0.807,0.617,0.446,0.406,0,0.0428 -1,0.413,0.413,0.467,0,0,0,0.807,0.6,0.55,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.211 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.274,0.274,0,0,0.319,0.383,0.421,0.548,0.0788,0,0.421,0.293 -0.333,0.156,0.156,0,0,0,0.333,0.421,0.555,0.0541,0,0.616,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.759,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.278,0.171 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.342,0.128 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.556,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.212,0.0428 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.258 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.343 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.0428 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.23 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.214 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.3 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.289 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0.717,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,0.883,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0.217,0,0.319,0,0.421,0.555,0.0654,0,0.195,0.171 -1,0.156,0.156,0.25,0,0,0.483,0.421,0.555,0.0826,0,0.212,0.471 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.0987 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.109 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.493 -0.667,0.235,0.235,0,0.417,0,0,0.421,0.548,0.24,0.307,0,0.013 -0.667,0.235,0.235,0,0.283,0,0,0.421,0.548,0.273,0.611,0,0.0428 -0.667,0.235,0.235,0.233,0,0,0,0.421,0.566,0.3,0.278,0,0.0857 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.214 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.128 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0.343 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0428 -1,0.726,0.726,0,0.667,0,0,1,0.568,0.806,0.606,0,0.0857 -1,0.557,0.557,0,0.0333,0,0,1,0.516,0.509,0.411,0,0.0857 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0.0857 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.266 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.263,0.263,0.217,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.153,0.153,0.717,0,0,0,0.421,0.555,0.0961,0,0,0.257 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.128 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.128 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.0428 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.214 -0.333,0.142,0.142,0.7,0,0,0,0.421,0.564,0.159,0,0,0.0428 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.171 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.171 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.0428 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.269 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0834 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.132 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.128 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.442 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.143,0.143,0.0167,0,0,0,0.421,0.555,0.0676,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.428 -0.333,0.144,0.144,0.217,0,0,0,0.421,0.576,0.106,0,0,0.214 -0.667,0.247,0.247,0.0167,0,0,0,0.421,0.617,0.239,0,0,0.128 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.467,0.467,0,0.917,0,0,1,0.645,0.662,0.664,0,0.0428 -0.667,0.413,0.413,0,0.0167,0,0,0.807,0.6,0.55,0,0,0.238 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.098 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.215 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.193 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.121 -1,0.0768,0.0768,0.217,0,0,0,0.614,0.529,0.0241,0,0,0.116 -1,0.222,0.222,0.0167,0,0,0,0.807,0.514,0.0488,0,0,0.0582 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0428 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0428 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.214 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.0428 -0.667,0.247,0.247,0.217,0,0,0,0.421,0.617,0.239,0,0,0.327 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0.128 -1,0.467,0.467,0.433,0,0,0,1,0.645,0.662,0,0,0.257 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.29 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0896 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.461 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.145 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.394 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.136 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.442 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0827 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0.319,0,0.421,0.555,0.0751,0,0.106,0 -0.333,0.142,0.142,0,0,0.319,0.233,0.421,0.555,0.0789,0,0.386,0.171 -0.333,0.142,0.142,0.217,0,0,0,0.421,0.564,0.0871,0,0.394,0 -0.333,0.144,0.144,1,0,0,0,0.421,0.576,0.106,0,0,0.0428 -1,0.345,0.345,0.667,0.417,0,0,0.421,0.645,0.351,0.501,0,0.171 -1,0.384,0.384,0,0.283,0,0,0.912,0.658,0.473,0.593,0,0.0857 -1,0.467,0.467,0,0,0.638,0.233,1,0.645,0.662,0.409,0.199,0.128 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.132 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.428 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.614,0.529,0.0158,0,0,0.343 -1,0.05,0.05,1,0,0,0,0.614,0.529,0.0188,0,0,0.116 -1,0.0768,0.0768,0.433,0,0,0,0.614,0.529,0.0241,0,0,0.149 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.58 -0.667,0.163,0.163,0.933,0,0,0,0.421,0.551,0.0406,0,0,0.357 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.386 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.193 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0428 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.0428 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.0857 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.301 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.0715 -0.667,0.274,0.274,0,0,0.957,0,0.421,0.548,0.0788,0,0.519,0.0796 -0.667,0.263,0.263,0,0,0,0.717,0.421,0.548,0.0923,0,0.51,0.14 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.807,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.711,0.0857 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.445,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.45,0.257 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.735,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.0579,0.214 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.3 -1,0.345,0.345,0,0.167,0,0,0.421,0.645,0.351,0.263,0,0 -1,0.384,0.384,0,0.767,0,0,0.912,0.658,0.473,0.331,0,0.0428 -1,0.467,0.467,0.467,0,0,0,1,0.645,0.662,0,0,0.348 -1,0.595,0.595,0,0.667,0,0,1,0.619,0.817,0.676,0,0.214 -1,0.275,0.275,0,0.0333,0,0,0.614,0.564,0.269,0.244,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.162 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.168 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.128 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.142,0.142,0.717,0,0,0,0.421,0.564,0.159,0,0,0.128 -0.667,0.144,0.144,1,0,0,0,0.421,0.576,0.167,0,0,0.343 -0.667,0.148,0.148,0.65,0,0,0,0.421,0.589,0.172,0,0,0.385 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.385 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.214 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.17 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.0428 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.195 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.258 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.278 -1,0.343,0.343,0,0,0,0,0.421,0.542,0.277,0,0,0.174 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.0629 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.321 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.419 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.214 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.219 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.231 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.171 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.0857 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0857 -0.667,0.501,0.501,0,0.7,0,0,0.807,0.566,0.543,0.677,0,0.0428 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.957,0,0.421,0.562,0.0159,0,0.342,0 -1,0.222,0.222,0.233,0,0,0.883,0.807,0.514,0.0488,0,0.404,0.18 -1,0.39,0.39,0,0,0,0.0833,0.421,0.529,0.09,0,0.334,0.0856 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0.648,0.17 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0.481,0.214 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0.814,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.68,0.214 -0.667,0.237,0.237,0.217,0,0,0,0.421,0.548,0.119,0,0.842,0.171 -0.667,0.235,0.235,0.25,0,0,0,0.421,0.548,0.134,0,0.797,0.128 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.389,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0.523,0.25 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.593,0.0857 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0428 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.128 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0428 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0857 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.106 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.208 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.408 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.133 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0982 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.142,0.142,0,0,0.638,0,0.421,0.555,0.0751,0,0.246,0.416 -0.333,0.142,0.142,0,0,0.319,0.633,0.421,0.555,0.0789,0,0.643,0.112 -0.333,0.142,0.142,0,0,0,0.333,0.421,0.564,0.0871,0,0.514,0 -0.333,0.144,0.144,0.233,0,0,0,0.421,0.576,0.106,0,0.709,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.394,0.0857 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.385 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0857 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0428 -0.667,0.275,0.275,0.233,0,0,0,0.614,0.564,0.269,0,0,0.277 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.344 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.28 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.717,0.417,0,0,0.421,0.562,0.0159,0.302,0,0 -1,0.0768,0.0768,0.933,0.517,0,0,0.614,0.529,0.0241,0.0934,0,0.0858 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.44 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.171 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.214 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0857 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.194 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.13 -1,0.345,0.345,0,0.417,0,0,0.421,0.645,0.351,0.436,0,0.3 -1,0.384,0.384,0.717,0.517,0,0,0.912,0.658,0.473,0.431,0,0.0857 -1,0.467,0.467,0.217,0,0.319,0.383,1,0.645,0.662,0.374,0.542,0.3 -1,0.595,0.595,0,0,0,0.333,1,0.619,0.817,0,0.547,0.343 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.65,0.128 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.257 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.425 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.098 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.155 -1,0.0768,0.0768,0.217,0,0,0,0.614,0.529,0.0241,0,0,0.126 -1,0.136,0.136,0.0167,0,0,0,0.614,0.538,0.0323,0,0,0.0303 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.227 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.323 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.4 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.245,0.245,0.467,0,0,0,0.421,0.548,0.113,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.257 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0615 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0857 -0.667,0.238,0.238,0.467,0,0,0,0.421,0.591,0.196,0,0,0.128 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.171 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.128 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0857 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.128 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.282 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.035 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.257 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.257 -0.333,0.156,0.156,0.217,0,0,0,0.421,0.555,0.0541,0,0,0.0999 -0.333,0.153,0.153,0.25,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.343 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.144,0.144,0.25,0,0.638,0,0.421,0.576,0.106,0,0.199,0.0857 -0.667,0.247,0.247,0,0,0,0.233,0.421,0.617,0.239,0,0.412,0 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.754,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.473,0.0857 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0857 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.237 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.0715 -1,0.256,0.256,0,0,0.319,0,0.421,0.548,0.174,0,0.254,0.18 -1,0.343,0.343,0,0,0.319,0.483,0.421,0.542,0.277,0,0.325,0.0932 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0428 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.0428 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.171 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.0857 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.0428 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.0857 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.343 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.343 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0715 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.138 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.257 -0.667,0.154,0.154,0.05,0,0,0,0.421,0.554,0.0828,0,0,0.214 -0.333,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0857 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.171 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0.0968,0,0.214 -0.667,0.14,0.14,0,0.683,0,0,0.421,0.562,0.16,0.71,0,0 -0.667,0.233,0.233,0.3,0,0,0,0.421,0.588,0.316,0.587,0,0.257 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.481,0.062,0,0.171 -0.667,0.268,0.268,0.333,0,0,0,0.749,0.623,0.384,0,0,0.514 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0428 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.0428 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.0436 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.171 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0658 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.188 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.333,0.15,0.15,0,0,0.66,0.367,0.421,0.554,0.0595,0,0.616,0 -0.333,0.145,0.145,0,0,0,0.55,0.421,0.554,0.0648,0,0.232,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0857 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.343 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.244 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.0963 -1,0.338,0.338,0.467,0,0,0,0.421,0.64,0.352,0,0,0.257 -1,0.377,0.377,0.7,0,0.319,0.633,0.912,0.653,0.474,0,0.416,0 -1,0.461,0.461,0,0,0,0.283,1,0.64,0.664,0,0.397,0.335 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.469 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.147 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.261 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0857 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.175 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.103 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.141,0.141,0,0.667,0,0,0.421,0.575,0.106,0.559,0,0.434 -1,0.338,0.338,0.467,0.0167,0,0,0.421,0.64,0.352,0.132,0,0.0827 -1,0.377,0.377,0.233,0,0,0,0.912,0.653,0.474,0,0,0.0962 -1,0.461,0.461,0,0,0.957,0,1,0.64,0.664,0,0.256,0.168 -1,0.59,0.59,0,0,0.0426,0.683,1,0.615,0.82,0,0.764,0.154 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.524,0.29 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.297,0.228 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0.379,0.214 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0601 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.34 -0.667,0.162,0.162,0.467,0,0,0,0.421,0.549,0.0407,0,0,0.0653 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.257 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.0428 -0.333,0.141,0.141,0,0,0.319,0,0.421,0.554,0.0678,0,0.0932,0.0857 -0.667,0.23,0.23,0,0,0.681,0.35,0.421,0.546,0.135,0,0.977,0 -0.667,0.23,0.23,0,0,0,0.333,0.421,0.546,0.142,0,0.508,0.0857 -0.333,0.14,0.14,0.217,0,0,0,0.421,0.562,0.0873,0,0.153,0.171 -0.667,0.233,0.233,0.483,0,0,0,0.421,0.588,0.196,0,0,0.443 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.0428 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.0428 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.0428 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0428 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.0857 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0646 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.171 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.0428 -0.333,0.14,0.14,0,0,0.66,0.117,0.421,0.554,0.0753,0,0.318,0.0428 -0.333,0.14,0.14,0,0,0,0.567,0.421,0.554,0.0791,0,0.453,0.0857 -0.333,0.14,0.14,0.217,0,0,0,0.421,0.562,0.0873,0,0.0225,0.0428 -0.667,0.233,0.233,0.95,0,0,0,0.421,0.588,0.196,0,0,0.128 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.171 -1,0.377,0.377,0,0.667,0,0,0.912,0.653,0.474,0.475,0,0.343 -1,0.461,0.461,0,0.25,0,0,1,0.64,0.664,0.195,0,0.0428 -1,0.59,0.59,0,0.167,0,0,1,0.615,0.82,0.261,0,0.0857 -1,0.273,0.273,0,0.75,0,0,0.614,0.562,0.269,0.569,0,0.0428 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.135 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.229 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0.217,0,0,0,0.614,0.528,0.0241,0,0,0.0465 -0.667,0.135,0.135,0.717,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0857 -0.333,0.145,0.145,0.217,0,0,0,0.421,0.554,0.0648,0,0,0.277 -0.667,0.232,0.232,0.483,0.683,0,0,0.421,0.546,0.12,0.533,0,0.128 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0857 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.216 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.0857 -1,0.377,0.377,0,0.417,0,0,0.912,0.653,0.474,0.479,0,0.171 -1,0.461,0.461,0,0.5,0,0,1,0.64,0.664,0.534,0,0.0857 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.551,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.706,0,0.122 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.0913 -1,0.16,0.16,0.3,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.258,0.258,1,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.24,0.24,0.75,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.257 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.0428 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.214 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.128 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.0857 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.771 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.128 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.126 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.355 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.0857 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0.0857 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.16,0.16,0.167,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.0642 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.166 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.214 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.171 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0857 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.214 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.0857 -1,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.0857 -1,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.0857 -1,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.257 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0.128 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.0428 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.125 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.0956 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0.467,0,0,0,0.807,0.512,0.0489,0,0,0.407 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.157 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.296 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.136 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.0428 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.171 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.128 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0428 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0857 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.128 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0943 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.171 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.0428 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0.957,0,0.614,0.528,0.0241,0,0.585,0.0489 -1,0.22,0.22,0,0,0.0426,0.45,0.807,0.512,0.0489,0,0.633,0.247 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.162 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.385 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0.167,0,0,0.421,0.575,0.106,0.265,0,0 -0.333,0.146,0.146,0,0.75,0,0,0.421,0.588,0.128,0.416,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.608,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.608,0,0.0857 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.48,0,0.343 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0428 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.0887 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.188 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.155 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.148 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.296 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.14,0.14,0.217,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0.483,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.338,0.338,0,0.683,0,0,0.421,0.64,0.352,0.64,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.153 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.728 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.64 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.154 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.125 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.187 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0844 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.14,0.14,0,0,0.319,0,0.421,0.554,0.0791,0,0.246,0 -0.333,0.14,0.14,0,0,0.34,0.45,0.421,0.562,0.0873,0,0.145,0.0857 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.598,0.171 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.367,0.337 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0.532,0.642 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.338,0.128 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0.367,0.128 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.534,0.128 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0.503,0.128 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.244 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.121 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.2 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.15,0.15,0,0,1,0.1,0.421,0.554,0.0595,0,0.685,0.0428 -0.333,0.145,0.145,0.717,0,0,1,0.421,0.554,0.0648,0,0.201,0.214 -0.333,0.141,0.141,0.917,0,0,0.05,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0857 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0857 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.128 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.128 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.257 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0428 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0428 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.246 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.535 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.255 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.377 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.498 -1,0.162,0.162,0.233,0,0,0,0.421,0.549,0.0444,0,0,0.148 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.235 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.146 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.23 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.414 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.333,0.14,0.14,0.05,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.23,0.23,0.183,0,0,0,0.421,0.563,0.301,0,0,0.214 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.3 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.0857 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0428 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.0857 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.145 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0683 -1,0.162,0.162,0,0.683,0,0,0.421,0.549,0.0444,0.581,0,0.0941 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.254 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.145 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.343 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.171 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.171 -0.667,0.14,0.14,0.3,0,0,0,0.421,0.562,0.16,0,0,0 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.465,0,0,0.128 -1,0.338,0.338,0.1,0,0,0,0.421,0.64,0.481,0,0,0.0857 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0857 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.389 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.379 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.145 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.394 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0973 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.0428 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0428 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.0428 -1,0.324,0.324,0.217,0,0,0,0.421,0.602,0.287,0,0,0.171 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.128 -1,0.377,0.377,0.183,0,0,0,0.912,0.653,0.474,0,0,0.319 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.128 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.39 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.187 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.166 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.204 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0.483,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.171 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0428 -0.667,0.242,0.242,0.967,0,0,0,0.421,0.614,0.24,0,0,0.3 -1,0.377,0.377,0.2,0.667,0,0,0.912,0.653,0.474,0.684,0,0.128 -1,0.461,0.461,0,0.0167,0,0,1,0.64,0.664,0.375,0,0.0428 -1,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.108 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.273 -0.667,0.16,0.16,0.233,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0857 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.214 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0857 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0428 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0857 -0.333,0.146,0.146,0.217,0,0,0,0.421,0.588,0.128,0,0,0.3 -0.667,0.268,0.268,0.717,0,0,0,0.749,0.623,0.321,0,0,0.177 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.178 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.393 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.235 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.183 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.201 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.328 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0.0436 -0.667,0.232,0.232,0.683,0,0,0,0.421,0.546,0.12,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.214 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.146,0.146,0.467,0,0,0,0.421,0.588,0.128,0,0,0.257 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.128 -1,0.461,0.461,0,0.167,0,0,1,0.64,0.664,0.374,0,0.334 -0.667,0.41,0.41,0,0.75,0,0,0.807,0.597,0.552,0.309,0,0.194 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.304 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,1,0.1,0.421,0.562,0.0159,0,0.691,0 -1,0.0763,0.0763,0,0,0,0.817,0.614,0.528,0.0241,0,0.939,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0.158,0.246 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.131 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.247 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.197 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.3 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.128 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.257 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0857 -0.333,0.14,0.14,0,0,0.66,0.117,0.421,0.554,0.0791,0,0.00965,0.0857 -0.667,0.23,0.23,0,0,0,0.333,0.421,0.563,0.159,0,0,0 -1,0.324,0.324,0.217,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.377,0.377,0.183,0,0,0,0.912,0.653,0.474,0,0,0.342 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.273 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.165 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0689 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.27,0.27,1,0,0.106,0,0.421,0.546,0.113,0,0.138,0 -1,0.258,0.258,1,0,0.553,0.45,0.421,0.546,0.148,0,0.678,0 -0.667,0.25,0.25,0.75,0,0,0.467,0.421,0.546,0.175,0,0.447,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0.112,0.441,0 -0.667,0.232,0.232,0,0.683,0,0,0.421,0.546,0.205,0.603,0,0.0857 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0.688,0,0.0857 -0.667,0.23,0.23,0,0,0.426,0,0.421,0.546,0.274,0.615,0.19,0.385 -0.667,0.23,0.23,0,0,0.234,0.45,0.421,0.563,0.301,0,0.781,0.0428 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.555,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.214 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.081 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.251 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.509 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.295 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.292 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.258,0.258,0.233,0,0,0,0.421,0.546,0.148,0,0,0.0963 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.166 -0.667,0.24,0.24,0.05,0,0,0,0.421,0.546,0.191,0,0,0 -0.333,0.141,0.141,0.883,0,0,0,0.421,0.554,0.111,0,0,0.0428 -1,0.32,0.32,0,0,0.319,0.45,0.421,0.538,0.352,0,0.355,0 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.482,0.343 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.228,0.3 -1,0.324,0.324,0.3,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0.167,0,0,0,0.421,0.64,0.481,0,0,0.257 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0857 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.0857 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0428 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0.0428 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.325 -0.667,0.274,0.274,0.217,0,0,0,0.421,0.537,0.0655,0,0,0.4 -0.333,0.16,0.16,0.95,0,0,0,0.421,0.554,0.0475,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.3 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.343 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0428 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.167 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.237 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.128 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.128 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.343 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.268,0.268,0,0.417,0,0,0.749,0.623,0.321,0.448,0,0.0428 -0.667,0.324,0.324,0,0.267,0,0,0.807,0.614,0.448,0.46,0,0.0782 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.368 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.301 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.473 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0.0942 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.169 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.214 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0.217,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0.25,0,0,0,0.421,0.588,0.196,0,0,0 -1,0.338,0.338,0,0.167,0,0,0.421,0.64,0.352,0.229,0,0 -1,0.268,0.268,0,0.75,0,0,0.749,0.623,0.321,0.691,0,0.128 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.541,0,0.257 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.712,0,0.128 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.728,0,0.162 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.211 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.365 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0.149 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.253 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0.417,0,0,0.421,0.554,0.0542,0.44,0,0 -0.333,0.15,0.15,0,0.267,0.66,0.117,0.421,0.554,0.0595,0,0.569,0.0428 -0.667,0.24,0.24,0,0,0,0.333,0.421,0.546,0.114,0,0.629,0.0428 -0.667,0.232,0.232,0.7,0,0,0,0.421,0.546,0.12,0,0.445,0.0857 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.55,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.32,0.0428 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.214 -0.667,0.242,0.242,0,0.417,0,0,0.421,0.614,0.24,0.508,0,0.367 -1,0.377,0.377,0,0.267,0,0,0.912,0.653,0.474,0.553,0,0.31 -1,0.461,0.461,0.717,0,0,0,1,0.64,0.664,0.0985,0,0.0857 -1,0.59,0.59,0.917,0,0,0,1,0.615,0.82,0,0,0.263 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.184 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.385 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.156 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0741 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.0428 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.128 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0.128 -0.667,0.233,0.233,0.217,0,0,0,0.421,0.588,0.196,0,0,0.471 -0.667,0.242,0.242,0.25,0,0,0,0.421,0.614,0.24,0,0,0.214 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.214 -0.667,0.324,0.324,0.967,0,0,0,0.807,0.614,0.448,0,0,0.0857 -1,0.59,0.59,0.667,0,0,0,1,0.615,0.82,0,0,0.214 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0499,0.0499,0.3,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.103,0.103,0.167,0,0,0,0.807,0.495,0.0271,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0 -0.667,0.162,0.162,0.8,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,0.367,0,0,0,0.421,0.554,0.0655,0,0,0.0428 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.0428 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.0969 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.311 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.213 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.214 -0.333,0.14,0.14,0,0.5,0,0,0.421,0.554,0.146,0.43,0,0.472 -0.333,0.14,0.14,0,0.183,0,0,0.421,0.562,0.16,0.666,0,0.0857 -0.333,0.141,0.141,0.233,0,0,0,0.421,0.575,0.167,0.233,0,0 -0.667,0.242,0.242,0,0.683,0,0,0.421,0.614,0.327,0.346,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0428 -0.667,0.324,0.324,0,0.683,0,0,0.807,0.614,0.503,0.448,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0857 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.128 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.128 -1,0.249,0.249,0,0,0,0,1,0.474,0.233,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.114 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.121 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0.0522 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -1,0.27,0.27,0.8,0,0.745,0,0.421,0.546,0.113,0,0.182,0 -1,0.362,0.362,0.6,0,0.255,0.683,0.421,0.538,0.212,0,0.527,0.128 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0.59,0.171 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0.561,0 -1,0.324,0.324,0,0,0,0,0.421,0.538,0.298,0,0.474,0.214 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0.566,0.0428 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.402,0,0.24,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.0627 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.128 -1,0.338,0.338,0.8,0,0,0,0.421,0.64,0.481,0,0,0.128 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.3 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,0.25,0,0,0,1,0.615,0.876,0,0,0.0857 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.128 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.178 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.116 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.231 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.328 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.321 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.128 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.128 -0.333,0.14,0.14,0,0.667,0,0,0.421,0.562,0.0873,0.572,0,0.147 -0.333,0.141,0.141,0,0.0167,0,0,0.421,0.575,0.106,0.582,0,0.426 -1,0.338,0.338,0.217,0,0,0,0.421,0.64,0.352,0.161,0,0.238 -1,0.377,0.377,0.717,0,0,0,0.912,0.653,0.474,0,0,0.273 -1,0.461,0.461,0,0,0.319,0,1,0.64,0.664,0,0.227,0.0857 -1,0.59,0.59,0,0,0,0.883,1,0.615,0.82,0,1,0.171 -1,0.496,0.496,0,0,0,0.0333,0.807,0.563,0.523,0,0.13,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.224 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.348 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.151 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.257 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0857 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.667,0.23,0.23,0.233,0,0,0,0.421,0.546,0.142,0,0,0.257 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.0428 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.128 -1,0.377,0.377,0.933,0.683,0,0,0.912,0.653,0.474,0.761,0,0.121 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.128 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.128 -1,0.72,0.72,0,0,0.638,0,1,0.563,0.777,0,0.399,0.323 -1,0.386,0.386,0,0,0.0213,0.867,0.807,0.529,0.318,0,0.542,0 -1,0.183,0.183,0,0,0,0.517,0.807,0.503,0.141,0,0.643,0.0428 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.77,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.638,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.556,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.63,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.337 -0.667,0.277,0.277,0.733,0,0,0,0.421,0.537,0.0633,0,0,0.0863 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0428 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.257 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0428 -0.333,0.143,0.143,0.217,0,0,0,0.421,0.562,0.0846,0,0,0.0428 -0.333,0.144,0.144,1,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,0.217,0,0,0,0.421,0.614,0.232,0,0,0.0857 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.128 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.214 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.236 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.207 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0.217,0,0,0,0.614,0.537,0.0316,0,0,0.0601 -0.667,0.277,0.277,0.983,0,0,0,0.421,0.537,0.0633,0,0,0.274 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.265 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.396 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.545 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.133 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0558 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.484 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.165 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.146 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.0857 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0428 -0.667,0.289,0.289,0.233,0.667,0,0,0.749,0.623,0.31,0.535,0,0.128 -0.667,0.362,0.362,0,0.0167,0,0,0.807,0.614,0.432,0.122,0,0.128 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.429 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0857 -1,0.397,0.397,0.717,0,0,0,0.807,0.529,0.307,0,0,0.206 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0.25,0,0,0,0.421,0.549,0.0396,0,0,0.126 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.287 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.125 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.137 -1,0.668,0.668,0,0.417,0,0,1,0.615,0.79,0.521,0,0.396 -1,0.788,0.788,0,0.267,0,0,1,0.563,0.749,0.441,0,0.257 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.263,0.263,0,0,0.319,0,0.421,0.546,0.142,0,0.227,0 -1,0.256,0.256,0,0,0,0.883,0.421,0.546,0.169,0,0.33,0 -0.667,0.147,0.147,0,0,0,0.0167,0.421,0.554,0.101,0,0.593,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.638,0.128 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.492,0.214 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.392,0.0857 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0.87,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0.379,0.128 -0.333,0.151,0.151,0.217,0,0,0,0.421,0.588,0.167,0,0,0.277 -0.667,0.289,0.289,0.0167,0.417,0,0,0.749,0.623,0.37,0.365,0,0.306 -1,0.518,0.518,0,0.5,0,0,1,0.64,0.718,0.577,0,0.0428 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.324,0,0.214 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.0428 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0.137 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0.217,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.256,0.256,0.25,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.257 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.428 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.343 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.171 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.237 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.0428 -1,0.668,0.668,0.217,0,0,0,1,0.615,0.844,0,0,0.128 -1,0.788,0.788,0.0167,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0.319,0,1,0.512,0.492,0,0.14,0.302 -1,0.183,0.183,0,0,0,0.217,0.807,0.503,0.155,0,0.58,0.266 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0.307,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0775 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.199 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.215 -1,0.39,0.39,0,0.417,0,0,0.421,0.525,0.087,0.467,0,0.25 -0.333,0.162,0.162,0,0.267,0,0,0.421,0.554,0.0461,0.394,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0458 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.26 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.128 -0.333,0.142,0.142,0.717,0,0,0,0.421,0.554,0.073,0,0,0.171 -0.333,0.142,0.142,0.233,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0857 -0.333,0.144,0.144,0.217,0,0,0,0.421,0.575,0.103,0,0,0.0428 -0.667,0.252,0.252,1,0.683,0,0,0.421,0.614,0.232,0.626,0,0.0428 -1,0.408,0.408,0.467,0,0,0,0.912,0.653,0.457,0.146,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0428 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.257 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.239 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.102 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0591 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.128 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.396 -1,0.353,0.353,0,0.417,0,0,0.421,0.64,0.339,0.492,0,0.106 -1,0.408,0.408,0.467,0.267,0,0,0.912,0.653,0.457,0.521,0,0.171 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.343 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.144 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.187 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.132 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.15 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0.227 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.128 -0.333,0.147,0.147,0.217,0,0,0,0.421,0.554,0.0628,0,0,0.471 -0.333,0.143,0.143,0.0167,0,0,0,0.421,0.554,0.0657,0,0,0.128 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0428 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.0428 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.214 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.128 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.338 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.3 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0641 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.0698 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.33 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.201 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.166 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0857 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.128 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.0857 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.0428 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.128 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.551 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.199 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0132 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.166 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.614,0.528,0.0186,0,0,0.147 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.0412 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.196 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.181 -0.667,0.274,0.274,0.717,0.667,0,0,0.421,0.546,0.0764,0.516,0,0.171 -0.667,0.263,0.263,0.483,0.0167,0,0,0.421,0.546,0.0894,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0857 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.667,0.252,0.252,0.25,0,0,0,0.421,0.614,0.232,0,0,0.128 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.171 -1,0.518,0.518,0,0.683,0,0,1,0.64,0.64,0.813,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.294,0,0.0857 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.0856 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.172 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.214 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.0428 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.171 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.0428 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.171 -1,0.408,0.408,0,0,0.957,0.133,0.912,0.653,0.546,0,0.518,0.0428 -1,0.518,0.518,0.717,0,0,0.533,1,0.64,0.718,0,0.823,0.128 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0.693,0.214 -1,0.788,0.788,1,0,0,0,1,0.563,0.779,0,0.375,0.104 -1,0.571,0.571,0.65,0,0,0,1,0.512,0.492,0,0,0.25 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.293 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.0877 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.0717 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.0512 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.276 -0.667,0.237,0.237,0.467,0.667,0,0,0.421,0.546,0.198,0.579,0,0.395 -0.667,0.235,0.235,1,0.25,0,0,0.421,0.546,0.232,0.664,0,0.0857 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.264,0.55,0,0 -0.667,0.236,0.236,0.183,0,0,0,0.421,0.563,0.29,0.703,0,0.128 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0.728,0,0.128 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0.688,0,0.128 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.62,0,0.257 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0.628,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0.499,0,0.257 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.129 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.252 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.12 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.214 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0428 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0857 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0428 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.214 -0.333,0.142,0.142,0.217,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0.25,0,0,0,0.421,0.563,0.153,0,0,0.0857 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.0428 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0.417,0,0,0.912,0.653,0.457,0.401,0,0.0428 -1,0.518,0.518,0,0.267,0,0,1,0.64,0.64,0.696,0,0.128 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.54,0,0.0857 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.535,0,0.171 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0.542,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.0982 -0.667,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0.291 -0.667,0.222,0.222,0,0,0.638,0.133,0.807,0.512,0.0474,0,0.135,0.281 -0,0.0495,0.0495,0,0,0,0.317,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.128 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.3 -0.667,0.252,0.252,0.217,0.167,0,0,0.421,0.614,0.232,0.243,0,0 -1,0.289,0.289,0.733,0.517,0,0,0.749,0.623,0.31,0.411,0,0.257 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.494,0,0.0857 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0857 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0428 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.324 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0.717,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.214 -0.333,0.142,0.142,0,0.683,0,0,0.421,0.554,0.0766,0.895,0,0.128 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0.672,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0.204,0,0.128 -0.667,0.252,0.252,0,0.167,0,0,0.421,0.614,0.232,0.306,0,0.3 -1,0.408,0.408,0,0.75,0,0,0.912,0.653,0.457,0.457,0,0.214 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0.718,0,0.182 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.548,0,0.0428 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.784,0,0.2 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0.353,0,0.0992 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0686 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.0813 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.149 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.316 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.0846 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.244 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.124 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.128 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.204 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0 -0.667,0.252,0.252,0.217,0,0,0,0.421,0.614,0.232,0,0,0.214 -0.667,0.289,0.289,0.983,0,0,0,0.749,0.623,0.31,0,0,0.171 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.214 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.128 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.3 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.206 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.234 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.262 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.101 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.279 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.296 -0.667,0.256,0.256,0.217,0,0,0,0.421,0.546,0.0996,0,0,0.13 -0.333,0.147,0.147,0.733,0,0,0,0.421,0.554,0.0628,0,0,0.0857 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.413 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.458 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.318 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0428 -1,0.353,0.353,0.467,0.667,0.638,0.383,0.421,0.64,0.339,0.516,0.357,0.0857 -1,0.408,0.408,0,0.683,0,0.283,0.912,0.653,0.457,0.486,0.51,0 -1,0.518,0.518,0,0.0167,0,0,1,0.64,0.64,0.185,0,0 -1,0.668,0.668,0,0.667,0,0,1,0.615,0.79,0.61,0,0.0428 -1,0.788,0.788,0,0.0167,0,0,1,0.563,0.749,0,0,0.0428 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.235,0.235,0,0.917,0,0,0.421,0.546,0.232,0.703,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.214 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.128 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.3 -1,0.408,0.408,0.217,0,0,0,0.912,0.653,0.546,0,0,0.171 -1,0.518,0.518,0.733,0,0,0,1,0.64,0.718,0,0,0.6 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.346 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.0857 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.0428 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.229 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.0996 -1,0.256,0.256,0.217,0,0,0,0.421,0.546,0.169,0,0,0 -0.667,0.245,0.245,0.25,0.667,0,0,0.421,0.546,0.184,0.591,0,0 -0.667,0.237,0.237,0,0.0167,0,0,0.421,0.546,0.198,0.214,0,0.171 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.363 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.0428 -0.667,0.236,0.236,0,0.417,0,0,0.421,0.563,0.29,0.351,0,0 -1,0.334,0.334,0,0.267,0,0,0.421,0.602,0.448,0.521,0,0.088 -0.333,0.151,0.151,0,0,0.319,0.383,0.421,0.588,0.167,0.329,0.307,0.525 -0.667,0.289,0.289,0,0,0,0.517,0.749,0.623,0.37,0,0.416,0.232 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.394,0.257 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.0428 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.342 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.111 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0658 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.254 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.0827 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0428 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.171 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0857 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.363 -0.333,0.151,0.151,0.217,0,0,0,0.421,0.588,0.124,0,0,0.29 -1,0.408,0.408,0.25,0,0,0,0.912,0.653,0.457,0,0,0.479 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.235 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.327 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0702 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0724 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.231 -0.667,0.277,0.277,0,0.667,0.638,0.217,0.421,0.537,0.0633,0.489,0.685,0 -0.667,0.274,0.274,0,0.25,0,0,0.421,0.546,0.0764,0.552,0.887,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.395,0.0428 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.654,0.0428 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.625,0.128 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.764,0.257 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.074,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.0428 -0.333,0.151,0.151,0.217,0,0,0,0.421,0.588,0.124,0,0,0.214 -1,0.408,0.408,0.5,0,0,0,0.912,0.653,0.457,0,0,0.171 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0428 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.214 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.13 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.108 -0.667,0.277,0.277,0.467,0,0,0,0.421,0.537,0.0633,0,0,0.326 -0.333,0.162,0.162,0.25,0,0,0,0.421,0.554,0.0461,0,0,0.0857 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.265 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.196 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.167 -0.333,0.0495,0.0495,0,0,0.638,0.133,0.421,0.562,0.0159,0,0.421,0.0428 -0.667,0.142,0.142,0,0,0,0.0833,0.421,0.554,0.073,0,0.412,0.0857 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0.344,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0.539,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.46,0.385 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.455,0.125 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.325,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0428 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.072 -0.333,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0.25,0,0,0,0.421,0.554,0.0461,0,0,0.0428 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0428 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.165 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.3 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.128 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.128 -0.667,0.252,0.252,0,0.167,0,0,0.421,0.614,0.232,0.312,0,0.171 -0.333,0.169,0.169,0,0.517,0,0,0.585,0.592,0.163,0.475,0,0.257 -0.667,0.362,0.362,0,0.683,0,0,0.807,0.614,0.432,0.737,0,0.171 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.296,0.296,0.467,0,0,0,0.614,0.562,0.26,0,0,0.0428 -1,0.397,0.397,0.483,0,0,0,0.807,0.529,0.307,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.306 -1,0.104,0.104,0.217,0,0,0,0.807,0.495,0.0314,0,0,0.262 -1,0.222,0.222,0.0167,0,0,0,0.807,0.512,0.0474,0,0,0.18 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.128 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.128 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0428 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.3 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.171 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.128 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0857 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.0428 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.389 -1,0.518,0.518,0.467,0.167,0,0,1,0.64,0.64,0.29,0,0.214 -1,0.668,0.668,0.25,0.517,0,0,1,0.615,0.79,0.413,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.728,0,0.128 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0.0968,0,0.171 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0.417,0,0,0.421,0.562,0.0181,0.404,0,0 -1,0.162,0.162,0,0.5,0,0,0.421,0.554,0.0636,0.238,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.204 -0.667,0.256,0.256,0.217,0,0,0,0.421,0.546,0.169,0,0,0 -1,0.343,0.343,0.0167,0,0,0,0.421,0.538,0.268,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.0857 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.128 -0.333,0.144,0.144,0.95,0,0,0,0.421,0.575,0.162,0,0,0.0857 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.343 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.343 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.128 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0.172 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.116 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.184 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.146 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.323 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.114 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.0992 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.214 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.0857 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.0428 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.171 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.343 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.0857 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.0428 -0.667,0.542,0.542,0.217,0,0,0,0.807,0.563,0.525,0,0,0.0857 -0.667,0.223,0.223,0.733,0,0,0,0.614,0.545,0.176,0,0,0.32 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.0428 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.257 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.253 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.509 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0565 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.131 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.128 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0428 -0.333,0.144,0.144,0.717,0,0,0,0.421,0.575,0.103,0,0,0.213 -1,0.353,0.353,0.717,0,0,0,0.421,0.64,0.339,0,0,0.134 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.477 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.378 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.119 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.0857 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.376 -0.667,0.263,0.263,0.233,0,0,0,0.421,0.546,0.0894,0,0,0.128 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.339 -0.333,0.147,0.147,0.717,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0.483,0.167,0,0,0.421,0.554,0.0657,0.261,0,0.0857 -0.333,0.142,0.142,0,0.517,0,0,0.421,0.554,0.073,0.286,0,0.171 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.171 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.257 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.674 -0.667,0.289,0.289,0.95,0,0,0,0.749,0.623,0.31,0,0,0.356 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0857 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0629 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.162,0.162,0.717,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0.483,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0.638,0.133,0.421,0.554,0.0577,0,0.376,0 -0.333,0.147,0.147,0,0,0,0.533,0.421,0.554,0.0628,0,0.595,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0.111,0.33 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.142 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.663 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.214 -0.667,0.239,0.239,0.717,0,0,0,0.421,0.588,0.19,0,0,0.428 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0857 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.428 -0.333,0.206,0.206,0.467,0,0,0,0.614,0.588,0.224,0,0,0.0428 -0.333,0.256,0.256,0.25,0,0,0,0.614,0.579,0.274,0,0,0.171 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.168 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0369 -1,0.222,0.222,0,0,0.638,0.383,0.807,0.512,0.0474,0,0.36,0.141 -1,0.39,0.39,0,0,0,0.517,0.421,0.525,0.087,0,0,0.274 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.194 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0857 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0857 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.257 -0.333,0.143,0.143,0.467,0,0.319,0,0.421,0.554,0.0657,0,0.172,0 -0.667,0.235,0.235,0,0,0,0.667,0.421,0.546,0.13,0,0.338,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.714,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.797,0.214 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.293,0.0428 -1,0.353,0.353,0.233,0,0,0,0.421,0.64,0.339,0,0.273,0.0428 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.329 -1,0.518,0.518,0,0.167,0,0,1,0.64,0.64,0.265,0,0.345 -1,0.462,0.462,0,0.517,0,0,0.807,0.597,0.532,0.816,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0.551,0,0.392 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.128 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.143 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.221 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.255 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0717 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.135 -0.667,0.239,0.239,0,0.917,0,0,0.421,0.588,0.19,0.679,0,0 -0.667,0.252,0.252,0.467,0,0,0,0.421,0.614,0.232,0,0,0.0857 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.0428 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.257 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0857 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0857 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.232 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.331 -1,0.286,0.286,0.633,0,0,0,0.421,0.548,0.113,0,0,0.452 -1,0.392,0.392,0.7,0,0,0,0.421,0.542,0.212,0,0,0.331 -1,0.381,0.381,0.35,0,0,0,0.421,0.542,0.252,0,0,0.161 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.385 -0.667,0.251,0.251,0,0.333,0,0,0.421,0.548,0.204,0.269,0,0.0428 -0.667,0.249,0.249,0.483,0.367,0,0,0.421,0.548,0.24,0.48,0,0.128 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.0428 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.259,0.259,0.133,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0.348 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.227 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0,0.168 -1,0.806,0.806,0.483,0,0,0,1,0.619,0.873,0,0,0.0428 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.369 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0.0727 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.385 -1,0.0495,0.0495,0.133,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0.583,0,0,0,0.421,0.555,0.0654,0,0,0.145 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.0428 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.471 -0.667,0.249,0.249,0,0,0.213,0,0.421,0.548,0.24,0,0.135,0.3 -0.667,0.249,0.249,0,0,0.426,0.45,0.421,0.548,0.273,0,0.593,0.385 -0.667,0.15,0.15,0.633,0,0,0,0.421,0.564,0.159,0,0.547,0 -0.667,0.259,0.259,0.0833,0,0,0,0.421,0.591,0.315,0,0.58,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0.844,0.128 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0.772,0.128 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0.153,0.293 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.159 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.0428 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.171 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.169 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.218 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.126 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.128 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0857 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.214 -0.333,0.149,0.149,0.467,0,0,0,0.421,0.555,0.0751,0,0,0.0428 -0.333,0.149,0.149,0.0167,0,0,0,0.421,0.555,0.0789,0,0,0.128 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0428 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.236 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.27 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.171 -0.667,0.554,0.554,0,0.417,0,0,0.807,0.6,0.55,0.448,0,0.0857 -1,0.851,0.851,0,0.283,0,0,1,0.568,0.774,0.107,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.192 -1,0.139,0.139,0.483,0.917,0,0,0.614,0.538,0.0323,0.837,0,0.251 -0.667,0.167,0.167,0,0.0167,0,0,0.421,0.551,0.0406,0.664,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0.0849,0,0.203 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0857 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.128 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.31 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.128 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.168,0.168,0.467,0,0,0,0.421,0.589,0.128,0,0,0.327 -1,0.501,0.501,0.0167,0,0,0,0.912,0.658,0.473,0,0,0.257 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.0428 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.171 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.124 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.253 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0906 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.168 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.244 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.565 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.257 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0428 -0.667,0.251,0.251,0.967,0,0,0,0.421,0.566,0.158,0,0,0 -1,0.363,0.363,0.483,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.286,0.286,0.467,0,0,0,0.421,0.617,0.239,0,0,0.343 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0.0428 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.3 -1,0.806,0.806,0.183,0,0,0,1,0.619,0.817,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.128 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.37 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0.212 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.0713 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0857 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.343 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.257 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0.638,0.383,0.421,0.555,0.0676,0,0.201,0.0857 -0.333,0.149,0.149,0,0,0,0.533,0.421,0.555,0.0751,0,0.405,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.394,0.128 -0.333,0.15,0.15,0,0.417,0,0,0.421,0.564,0.0871,0.452,0,0 -0.333,0.154,0.154,0,0.283,0,0,0.421,0.576,0.106,0.643,0,0.128 -0.667,0.286,0.286,0.717,0,0,0,0.421,0.617,0.239,0.504,0,0.214 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.781,0,0.128 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.136,0,0.0428 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.0857 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.183 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.0932 -1,0.0781,0.0781,0.233,0,0,0,0.614,0.529,0.0241,0,0,0.177 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.293 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.567 -1,0.404,0.404,0.217,0,0,0,0.421,0.542,0.11,0,0,0.506 -0.667,0.278,0.278,0.5,0,0,0,0.421,0.548,0.0923,0,0,0.177 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0253 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.257 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0428 -0.333,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.128 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.128 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.118 -0.667,0.554,0.554,0.717,0,0,0,0.807,0.6,0.55,0,0,0.0857 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0428 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.414 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0.111 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0.127 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.245 -1,0.167,0.167,0.133,0,0,0,0.421,0.551,0.0444,0,0,0.0995 -0.667,0.0495,0.0495,0.583,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.278,0.278,0.633,0,0,0,0.421,0.548,0.147,0,0,0.257 -1,0.381,0.381,1,0,0,0,0.421,0.542,0.252,0,0,0.171 -0.667,0.259,0.259,0.783,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.377 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0.116 -1,0.349,0.349,0.383,0,0,0,0.421,0.542,0.401,0,0,0.122 -1,0.351,0.351,0.817,0,0,0,0.421,0.568,0.441,0,0,0.143 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.168 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.335 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.267 -0.667,0.454,0.454,0,0,0.638,0.05,0.807,0.617,0.501,0,0.193,0.199 -0.667,0.554,0.554,0,0,0,0.633,0.807,0.6,0.588,0,0.486,0.257 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0.315,0.111 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.257 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0858 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0789 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.107 -1,0.164,0.164,0.633,0,0,0,0.421,0.555,0.0826,0,0,0.158 -1,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0.189 -1,0.364,0.364,0.3,0.0833,0,0,0.421,0.542,0.277,0.183,0,0.258 -1,0.352,0.352,0.233,0.85,0,0,0.421,0.542,0.297,0.73,0,0.083 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.0428 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.481 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.128 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.0857 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.0428 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.3 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.0857 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.0857 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0455 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.277 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.321 -0.333,0.168,0.168,0.717,0,0,0,0.421,0.555,0.0473,0,0,0.0415 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0.346 -0.333,0.16,0.16,1,0.7,0,0,0.421,0.555,0.0593,0.716,0,0.0428 -0.333,0.154,0.154,0.9,0,0,0,0.421,0.555,0.0646,0.572,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0.718,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0.217,0,0,0,0.421,0.564,0.0871,0,0,0.214 -0.333,0.154,0.154,0.0167,0,0,0,0.421,0.576,0.106,0,0,0.0857 -1,0.404,0.404,0,0.417,0.319,0.45,0.421,0.645,0.351,0.53,0.465,0.0857 -1,0.501,0.501,0,0.517,0,0,0.912,0.658,0.473,0.11,0.596,0.0428 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.302 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0428 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.425 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.0696 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.108 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.098 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.36 -0.667,0.286,0.286,0.467,0,0,0,0.421,0.548,0.0788,0,0,0.0431 -0.333,0.164,0.164,0.5,0,0,0,0.421,0.555,0.0541,0,0,0.171 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.385 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0428 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.317 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.302 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.093 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0428 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0857 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.214 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.141 -1,0.139,0.139,0,0,0.319,0,0.614,0.538,0.0323,0,0.116,0 -1,0.284,0.284,0,0,0,0.217,0.421,0.54,0.0653,0,0.547,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.449,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.482,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.128 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.385 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.385 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0857 -0,0.0495,0.0495,0,0.167,0,0,0.421,0.562,0.0159,0.226,0,0.248 -0.667,0.286,0.286,0,0.767,0,0,0.421,0.617,0.239,0.253,0,0.206 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.34 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.127 -0.667,0.554,0.554,0.233,0,0,0,0.807,0.6,0.55,0,0,0.225 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.514 -1,0.391,0.391,0,0.667,0,0,0.807,0.531,0.317,0.645,0,0.128 -1,0.116,0.116,0,0.0333,0,0,0.614,0.533,0.0781,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0.638,0.133,0.421,0.555,0.0593,0,0.251,0 -0.333,0.154,0.154,0,0,0.319,0.317,0.421,0.555,0.0646,0,0.268,0 -0.667,0.251,0.251,0,0,0,0.683,0.421,0.548,0.119,0,0.386,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.601,0.171 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.452,0.343 -0.667,0.251,0.251,0.467,0,0,0,0.421,0.566,0.158,0,0.621,0.0428 -1,0.363,0.363,0.483,0,0,0,0.421,0.606,0.286,0,0.603,0.214 -1,0.404,0.404,0.5,0,0,0,0.421,0.645,0.351,0,0.33,0.257 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.268,0.428 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.483 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.307 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0428 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.082 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.168 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.337 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.172 -0.667,0.168,0.168,0.717,0.167,0,0,0.421,0.555,0.0473,0.331,0,0.182 -0.667,0.278,0.278,0.967,0.767,0,0,0.421,0.548,0.0923,0.48,0,0.388 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.623,0,0.0857 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.0428 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0857 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.171 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.128 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.333,0.2,0.2,0.0167,0,0,0,0.585,0.594,0.168,0,0,0.214 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0857 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.248 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.257 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.135 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.24 -1,0.139,0.139,0.483,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.349 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.363 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.128 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.146 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.21 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.333 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.309 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.0428 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.0857 -1,0.656,0.656,0,0,0.319,0.217,1,0.645,0.743,0,0.357,0.171 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.725,0.0428 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.171 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0686 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.286 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.216 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.192 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.0428 -1,0.154,0.154,0.633,0,0,0,0.421,0.555,0.104,0,0,0.0857 -0.667,0.15,0.15,0.0833,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.171 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.0428 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.23 -0.667,0.168,0.168,0,0.7,0,0,0.421,0.589,0.172,0.745,0,0.128 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0.418,0,0.428 -0.667,0.252,0.252,0,0,0.319,0.3,0.614,0.589,0.26,0.316,0.412,0 -1,0.554,0.554,0,0,0,0.383,0.807,0.6,0.588,0,0.457,0.0857 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.214 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.241 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.128 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.214 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.257 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0.233,0,0,0,0.421,0.564,0.0871,0,0,0.128 -0.667,0.259,0.259,0.483,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0.167,0,0,0.421,0.617,0.239,0.287,0,0.0428 -0.333,0.2,0.2,0,0.533,0,0,0.585,0.594,0.168,0.282,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.0857 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.0857 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0775 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.301 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.101 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0651 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.468 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.282 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.131,0,0,0.201 -0.667,0.27,0.27,0,0.417,0,0,0.421,0.548,0.103,0.462,0,0.0992 -0.667,0.259,0.259,0,0.283,0,0,0.421,0.548,0.113,0.537,0,0 -0.667,0.251,0.251,0,0,0.638,0,0.421,0.548,0.119,0.265,0.338,0.0857 -0.333,0.149,0.149,0.467,0,0,0.883,0.421,0.555,0.0751,0,0.0836,0 -0.333,0.149,0.149,0.5,0,0,0.0333,0.421,0.555,0.0789,0,0,0.0857 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0857 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.128 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.0857 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.24 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.394 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.214 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0841 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.11 -1,0.0781,0.0781,0.217,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,1,0,0.638,0.383,0.614,0.538,0.0323,0,0.106,0.0951 -0.333,0.167,0.167,0.233,0,0,0.3,0.421,0.551,0.0406,0,0,0.289 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.498 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.318 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.252 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.156 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.284 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0934 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.128 -0.333,0.15,0.15,0.233,0,0,0,0.421,0.564,0.0871,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.165 -0.667,0.286,0.286,0,0.7,0,0,0.421,0.617,0.239,0.684,0,0.214 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.555,0,0.214 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.747,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.72,0,0.0857 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.299 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0791 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.0717 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0.176 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.343 -0.667,0.286,0.286,0,0,0.638,0.133,0.421,0.617,0.239,0,0.185,0.0857 -1,0.501,0.501,0,0.167,0,0.783,0.912,0.658,0.473,0.173,0,0.0857 -1,0.656,0.656,0,0.533,0,0,1,0.645,0.662,0.72,0,0.0428 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.615,0,0.0428 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0.153,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.119 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.0722 -0.667,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0.483,0.167,0,0,0.614,0.538,0.0323,0.26,0,0 -0.333,0.167,0.167,0,0.533,0,0,0.421,0.551,0.0406,0.216,0,0.0857 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.128 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.214 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.3 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0857 -0.333,0.15,0.15,0.233,0,0,0,0.421,0.564,0.0871,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.214 -1,0.404,0.404,0,0,0.319,0.133,0.421,0.645,0.351,0,0.381,0.128 -1,0.501,0.501,0,0,0,0.783,0.912,0.658,0.473,0,0.67,0.128 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.0531,0.0428 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.128 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.132 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0898 -1,0.286,0.286,0.233,0,0,0,0.421,0.548,0.113,0,0,0.407 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.0806 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.126 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.257 -0.333,0.15,0.15,0.133,0,0,0,0.421,0.555,0.111,0,0,0.0428 -0.333,0.149,0.149,0.833,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.282 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.333,0.168,0.168,0.633,0,0,0,0.421,0.589,0.172,0,0,0.171 -0.667,0.351,0.351,0.7,0,0,0,0.749,0.626,0.383,0,0,0.0428 -1,0.656,0.656,1,0.583,0,0,1,0.645,0.743,0.499,0,0.141 -1,0.806,0.806,0.0667,0.35,0,0,1,0.619,0.873,0.109,0,0.527 -1,0.851,0.851,0,0,0.319,0.3,1,0.568,0.806,0,0.278,0.201 -1,0.391,0.391,0,0,0,0.617,0.807,0.531,0.345,0,0.704,0.0857 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0.182,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0.633,0,0,0,0.421,0.562,0.0181,0,0,0.384 -1,0.284,0.284,1,0.0833,0,0,0.421,0.54,0.0706,0.185,0,0.183 -1,0.286,0.286,1,0.617,0,0,0.421,0.548,0.113,0.857,0,0 -1,0.278,0.278,0.0167,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.16,0.16,0.133,0,0,0,0.421,0.555,0.0961,0,0,0.0428 -0.667,0.154,0.154,0.583,0,0,0,0.421,0.555,0.104,0,0,0.214 -0.333,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0181,0,0,0.363 -0.667,0.249,0.249,1,0,0.957,0.05,0.421,0.548,0.24,0,0.736,0.0715 -1,0.349,0.349,0.3,0,0,0.633,0.421,0.542,0.401,0,0.568,0.214 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0.333,0 -1,0.363,0.363,0.133,0,0,0,0.421,0.606,0.464,0,0,0.0857 -1,0.404,0.404,0.35,0,0,0,0.421,0.645,0.479,0,0,0.214 -1,0.501,0.501,0,0.7,0,0,0.912,0.658,0.565,1,0,0.128 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.141,0,0.214 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.124 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.139,0.139,0.233,0,0.319,0,0.614,0.538,0.0323,0,0.0965,0 -0.333,0.167,0.167,0,0,0,0.683,0.421,0.551,0.0406,0,0.55,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.344,0.0857 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.545,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.128 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.214 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0857 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.22 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.4 -1,0.501,0.501,0.483,0,0,0,0.912,0.658,0.473,0,0,0.128 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.257 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.214 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0428 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.228,0.228,0.25,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.284,0.284,0,0,0.638,0,0.421,0.54,0.0653,0,0.13,0 -0.667,0.286,0.286,0,0,0.319,0.633,0.421,0.548,0.0788,0,0.842,0 -0.667,0.278,0.278,0,0,0,0.283,0.421,0.548,0.0923,0,0.439,0.0428 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.339,0.3 -0.333,0.154,0.154,0,0.167,0,0,0.421,0.555,0.0646,0.256,0,0.214 -0.333,0.15,0.15,0,0.533,0,0,0.421,0.555,0.0676,0.402,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.637,0,0.3 -0.333,0.149,0.149,0.467,0,0,0,0.421,0.555,0.0789,0.603,0,0.0428 -0.667,0.251,0.251,0.733,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0428 -0.667,0.286,0.286,0,0,0.638,0,0.421,0.617,0.239,0,0.445,0.0428 -1,0.501,0.501,0,0,0,0.883,0.912,0.658,0.473,0,0.358,0.0857 -1,0.656,0.656,0,0,0,0.0333,1,0.645,0.662,0,0.18,0.214 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.274 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.184 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.11 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.445 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.118 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.363 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.254 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0.467,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0.0167,0,0,0,0.421,0.555,0.0789,0,0,0.0857 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.214 -0.333,0.154,0.154,0,0.167,0,0,0.421,0.576,0.106,0.238,0,0.214 -0.667,0.286,0.286,0,0.533,0,0,0.421,0.617,0.239,0.112,0,0.334 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.19 -1,0.656,0.656,0.467,0,0,0,1,0.645,0.662,0,0,0.0748 -1,0.806,0.806,0.0167,0,0,0,1,0.619,0.817,0,0,0.257 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.141 -1,0.107,0.107,0.0167,0,0,0,0.807,0.497,0.0323,0,0,0.0484 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.107 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.0849 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.142 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.151 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.375 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0.638,0,0.421,0.555,0.0789,0,0.241,0.214 -0.333,0.15,0.15,0,0,0.319,0.633,0.421,0.564,0.0871,0,0.661,0 -0.333,0.154,0.154,0,0,0,0.283,0.421,0.576,0.106,0,0.514,0.493 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.204,0.439 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0.743,0.267 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.037,0.327 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.511 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0911 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.192 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.214 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0428 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0857 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.171 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0428 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.967,0,0,0,0.421,0.591,0.196,0,0,0.214 -1,0.404,0.404,0.233,0,0,0,0.421,0.645,0.351,0,0,0.0857 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.0857 -1,0.656,0.656,0,0,0.638,0,1,0.645,0.662,0,0.204,0.128 -1,0.806,0.806,0,0.667,0,0.683,1,0.619,0.817,0.574,0.468,0 -1,0.851,0.851,0,0.0333,0,0,1,0.568,0.774,0.258,0.543,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0.312,0.0428 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.633,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.404,0.404,0.333,0,0.851,0,0.421,0.542,0.16,0,0.527,0 -1,0.392,0.392,0,0,0.106,0.683,0.421,0.542,0.212,0,0.621,0 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0.209,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.495,0.214 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.553,0.0428 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.664,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.352,0.128 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.49,0.385 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.49,0.128 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.367,0.468 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.0857 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.0857 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.128 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0.133,0,0,0,0.421,0.555,0.0654,0,0,0.152 -0.667,0.164,0.164,0.1,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.154,0.154,0,0.583,0,0,0.421,0.555,0.104,0.676,0,0 -1,0.352,0.352,0,0.117,0,0,0.421,0.542,0.297,0.0713,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.428 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.252 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.168 -1,0.363,0.363,0.133,0.7,0,0,0.421,0.606,0.464,0.445,0,0.262 -1,0.404,0.404,0.1,0,0,0,0.421,0.645,0.479,0.552,0,0.107 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.664,0,0.257 -1,0.454,0.454,0,0,0.532,0,0.807,0.617,0.501,0.671,0.0193,0.128 -1,0.806,0.806,0,0,0.426,0.45,1,0.619,0.873,0.261,0,0.128 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.171 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.237 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.224 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0782 -0.333,0.172,0.172,0.25,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.257 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.217,0.167,0,0,0.421,0.562,0.0159,0.304,0,0 -0.333,0.162,0.162,0.0333,0.817,0,0,0.281,0.601,0.0774,0.565,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,0.25,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.0857 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.436 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.128 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.225 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.313 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.132 -0.333,0.174,0.174,0,0,0.894,0.183,0.281,0.591,0.0486,0,0.513,0.128 -0.333,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.577,0.0857 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.171 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.214 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.257 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.417,0.417,0.217,0,0,0,0,0.726,0.25,0,0,0.0428 -1,0.501,0.501,0.0333,0.733,0,0,0,0.772,0.307,0.628,0,0.214 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.134,0,0.406 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.355 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.171 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.257 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.224 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.166 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0428 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.171 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0428 -0.333,0.162,0.162,0.217,0,0,0,0.281,0.601,0.0774,0,0,0.128 -0.333,0.172,0.172,0.283,0,0,0,0.281,0.616,0.0938,0,0,0.0428 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.0428 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.214 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.246 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.235 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.171 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.336 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.248 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.21 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.1 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0591 -0.333,0.164,0.164,0.467,0,0,0,0.281,0.591,0.0577,0,0,0.128 -0.333,0.16,0.16,0.0333,0,0,0,0.281,0.591,0.0604,0,0,0.214 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0428 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0857 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.257 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.0428 -1,0.655,0.655,0,0.167,0,0,0,0.788,0.413,0.328,0,0.0857 -1,0.829,0.829,0,0.567,0,0,0,0.772,0.578,0.491,0,0.171 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.25 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.214 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0582 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,1 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.139 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.231 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.369 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.476 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.487 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.0428 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.257 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.214 -1,0.35,0.35,0.217,0,0,0,0.14,0.702,0.21,0,0,0.214 -1,0.453,0.453,0.0333,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.214 -1,0.62,0.62,0.217,0,0,0,0.14,0.681,0.481,0,0,0.0857 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0,0,0.219 -1,0.356,0.356,0.533,0,0,0,0.14,0.599,0.278,0,0,0.255 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.471 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.175,0.175,0.0333,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.174,0.174,0,0.417,0,0,0.281,0.591,0.0737,0.521,0,0.214 -0.667,0.17,0.17,0,0.567,0,0,0.281,0.591,0.0855,0.37,0,0.164 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.12 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.799 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.268 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.184 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.333,0.309,0.309,0.717,0,0,0,0.281,0.632,0.228,0,0,0 -0.667,0.62,0.62,0.283,0,0,0,0.14,0.681,0.514,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.214 -0.333,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.333,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.0428 -0.667,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.102 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.0891 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.189 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.0428 -0.667,0.17,0.17,0,0.733,0,0,0.281,0.591,0.0855,0.643,0,0.0857 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0.759,0,0.0428 -0.667,0.271,0.271,0,0,0.638,0,0.14,0.62,0.179,0,0.416,0.0428 -0.667,0.269,0.269,0,0,0.255,0.683,0.14,0.62,0.21,0,0.416,0.171 -0.667,0.269,0.269,0,0,0,0.0167,0.14,0.62,0.239,0,0.756,0.128 -0.667,0.274,0.274,0.217,0,0,0,0.14,0.64,0.263,0,0.613,0 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0.283,0,0,0,0.14,0.702,0.285,0,0,0.0857 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.3 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.466 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.0465 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.222 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0.0524 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.257 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0.167,0,0,0.421,0.562,0.0159,0.241,0,0 -1,0.236,0.236,0.217,0.817,0.596,0.167,0.14,0.578,0.0433,0.297,0.426,0.232 -1,0.417,0.417,0.0333,0,0,0.783,0,0.633,0.0786,0,0.524,0 -0.667,0.301,0.301,0.717,0,0,0,0.14,0.62,0.0695,0,0.389,0 -0.667,0.299,0.299,0.283,0,0,0,0.14,0.62,0.0813,0,0,0.0857 -0.333,0.17,0.17,0.25,0,0,0,0.281,0.591,0.0532,0,0,0.128 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.25,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.269,0.269,0.5,0,0,0,0.14,0.62,0.118,0,0,0.0428 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.0857 -0.667,0.274,0.274,0,0,0.596,0.167,0.14,0.64,0.139,0,0.251,0.0428 -0.667,0.294,0.294,0.217,0,0,0.3,0.14,0.671,0.172,0,0.441,0.087 -0.667,0.35,0.35,0.0333,0,0,0,0.14,0.702,0.21,0,0,0.188 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.257 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.345 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0857 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.171 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,1,0,0.319,0,0.281,0.57,0.0296,0,0.148,0.32 -1,0.172,0.172,0.283,0,0.277,0.667,0.281,0.585,0.0368,0,0.738,0.0906 -1,0.427,0.427,0,0,0,0.283,0,0.649,0.0963,0,0,0.205 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.0503 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.734 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.214 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.171 -0.667,0.251,0.251,0,0.667,0,0,0.281,0.637,0.148,0.44,0,0.171 -1,0.829,0.829,0,0.317,0,0,0,0.772,0.578,0.737,0,0.514 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.272,0,0.0428 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.171 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.771 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.358 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.312 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.282 -0.667,0.453,0.453,0,0,0.638,0,0.14,0.712,0.28,0,0.0225,0.388 -0.667,0.569,0.569,0,0,0.255,0.683,0.14,0.702,0.39,0,0,0.0601 -1,0.905,0.905,0,0,0,0.267,0,0.741,0.713,0,0,0.313 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0857 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.51 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.125 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.19 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.193 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.611 -0.333,0.17,0.17,0.217,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0.783,0,0,0,0.281,0.591,0.0577,0,0,0.0918 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.0857 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.115 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.438 -0.667,0.294,0.294,0,0.417,0,0,0.14,0.671,0.172,0.452,0,0.111 -0.667,0.35,0.35,0,0.317,0,0,0.14,0.702,0.21,0.61,0,0.315 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0.141,0,0.116 -1,0.829,0.829,0,0.733,0,0,0,0.772,0.578,0.626,0,0.128 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.351 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.132 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0.283,0,0,0,0.281,0.56,0.0152,0,0,0.145 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.246 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.324 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.264 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.1 -0.333,0.17,0.17,0.217,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0.283,0,0,0,0.281,0.591,0.0577,0,0,0.086 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.162,0.162,0.25,0,0,0,0.281,0.601,0.0774,0,0,0.385 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.0857 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.128 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.128 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.269 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.171 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.257 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.234 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.17,0.17,0.0333,0,0,0,0.281,0.591,0.0855,0,0,0.0857 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.343 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.0857 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.0428 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.257 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.3 -1,0.905,0.905,0,0,0.596,0.167,0,0.741,0.763,0,0.444,0.0428 -1,0.821,0.821,0,0,0,0.533,0,0.679,0.704,0,0.558,0.0962 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0.796,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.481,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0.281,0.1 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.214 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.128 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.0428 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.0857 -0.333,0.0495,0.0495,0.75,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.0857 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.306 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.282 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.0857 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.128 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.212 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.136 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0882 -0.667,0.271,0.271,0,0,0.596,0,0.14,0.62,0.105,0,0.138,0.102 -0.333,0.159,0.159,0,0,0,0.917,0.281,0.591,0.0669,0,0.781,0 -0.333,0.159,0.159,0,0,0,0.267,0.281,0.591,0.0702,0,0.736,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.473,0.0857 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.505,0.0428 -0.333,0.2,0.2,0,0.733,0,0,0.281,0.632,0.113,0.75,0.182,0.257 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.508,0,0.171 -1,0.829,0.829,0,0,0.596,0,0,0.772,0.578,0.121,0.373,0.214 -1,0.905,0.905,0,0,0,0.233,0,0.741,0.713,0,0.0691,0.535 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.0428 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.0333,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.104 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.102 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.509 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0.917,0,0,0.281,0.591,0.0577,0.645,0,0.171 -0.333,0.16,0.16,0,0.0667,0,0,0.281,0.591,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0428 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0857 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0428 -0.667,0.35,0.35,0.25,0,0,0,0.14,0.702,0.21,0,0,0.0428 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.0857 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.128 -1,0.905,0.905,0,0,0.298,0.4,0,0.741,0.713,0,0.449,0.476 -1,0.821,0.821,0,0,0,0.0667,0,0.679,0.676,0,0.902,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.449,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.301 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0503 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.236,0.236,0.75,0,0,0,0.14,0.578,0.0433,0,0,0.128 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0428 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0428 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.343 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0.967,0,0.319,0,0.421,0.562,0.0159,0,0.0932,0.0857 -0.667,0.294,0.294,0.0333,0,0.574,0.433,0.14,0.671,0.172,0,0.143,0.128 -0.667,0.35,0.35,0,0,0,0.267,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.363 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.19 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.335 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.331 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.15 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0428 -0.333,0.174,0.174,0.217,0,0,0,0.281,0.591,0.0486,0,0,0.0857 -0.333,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0,0,0.171 -0.333,0.164,0.164,0.533,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0.596,0.417,0.281,0.591,0.0604,0,0.635,0 -0.333,0.159,0.159,0,0,0,0.283,0.281,0.591,0.0669,0,0.416,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.151,0.128 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.243 -0.333,0.251,0.251,0,0.417,0,0,0.281,0.637,0.148,0.365,0,0.3 -1,0.829,0.829,0,0.317,0,0,0,0.772,0.578,0.518,0,0.3 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.282,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.128 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.295 -1,0.33,0.33,0.0333,0,0,0,0,0.587,0.057,0,0,0.121 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0515 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.271 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.128 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.341 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.214 -0.333,0.159,0.159,0.217,0,0,0,0.281,0.591,0.0702,0,0,0 -1,0.274,0.274,0.0333,0,0,0,0.14,0.64,0.139,0,0,0.214 -1,0.417,0.417,0.5,0,0,0,0,0.726,0.25,0,0,0.276 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.0857 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.171 -1,0.829,0.829,0,0.917,0,0,0,0.772,0.578,0.504,0,0.128 -1,0.905,0.905,0,0.0667,0,0,0,0.741,0.713,0.769,0,0.499 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.457,0,0.075 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.586,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.71,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.177 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.333,0.17,0.17,0.783,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.128 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.171 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.343 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.128 -1,0.655,0.655,0.217,0,0.319,0,0,0.788,0.493,0,0.243,0.0857 -1,0.829,0.829,0.283,0,0.574,0.433,0,0.772,0.649,0,0.797,0.128 -1,0.905,0.905,0,0,0,0.0333,0,0.741,0.763,0,0.805,0.128 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.477,0.214 -1,0.51,0.51,0.717,0,0,0,0,0.618,0.444,0,0.13,0.0428 -1,0.249,0.249,0.533,0,0,0,0,0.571,0.202,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0205,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.172,0.172,0,0.417,0,0,0.281,0.585,0.0403,0.447,0,0 -0.667,0.301,0.301,0,0.317,0,0,0.14,0.62,0.0991,0.297,0,0.343 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.128 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.3 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.0428 -0.667,0.269,0.269,0,0,0.596,0.167,0.14,0.62,0.21,0,0.722,0.0428 -1,0.379,0.379,0,0,0,0.0667,0,0.649,0.35,0,0.608,0.214 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.128 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -0,0.0495,0.0495,0,0,0.894,0.183,0.421,0.562,0.0181,0,0.428,0.128 -0.333,0.335,0.335,0,0,0,0.05,0.281,0.621,0.266,0,0.19,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0691 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0605 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.163 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.181 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.642 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0857 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.128 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.358 -1,0.501,0.501,0.217,0,0,0,0,0.772,0.307,0,0,0.128 -1,0.655,0.655,1,0.917,0,0,0,0.788,0.413,0.63,0,0.128 -1,0.829,0.829,0.283,0.0667,0,0,0,0.772,0.578,0.537,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.496,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0428 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.161 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0938 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.3 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.171 -0.333,0.16,0.16,0.5,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0857 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0857 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.171 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0.467,0,0,0,0.281,0.632,0.113,0,0,0.0428 -0.667,0.453,0.453,0.0333,0,0,0,0.14,0.712,0.28,0,0,0.212 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.276 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0428 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0887 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.153 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.194 -0.333,0.0495,0.0495,0.217,0.667,0,0,0.421,0.562,0.0159,0.396,0,0.0856 -0.333,0.175,0.175,0.533,0.0667,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.514 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -1,0.501,0.501,0.717,0.167,0,0,0,0.772,0.307,0.268,0,0.0558 -1,0.655,0.655,0.533,0.567,0,0,0,0.788,0.413,0.246,0,0.0428 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.171 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.343 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.0857 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.319,0,0.421,0.562,0.0159,0,0.273,0 -1,0.0798,0.0798,0,0,0.574,0.433,0.281,0.56,0.0224,0,0.648,0.0818 -1,0.236,0.236,0,0,0,0.267,0.14,0.578,0.0433,0,0.5,0.108 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.593,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.519,0.128 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.441,0.0428 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0663 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.135 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.332 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.085 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0857 -0.667,0.294,0.294,0.467,0,0,0,0.14,0.671,0.172,0,0,0.128 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.0857 -1,0.655,0.655,0.283,0,0,0,0,0.788,0.413,0,0,0.428 -1,0.829,0.829,0,0,0.894,0,0,0.772,0.578,0,0.441,0.257 -1,0.62,0.62,0,0,0,0.7,0.14,0.681,0.481,0,0.519,0.343 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0.412,0.313 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.32,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0.467,0,0,0,0.281,0.57,0.0296,0,0,0.135 -1,0.417,0.417,0.283,0,0,0,0,0.633,0.0786,0,0,0.173 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.257 -1,0.417,0.417,0.217,0,0,0,0,0.726,0.25,0,0,0.343 -0.667,0.35,0.35,0.283,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.3 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.385 -1,0.905,0.905,0,0.167,0,0,0,0.741,0.713,0.334,0,0.3 -1,0.821,0.821,0,0.567,0,0,0,0.679,0.676,0.56,0,0.309 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0.243,0,0.0857 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.259 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.286 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.32 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.154 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.337 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.214 -0,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0181,0,0,0.171 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.171 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.501,0.501,0,0,0.298,0.233,0,0.772,0.419,0,0.367,0.0428 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0.662,0.0857 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0.148,0.128 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.128 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.214 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.056 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.177 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.0857 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.0815 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.0956 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -1,0.269,0.269,0,0,0.298,0.4,0.14,0.62,0.239,0,0.268,0.0857 -1,0.387,0.387,0,0,0,0.0667,0,0.679,0.385,0,0.587,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0.315,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0.537,0.0857 -1,0.655,0.655,0,0.667,0,0,0,0.788,0.493,0.36,0,0.0428 -1,0.829,0.829,0,0.317,0.596,0.167,0,0.772,0.649,0,0.477,0.0857 -1,0.905,0.905,0,0,0,0.533,0,0.741,0.763,0,0.412,0.171 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.561,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.825,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.347,0.214 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0563 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.0596 -0.667,0.143,0.143,0.25,0,0,0,0.281,0.57,0.0296,0,0,0.139 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0428 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.192 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.0958 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.0857 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.0857 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0428 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.325 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.321 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.198 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.172 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.438 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.0285 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0458 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.312 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.128 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.176 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.21 -0.333,0.162,0.162,0.467,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0.283,0,0.298,0.4,0.14,0.671,0.172,0,0.476,0 -0.667,0.35,0.35,0,0,0,0.3,0.14,0.702,0.21,0,0.601,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0857 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.599 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.334 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.408 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.183 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0.667,0,0,0.281,0.57,0.0296,0.63,0,0 -0.667,0.172,0.172,0,0.0667,0,0,0.281,0.585,0.0368,0.11,0,0 -0.333,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,0.783,0,0,0,0.281,0.591,0.0486,0,0,0.171 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.128 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0428 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.257 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.128 -1,0.655,0.655,0,0.167,0,0,0,0.788,0.413,0.289,0,0.214 -0.667,0.569,0.569,0,0.567,0,0,0.14,0.702,0.39,0.241,0,0.171 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.128 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.128 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.271 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0634 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.316 -1,0.318,0.318,0,0,0.787,0,0.14,0.618,0.069,0,0.416,0.133 -1,0.456,0.456,0,0,0.106,0.8,0,0.647,0.113,0,0.85,0.362 -0.667,0.312,0.312,0,0,0,0.233,0.14,0.618,0.0898,0,0.523,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.522 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0568 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.0428 -0.667,0.647,0.647,0.0833,0,0,0,0.14,0.711,0.278,0,0,0.128 -1,0.919,0.919,0.733,0,0,0,0,0.77,0.573,0,0,0.3 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.425 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.128 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.298,0.25,0.421,0.562,0.0159,0,0.473,0.167 -1,0.433,0.433,0.833,0,0,0,0,0.631,0.078,0,0,0.171 -0.667,0.318,0.318,0.533,0,0,0,0.14,0.618,0.069,0,0,0.207 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.135 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.113 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.126 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.1 -0.667,0.289,0.289,0.267,0,0,0,0.14,0.618,0.117,0,0,0.0889 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.0428 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.257 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.214 -0.667,0.647,0.647,0,0.533,0,0,0.14,0.711,0.278,0.533,0,0.403 -1,0.919,0.919,0,0.783,0,0,0,0.77,0.573,0.504,0,0.161 -1,0.747,0.747,0,0.25,0,0,0,0.739,0.708,0.521,0,0.113 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.213 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.312 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.0428 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.214 -0.667,0.175,0.175,0.217,0,0,0,0.281,0.59,0.092,0,0,0.248 -0.667,0.292,0.292,0.05,0,0,0,0.14,0.618,0.178,0,0,0.214 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.223 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.0428 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.0857 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.171 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.0428 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.171 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.0428 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.321,0.321,0.217,0,0.596,0.167,0.14,0.618,0.128,0,0.391,0 -0.667,0.312,0.312,0.6,0,0,0.0833,0.14,0.618,0.152,0,0.256,0 -0.667,0.3,0.3,0,0,0.298,0.65,0.14,0.618,0.166,0,0.375,0 -0.667,0.292,0.292,0,0,0,0.117,0.14,0.618,0.178,0,0.524,0.0428 -0.667,0.289,0.289,0.533,0,0,0,0.14,0.618,0.209,0,0.0932,0.0428 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.0346 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.0857 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.171 -0.667,0.647,0.647,0,0.167,0,0,0.14,0.711,0.332,0.287,0,0.26 -0.667,0.629,0.629,0.217,0.617,0,0,0.14,0.7,0.435,0.385,0,0.187 -0.667,0.515,0.515,1,0,0,0,0.14,0.68,0.51,0,0,0.0857 -1,0.566,0.566,0.15,0,0,0,0,0.677,0.698,0,0,0.277 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.291 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.101 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.076 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0.298,0.267,0.281,0.559,0.0223,0,0.379,0.171 -1,0.245,0.245,0.267,0,0,0.767,0.14,0.577,0.043,0,0.768,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0534 -0.667,0.184,0.184,0.267,0,0,0,0.281,0.59,0.0424,0,0,0.354 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.192 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.245 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.369 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.194,0.194,0,0,0.149,0,0.281,0.6,0.0769,0,0.0225,0.0813 -0.333,0.237,0.237,0.817,0,0.745,0.3,0.281,0.616,0.0931,0,0,0.43 -1,0.804,0.804,0,0.533,0,0.217,0,0.77,0.304,0.396,0,0.121 -1,0.946,0.946,0,0.25,0,0,0,0.785,0.409,0.177,0,0.0857 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.096 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0857 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.214 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0985 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.141 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.187 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.26 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.0965 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.257 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.177 -0.333,0.175,0.175,0.817,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0428 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.3 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.128 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.0857 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.0428 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.214 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0428 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.137 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.252 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0849 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.145 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.184,0.184,0,0.0333,0,0,0.281,0.59,0.0424,0.115,0,0 -0.333,0.185,0.185,0,0.75,0,0,0.281,0.59,0.0483,0.718,0,0.071 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0701 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.214 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.343 -0.333,0.194,0.194,0.333,0,0,0,0.281,0.6,0.0769,0,0,0.0857 -0.667,0.425,0.425,0.2,0.0333,0,0,0.14,0.67,0.17,0.11,0,0 -0.667,0.553,0.553,0,0.75,0,0,0.14,0.7,0.208,0.643,0,0.0857 -0.667,0.647,0.647,0,0.283,0,0,0.14,0.711,0.278,0.312,0,0.347 -1,0.919,0.919,0,0.5,0,0,0,0.77,0.573,0.608,0,0.478 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.55 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.257 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.0974 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.154 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.041 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.146 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0858 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0.267,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0,0,0.298,0.0167,0.421,0.562,0.0159,0,0.236,0.0428 -0.333,0.169,0.169,0,0,0,0.75,0.281,0.59,0.0665,0,0.666,0.0857 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.465,0.128 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.375,0 -0.333,0.237,0.237,0.833,0,0,0,0.281,0.616,0.0931,0,0.682,0.0428 -0.667,0.553,0.553,0.25,0,0,0,0.14,0.7,0.208,0,0.527,0.171 -1,0.946,0.946,0,0.283,0,0,0,0.785,0.409,0.212,0.301,0.171 -1,0.919,0.919,0,0.5,0,0,0,0.77,0.573,0.407,0.0595,0.0857 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.3 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.274 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.333,0.283,0,0,0.421,0.562,0.0159,0.244,0,0 -0.667,0.184,0.184,1,0.5,0,0,0.281,0.59,0.0424,0.275,0,0.257 -0.667,0.185,0.185,1,0,0,0,0.281,0.59,0.0483,0,0,0.0857 -0.667,0.312,0.312,0.133,0,0,0,0.14,0.618,0.0898,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0857 -0,0.0495,0.0495,0.333,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.169,0.169,0.2,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0428 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.171 -0.667,0.237,0.237,0.583,0,0,0,0.281,0.616,0.0931,0,0,0.317 -0.667,0.553,0.553,0.233,0.533,0,0,0.14,0.7,0.208,0.353,0,0.128 -1,0.946,0.946,0,0.25,0,0,0,0.785,0.409,0.117,0,0.343 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0428 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.172 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.269 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.48 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.208 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.0717 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.0648 -0.333,0.185,0.185,0.717,0,0,0,0.281,0.59,0.0732,0,0,0.444 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.343 -0.333,0.175,0.175,0.2,0,0.596,0.417,0.281,0.59,0.092,0,0.518,0.0428 -0.667,0.292,0.292,0,0,0,0.617,0.14,0.618,0.178,0,0.455,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.54,0.128 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0.4,0.0428 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.171 -0.667,0.237,0.237,0.717,0,0,0,0.281,0.616,0.146,0,0,0.128 -1,0.553,0.553,0.1,0,0,0,0.14,0.7,0.283,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.171 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.128 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.0857 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.0857 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.257 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.187 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.0857 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.41 -0.667,0.338,0.338,0,0.167,0,0,0.14,0.639,0.261,0.343,0,0.131 -0.667,0.425,0.425,0,0.617,0,0,0.14,0.67,0.274,0.633,0,0.282 -1,0.553,0.553,0.217,0,0,0,0.14,0.7,0.283,0.351,0,0.355 -1,0.946,0.946,0.317,0,0,0,0,0.785,0.489,0,0,0.214 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.0857 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.419 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.131 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0365 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.174 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.292 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.107 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.115 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.201 -0.667,0.177,0.177,0.267,0,0,0,0.281,0.585,0.0366,0,0,0.0877 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0956 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.183 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0.283,0,0,0.14,0.618,0.0989,0.334,0,0.173 -0.667,0.292,0.292,0,0.5,0,0,0.14,0.618,0.104,0.514,0,0.461 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.0694 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0.267,0,0,0,0.281,0.6,0.0769,0,0,0.0857 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.3 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.171 -0.667,0.647,0.647,0,0.783,0,0,0.14,0.711,0.278,0.722,0,0.0857 -1,0.919,0.919,0,0.267,0,0,0,0.77,0.573,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.128 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0.533,0,0.298,0.0167,0.14,0.577,0.043,0,0.0981,0 -1,0.433,0.433,0,0,0,0.233,0,0.631,0.078,0,0.695,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0937 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.295 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.128 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.128 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0428 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0428 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0.333,0,0,0,0.281,0.616,0.0931,0,0,0.0857 -1,0.804,0.804,0.2,0,0,0,0,0.77,0.304,0,0,0.218 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.413 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0428 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.181 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.27 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0141 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0912 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.13 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0.333,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0.483,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.343 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0629 -0.667,0.338,0.338,0.817,0,0,0,0.14,0.639,0.138,0,0,0.0428 -1,0.612,0.612,0.833,0,0,0,0,0.724,0.248,0,0,0.0428 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0.633,0,0,0,0,0.785,0.409,0,0,0.0857 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.274 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.244 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.277 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.263 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0799 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0.533,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0428 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.0857 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.257 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.214 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.106 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.214 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.128 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.333,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0.2,0,0,0,0.281,0.559,0.0223,0,0,0.0928 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.26 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.0908 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.113 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.214 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0.267,0,0,0,0.281,0.616,0.0931,0,0,0.128 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.0857 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.113 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.128 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.214 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0857 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.491 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.6,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.176 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.106 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.205 -1,0.3,0.3,0.533,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.128 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.171 -1,0.421,0.421,0,0.667,0,0,0,0.647,0.347,0.436,0,0 -1,0.482,0.482,0,0.117,0,0,0,0.677,0.382,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.0428 -1,0.804,0.804,0,0.167,0,0,0,0.77,0.415,0.26,0,0.214 -1,0.946,0.946,0,0.617,0,0,0,0.785,0.489,0.608,0,0.257 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0.497,0,0.0428 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0.321,0,0.0857 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.0857 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0.0428 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.162 -1,0.177,0.177,0.267,0,0,0,0.281,0.585,0.04,0,0,0.0741 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.171 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.0428 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.0857 -0.333,0.169,0.169,0.267,0,0,0,0.281,0.59,0.113,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.382,0,0,0.0857 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.0857 -1,0.804,0.804,0,0.417,0,0,0,0.77,0.415,0.606,0,0.257 -1,0.946,0.946,0,0.633,0,0,0,0.785,0.489,0.105,0,0.171 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.385 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.428 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.171 -1,0.493,0.493,0,0.917,0,0,0,0.616,0.441,0.603,0,0 -1,0.116,0.116,0,0.133,0,0,0.281,0.564,0.079,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.342,0.342,0,0,0,0,0,0.585,0.0565,0,0,0.41 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.155 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0428 -0.333,0.175,0.175,0.333,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0.2,0,0,0,0.281,0.59,0.06,0,0,0.0428 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.128 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.354 -0.667,0.425,0.425,0.333,0,0,0,0.14,0.67,0.17,0,0,0.189 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.403 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.477 -1,0.919,0.919,0.683,0,0,0,0,0.77,0.573,0,0,0.3 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0857 -0.667,0.394,0.394,0,0,0.468,0,0.14,0.639,0.452,0,0.0514,0.0584 -0.667,0.345,0.345,0,0,0.128,0.783,0.14,0.598,0.276,0,0.0981,0.124 -0.667,0.116,0.116,0,0,0,0.25,0.281,0.564,0.0691,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0428 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0.0833,0,0,0,0.281,0.559,0.0223,0,0,0.0822 -1,0.245,0.245,0.45,0,0,0,0.14,0.577,0.043,0,0,0.205 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.162 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.304 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.194,0.194,0,0,0.596,0.0333,0.281,0.6,0.0769,0,0.717,0 -0.667,0.425,0.425,0,0,0,0.483,0.14,0.67,0.17,0,0.532,0.211 -0.667,0.553,0.553,0.333,0,0,0,0.14,0.7,0.208,0,0.037,0.147 -1,0.946,0.946,0.2,0,0,0,0,0.785,0.409,0,0,0.302 -1,0.919,0.919,0,0,0.149,0,0,0.77,0.573,0,0.106,0 -1,0.747,0.747,0,0,0.149,0.767,0,0.739,0.708,0,0.529,0.4 -1,0.566,0.566,0,0,0,0.267,0,0.677,0.671,0,0.521,0.3 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.682,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.441,0.3 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0.159,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0498 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.163 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0858 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0428 -0.333,0.185,0.185,0,0.783,0,0,0.281,0.59,0.0483,0.642,0,0.171 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.329 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0951 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.315 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.257 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.135 -0.333,0.301,0.301,0.533,0,0,0,0.281,0.631,0.112,0,0,0.0988 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.257 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.214 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0428 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.169,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.127 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.1 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.129 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.247 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.385 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.128 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.297 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0857 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.214 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.614 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.0646 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.181 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.0428 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0428 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0918 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.161 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.104 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.173 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.133 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0658 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.252 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.555 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.312 -0.667,0.647,0.647,0.267,0.0333,0,0,0.14,0.711,0.278,0.241,0,0.3 -0.667,0.629,0.629,0,0.75,0,0,0.14,0.7,0.387,0.355,0,0.428 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.482 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.257 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.356 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.145 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.083 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.146 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.176 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.0794 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.0857 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.171 -0.667,0.237,0.237,0.717,0,0,0,0.281,0.616,0.146,0,0,0.343 -1,0.804,0.804,0.65,0.417,0,0,0,0.77,0.415,0.396,0,0.171 -1,0.946,0.946,0,0.367,0,0,0,0.785,0.489,0.404,0,0.0428 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.0428 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.0428 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.0857 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.0691 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.161 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.0656 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.185,0.185,0,0,0.319,0,0.281,0.59,0.0732,0,0.116,0 -0.667,0.312,0.312,0,0,0.574,0.25,0.14,0.618,0.152,0,0.773,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.543,0.0428 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.0428 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.0428 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.0428 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.0942 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.233 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.272 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.0428 -0.667,0.629,0.629,0.533,0,0,0,0.14,0.7,0.435,0,0,0.171 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.405 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.385 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.0857 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0968 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.101 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.293 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0857 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0428 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.173,0.173,0.583,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.0458 -1,0.804,0.804,0.15,0,0,0,0,0.77,0.304,0,0,0.341 -0.667,0.647,0.647,0.533,0,0,0,0.14,0.711,0.278,0,0,0.0428 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0857 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.219 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.409 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.155 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0486 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.101 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0.533,0,0,0.281,0.585,0.0366,0.412,0,0 -0.333,0.184,0.184,0,0.517,0,0,0.281,0.59,0.0424,0.452,0,0 -0.333,0.185,0.185,0,0.533,0,0,0.281,0.59,0.0483,0.319,0,0.0857 -0.333,0.181,0.181,0,0.517,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0857 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.171 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0428 -0.333,0.237,0.237,0,0.533,0,0,0.281,0.616,0.0931,0.548,0,0.0857 -0.333,0.301,0.301,0,0.517,0,0,0.281,0.631,0.112,0.497,0,0.224 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.462 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.309 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.24 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0381 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.154 -1,0.342,0.342,0,0,0.596,0.0333,0,0.585,0.0565,0,0.371,0.107 -1,0.433,0.433,0,0,0,0.733,0,0.631,0.078,0,0.645,0.189 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.596,0.471 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.916,0.0857 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.646,0.0428 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0.209,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0428 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.171 -0.333,0.194,0.194,0,0.0333,0,0,0.281,0.6,0.0769,0.117,0,0 -0.333,0.237,0.237,0.267,1,0,0,0.281,0.616,0.0931,0.414,0,0.257 -0.667,0.553,0.553,0,0.0167,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0.0333,0,0,0.14,0.711,0.278,0.0968,0,0.0983 -0.667,0.629,0.629,0,1,0,0,0.14,0.7,0.387,0.504,0,0.128 -1,0.747,0.747,0,0.0167,0,0,0,0.739,0.708,0.705,0,0.171 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0857 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0.333,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0.483,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.343 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.128 -0.667,0.553,0.553,0.833,0,0,0,0.14,0.7,0.208,0,0,0.343 -1,0.946,0.946,1,0.0333,0,0,0,0.785,0.409,0.112,0,0 -1,0.919,0.919,1,0.75,0,0,0,0.77,0.573,0.54,0,0 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0.574,0,0.0857 -1,0.566,0.566,0.283,0,0,0,0,0.677,0.671,0,0,0.159 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0758 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0467 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.171 -0.333,0.181,0.181,0,0.783,0,0,0.281,0.59,0.0528,0.537,0,0 -0.333,0.175,0.175,0,0.267,0,0,0.281,0.59,0.0574,0,0,0.246 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.0428 -0.667,0.425,0.425,0.333,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.804,0.804,0.2,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.128 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0857 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.128 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.181 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.253 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.366 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.201 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.0677 -0.333,0.183,0.183,0.267,0,0,0,0.281,0.647,0.118,0,0,0.171 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0428 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0428 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.0857 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.3 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.128 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.128 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.0428 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.128 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.0857 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.128 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0.0428 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0438,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.0857 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.343 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.0428 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.269 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.133 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.193 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.138 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.194 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.207 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.0428 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.128 -1,0.342,0.342,0.217,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0.9,0,0,0,0.14,0.667,0.183,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.322 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.132 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.129 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0753 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.333,0.323,0.323,0.967,0,0,0,0.281,0.699,0.145,0,0,0.402 -1,1,1,0.15,0,0,0,0,0.993,0.541,0,0,0.119 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.218 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.128 -0.667,0.386,0.386,0.55,0,0,0,0.14,0.758,0.596,0,0,0.128 -1,0.196,0.196,0,0.667,0,0,0.281,0.634,0.189,0.428,0,0.428 -1,0.116,0.116,0,0.15,0,0,0.281,0.614,0.0879,0.525,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0.301,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.117 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0.217,0,0,0,0.281,0.64,0.0449,0,0,0.0428 -0.667,0.33,0.33,0.05,0,0,0,0.14,0.732,0.0895,0,0,0.128 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.128 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0.267,0,0,0,0.281,0.647,0.0759,0,0,0.128 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.171 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0428 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0857 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0428 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0.417,0,0,0.14,0.849,0.366,0.45,0,0.331 -0.667,0.638,0.638,0,0.667,0,0,0.14,0.836,0.51,0.577,0,0.214 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.433,0,0.0428 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0857 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.337 -0.667,0.181,0.181,0,0.667,0,0,0.281,0.64,0.0449,0.365,0,0.0428 -0.667,0.19,0.19,0,0.15,0,0,0.281,0.647,0.0527,0,0,0.0922 -0.667,0.337,0.337,0.55,0,0,0,0.14,0.732,0.105,0,0,0.463 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.3 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.128 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0.417,0,0,0.281,0.66,0.0982,0.329,0,0 -0.667,0.457,0.457,0.217,0.667,0,0,0.14,0.797,0.224,0.521,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.0428 -0.667,0.683,0.683,0.183,0,0,0,0.14,0.849,0.366,0,0,0.0428 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0428 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.332 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.225 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.402 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.339 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.0725 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.262 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.232 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.393 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.194 -0.667,0.307,0.307,0.217,0,0,0,0.14,0.732,0.136,0,0,0.298 -0.333,0.177,0.177,0.05,0,0,0,0.281,0.647,0.0845,0,0,0.3 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.171 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.128 -0.667,0.596,0.596,0,0.417,0,0,0.14,0.836,0.273,0.414,0,0.343 -0.667,0.683,0.683,0,0.667,0,0,0.14,0.849,0.366,0.323,0,0.214 -0.667,0.638,0.638,0,0,0.936,0,0.14,0.836,0.51,0,0.404,0 -0.667,0.504,0.504,0,0,0,0.9,0.14,0.81,0.629,0,0.116,0.171 -1,0.554,0.554,0,0,0,0.2,0,0.857,0.887,0,0,0.171 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.356 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.139 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0799 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0975 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.103 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.131 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.192 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.218 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.121 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.313 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.246 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.209 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.62 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.728 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.438 -1,0.732,0.732,0,0,0.298,0.65,0,0.934,0.936,0,0.293,0.0857 -1,0.386,0.386,0,0,0,0.45,0.14,0.758,0.596,0,0.669,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.165 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.193,0.193,0,0,0.617,0,0.281,0.647,0.0928,0,0.407,0 -1,0.189,0.189,0,0,0,0.9,0.281,0.647,0.108,0,0,0.0857 -1,0.449,0.449,0.967,0,0,0.2,0,0.818,0.317,0,0,0.549 -1,0.436,0.436,1,0,0,0,0,0.818,0.34,0,0,0.211 -1,0.432,0.432,0.283,0,0,0,0,0.818,0.402,0,0,0.128 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.345 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.333,0.323,0.323,0.217,0,0,0,0.281,0.699,0.195,0,0,0.128 -0.333,0.366,0.366,0.333,0,0,0,0.281,0.705,0.228,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.257 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.0428 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.514 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.201 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.584 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.117 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.139 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.149 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.135 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.539 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.0857 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.41 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.289 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.0739 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.172 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.297 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.503 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.386 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.339 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.0428 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.0913 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.102 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.128 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0765 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.442 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.161 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.3 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.303 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.323 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.444 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.304 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.111 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.327 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.103 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.214 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.128 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0857 -0.667,0.457,0.457,0.217,0,0,0,0.14,0.797,0.224,0,0,0.189 -1,0.869,0.869,0.617,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,0.717,0,0,0,0,0.993,0.541,0,0,0.0428 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.214 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.257 -1,0.554,0.554,1,0,0,0,0,0.857,0.887,0,0,0.0428 -1,0.342,0.342,0.233,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.351,0.351,0.217,0,0,0,0,0.74,0.0747,0,0,0.472 -1,0.444,0.444,0.05,0,0,0,0,0.798,0.103,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0.617,0.4,0.14,0.732,0.105,0,0.584,0.0857 -0.333,0.189,0.189,0,0,0,0.15,0.281,0.647,0.0664,0,0.232,0.171 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0428 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.186 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.299 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.406 -1,0.933,0.933,0,0,0.638,0,0,0.973,0.758,0,0.468,0.0428 -1,0.732,0.732,0,0,0.298,0.267,0,0.934,0.936,0,0.243,0.0857 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0.445,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.088 -0.333,0.0495,0.0495,0,0.417,0,0,0.421,0.562,0.0159,0.638,0,0 -0.333,0.181,0.181,0.717,0.4,0,0,0.281,0.64,0.0449,0.261,0,0 -0.333,0.19,0.19,0.683,0,0,0,0.281,0.647,0.0527,0,0,0.0428 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0428 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0428 -0.333,0.178,0.178,0.717,0,0,0,0.281,0.647,0.0759,0,0,0.3 -0.333,0.177,0.177,0.117,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.171 -0.667,0.457,0.457,0,0.417,0,0,0.14,0.797,0.224,0.248,0,0 -1,0.869,0.869,0.967,0.4,0,0,0,0.973,0.402,0,0,0.171 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0.0428 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0428 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.257 -0.667,0.386,0.386,0,0,0.936,0,0.14,0.758,0.596,0,0.33,0.171 -1,0.342,0.342,0,0,0,0.9,0.14,0.706,0.363,0,0.408,0.0857 -1,0.183,0.183,0,0,0,0.483,0.14,0.667,0.16,0,0.434,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.449,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0.722,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0.162,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.146 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0801 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.214 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0428 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.128 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.3 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0428 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.101 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.171 -0.667,0.457,0.457,0.55,0,0,0,0.14,0.797,0.224,0,0,0.128 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.214 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.128 -1,0.933,0.933,0.267,0.817,0,0,0,0.973,0.758,0.75,0,0.428 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.173,0,0.214 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0987 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.177 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.0958 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0857 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.0428 -0.667,0.177,0.177,0.267,0,0,0,0.281,0.647,0.0845,0,0,0.171 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0428 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0428 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.171 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.128 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.0877 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.222 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.273 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.235 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0857 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.0857 -1,0.446,0.446,0,0.417,0,0,0,0.818,0.459,0.37,0,0.0428 -1,0.513,0.513,0,0.4,0,0,0,0.857,0.505,0.626,0,0.0428 -1,0.661,0.661,0.967,0,0,0,0,0.915,0.531,0.121,0,0.0857 -1,0.869,0.869,0.15,0,0,0,0,0.973,0.549,0,0,0.19 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.209 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.454 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.0857 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.279 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.329 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.104 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.343 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0.217,0,0,0,0.281,0.647,0.0731,0,0,0.16 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.169 -1,0.468,0.468,0.183,0,0,0,0,0.818,0.289,0,0,0.208 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.0263 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.217 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.177 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.182 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0.0857 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.185 -0.667,0.683,0.683,0,0,0.936,0.15,0.14,0.849,0.437,0,0.754,0.281 -0.667,0.638,0.638,0.467,0,0,0.117,0.14,0.836,0.573,0,0,0.257 -0.667,0.504,0.504,0.0833,0.817,0.638,0,0.14,0.81,0.673,0.401,0.212,0.257 -1,0.554,0.554,0,0,0.298,0.65,0,0.857,0.923,0,0.741,0.0428 -1,0.342,0.342,0,0,0,0.167,0.14,0.706,0.394,0,0.33,0.257 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0.108,0.443 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.278 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.126 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.0629 -0.667,0.313,0.313,0.55,0,0,0,0.14,0.719,0.074,0,0,0.257 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.11 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.588 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.472 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0857 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0428 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.596,0.596,0.967,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0.667,0,0,0.14,0.849,0.366,0.57,0,0.0857 -0.667,0.638,0.638,0.85,0.417,0,0,0.14,0.836,0.51,0,0,0.193 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.313 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0857 -1,0.196,0.196,0.217,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0.05,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.066 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.155 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.14 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.0857 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.128 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.171 -0.667,0.457,0.457,0.217,0,0,0,0.14,0.797,0.224,0,0,0.428 -1,0.869,0.869,0.617,0,0.298,0.4,0,0.973,0.402,0,0.362,0.248 -0.667,0.683,0.683,0,0,0,0.15,0.14,0.849,0.366,0,0.643,0.366 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.323,0.374 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.124 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.0428 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,0.617,0,0,0,0.14,0.68,0.0551,0,0,0.179 -1,0.444,0.444,0,0.417,0,0,0,0.798,0.103,0.411,0,0.103 -1,0.47,0.47,0,0.4,0.617,0,0,0.818,0.126,0.321,0.463,0.324 -1,0.481,0.481,0,0,0,0.9,0,0.818,0.149,0,0.447,0.111 -1,0.468,0.468,0,0,0,0.2,0,0.818,0.168,0,0.82,0.173 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.595,0.0857 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.257 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.257 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0,0.0857 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0.0857 -1,0.661,0.661,0,0.817,0,0,0,0.915,0.327,0.688,0,0.0857 -0.667,0.596,0.596,0.267,0,0,0,0.14,0.836,0.273,0.219,0,0.128 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.128 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.171 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.128 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.171 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.259 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.11 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.361 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0569 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0428 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.128 -0.333,0.0495,0.0495,0,0,0.617,0.4,0.421,0.562,0.0159,0,0.64,0 -0.333,0.182,0.182,0,0,0,0.15,0.281,0.647,0.0888,0,0.707,0.0428 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.196,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0428 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.0428 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.128 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.343 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.6 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.235 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.0758 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0428 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.197 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0931 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0.214 -0.333,0.178,0.178,0.05,0.167,0,0,0.281,0.647,0.0759,0.26,0,0 -0.333,0.177,0.177,0,0.917,0,0,0.281,0.647,0.0845,0.102,0,0.0428 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.343 -0.667,0.596,0.596,0.217,0,0,0,0.14,0.836,0.273,0,0,0.471 -1,1,1,0.05,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.119 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.386,0.386,0.717,0,0,0,0.14,0.758,0.596,0,0,0.171 -1,0.196,0.196,0.683,0,0,0,0.281,0.634,0.189,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.31 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.13 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.313 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.161 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.27 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.0428 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0428 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.128 -0.667,0.457,0.457,0.217,0,0,0,0.14,0.797,0.36,0,0,0.214 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.514 -1,1,1,0.75,0,0,0,0,0.993,0.647,0,0,0.393 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.386 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.206 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0.467,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,0.0833,0,0,0,0.281,0.64,0.049,0,0,0.106 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.0479 -0.667,0.193,0.193,0.467,0,0,0,0.281,0.647,0.0928,0,0,0.293 -0.667,0.328,0.328,0.0833,0,0,0,0.14,0.732,0.198,0,0,0.0857 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.257 -0.667,0.314,0.314,0.717,0,0.617,0,0.14,0.732,0.312,0,0.198,0 -1,0.513,0.513,0.4,0,0,0.9,0,0.857,0.505,0,0.235,0.0857 -1,0.661,0.661,0,0,0,0.2,0,0.915,0.531,0,0,0.0428 -1,0.596,0.596,0.967,0,0,0,0.14,0.836,0.372,0,0,0.128 -1,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.128 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.214 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.128 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.0857 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.261 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.235 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.154 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.0428 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.128 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.257 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0857 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0857 -0.333,0.323,0.323,0,0,0.638,0,0.281,0.699,0.145,0,0.0788,0.302 -1,1,1,0,0,0.298,0.65,0,0.993,0.541,0,0,0.257 -1,0.933,0.933,0,0,0,0.167,0,0.973,0.758,0,0,0.516 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.0857 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0896 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.0856 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.0746 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0428 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.128 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.171 -0.667,0.178,0.178,0,0,0.936,0.15,0.281,0.647,0.0759,0,0.64,0.0857 -0.333,0.177,0.177,0,0,0,0.667,0.281,0.647,0.0845,0,0,0.0428 -0.333,0.182,0.182,0.55,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0857 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.214 -0.333,0.323,0.323,0.717,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.3 -0.667,0.638,0.638,0.533,0.167,0,0,0.14,0.836,0.51,0.324,0,0.128 -1,0.732,0.732,0.55,0.65,0,0,0,0.934,0.936,0.604,0,0.0428 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0.628,0,0.52 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.205 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.215 -1,0.251,0.251,0.55,0,0,0,0.14,0.68,0.0551,0,0,0.0546 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.15 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.435 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0857 -0.333,0.189,0.189,0.717,0,0,0,0.281,0.647,0.0664,0,0,0.205 -0.333,0.183,0.183,0.683,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.0857 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.171 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0428 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.343 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.333,0.323,0.323,0.55,0,0,0,0.281,0.699,0.145,0,0,0.455 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.214 -1,0.732,0.732,0,0,0.617,0.15,0,0.934,0.936,0,0.526,0.128 -1,0.554,0.554,0,0,0,0.95,0,0.857,0.887,0,0.289,0.171 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.239 -1,0.251,0.251,0.267,0,0,0,0.14,0.68,0.0551,0,0,0.103 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.169 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.0768 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.171 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0857 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0857 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.128 -0.333,0.177,0.177,0,0,0.617,0,0.281,0.647,0.0845,0,0.199,0 -0.333,0.182,0.182,0,0,0,0.817,0.281,0.647,0.0888,0,0.463,0.143 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.805,0.0428 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0.54,0.0857 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.315,0.128 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.337 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.181 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.102 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.509 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.291 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0.217,0,0.319,0,0.281,0.608,0.026,0,0.121,0 -1,0.251,0.251,0.333,0,0.298,0.65,0.14,0.68,0.0551,0,0.669,0.131 -1,0.444,0.444,0,0.167,0,0.167,0,0.798,0.103,0.284,0.756,0.154 -1,0.47,0.47,0,0.65,0,0,0,0.818,0.126,0.629,0.333,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0.63,0 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0.416,0.387 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.854,0.171 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.301,0.0857 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.576,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.772,0.0428 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0.471,0.0857 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.407,0.0428 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.483 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.0428 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.128 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0.0428 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.226 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.198 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0129 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0.181 -1,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0.232 -1,0.328,0.328,1,0,0,0,0.14,0.732,0.198,0,0,0.337 -1,0.316,0.316,0.417,0,0,0,0.14,0.732,0.217,0,0,0.364 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.128 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.128 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0857 -0.333,0.204,0.204,0.217,0,0,0,0.281,0.66,0.18,0,0,0.0857 -0.667,0.457,0.457,0.9,0,0.936,0,0.14,0.797,0.36,0,0.384,0.128 -1,0.869,0.869,0,0,0,0.817,0,0.973,0.549,0,0.55,0.0857 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.0857 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.0857 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.128 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.171 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0.217,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.337,0.337,0.05,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.214 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.124 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.0589 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.258 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.0428 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.3 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.0428 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.0428 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.0857 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.164 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.0428 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.214 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0918 -1,0.351,0.351,0,0.667,0,0,0,0.74,0.0747,0.555,0,0.131 -1,0.444,0.444,0.217,0.15,0,0,0,0.798,0.103,0.0883,0,0 -0.667,0.33,0.33,0.9,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.3 -0.667,0.328,0.328,0.217,0.167,0,0,0.14,0.732,0.117,0.341,0,0.0857 -0.667,0.316,0.316,0.767,0.917,0,0,0.14,0.732,0.129,0.355,0,0 -0.667,0.307,0.307,0.683,0,0,0,0.14,0.732,0.136,0,0,0.128 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.128 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.128 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0428 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0428 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.445 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.214 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.128 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0857 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0428 +occupants,plug_loads_other,plug_loads_tv,lighting_interior,hot_water_dishwasher,dishwasher,hot_water_clothes_washer,clothes_washer,clothes_dryer,cooking_range,hot_water_fixtures +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.567,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0.717,0.519 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.197 +0.667,0.719,0.074,0.316,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.197 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.236 +0.333,0.647,0.0759,0.181,0.588,0.267,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.317,0.0394 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.967,0.158 +1,0.973,0.402,0.798,0.103,0.0667,0,0,0,0,0.276 +1,0.993,0.541,0.979,0.44,0.467,0,0,0,0,0.0788 +1,0.973,0.758,0.991,0.487,0.533,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0.475,0,0,0,0,0,0.0788 +1,0.857,0.887,0.621,0.482,0,0,0,0,0,0.197 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.303 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.158 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.15 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.234 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.695 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.134 +0.333,0.647,0.0527,0.192,0.461,0.533,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.196,0.14,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0.158 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.236 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.118 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.407 +1,0.973,0.402,0.798,0,0,0,0,0,0.25,0.0203 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.236 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.153 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.408 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.691 +1,0.68,0.0551,0.253,0,0,0,0,0,0.317,0.25 +1,0.798,0.103,0.449,0,0,0,0,0,0.183,0.177 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.199 +1,0.818,0.149,0.49,0,0,0,0,0,0,0.198 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.271 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.214 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.581 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.556 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.817,0.354 +1,0.915,0.327,0.602,0,0,0,0,0,0.217,0.118 +1,0.973,0.402,0.798,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.669,0,0,0,0,0,0.567,0.192 +1,0.973,0.758,0.991,0,0,0,0,0,0.2,0.0788 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.277 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0809 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.159 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0.476 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0758 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.329 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0.231 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.25 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.118 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.236 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.315 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0.25,0.158 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.0394 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0394 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.118 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.354 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.184 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.108 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.159 +1,0.608,0.02,0.0513,0,0,0,0,0,0.317,0.396 +0.667,0.608,0.026,0.0833,0,0,0,0,0,0.45,0.389 +1,0.68,0.0551,0.253,0,0,0,0,0,0.317,0.236 +1,0.719,0.074,0.316,0,0,0,0,0,0.45,0.199 +1,0.732,0.0895,0.334,0.693,0.267,0,0,0,0,0.0944 +1,0.818,0.149,0.49,0.271,0,0,0,0,0,0.859 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.37 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.601 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.152 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.196,0.515,0.533,0,0,0,0,0 +0.667,0.797,0.224,0.418,0.476,0,0,0,0,0.25,0.118 +0.667,0.836,0.273,0.548,0.799,0.317,0,0,0,0,0.118 +1,0.993,0.541,0.979,0.729,0.217,0,0,0,0,0.374 +0.667,0.699,0.263,0.363,0.398,0.533,0,0,0,0,0.0799 +1,0.81,0.629,0.565,0.201,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.0788 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.298 +0.667,0.647,0.0731,0.192,0,0,0,0,0,0,0.303 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.107 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.195 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.142 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0788 +0.333,0.647,0.165,0.182,0,0,0,0,0,0.233,0.315 +0.333,0.66,0.18,0.196,0,0,0,0,0,0.0167,0.0788 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0394 +0.667,0.836,0.372,0.548,0,0,0,0,0,0,0.0788 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.0394 +1,0.973,0.851,0.991,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0.158 +1,0.758,0.621,0.43,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.312 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.103 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.202 +1,0.647,0.0731,0.192,0,0,0,0,0,0,0.484 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.0394 +0.333,0.647,0.108,0.192,0,0,0,0,0,0,0.0394 +0.333,0.647,0.118,0.186,0,0,0,0,0,0,0 +0.333,0.647,0.125,0.181,0,0,0,0,0,0.25,0.276 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.197 +1,0.818,0.459,0.448,0,0,0,0,0,0,0 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.433 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.0788 +1,0.973,0.549,0.798,0,0,0,0,0,0,0 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0.0788 +1,0.836,0.573,0.677,0,0,0,0,0,0,0.0394 +1,0.934,1,0.823,0,0,0,0,0,0,0.255 +1,0.857,0.923,0.621,0,0,0,0,0,0,0.019 +1,0.779,0.582,0.536,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.0985 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.567,0 +1,0.74,0.0747,0.355,0,0,0,0,0,0.533,0.0394 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.183,0.118 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.197 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.315 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.0667,0.336 +0.667,0.758,0.181,0.343,0,0,0,0,0,0.183,0.384 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0667,0.0394 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.183,0.416 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.184 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0394 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.192 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.118 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.125 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.156 +1,0.608,0.026,0.0833,0,0,0,0,0,0.317,0.283 +1,0.68,0.0551,0.253,0,0,0,0,0,0.2,0.202 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0.25,0.0788 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.158 +0.333,0.647,0.0604,0.196,0,0,0.274,0.246,0.333,0,0.276 +0.333,0.647,0.0664,0.192,0,0,0.56,0,0.2,0,0.236 +0.333,0.647,0.0724,0.186,0,0,0.382,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0,0,0.627,0,0,0,0.118 +0.333,0.647,0.0845,0.18,0,0,0.5,0,0,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0.818,0,0,0,0.118 +0.333,0.66,0.0982,0.196,0,0,0.274,0,0,0,0.158 +0.667,0.797,0.224,0.418,0,0,0.239,0,0,0,0.0788 +0.667,0.836,0.273,0.548,0,0,0.853,0,0,0,0.118 +0.667,0.849,0.366,0.669,0,0,0.595,0,0,0,0 +1,0.973,0.758,0.991,0,0,0.457,0,0,0,0.217 +1,0.934,0.936,0.823,0,0,0.454,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.278,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.119 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0199 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.394 +0.333,0.647,0.0604,0.196,0,0,0.197,0.246,0.0833,0,0.0788 +0.333,0.647,0.0664,0.192,0,0,0.454,0,1,0,0.158 +0.333,0.647,0.0724,0.186,0,0,0.494,0,1,0,0.197 +0.333,0.647,0.0759,0.181,0,0,0.537,0,0.367,0.567,0.0788 +0.667,0.732,0.153,0.311,0,0,0.508,0,0,0.2,0 +0.667,0.732,0.162,0.315,0,0,0.145,0,0,0,0.0394 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.234,0,0,0.33,0.246,0.0833,0,0.197 +0.667,0.836,0.273,0.548,0,0,0.485,0,0.183,0,0 +1,0.993,0.541,0.979,0,0,0.33,0,0,0,0.197 +0.667,0.836,0.51,0.677,0,0,0.543,0,0,0,0 +0.667,0.81,0.629,0.565,0,0,0.466,0,0,0,0 +1,0.857,0.887,0.621,0,0,0.55,0,0,0,0 +1,0.706,0.363,0.374,0,0,0.407,0,0,0,0.0394 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.153 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.309 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.21 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0.197 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.7,0.118 +0.667,0.758,0.181,0.343,0,0,0,0,0,0,0.315 +1,0.915,0.327,0.602,0,0,0,0,0,0,0.118 +1,0.973,0.402,0.798,0,0,0,0,0,0.0667,0.236 +1,0.993,0.541,0.979,0,0,0,0,0,0.183,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.517,0.671 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.349 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0,0,0.365,0.246,0.333,0,0.118 +0.333,0.679,0.12,0.234,0,0,0.417,0,0.483,0.0667,0.118 +0.333,0.699,0.145,0.299,0,0,0,0,0,0.183,0.0788 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.197 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0.25,0.12 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.235 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0.574 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.608,0.0215,0.0513,0,0,0,0,0,0,0.0948 +1,0.608,0.0241,0.0833,0,0,0,0,0,0,0.0394 +1,0.68,0.0473,0.253,0,0,0,0,0,0,0.197 +1,0.719,0.0799,0.316,0.26,0.233,0,0,0,0,0.314 +1,0.818,0.183,0.477,0.736,0.3,0,0,0,0.733,0 +0.667,0.732,0.168,0.343,0.227,0,0,0,0,0.3,0.0394 +0.667,0.732,0.198,0.334,0,0,0,0,0,0.25,0 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.197 +0.333,0.647,0.125,0.181,0,0,0,0,0,0,0 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0788 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0394 +0.667,0.758,0.343,0.343,0,0,0.239,0.246,0.267,0,0.158 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.0394 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0394 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0.118 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +0.667,0.81,0.673,0.565,0,0,0,0,0,0,0.147 +0.667,0.758,0.621,0.43,0,0,0,0,0,0,0 +0.333,0.634,0.206,0.212,0,0,0,0,0,0,0 +0.667,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.151,0,0,0,0,0,0,0.146 +0.667,0.64,0.049,0.183,0,0,0,0,0,0,0.197 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.33 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.59 +1,0.732,0.198,0.334,0,0,0,0,0,0,0.277 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.295 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.523 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.236 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.233,0.0788 +1,0.758,0.343,0.343,0,0,0,0,0,0.283,0.0394 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.276 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.236 +0.667,0.849,0.437,0.669,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.677,0,0,0,0,0,0,0 +1,0.934,1,0.823,0,0,0,0,0,0,0 +1,0.857,0.923,0.621,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.217 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.241 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.236 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0.25,0 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0.586,0.246,0.267,0,0.0788 +0.333,0.647,0.0724,0.186,0,0,0.376,0,0,0,0.118 +0.333,0.647,0.0759,0.181,0,0,0.365,0,0,0,0 +0.333,0.647,0.0845,0.18,0,0,0.229,0,0,0.25,0.0394 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.197 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.849,0.366,0.669,0.675,0.533,0,0,0,0,0.236 +0.667,0.836,0.51,0.677,0.581,0,0,0,0,0,0 +0.667,0.81,0.629,0.565,0.698,0.8,0,0,0,0,0.118 +0.667,0.66,0.306,0.24,0.419,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.236 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.315 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.276 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.299,0.403,0.533,0,0,0,0,0.248 +1,0.993,0.541,0.979,0.192,0,0,0,0,0,0 +1,0.973,0.758,0.991,0,0,0,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0788 +0.667,0.66,0.306,0.24,0,0,0,0,0,0,0 +0.667,0.634,0.189,0.212,0,0,0,0,0,0,0.0788 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.132 +0.667,0.621,0.0355,0.151,0,0,0,0,0,0,0.713 +0.667,0.719,0.074,0.316,0,0,0,0,0,0.25,0.277 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0394 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.158 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.213 +0.667,0.732,0.136,0.313,0,0,0,0,0,0,0.333 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0.396,0.533,0,0,0,0,0.251 +0.667,0.797,0.224,0.418,0.476,0,0,0,0,0,0.354 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.25,0.0394 +1,0.993,0.541,0.979,0.393,0.567,0,0,0,0,0.0788 +1,0.836,0.51,0.677,0.436,0.233,0,0,0,0,0.0788 +0.667,0.686,0.322,0.307,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.121 +1,0.64,0.0449,0.183,0,0,0,0,0,0,0.29 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.0992 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.467 +1,0.818,0.168,0.477,0,0,0,0,0,0,0.514 +0.667,0.732,0.129,0.322,0,0,0,0,0,0,0.231 +0.667,0.732,0.136,0.313,0,0,0,0,0,0.25,0.118 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.517,0.158 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.0394 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.118 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0.166 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.551 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.337 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.133 +0.333,0.647,0.0527,0.192,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0.101,0.0702,0,0,0.0394 +0.333,0.647,0.0724,0.186,0,0,0.462,0.175,0.267,0,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.236 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.158 +0.667,0.797,0.224,0.418,0,0,0,0,0,0.0667,0.182 +0.667,0.836,0.273,0.548,0,0,0,0,0,0.45,0.118 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.235 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0788 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.196 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.395 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.0774 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.119 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.382 +1,0.64,0.049,0.183,0,0,0,0,0,0.233,0.194 +1,0.732,0.128,0.334,0,0,0,0,0,0.283,0.0394 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.236 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.0394 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.0788 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.0788 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.158 +0.667,0.732,0.312,0.315,0,0,0,0,0,0.25,0.236 +0.667,0.758,0.343,0.343,0,0,0,0,0,0,0.118 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.594 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.0788 +0.667,0.705,0.228,0.359,0,0,0,0,0,0,0.0394 +0.667,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.364 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.149 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.168 +1,0.64,0.049,0.183,0,0,0,0,0,0,0.488 +1,0.732,0.128,0.334,0,0,0,0,0,0,0.896 +0.667,0.732,0.168,0.343,0,0,0,0,0,0,0.318 +0.667,0.732,0.198,0.334,0,0,0,0,0,0,0.211 +0.667,0.732,0.217,0.322,0,0,0,0,0,0,0.319 +0.667,0.732,0.233,0.313,0,0,0,0,0,0,0.262 +0.667,0.732,0.274,0.311,0,0,0,0,0,0,0.748 +1,0.818,0.459,0.448,0,0,0.344,0.246,0.533,0,0.0788 +1,0.857,0.505,0.49,0,0,0,0,0,0.767,0 +1,0.915,0.531,0.602,0,0,0,0,0,0,0 +1,0.973,0.549,0.798,0,0,0.459,0.246,0.267,0,0 +1,0.993,0.647,0.979,0,0,0.375,0,0,0,0 +1,0.973,0.851,0.991,0,0,0.524,0,0,0,0 +1,0.934,1,0.823,0,0,0.939,0,0,0,0 +1,0.857,0.923,0.621,0,0,0.992,0,0,0,0 +1,0.779,0.582,0.536,0,0,0.379,0,0,0,0 +1,0.72,0.265,0.249,0,0,0.246,0,0,0,0 +1,0.701,0.0954,0.124,0,0,0.286,0,0,0,0 +1,0.654,0.0362,0.066,0,0,0,0,0,0,0 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.42 +1,0.608,0.026,0.0833,0,0,0.401,0.246,0.267,0,0.194 +0.667,0.621,0.0355,0.151,0,0,0.581,0,0,0,0.0394 +0.667,0.64,0.0449,0.183,0,0,0.58,0,0,0,0.0788 +0.667,0.647,0.0527,0.192,0,0,0.0795,0,0,0,0.158 +0.667,0.647,0.0604,0.196,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.276 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0 +1,0.973,0.402,0.798,0,0,0,0,0,0.517,0 +1,0.993,0.541,0.979,0.424,0.567,0,0,0,0,0.118 +1,0.973,0.758,0.991,0.511,1,0,0,0,0,0 +1,0.934,0.936,0.823,0.366,0.317,0,0,0,0,0.192 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0352,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.257 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.304 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.318 +1,0.818,0.149,0.49,0,0,0,0,0,0,0 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.312 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.152 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.158 +0.333,0.679,0.12,0.234,0,0,0,0,0,0,0.18 +0.333,0.699,0.145,0.299,0,0,0.414,0.246,0.267,0,0.0394 +0.667,0.849,0.366,0.669,0,0,0.3,0,0,0.25,0.368 +0.667,0.836,0.51,0.677,0,0,0.388,0,0,0,0 +1,0.934,0.936,0.823,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.0852 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.173 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.517,0.0394 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.15 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.326 +1,0.732,0.0895,0.334,0,0,0,0,0,0,0.414 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.391 +0.667,0.732,0.117,0.334,0,0,0,0,0,0,0.244 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.163 +0.667,0.647,0.0759,0.181,0,0,0,0,0,0,0.314 +0.667,0.647,0.0845,0.18,0,0,0,0,0,0,0.226 +0.667,0.732,0.162,0.315,0,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0394 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.25,0.197 +0.333,0.699,0.145,0.299,0,0,0,0,0,0,0.593 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0394 +0.667,0.699,0.263,0.363,0.356,0.317,0,0,0,0,0.177 +1,0.934,0.936,0.823,0.522,0.217,0,0,0,0,0.0777 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.0394 +1,0.634,0.189,0.212,0,0,0,0,0,0,0.0394 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0746 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.237 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.328 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.541 +1,0.798,0.103,0.449,0,0,0,0,0,0,0.367 +1,0.818,0.126,0.477,0,0,0,0,0,0,0.392 +1,0.818,0.149,0.49,0,0,0.387,0.246,0.267,0,0.345 +1,0.818,0.168,0.477,0,0,0.44,0,0,0,0.107 +1,0.818,0.186,0.458,0,0,0,0,0,0,0.804 +1,0.818,0.196,0.445,0,0,0,0,0,0,0.205 +0.667,0.732,0.153,0.311,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0.0788 +0.333,0.679,0.12,0.234,0,0,0,0,0,0.25,0.158 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.118 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.0394 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0394 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.207 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.251 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.521 +1,0.68,0.0551,0.253,0,0,0,0,0,0,0.634 +1,0.719,0.074,0.316,0,0,0,0,0,0,0.0788 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0.25,0.0394 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.66,0.0982,0.196,0,0,0,0,0,0,0.0394 +0.667,0.679,0.12,0.234,0,0,0,0,0,0.0667,0.158 +0.667,0.699,0.145,0.299,0,0,0,0,0,0.967,0 +1,0.849,0.366,0.669,0,0,0,0,0,0,0.231 +1,0.836,0.51,0.677,0,0,0,0,0,0,0.266 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0394 +1,0.857,0.887,0.621,0,0,0,0,0,0,0 +1,0.706,0.363,0.374,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0.136,0.246,0,0,0.197 +1,0.64,0.049,0.183,0,0,0.387,0,0.817,0,0.158 +1,0.647,0.0731,0.192,0,0,0,0,0,0.25,0.312 +1,0.732,0.168,0.343,0,0,0,0,0,0,0.0788 +1,0.732,0.198,0.334,0.558,0.983,0,0,0,0,0 +1,0.732,0.217,0.322,0,0.9,0,0,0,0,0 +0.667,0.647,0.125,0.181,0,0,0,0,0,0,0.118 +0.333,0.647,0.146,0.18,0,0,0,0,0,0,0.0788 +0.667,0.647,0.165,0.182,0,0,0,0,0,0,0.274 +1,0.857,0.505,0.49,0,0,0,0,0,0.25,0.157 +1,0.915,0.531,0.602,0,0,0,0,0,0,0.118 +1,0.973,0.549,0.798,0,0,0,0,0,0,0.307 +1,0.993,0.647,0.979,0,0,0,0,0,0,0.381 +1,0.973,0.851,0.991,0,0,0,0,0,0,0.416 +1,0.934,1,0.823,0,0,0,0,0,0,0.0948 +1,0.857,0.923,0.621,0,0,0,0,0,0,0.0788 +1,0.706,0.394,0.374,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.0788 +1,0.608,0.0499,0.0743,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0.118 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.162 +0.667,0.647,0.0928,0.196,0,0,0,0,0,0,0.28 +0.667,0.647,0.108,0.192,0,0,0,0,0,0,0.335 +0.667,0.647,0.118,0.186,0,0,0.251,0.246,0,0,0.473 +0.667,0.732,0.233,0.313,0,0,0.518,0.263,0.533,0,0.283 +1,0.818,0.402,0.441,0,0,0.387,0,0,0,0.484 +0.667,0.732,0.312,0.315,0,0,0.537,0,0,0,0.289 +0.667,0.758,0.343,0.343,0,0,0.437,0,0,0.25,0.0788 +0.667,0.797,0.36,0.418,0,0,0,0,0,0,0.276 +0.333,0.699,0.195,0.299,0,0,0,0,0,0,0.315 +0.333,0.705,0.228,0.359,0,0,0,0,0,0,0 +0.333,0.699,0.296,0.363,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.66,0.32,0.24,0,0,0,0,0,0,0 +1,0.706,0.394,0.374,0,0,0,0,0,0,0.167 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.0971 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.151,0,0,0,0,0,0,0.0788 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.338 +0.667,0.647,0.0527,0.192,0,0,0,0,0,0,0.249 +0.667,0.732,0.105,0.343,0,0,0,0,0,0,0.229 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.196,0,0,0,0,0,0,0 +0.667,0.679,0.12,0.234,0,0,0,0,0,0,0 +0.667,0.836,0.273,0.548,0,0,0,0,0,0,0.118 +0.667,0.849,0.366,0.669,0,0,0,0,0,0,0.0788 +0.667,0.836,0.51,0.677,0,0,0,0,0,0,0.276 +1,0.934,0.936,0.823,0,0,0,0,0,0,0.0845 +1,0.857,0.887,0.621,0,0,0,0,0,0,0.351 +1,0.706,0.363,0.374,0,0,0,0,0,0,0.0799 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.12 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.236 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.254 +1,0.608,0.02,0.0513,0,0,0,0,0,0.0667,0.523 +1,0.608,0.026,0.0833,0,0,0,0,0,1,0.098 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.733,0.458 +0.667,0.64,0.0449,0.183,0,0,0,0,0,0,0.627 +0.667,0.732,0.0895,0.334,0,0,0,0,0,0,0.415 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.182 +0.667,0.732,0.117,0.334,0,0,0,0,0,0.0667,0.314 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0.183,0 +0.333,0.647,0.0759,0.181,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.18,0,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0.155,0.0667,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.196,0.644,0.467,0,0,0,0,0 +0.667,0.797,0.224,0.418,0,0,0,0,0,0,0.0788 +1,0.973,0.402,0.798,0,0,0,0,0,0,0.158 +1,0.993,0.541,0.979,0,0,0,0,0,0,0.351 +1,0.973,0.758,0.991,0,0,0,0,0,0,0.0394 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.758,0.596,0.43,0,0,0,0,0,0,0 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.608,0.026,0.0833,0,0,0,0,0,0,0.191 +1,0.68,0.0551,0.253,0.41,0.533,0.11,0.246,0.267,0.0667,0.12 +0.667,0.719,0.074,0.316,0.675,0.533,0,0,0,0.183,0.0788 +0.667,0.732,0.0895,0.334,0.729,0,0,0,0,0,0.0788 +0.333,0.647,0.0604,0.196,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.192,0,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.186,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.181,0.717,0.533,0,0,0,0,0.0788 +0.333,0.647,0.0845,0.18,0.0803,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.333,0.705,0.191,0.359,0,0,0,0,0,0,0.0394 +0.333,0.699,0.263,0.363,0,0,0,0,0,0,0 +1,0.81,0.629,0.565,0,0,0,0,0,0,0 +1,0.66,0.306,0.24,0,0,0,0,0,0,0.106 +1,0.634,0.189,0.212,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.195 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.212 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.163 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.415 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.246 +0.667,0.736,0.128,0.316,0,0,0,0,0,0.25,0.301 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.156 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.118 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.158 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0394 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.0167,0.236 +0.667,0.854,0.364,0.595,0,0,0,0,0,0.233,0.218 +0.667,0.841,0.507,0.67,0.0707,0.0167,0,0,0,0,0.165 +1,0.941,0.929,0.913,0.394,0.5,0,0,0,0,0.385 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.107 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.347 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.116 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.373 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0.354 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0788 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.118 +0.667,0.762,0.179,0.322,0,0,0,0,0,0,0.0788 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0788 +1,0.98,0.399,0.674,0.0977,0.0167,0,0,0,0,0.0788 +0.667,0.854,0.364,0.595,0.389,0.5,0,0,0,0,0.0394 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.0788 +0.333,0.688,0.32,0.337,0,0,0,0,0,0,0.167 +0.667,0.762,0.592,0.501,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0.482,0.526,0.267,0,0 +1,0.616,0.0874,0.116,0,0,0.392,0,0.783,0,0 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0.22,0.263,0.45,0,0.0394 +1,0.658,0.0299,0.116,0,0,0.194,0,0.6,0,0.118 +1,0.684,0.047,0.251,0,0,0,0,0,0,0.227 +0.667,0.642,0.0488,0.181,0,0,0,0,0,0,0.253 +0.667,0.649,0.0727,0.19,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.118 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0.219 +0.667,0.649,0.145,0.177,0.63,0.517,0,0,0,0,0.118 +0.333,0.649,0.164,0.178,0,0,0,0,0,0.25,0.276 +0.333,0.662,0.179,0.186,0,0,0,0,0,0,0.0394 +0.667,0.802,0.358,0.367,0,0,0,0,0,0,0 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0.0788 +0.667,0.854,0.434,0.595,0,0,0,0,0,0,0.0788 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0.226 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.157 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.188 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.114 +1,0.725,0.264,0.249,0,0,0,0,0,0,0.375 +1,0.706,0.113,0.124,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.118 +1,0.649,0.0727,0.19,0,0,0,0,0,0,0.166 +1,0.649,0.0923,0.193,0,0,0,0,0,0,0.299 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.0409 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0394 +0.333,0.649,0.125,0.178,0,0,0,0,0,0,0.0788 +0.333,0.649,0.145,0.177,0,0,0,0,0,0,0.473 +0.333,0.649,0.164,0.178,0,0,0,0,0,0,0.197 +0.333,0.662,0.179,0.186,0,0,0,0,0,0.2,0.0394 +0.667,0.802,0.358,0.367,0,0,0,0,0,0.3,0.276 +0.667,0.841,0.369,0.466,0,0,0,0,0,0,0 +1,1,0.642,0.868,0,0,0,0,0,0,0 +1,0.98,0.845,0.98,0,0,0,0,0,0,0 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.118 +1,0.863,0.916,0.727,0,0,0,0,0,0,0.128 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.658,0.0684,0.099,0,0,0,0,0,0,0.0394 +1,0.658,0.036,0.066,0,0,0,0,0,0,0.236 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.216 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.14 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.78 +0.667,0.623,0.0353,0.15,0,0,0,0,0,0,0.221 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.36 +0.667,0.736,0.0889,0.33,0,0,0.419,0.263,0.267,0,0.271 +0.667,0.736,0.104,0.337,0,0,0.48,0,0.25,0,0 +0.333,0.649,0.066,0.189,0,0,0.382,0,0,0,0.0394 +0.333,0.649,0.072,0.183,0,0,0.369,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.405,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0.613,0,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0.428,0,0,0,0.0394 +0.333,0.662,0.0976,0.186,0,0,0.474,0,0,0,0.0788 +0.667,0.802,0.222,0.367,0,0,0.492,0,0,0,0.0394 +1,0.98,0.399,0.674,0,0,0.346,0,0,0,0.158 +1,1,0.537,0.868,0,0,0.055,0,0,0.0167,0.117 +1,0.98,0.752,0.98,0,0,0,0,0,0.233,0.0394 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.274 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.137 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.447 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.344 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.473 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.739 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.374 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.276 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.119 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.118 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.25,0.118 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.197 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.236 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0394 +1,1,0.537,0.868,0,0,0,0,0,0,0.0394 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0788 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0726 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0896 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.205 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.679 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.195 +0.667,0.723,0.0735,0.313,0,0,0.592,0.263,0.25,0,0.194 +0.667,0.736,0.0889,0.33,0,0,0.613,0,0,0,0 +0.333,0.649,0.0601,0.193,0,0,0.593,0,0,0,0.276 +0.667,0.736,0.116,0.328,0,0,0.472,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.118 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.118 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.268 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.118 +0.333,0.682,0.119,0.208,0.0576,0.0167,0,0,0,0,0.0394 +0.333,0.701,0.144,0.258,0.541,1,0,0,0,0,0.451 +0.667,0.854,0.364,0.595,0.723,0.567,0,0,0,0,0.49 +0.667,0.841,0.507,0.67,0.131,0,0,0,0,0,0.0869 +0.667,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.276 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0196 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.207 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.64 +1,0.745,0.0742,0.351,0,0,0,0,0,0.25,0.526 +1,0.804,0.102,0.444,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0.337,0.25,0,0,0,0,0 +0.333,0.649,0.0601,0.193,0.667,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.363,0,0,0,0,0,0.0988 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.706 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.182 +0.333,0.649,0.0839,0.177,0,0,0.0528,0.0175,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0.45,0.246,0.767,0,0.0394 +0.333,0.662,0.0976,0.186,0,0,0.55,0,0.283,0.0167,0.394 +0.667,0.802,0.222,0.367,0,0,0.59,0,0,0.233,0.118 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0394 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.322 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.143 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.595 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.279 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.562 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.187 +1,0.642,0.0447,0.181,0,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.649,0.0601,0.193,0,0,0,0,0,0,0.0394 +0.667,0.649,0.066,0.189,0,0,0,0,0,0,0.118 +1,0.649,0.072,0.183,0,0,0,0,0,0,0.197 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.863,0.261,0.458,0,0,0,0,0,0,0.0394 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.118 +0.333,0.701,0.144,0.258,0,0,0,0,0,0.25,0.358 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.594 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.283 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.2 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.0519 +1,0.636,0.188,0.246,0,0,0,0,0,0,0.0163 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0.161 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.551,0.517,0,0,0,0,0.197 +1,0.649,0.0923,0.193,0.236,0,0,0,0,0.45,0.263 +1,0.824,0.287,0.468,0,0,0,0,0,0.567,0.427 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.0998 +1,0.824,0.338,0.436,0,0,0,0,0,0,0.158 +0.667,0.736,0.272,0.305,0.702,0.25,0,0,0,0,0.236 +0.333,0.649,0.164,0.178,0.52,0,0,0,0,0,0.158 +0.333,0.662,0.179,0.186,0.148,0,0.488,0.263,0.25,0.25,0.118 +1,0.922,0.527,0.526,0,0,0.477,0,0,0,0.118 +1,0.98,0.545,0.674,0,0,0.15,0,0,0,0.352 +1,1,0.642,0.868,0,0,0,0,0,0,0.0788 +0.667,0.841,0.569,0.67,0,0,0,0,0,0,0 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.0971 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0.697,0.263,0.25,0,0.232 +1,0.671,0.182,0.183,0,0,0,0,0,0,0.0963 +1,0.61,0.0496,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0309,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.642,0.0488,0.181,0,0,0,0,0,0,0.384 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.335 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +0.667,0.649,0.108,0.189,0,0,0.474,0.263,0.45,0,0.0788 +0.667,0.649,0.117,0.183,0,0,0.572,0,1,0,0.197 +0.667,0.736,0.231,0.307,0,0,0.791,0,0.117,0,0.0788 +0.667,0.736,0.272,0.305,0,0,0.427,0,0,0,0.0788 +0.667,0.736,0.31,0.307,0,0,0.404,0,0,0,0.0394 +0.333,0.662,0.179,0.186,0,0,0.476,0,0,0,0.433 +0.333,0.682,0.188,0.208,0,0,0.521,0,0,0,0.118 +1,0.841,0.369,0.466,0,0,0.563,0,0,0,0 +1,0.854,0.434,0.595,0,0,0.517,0,0,0,0 +1,0.98,0.845,0.98,0,0,0.514,0,0,0,0.118 +1,0.815,0.668,0.625,0,0,0,0,0,0,0.0394 +1,0.762,0.617,0.501,0,0,0,0,0,0,0.0394 +1,0.71,0.392,0.442,0,0,0,0,0,0,0.0788 +1,0.616,0.1,0.116,0,0,0,0,0,0,0.115 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0.0167,0.224 +1,0.61,0.0183,0.0495,0,0,0,0,0,0.233,0.0788 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.105 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.193 +1,0.623,0.0353,0.15,0,0,0,0,0,0,0.159 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.236 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.118 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0.517,0.118 +0.667,0.762,0.179,0.322,0,0,0,0,0,0.25,0.0788 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.158 +0.667,0.841,0.271,0.466,0,0,0,0,0,0.25,0 +0.667,0.854,0.364,0.595,0,0,0.119,0.263,0.0167,0.0167,0.268 +0.667,0.841,0.507,0.67,0,0,0,0,0.5,0.233,0.118 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.118 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.125 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.229 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.114 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.331 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.528 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.158 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0518 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.251 +0.333,0.682,0.119,0.208,0,0,0,0,0,0,0.315 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.762,0.592,0.501,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0167,0 +1,0.623,0.0353,0.15,0,0,0.393,0.263,0.25,1,0 +0.667,0.642,0.0447,0.181,0,0,0.546,0,0,1,0.565 +0.667,0.736,0.0889,0.33,0,0,0.453,0,0,0.283,0.102 +0.667,0.736,0.104,0.337,0,0,0.436,0,0,0,0.0788 +0.333,0.649,0.066,0.189,0,0,0.261,0,0,0,0.118 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.276 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.25,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.254 +1,1,0.537,0.868,0,0,0,0,0,0,0.199 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.815,0.625,0.625,0,0,0,0,0,0,0 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0.0969,0.0167,0,0,0,0,0.276 +0.333,0.649,0.0601,0.193,0.874,0.5,0,0,0,0,0 +0.333,0.649,0.066,0.189,0.0759,0,0,0,0,0,0.158 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0.158 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.482 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.0394 +1,0.98,0.399,0.674,0,0,0,0,0,0.0167,0.0394 +1,1,0.537,0.868,0,0,0,0,0,0.483,0 +0.667,0.841,0.507,0.67,0,0,0,0,0,0,0.0394 +1,0.815,0.625,0.625,0,0,0,0,0,0,0.128 +1,0.662,0.304,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0573,0.0175,0,0.5,0.0394 +1,0.61,0.0183,0.0495,0,0,0.732,0.246,0.767,0,0.0788 +1,0.61,0.0165,0.0495,0,0,0.0841,0,0.283,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0167,0.0186 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.75,0.361 +1,0.804,0.102,0.444,0,0,0.309,0.263,0.25,0,0.15 +1,0.824,0.125,0.47,0,0,0.515,0,0,0,0.34 +0.667,0.736,0.104,0.337,0,0,0.674,0,0,0,0.439 +0.667,0.736,0.116,0.328,0,0,0.726,0,0,0,0.0788 +0.333,0.649,0.072,0.183,0,0,0.661,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0.55,0,0,0,0.158 +0.333,0.649,0.0839,0.177,0,0,0.0482,0,0,0.25,0.0394 +0.333,0.562,0.0159,0.0495,0.0803,0.0167,0,0,0,0,0.158 +0.667,0.662,0.0976,0.186,0.236,0.767,0,0,0,0,0.197 +0.667,0.802,0.222,0.367,0,0,0,0,0,0,0.118 +0.667,0.701,0.144,0.258,0,0,0,0,0,0.25,0 +1,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.841,0.507,0.67,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.25,0.359 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.4 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.118 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.0394 +1,0.736,0.197,0.328,0.461,0.45,0.202,0.211,0,0,0 +1,0.736,0.216,0.316,0,0.0667,0.497,0.842,0.2,0,0.0394 +0.667,0.649,0.125,0.178,0,0,0.546,0,0.05,0.2,0.118 +0.667,0.649,0.145,0.177,0,0,0.272,0,0,0.05,0.0394 +0.667,0.736,0.31,0.307,0,0,0.836,0,0,0,0.158 +0.667,0.762,0.34,0.322,0,0,0.419,0,0,0,0.0394 +0.667,0.802,0.358,0.367,0,0,0.963,0,0,0,0.0788 +0.667,0.841,0.369,0.466,0,0,0.346,0,0,0,0.236 +1,1,0.642,0.868,0.353,0.45,0.599,0,0,0,0.0788 +1,0.98,0.845,0.98,0.717,0.6,0.549,0,0,0,0 +1,0.941,0.993,0.913,0.176,0,0.352,0,0,0,0 +1,0.863,0.916,0.727,0,0,0.433,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.725,0.264,0.249,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.211 +1,0.736,0.127,0.33,0,0,0,0,0,0,0.205 +1,0.736,0.166,0.337,0,0,0,0,0,0,0 +1,0.824,0.287,0.468,0,0,0.512,0.263,0.25,0,0 +1,0.824,0.315,0.449,0,0,0.376,0,0,0,0.276 +1,0.736,0.231,0.307,0,0,0.202,0,0,0,0.354 +1,0.736,0.272,0.305,0,0,0,0,0,0.25,0.0788 +1,0.736,0.31,0.307,0,0,0,0,0,0,0.0788 +1,0.762,0.34,0.322,0,0,0,0,0,0,0.118 +1,0.802,0.358,0.367,0,0,0,0,0,0,0.0788 +1,0.98,0.545,0.674,0,0,0,0,0,0,0.586 +1,1,0.642,0.868,0.827,0.783,0,0,0,0,0.164 +1,0.98,0.845,0.98,0.49,0,0,0,0,0,0.503 +1,0.941,0.993,0.913,0,0,0,0,0,0,0.125 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.784,0.578,0.638,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0.0394 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.372 +1,0.61,0.0259,0.0829,0,0,0,0,0,0,0.287 +1,0.684,0.0548,0.251,0,0,0,0,0,0,0.665 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.287 +0.667,0.649,0.0524,0.19,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.0394 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.0788 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.0394 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.118 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0979 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.455 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.0788 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.311 +1,0.762,0.592,0.501,0,0,0,0,0,0,0.0388 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.481 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.424 +1,0.658,0.036,0.116,0,0,0,0,0,0,0.311 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0.267,0.329 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.233,0.0394 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.201 +0.333,0.649,0.0601,0.193,0,0,0.404,0.263,0.25,0,0.223 +0.333,0.649,0.066,0.189,0,0,0.455,0,0,0,0.197 +0.333,0.649,0.072,0.183,0,0,0.505,0,0,0,0.197 +0.333,0.649,0.0754,0.178,0,0,0.317,0,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0.358,0,0,0,0.197 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.118 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.25,0.315 +1,0.922,0.325,0.526,0,0,0,0,0,0,0.0394 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.0394 +1,1,0.537,0.868,0,0,0,0,0,0,0.118 +1,0.98,0.752,0.98,0,0,0,0,0,0,0.153 +1,0.941,0.929,0.913,0,0,0,0,0,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.71,0.36,0.442,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0917,0.263,0.0167,0.25,0.167 +1,0.745,0.0742,0.351,0,0,0.055,0.0175,0.233,0,0.221 +0.667,0.723,0.0735,0.313,0,0,0.795,0.246,0.767,0,0 +0.333,0.649,0.0524,0.19,0,0,0.31,0,0.283,0,0.158 +0.333,0.649,0.0601,0.193,0,0,0.486,0,0,0,0.236 +0.333,0.649,0.066,0.189,0,0,0.408,0,0,0,0.0788 +0.333,0.649,0.072,0.183,0,0,0.518,0,0,0,0.0394 +0.333,0.649,0.0754,0.178,0,0,0.554,0,0,0,0.0394 +0.333,0.649,0.0839,0.177,0,0,0.829,0,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0.554,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0.537,0,0,0,0.197 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.25,0.0788 +0.667,0.841,0.271,0.466,0,0,0,0,0,0,0.0394 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0394 +1,0.863,0.88,0.727,0,0,0,0,0,0,0.254 +1,0.71,0.36,0.442,0,0,0,0,0,0,0.108 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.605 +1,0.61,0.0259,0.0829,0,0,0,0,0,0.5,0.346 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.118 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.649,0.0839,0.177,0,0,0,0,0,0,0.118 +0.667,0.649,0.0882,0.178,0,0,0,0,0,0,0.118 +0.667,0.662,0.0976,0.186,0,0,0,0,0,0,0.0394 +0.667,0.682,0.119,0.208,0,0,0,0,0,0.25,0.426 +1,0.98,0.399,0.674,0,0,0,0,0,0,0.197 +1,1,0.537,0.868,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0394 +1,0.863,0.88,0.727,0,0,0,0,0,0.267,0.222 +1,0.784,0.532,0.638,0,0,0,0,0,0.5,0.0923 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.61,0.02,0.0513,0,0,0,0,0,0,0.142 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.116 +0.667,0.642,0.0447,0.181,0,0,0,0,0,0,0.259 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.276 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.197 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.0788 +0.333,0.649,0.072,0.183,0,0,0,0,0,0,0.118 +0.333,0.649,0.0754,0.178,0,0,0,0,0,0,0.118 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.708,0.19,0.322,0,0,0,0,0,0,0.197 +0.667,0.701,0.261,0.36,0,0,0,0,0,0.25,0.118 +0.667,0.688,0.32,0.337,0,0,0,0,0,0,0 +0.667,0.662,0.304,0.275,0,0,0,0,0,0,0 +0.667,0.636,0.188,0.246,0,0,0,0,0,0,0.0394 +1,0.616,0.0874,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.61,0.0189,0.0495,0,0,0,0,0,0,0 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0788 +1,0.61,0.024,0.0829,0,0,0,0,0,0.25,0 +1,0.684,0.047,0.251,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.158 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.736,0.166,0.337,0,0,0,0,0,0,0.254 +0.667,0.736,0.197,0.328,0,0,0,0,0,0,0.729 +0.667,0.736,0.216,0.316,0,0,0,0,0,0,0.573 +0.667,0.736,0.231,0.307,0,0,0,0,0,0,0.352 +0.667,0.736,0.272,0.305,0,0,0,0,0,0,0.394 +0.667,0.736,0.31,0.307,0,0,0,0,0,0,0.388 +1,0.863,0.502,0.458,0,0,0,0,0,0,0.197 +0.667,0.802,0.358,0.367,0,0,0.291,0.474,0,0.25,0.118 +0.667,0.841,0.369,0.466,0,0,0.291,0.316,0.517,0,0.0788 +1,1,0.642,0.868,0,0,0.335,0.263,0.45,0,0 +1,0.98,0.845,0.98,0,0,0.48,0,0.0667,0,0 +1,0.941,0.993,0.913,0,0,0.463,0,0,0,0 +0.667,0.762,0.617,0.501,0,0,0,0,0,0,0.09 +1,0.784,0.578,0.638,0,0,0,0,0,0,0.124 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.61,0.0215,0.0513,0,0,0,0,0,0,0.0394 +1,0.61,0.024,0.0829,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.103 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +0.667,0.649,0.0923,0.193,0,0,0,0,0,0,0.354 +0.667,0.649,0.108,0.189,0,0,0,0,0,0,0.172 +0.667,0.649,0.117,0.183,0,0,0,0,0,0,0.0394 +0.667,0.649,0.125,0.178,0,0,0,0,0,0,0 +1,0.824,0.399,0.432,0,0,0,0,0,0,0.0788 +1,0.824,0.456,0.435,0,0,0,0,0,0,0.236 +1,0.863,0.502,0.458,0,0,0,0,0,0,0 +1,0.922,0.527,0.526,0,0,0,0,0,0,0.0394 +1,0.98,0.545,0.674,0,0,0,0,0,0,0 +0.667,0.854,0.434,0.595,0,0,0.3,0.211,0,0,0 +0.667,0.841,0.569,0.67,0,0,0,0.0526,0.25,0,0.354 +0.667,0.815,0.668,0.625,0,0,0,0,0,0,0.16 +1,0.863,0.916,0.727,0,0,0,0,0,0,0 +1,0.71,0.392,0.442,0,0,0,0,0,0,0 +1,0.671,0.182,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +1,0.61,0.02,0.0513,0,0,0,0,0,0.0167,0.288 +1,0.706,0.0461,0.15,0,0,0,0,0,0.75,0.277 +1,0.745,0.0742,0.351,0,0,0,0,0,0,0.546 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.146 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0.25,0.118 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.02 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.435 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0,0.236 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.276 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0,0.139 +0.667,0.802,0.222,0.367,0,0,0,0,0,0.5,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0.33,0.263,0.25,0,0 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.336 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.198 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0.423 +0.667,0.684,0.0548,0.251,0,0,0,0,0,0,0.0788 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0,0.197 +0.333,0.649,0.0524,0.19,0,0,0,0,0,0,0.0596 +0.333,0.649,0.0601,0.193,0,0,0,0,0,0,0.354 +0.333,0.649,0.066,0.189,0,0,0,0,0,0,0.167 +0.667,0.649,0.072,0.183,0,0,0,0,0,0,0.0788 +0.667,0.649,0.0754,0.178,0,0,0,0,0,0,0.315 +0.333,0.649,0.0839,0.177,0,0,0,0,0,0.5,0.0788 +0.333,0.649,0.0882,0.178,0,0,0,0,0,0,0.0788 +0.333,0.662,0.0976,0.186,0,0,0,0,0,0.0167,0.0394 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.233,0 +1,0.98,0.399,0.674,0,0,0,0,0,0,0 +1,1,0.537,0.868,0.424,0.517,0,0,0,0,0 +1,0.98,0.752,0.98,0.658,0.533,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0.5,0 +1,0.863,0.88,0.727,0.401,0.517,0,0,0,0,0 +1,0.636,0.188,0.246,0.518,0.267,0,0,0,0,0 +1,0.616,0.0874,0.116,0.356,0,0,0,0,0,0 +1,0.61,0.0421,0.0743,0.208,0,0,0,0,0,0 +1,0.61,0.0259,0.0578,0,0,0,0,0,0,0 +1,0.61,0.0183,0.0495,0,0,0,0,0,0,0.0394 +1,0.61,0.0165,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.019 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.517,0.363 +0.667,0.723,0.0735,0.313,0,0,0,0,0,0.233,0 +0.667,0.736,0.0889,0.33,0,0,0,0,0,0,0.0788 +0.667,0.736,0.104,0.337,0,0,0,0,0,0,0.0394 +0.667,0.736,0.116,0.328,0,0,0,0,0,0,0.118 +0.667,0.736,0.128,0.316,0,0,0,0,0,0,0.0394 +0.667,0.736,0.135,0.307,0,0,0,0,0,0,0.118 +0.667,0.736,0.152,0.305,0,0,0,0,0,0,0.0394 +0.667,0.736,0.161,0.307,0.227,0.267,0,0,0,0,0.0394 +0.333,0.662,0.0976,0.186,0.258,0.25,0,0,0,0,0.158 +0.333,0.682,0.119,0.208,0,0,0,0,0,0.25,0.158 +0.333,0.701,0.144,0.258,0,0,0,0,0,0,0.0788 +0.667,0.854,0.364,0.595,0,0,0,0,0,0,0.0394 +1,0.98,0.752,0.98,0,0,0,0,0,0,0 +1,0.941,0.929,0.913,0,0,0,0,0,0,0.0788 +1,0.863,0.88,0.727,0,0,0,0,0,0,0 +1,0.636,0.188,0.246,0,0,0,0,0,0,0 +1,0.616,0.0874,0.116,0.133,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0.474 +1,0.559,0.0314,0.114,0,0,0,0,0,0.233,0.227 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.24 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.257 +0.667,0.621,0.0764,0.318,0,0,0.338,0.246,0.25,0,0.0394 +0.333,0.591,0.0527,0.185,0,0,0.567,0,0,0,0.118 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.197 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.158 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.483,0.0394 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.158 +0.667,0.704,0.232,0.395,0.48,0.567,0,0,0,0,0.0394 +0.667,0.714,0.31,0.507,0.665,0.7,0,0,0,0,0.354 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.0765 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.0956 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0898 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.186 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.227 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.344 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.158 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.233,0.118 +0.333,0.591,0.0658,0.171,0.616,0.817,0,0,0,0,0.0394 +0.333,0.591,0.073,0.169,0,0.45,0,0,0,0,0.479 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.118 +0.667,0.704,0.232,0.395,0,0,0,0,0,0.233,0.154 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.203 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.224 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.289 +0.667,0.642,0.505,0.555,0,0,0,0,0,0,0.317 +0.667,0.581,0.162,0.2,0,0,0,0,0,0,0.464 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0391 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.307 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.307 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.422 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.158 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.294 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.236 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0.0788 +0.333,0.591,0.101,0.175,0,0,0,0,0,0,0.0394 +0.333,0.591,0.108,0.171,0.607,0.5,0.11,0.158,0,0,0.407 +1,0.651,0.34,0.409,0.108,0,0.141,0.351,0.517,0.483,0.639 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.118 +0.667,0.642,0.291,0.298,0,0,0,0,0,0.15,0.197 +0.667,0.673,0.305,0.326,0.319,0.4,0,0,0,0.0833,0.0394 +0.667,0.704,0.315,0.395,0.29,0.1,0.128,0.158,0,0,0.0788 +0.667,0.714,0.371,0.507,0.702,0.5,0,0.0877,0.517,0,0 +1,0.774,0.719,0.895,0.599,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0.412,0.65,0,0,0,0,0 +1,0.62,0.492,0.5,0.709,0.617,0,0,0,0,0.158 +1,0.569,0.156,0.183,0.365,0,0,0,0,0,0.118 +1,0.56,0.044,0.0743,0.59,0,0,0,0,0,0.176 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.177 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.417 +1,0.586,0.0433,0.177,0,0,0,0,0,0,0.373 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.29 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0.0788 +1,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0.274,0.246,0.167,0.65,0.276 +0.667,0.591,0.108,0.171,0,0,0.164,0,0.867,0.317,0.197 +0.667,0.591,0.125,0.169,0,0,0.436,0,0,0,0.118 +0.667,0.621,0.265,0.29,0,0,0.303,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.158 +0.333,0.617,0.162,0.188,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.633,0.252,0.331,0,0,0,0,0,0,0.158 +0.333,0.622,0.294,0.342,0,0,0,0,0,0,0 +0.667,0.642,0.526,0.555,0,0,0.272,0.246,0.167,0,0.0394 +0.667,0.6,0.334,0.35,0,0,0.344,0,0.867,0,0 +1,0.573,0.224,0.249,0.124,0,0.136,0,0,0,0 +1,0.558,0.0806,0.124,0,0,0.494,0,0,0,0.0394 +1,0.559,0.0314,0.066,0,0,0.407,0,0,0,0.0394 +1,0.56,0.0171,0.0495,0,0,0.404,0,0,0,0.118 +1,0.56,0.0157,0.0495,0,0,0.427,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.571,0.0316,0.147,0,0,0,0,0,0.233,0 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.591,0.0462,0.184,0,0,0,0,0,0,0.119 +0.667,0.621,0.0895,0.321,0.698,0.5,0,0,0,0,0.409 +0.667,0.621,0.0997,0.312,0.29,0,0,0,0,0,0.283 +0.667,0.621,0.11,0.3,0,0,0,0,0,0,0.467 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.354 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0767,0.17,0,0,0.503,0.246,0.25,0,0.0394 +0.667,0.642,0.153,0.298,0,0,0.37,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.164,0,0,0.233,0.0394 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0394 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0394 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0.118 +0.667,0.683,0.532,0.635,0.398,0.25,0,0,0,0,0 +0.667,0.642,0.505,0.555,0.649,0,0,0,0,0,0 +1,0.6,0.307,0.35,0.644,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0788 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.315 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.299 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.648 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.119 +0.333,0.591,0.0527,0.185,0,0,0.106,0.0702,0,0,0.118 +0,0.562,0.0159,0.0495,0,0,0.534,0.175,0.25,0,0 +0.333,0.591,0.0629,0.175,0,0,0.735,0,0,0,0 +0.333,0.591,0.0658,0.171,0,0,0.388,0,0,0,0 +0.333,0.591,0.073,0.169,0,0,0.592,0,0,0,0.0394 +0.333,0.591,0.0767,0.17,0,0,0.771,0,0,0,0.0788 +0.333,0.602,0.0846,0.174,0,0,0.771,0,0,0,0 +0.667,0.673,0.19,0.326,0,0,0.735,0,0,0,0.0394 +1,0.774,0.34,0.567,0.206,0.317,0.251,0,0,0,0.118 +1,0.79,0.457,0.736,0.581,0.183,0.523,0,0,0,0.0394 +1,0.774,0.64,0.895,0.651,0,0.529,0,0,0,0 +1,0.744,0.791,0.928,0.672,0,0,0,0,0,0 +1,0.642,0.505,0.555,0.511,0,0,0,0,0,0 +1,0.581,0.162,0.2,0.693,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0.248,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0.233,0.0788 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0394 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0948 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0.317,0.602 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.167,0.342 +0.333,0.591,0.0527,0.185,0.696,0.817,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0.168,0.717,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.233,0.118 +0.333,0.591,0.0658,0.171,0.127,0.0667,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0.682,0.433,0,0,0,0,0.354 +0.333,0.591,0.0767,0.17,0.611,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0.677,0,0,0,0,0.0667,0.0788 +0.333,0.617,0.103,0.188,0.0995,0,0.0917,0.0702,0,0.167,0.0788 +0.667,0.704,0.232,0.395,0,0,0.497,0.175,0.517,0,0.0394 +0.667,0.714,0.31,0.507,0,0,0.532,0,0,0,0.0788 +1,0.774,0.64,0.895,0,0,0.479,0,0,0,0 +1,0.744,0.791,0.928,0,0,0.373,0,0,0,0 +1,0.682,0.749,0.807,0,0,0.22,0,0,0,0.174 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.196 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.214 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.292 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.0788 +0.667,0.591,0.0527,0.185,0,0,0,0,0,0.167,0.0394 +0.667,0.591,0.0578,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0,0.236 +0.667,0.591,0.0658,0.171,0,0,0,0,0,0,0.0788 +0.667,0.591,0.073,0.169,0,0,0,0,0,0,0.197 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.236 +0.667,0.617,0.103,0.188,0,0,0,0,0,0,0.158 +0.667,0.633,0.124,0.222,0,0,0,0,0,0.0667,0.316 +1,0.79,0.457,0.736,0,0,0,0,0,0.417,0.118 +1,0.774,0.64,0.895,0,0,0,0,0,0.233,0.34 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.355 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.336 +1,0.62,0.453,0.5,0,0,0,0,0,0,0.183 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0394 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.236 +1,0.611,0.0634,0.305,0,0,0,0,0,0,0.0788 +1,0.621,0.0764,0.318,0.147,0.0667,0,0,0,0,0.0788 +1,0.621,0.0895,0.321,0.723,0.433,0,0,0,0,0.263 +1,0.651,0.142,0.443,0.618,0,0,0,0,0,0.24 +0.333,0.591,0.0629,0.175,0.661,0,0,0,0,0,0.0936 +0.333,0.591,0.0658,0.171,0.25,0,0,0,0,0,0.315 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0788 +0.333,0.602,0.0846,0.174,0.26,0.25,0,0,0,0,0.0394 +1,0.673,0.19,0.326,0.475,0,0,0,0,0.233,0.0788 +1,0.774,0.34,0.567,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0.233,0.237 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.0711 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.132 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.65,0 +1,0.571,0.0295,0.147,0,0,0,0,0,0.0667,0.0394 +0.667,0.586,0.0433,0.177,0,0,0,0,0,0,0.0788 +0.667,0.591,0.0636,0.184,0,0,0,0,0,0,0.234 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.15,0.194 +0.333,0.591,0.0934,0.181,0,0,0,0,0,0.0833,0.0788 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.142 +0.667,0.621,0.198,0.292,0,0,0,0,0,0,0.176 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.587 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.724 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0788 +0.667,0.673,0.305,0.326,0,0,0,0,0,0.15,0.236 +0.667,0.704,0.315,0.395,0,0,0,0,0,0.0833,0.236 +0.667,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.154 +1,0.62,0.492,0.5,0,0,0,0,0,0,0.295 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.364 +1,0.56,0.0223,0.0816,0,0,0,0,0,0.233,0.138 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.236 +1,0.586,0.0433,0.177,0,0,0,0,0,0.65,0 +1,0.621,0.109,0.318,0,0,0,0,0,1,0.276 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0.3,0 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.124 +0.667,0.621,0.198,0.292,0,0,0,0,0,0.233,0.919 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.302 +0.667,0.621,0.265,0.29,0,0,0,0,0,0,0.345 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.0394 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.0394 +1,0.774,0.464,0.567,0,0,0.176,0.158,0,0,0.118 +1,0.79,0.547,0.736,0,0,0.524,0.0877,0.917,0,0 +1,0.774,0.719,0.895,0,0,0.346,0,0.383,0,0.118 +1,0.744,0.845,0.928,0,0,0.529,0,0,0,0 +1,0.682,0.78,0.807,0,0,0.291,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0.237 +1,0.569,0.156,0.183,0,0,0,0,0,0,0.154 +1,0.559,0.059,0.099,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.667,0.571,0.0316,0.147,0.297,0.317,0,0,0,0.817,0 +0.667,0.611,0.0634,0.305,0.515,0.95,0,0,0,1,0.333 +0.333,0.591,0.0462,0.184,0,0,0,0,0,1,0.191 +0.333,0.591,0.0527,0.185,0,0,0,0,0,1,0.0394 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.317,0.0394 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.327 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.197 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0.233,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.0394 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.0394 +1,0.774,0.64,0.895,0.403,0.5,0,0,0,0,0.343 +1,0.744,0.791,0.928,0.518,0,0,0,0,0,0.36 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.211 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.308 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.0671 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.386 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.118 +0.333,0.591,0.0462,0.184,0.667,0.5,0,0,0,0,0.0788 +0.333,0.591,0.0527,0.185,0.754,0,0,0,0,0,0.197 +0.333,0.591,0.0578,0.181,0.761,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0.106,0,0,0,0,0,0.158 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0,0,0,0,0,0.233,0.236 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.158 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.231 +1,0.79,0.457,0.736,0.126,0.0667,0,0,0,0,0.793 +1,0.774,0.64,0.895,0.513,0.183,0.239,0.246,0.333,0,0.158 +1,0.744,0.791,0.928,0,0,0.557,0,0.183,0,0 +1,0.602,0.26,0.302,0,0,0.462,0,0,0,0 +1,0.581,0.162,0.2,0,0,0.255,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.347 +1,0.589,0.0632,0.342,0,0,0,0,0,0,0.182 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.153 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.158 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0.317,0.276 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0.9,0.158 +0.333,0.591,0.0658,0.171,0.237,0.317,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0.731,0.183,0.211,0.246,0.0833,0,0.118 +0.333,0.591,0.0767,0.17,0.286,0,0.726,0,0.683,0,0.118 +0.333,0.602,0.0846,0.174,0,0,0.489,0,0,0,0 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.482 +1,0.704,0.232,0.395,0,0,0,0,0,0,0 +0.667,0.638,0.163,0.278,0.29,0.25,0,0,0,0,0.153 +1,0.774,0.64,0.895,0.942,0,0,0,0,0,0.118 +1,0.744,0.791,0.928,0.543,0,0.323,0.246,0.0833,0,0.126 +1,0.682,0.749,0.807,0,0,0.106,0,0.167,0,0.398 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.249 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.33 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0394 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0893 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.206 +0.333,0.586,0.0396,0.177,0,0,0,0,0,0,0.158 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.181,0,0,0.106,0.0702,0,0,0.158 +0.333,0.591,0.0629,0.175,0,0,0.515,0.175,0.25,0,0.118 +0.667,0.621,0.116,0.292,0,0,0.176,0,0,0,0.0788 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.262 +0.667,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.817,0.197 +0.667,0.617,0.103,0.188,0,0,0,0,0,1,0.118 +0.667,0.633,0.124,0.222,0,0,0,0,0,1,0.0707 +0.333,0.638,0.163,0.278,0,0,0,0,0,1,0.0353 +1,0.774,0.64,0.895,0,0,0,0,0,1,0.118 +1,0.744,0.791,0.928,0,0,0,0,0,0.3,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.136 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.23 +1,0.586,0.0396,0.177,0,0,0,0,0,0.717,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.394 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.118 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.197 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.473 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0.742,0.817,0,0,0,0,0.276 +0.333,0.633,0.124,0.222,0.461,0.2,0,0,0,0,0.174 +0.667,0.714,0.31,0.507,0,0,0,0,0,0,0.384 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0.164,0.0667,0,0,0,0,0 +1,0.642,0.505,0.555,0.625,0.433,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0.197 +1,0.591,0.0803,0.185,0,0,0,0,0,0,0.0394 +0.667,0.591,0.0934,0.181,0,0,0,0,0,0,0.0394 +0.667,0.591,0.101,0.175,0,0,0,0,0,0,0.354 +0.667,0.591,0.108,0.171,0,0,0,0,0,0,0.158 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.236 +0.667,0.591,0.141,0.17,0,0,0,0,0,0,0 +0.667,0.642,0.291,0.298,0,0,0,0,0,0,0.118 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.374 +1,0.714,0.371,0.507,0,0,0,0,0,0.233,0.0788 +1,0.774,0.719,0.895,0,0,0,0,0,0,0 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0 +0.333,0.591,0.0803,0.185,0,0,0,0,0,0,0.197 +0.667,0.621,0.169,0.312,0.792,0.5,0,0,0,0,0.158 +0.333,0.591,0.101,0.175,0.346,0,0,0,0,0,0 +0.333,0.591,0.108,0.171,0,0,0,0,0,0,0.158 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.158 +0.333,0.591,0.141,0.17,0,0,0,0,0,0,0.197 +0.333,0.602,0.154,0.174,0,0,0,0,0,0,0.118 +0.667,0.673,0.305,0.326,0,0,0,0,0,0,0.0394 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.475 +1,0.79,0.547,0.736,0,0,0,0,0,0.233,0.522 +0.667,0.633,0.252,0.331,0,0,0,0,0,0,0.0394 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0788 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.074 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.441 +1,0.586,0.0396,0.177,0,0,0,0,0,0,0.17 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.452 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0629,0.175,0,0,0,0,0,0.0667,0.277 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.167,0.118 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.315 +0.667,0.621,0.137,0.29,0,0,0,0,0,0,0.197 +0.667,0.642,0.153,0.298,0,0,0,0,0,0,0.0788 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.395,0,0,0.635,0.246,0.25,0,0.0394 +1,0.79,0.457,0.736,0.679,0.25,0.593,0,0,0,0.118 +1,0.774,0.64,0.895,0.518,0,0.101,0,0,0,0.375 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.419 +1,0.571,0.0316,0.147,0,0,0,0,0,0,0.151 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0.233,0.392 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.207 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.295 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.233,0 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0788 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.236 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.236 +0.667,0.704,0.432,0.613,0.15,0.0667,0,0,0,0,0 +1,0.744,0.791,0.928,0.808,0.433,0,0,0,0,0 +1,0.642,0.505,0.555,0.18,0,0,0,0,0,0.187 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.313 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.239 +1,0.611,0.0634,0.305,0,0,0,0,0,0.817,0.157 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0.15,0.596 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.197 +0.667,0.621,0.0997,0.312,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.276 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.197 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.236 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.208 +1,0.774,0.34,0.567,0,0,0,0,0,0,0.155 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.118 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.118 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.682,0.749,0.807,0,0,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +1,0.56,0.0186,0.051,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0816,0,0,0,0,0,0,0.354 +0.667,0.58,0.0474,0.245,0,0,0,0,0,0,0.308 +1,0.635,0.0871,0.433,0,0,0,0,0,0,0.538 +0.667,0.621,0.0764,0.318,0,0,0,0,0,0,0.197 +0.667,0.621,0.0895,0.321,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0.554,0.246,0.25,0,0.118 +0.333,0.591,0.0658,0.171,0,0,0.563,0,0,0,0.276 +0.333,0.591,0.073,0.169,0,0,0.382,0,0,0,0.0788 +0.333,0.591,0.0767,0.17,0,0,0.61,0,0,0,0.315 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.233,0.0394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.233,0.158 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0394 +1,0.774,0.64,0.895,0,0,0,0,0,0,0 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.442 +1,0.611,0.0634,0.305,0,0,0,0,0,0.233,0.185 +0.667,0.591,0.0462,0.184,0,0,0.216,0.246,0.0833,0,0.65 +0.667,0.621,0.0895,0.321,0,0,0.365,0,1,0,0.464 +0.667,0.621,0.0997,0.312,0,0,0.471,0,1,0,0.605 +0.333,0.591,0.0629,0.175,0,0,0,0,0.25,0,0.0924 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.638 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.358 +0.667,0.621,0.137,0.29,0,0,0.00917,0.0702,0,0.233,0.234 +0.667,0.642,0.153,0.298,0,0,0.375,0.175,0.25,0,0.0394 +1,0.728,0.277,0.464,0,0,0.234,0,0,0,0.197 +1,0.774,0.34,0.567,0,0,0.424,0,0,0,0.0394 +1,0.79,0.457,0.736,0,0,0.636,0,0,0,0.231 +1,0.774,0.64,0.895,0,0,0.0214,0,0,0,0.0394 +1,0.744,0.791,0.928,0,0,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.6,0.307,0.35,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.467 +1,0.56,0.0223,0.0816,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.483,0.0394 +1,0.621,0.185,0.3,0,0,0,0,0,0,0.156 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.332 +1,0.651,0.34,0.409,0,0,0,0,0,0,0.487 +1,0.651,0.388,0.41,0,0,0,0,0,0.233,0.445 +1,0.682,0.427,0.422,0,0,0,0,0,0,0.389 +1,0.728,0.449,0.464,0,0,0,0,0,0,0.272 +1,0.774,0.464,0.567,0,0,0,0,0,0,0.118 +1,0.79,0.547,0.736,0,0,0,0,0,0,0.0788 +1,0.774,0.719,0.895,0,0,0,0,0,0,0.113 +1,0.744,0.845,0.928,0,0,0,0,0,0,0.175 +1,0.682,0.78,0.807,0,0,0,0,0,0,0.19 +1,0.6,0.334,0.35,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.559,0.0699,0.099,0,0,0,0,0,0,0 +1,0.559,0.038,0.066,0,0,0,0,0,0,0 +1,0.559,0.0235,0.0495,0,0,0,0,0,0,0.0394 +1,0.559,0.0177,0.0495,0,0,0,0,0,0,0.197 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +1,0.591,0.0636,0.184,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.185,0,0,0,0,0,0,0.219 +1,0.651,0.244,0.443,0,0,0,0,0,0,0.166 +1,0.651,0.268,0.426,0,0,0,0,0,0.233,0.24 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.197 +0.667,0.621,0.233,0.289,0,0,0,0,0,0,0.118 +0.667,0.621,0.265,0.29,0,0,0.197,0.246,0.167,0,0.224 +0.667,0.642,0.291,0.298,0,0,0.564,0,0.35,0,0.588 +0.667,0.673,0.305,0.326,0,0,0.318,0,0,0,0.249 +0.667,0.704,0.315,0.395,0,0,0.569,0,0,0,0.197 +0.333,0.638,0.194,0.278,0,0,0.679,0,0,0,0.114 +0.667,0.704,0.485,0.613,0,0,0.372,0,0,0,0 +0.667,0.622,0.294,0.342,0,0,0,0,0,0,0 +1,0.642,0.526,0.555,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.206 +1,0.56,0.0236,0.0816,0,0,0,0,0,0.317,0.352 +1,0.589,0.0632,0.342,0,0,0,0,0,0.167,0.452 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.244 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.21 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.451 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.716 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.216 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.233,0.79 +0.667,0.621,0.13,0.289,0,0,0,0,0,0,0.115 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0394 +0.667,0.673,0.19,0.326,0,0,0,0,0,0,0.0394 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0788 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.0788 +1,0.744,0.791,0.928,0.36,0.567,0,0,0,0,0.0788 +1,0.642,0.505,0.555,0.41,0.2,0,0,0,0,0 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0706 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0671 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.33 +1,0.58,0.0474,0.245,0,0,0,0,0,0,0.152 +1,0.635,0.0871,0.433,0,0,0.502,0.246,0.25,0,0.214 +0.667,0.621,0.0764,0.318,0,0,0.358,0,0,0,0 +0.667,0.621,0.0895,0.321,0,0,0.849,0,0,0,0.0788 +0.667,0.621,0.0997,0.312,0,0,0.676,0,0,0,0.451 +0.667,0.621,0.11,0.3,0,0,0.41,0,0,0,0.0394 +0.333,0.591,0.0658,0.171,0,0,0.593,0,0,0,0.236 +0.333,0.591,0.073,0.169,0,0,0.353,0,0,0,0.118 +0.333,0.591,0.0767,0.17,0,0,0.618,0,0,0,0.197 +0.667,0.642,0.153,0.298,0,0,0.514,0,0,0,0.158 +0.667,0.673,0.19,0.326,0,0,0.509,0,0,0.0667,0.0394 +0.667,0.704,0.232,0.395,0,0,0.633,0,0,0.167,0.158 +1,0.79,0.457,0.736,0,0,0.474,0,0,0,0.0394 +1,0.774,0.64,0.895,0,0,0,0,0,0,0.182 +1,0.744,0.791,0.928,0,0,0,0,0,0,0.167 +1,0.682,0.749,0.807,0,0,0,0,0,0,0.291 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.236 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0358 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.373 +0.667,0.586,0.0396,0.177,0,0,0,0,0,0,0.361 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.197 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0.315 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.158 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0.0667,0.276 +0.667,0.673,0.19,0.326,0,0,0,0,0,0.167,0.354 +0.667,0.704,0.232,0.395,0,0,0,0,0,0,0.118 +1,0.79,0.457,0.736,0,0,0,0,0,0,0 +1,0.774,0.64,0.895,0.597,0.817,0,0,0,0,0 +1,0.744,0.791,0.928,0.239,0.45,0,0,0,0,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.17 +1,0.559,0.0213,0.0525,0,0,0,0,0,0,0.251 +1,0.559,0.0314,0.114,0,0,0,0,0,0.317,0.529 +1,0.58,0.0474,0.245,0,0,0,0,0,0.65,0.506 +0.667,0.611,0.0634,0.305,0,0,0,0,0,0,0.247 +0.333,0.591,0.0462,0.184,0,0,0,0,0,0,0.0995 +0.333,0.591,0.0527,0.185,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.181,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.175,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.0788 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0.0667,0.158 +0.667,0.704,0.232,0.395,0.387,0.5,0,0,0,0.167,0.0394 +0.667,0.714,0.31,0.507,0.644,0,0,0,0,0,0.303 +1,0.774,0.64,0.895,0.839,0,0,0,0,0,0 +1,0.683,0.532,0.635,0.653,0,0,0,0,0,0.0394 +1,0.642,0.505,0.555,0.567,0,0,0,0,0,0.214 +1,0.581,0.162,0.2,0,0,0,0,0,0,0.0855 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.571,0.0316,0.147,0,0,0,0,0,0,0.0788 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.0788 +0.333,0.591,0.0658,0.171,0,0,0,0,0,0.167,0.394 +0.333,0.591,0.073,0.169,0,0,0,0,0,0,0.158 +0.333,0.591,0.0767,0.17,0,0,0,0,0,0,0.276 +0.333,0.602,0.0846,0.174,0,0,0,0,0,0,0.0394 +0.333,0.617,0.103,0.188,0,0,0,0,0,0,0.158 +0.333,0.633,0.124,0.222,0,0,0,0,0,0.233,0.0394 +1,0.79,0.457,0.736,0,0,0,0,0,0,0.0788 +0.667,0.704,0.432,0.613,0,0,0,0,0,0,0 +0.667,0.683,0.532,0.635,0,0,0,0,0,0.233,0 +1,0.642,0.505,0.555,0,0,0,0,0,0,0.118 +1,0.6,0.307,0.35,0,0,0,0,0,0,0.0394 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0796 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.326 +1,0.621,0.109,0.318,0,0,0,0,0,0,0.202 +1,0.621,0.143,0.321,0,0,0,0,0,0,0.176 +0.667,0.621,0.169,0.312,0,0,0,0,0,0,0.363 +0.667,0.621,0.185,0.3,0,0,0,0,0,0,0.593 +1,0.651,0.288,0.413,0,0,0,0,0,0,0.118 +1,0.621,0.233,0.289,0,0,0,0,0,0,0.0394 +1,0.621,0.265,0.29,0,0,0,0,0,0.717,0.118 +1,0.602,0.154,0.174,0,0,0,0,0,0,0.197 +1,0.617,0.162,0.188,0,0,0,0,0,0,0 +1,0.704,0.315,0.395,0,0,0,0,0,0,0.197 +1,0.714,0.371,0.507,0,0,0,0,0,0,0 +1,0.704,0.485,0.613,0,0,0,0,0,0,0.461 +1,0.744,0.845,0.928,0,0,0,0,0,0,0 +1,0.682,0.78,0.807,0,0,0,0,0,0,0 +1,0.62,0.492,0.5,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0.119 +1,0.557,0.0705,0.099,0,0,0,0,0,0,0.106 +1,0.56,0.0282,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.245 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.405 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.14 +1,0.619,0.144,0.299,0,0,0,0,0,0.233,0.196 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.0788 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.182 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.271 +0.333,0.59,0.126,0.159,0,0,0,0,0,0,0.354 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.118 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0788 +0.333,0.616,0.163,0.162,0,0,0,0,0,0,0.184 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.36 +0.667,0.712,0.374,0.339,0,0,0,0,0,0,0.0788 +0.333,0.631,0.254,0.239,0,0,0,0,0,0,0.0788 +0.333,0.621,0.296,0.294,0,0,0,0,0,0,0 +0.333,0.601,0.274,0.326,0,0,0,0,0,0,0 +0.667,0.58,0.178,0.232,0,0,0,0,0,0,0.27 +1,0.568,0.157,0.183,0,0,0,0,0,0,0.0957 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,1,0.118 +1,0.578,0.0478,0.236,0,0,0,0,0,0.817,0.475 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.267 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.28 +0.333,0.59,0.0582,0.17,0.267,0.317,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0.653,0.917,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0.382,0.567,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0.724,0.667,0,0,0,0,0.0788 +0.333,0.59,0.0772,0.159,0.68,0,0,0,0,0,0.236 +0.667,0.64,0.155,0.269,0.537,0,0,0,0,0,0.236 +1,0.671,0.191,0.274,0.672,0,0,0,0,0.0667,0.158 +1,0.701,0.234,0.291,0.131,0,0,0,0,0.867,0 +1,0.712,0.313,0.339,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.0394 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0757 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.113 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.465 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.65 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.147 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.229 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.464 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.24 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.276 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.298 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.293 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.317,0.803 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.617,0.0394 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +0.333,0.637,0.164,0.194,0,0,0,0,0,0,0.255 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.158 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.553 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.172 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.118 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.158 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.236 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.158 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.118 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.163 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.266 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0.231 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.0788 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0788 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.187 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.25 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.492 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.543 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.191 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.151 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.305 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.158 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.315 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.315 +0.333,0.637,0.164,0.194,0,0,0,0,0,0.0667,0.182 +0.667,0.701,0.436,0.429,0,0,0,0,0,0.167,0.118 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0917 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0978 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.194 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.145 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.391 +0.667,0.619,0.0902,0.299,0,0,0,0,0,0,0.272 +0.667,0.619,0.1,0.291,0,0,0,0,0,0,0.206 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.197 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.158 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0.233,0.236 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.236 +1,0.771,0.343,0.412,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.569,0.233,0,0,0,0,0.199 +1,0.771,0.646,0.619,0.482,0,0,0,0,0.233,0.307 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.221 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.619,0.11,0.301,0,0,0.217,0.123,0,0,0.118 +1,0.619,0.144,0.299,0,0,0.612,0.14,0.483,0,0.197 +1,0.619,0.17,0.291,0,0,0.39,0,0,0,0.0394 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.597,0.483,0.22,0.263,0.117,0,0.433 +1,0.619,0.234,0.269,0,0,0.529,0,0.367,0,0.0394 +1,0.619,0.267,0.268,0,0,0.323,0,0,0,0.0394 +1,0.64,0.293,0.269,0,0,0,0,0,0,0.118 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.118 +1,0.771,0.468,0.412,0.347,0.367,0,0,0,0,0.118 +1,0.787,0.551,0.484,0.658,0.867,0,0,0,0,0.25 +1,0.771,0.725,0.619,0.781,0,0,0,0,0,0.319 +1,0.741,0.852,0.783,0.055,0,0,0,0,0,0.0394 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.0394 +1,0.599,0.337,0.415,0,0,0,0,0,0,0.2 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.359 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.158 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.249 +1,0.619,0.17,0.291,0,0,0,0,0,0,0.432 +0.667,0.59,0.102,0.164,0,0,0,0,0,0.117,0.197 +0.667,0.59,0.109,0.16,0,0,0,0,0,0.117,0 +1,0.619,0.234,0.269,0,0,0,0,0,0,0.3 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.315 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.257 +0.333,0.616,0.163,0.162,0,0,0,0,0,0.117,0.499 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.117,0.276 +1,0.787,0.551,0.484,0,0,0,0,0,0,0 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0.0394 +1,0.568,0.157,0.183,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0.0788 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.296 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.075 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.143 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.287 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.135 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0.0394 +0.333,0.59,0.053,0.174,0,0,0,0,0,0.233,0.0394 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.197 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.197 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.197 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.118 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.0757 +1,0.771,0.343,0.412,0,0,0,0,0,0.467,0.33 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.2 +1,0.771,0.646,0.619,0.143,0.0667,0,0,0,0,0.551 +1,0.741,0.797,0.783,0.766,0.417,0.379,0.263,0.233,0,0.465 +1,0.679,0.756,0.88,0.754,0,0,0,0,0,0 +1,0.599,0.31,0.415,0.211,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.206 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.313 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.56 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.302 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.197 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0348 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.158 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.197 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.233,0.274 +0.667,0.616,0.104,0.162,0,0,0,0,0,0.233,0.0394 +1,0.701,0.234,0.291,0,0,0,0,0,0,0.0788 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.0394 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0701 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.128 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.21 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.371 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.168 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.385 +0.667,0.59,0.0582,0.17,0,0,0,0,0,0,0.0913 +0.667,0.59,0.0633,0.164,0,0,0,0,0,0,0.254 +0.667,0.59,0.0662,0.16,0,0,0,0,0,0,0.0788 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0.289 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.118 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0788 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.19 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0.401 +1,0.787,0.461,0.484,0,0,0,0,0,0,0 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.118 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0394 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.158 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.291 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0.428 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.158 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.236 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.0853,0.159,0.527,0.483,0,0,0,0,0.0788 +0.667,0.671,0.191,0.274,0.277,0,0,0,0,0,0.0394 +0.333,0.631,0.125,0.17,0.435,0.483,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.319,0,0,0,0,0.317,0.116 +1,0.771,0.646,0.619,0,0,0,0,0,0.15,0.15 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.17 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.0394 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0394 +1,0.557,0.0214,0.0518,0,0,0,0,0,0,0.0788 +1,0.557,0.0316,0.11,0,0,0,0,0,0,0.289 +0.667,0.578,0.0478,0.236,0,0,0,0,0,0,0.233 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0.233,0.235 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0.281 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.118 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.197 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.473 +0.667,0.64,0.155,0.269,0,0,0,0,0,0.233,0.315 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0.233,0.158 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.118 +1,0.771,0.646,0.619,0,0,0,0,0,0,0 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.0825 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +0.667,0.58,0.163,0.232,0,0,0,0,0,0,0.0394 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.562 +0.667,0.585,0.0436,0.172,0,0,0,0,0,0.117,0.29 +0.667,0.59,0.0641,0.175,0.229,0.367,0,0,0,0.117,0.0394 +0.667,0.619,0.144,0.299,0.805,0.117,0,0,0,0,0.118 +0.667,0.619,0.17,0.291,0.571,0,0,0,0,0,0.315 +0.333,0.59,0.102,0.164,0.616,0,0,0,0,0,0 +0.333,0.59,0.109,0.16,0.368,0,0,0,0,0,0.197 +0.667,0.619,0.234,0.269,0,0,0,0,0,0,0 +0.333,0.59,0.142,0.159,0,0,0,0,0,0,0.118 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.0394 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.233,0.118 +0.667,0.701,0.318,0.291,0,0,0,0,0,0,0.197 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.158 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0394 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0 +1,0.617,0.496,0.597,0,0,0,0,0,0,0 +1,0.571,0.226,0.249,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.585,0.0436,0.172,0,0,0,0,0,0,0.268 +1,0.59,0.0641,0.175,0,0,0,0,0,0.117,0.158 +1,0.648,0.206,0.424,0.168,0.117,0,0,0,0.35,0 +1,0.648,0.246,0.411,0.684,0.867,0,0,0,0,0 +0.333,0.59,0.102,0.164,0.154,0,0,0,0,0,0.118 +0.333,0.59,0.109,0.16,0,0,0,0,0,0,0.0788 +0.333,0.59,0.126,0.159,0.297,0.367,0,0,0,0,0.315 +0.333,0.59,0.142,0.159,0.635,0.117,0,0,0,0,0.118 +0.667,0.64,0.293,0.269,0.48,0,0,0,0,0,0 +1,0.725,0.452,0.386,0,0,0,0,0,0,0 +1,0.771,0.468,0.412,0,0,0,0,0,0.367,0 +1,0.787,0.551,0.484,0,0,0,0,0,0.1,0.0788 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0788 +1,0.741,0.852,0.783,0,0,0,0,0,0.233,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.198 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0394 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0788 +0.667,0.57,0.0318,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.197 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0788 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0.0788 +0.667,0.631,0.125,0.17,0,0,0.407,0.263,0.567,0,0.0788 +1,0.712,0.313,0.339,0,0,0.459,0,0.417,0,0.0788 +1,0.701,0.436,0.429,0,0,0.728,0,0,0,0 +1,0.681,0.537,0.538,0,0,0.11,0,0,0.233,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.0394 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.0788 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.127 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.0804 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0788 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.276 +0.333,0.59,0.0582,0.17,0,0,0.0887,0.0702,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0.665,0.193,0.233,0,0.0788 +0.333,0.59,0.0662,0.16,0,0,0.136,0,0,0.233,0.0394 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.315 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.153 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.31 +0.667,0.616,0.104,0.162,0,0,0,0,0,0,0.436 +0.667,0.631,0.125,0.17,0,0,0,0,0,0,0.236 +1,0.712,0.313,0.339,0,0,0,0,0,0,0.0394 +1,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.681,0.537,0.538,0.64,0.483,0,0,0,0,0.118 +1,0.64,0.509,0.603,0.255,0,0,0,0,0,0.0394 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.167 +1,0.56,0.0238,0.0798,0,0,0,0,0,0.817,0.175 +1,0.578,0.0478,0.236,0,0,0,0,0,0.117,0.244 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.118 +0.333,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0.199,0.233,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0.595,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0.317,0.0788 +0.667,0.619,0.117,0.271,0,0,0,0,0,0.15,0.158 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.276 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.158 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.118 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.158 +0.333,0.631,0.125,0.17,0,0,0.0443,0.0702,0,0,0 +0,0.562,0.0159,0.0495,0,0,0.528,0.193,0.233,0,0.0788 +0.667,0.701,0.436,0.429,0,0,0.755,0,0,0,0.0788 +1,0.741,0.797,0.783,0,0,0.503,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.58,0.163,0.232,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.4,0.315 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.229 +1,0.578,0.0478,0.236,0,0,0,0,0,0.617,0.148 +0.667,0.609,0.0639,0.295,0,0,0,0,0,0,0.0994 +0.667,0.619,0.077,0.301,0,0,0,0,0,0,0 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.664 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.616,0.104,0.162,0,0,0,0,0,0,0.0788 +0.333,0.631,0.125,0.17,0,0,0,0,0,0,0 +1,0.787,0.461,0.484,0.347,0.483,0,0,0,0.233,0.315 +1,0.771,0.646,0.619,0,0,0,0,0,0,0.394 +1,0.741,0.797,0.783,0,0,0,0,0,0,0 +1,0.679,0.756,0.88,0,0,0,0,0,0,0.0784 +1,0.58,0.163,0.232,0,0,0,0,0,0,0.255 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0.0879 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.36 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.301 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.341 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.197 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.667,0.701,0.234,0.291,0.709,0.483,0,0,0,0,0.0788 +1,0.787,0.461,0.484,0.762,0,0,0,0,0,0.0394 +1,0.771,0.646,0.619,0.586,0,0,0,0,0,0.0394 +1,0.741,0.797,0.783,0.689,0,0,0,0,0,0.327 +1,0.679,0.756,0.88,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.59,0.0641,0.175,0,0,0,0,0,0,0.118 +1,0.59,0.0809,0.174,0,0,0,0,0,0,0.221 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.118 +0.667,0.619,0.186,0.279,0,0,0,0,0,0.367,0 +1,0.619,0.199,0.271,0,0,0,0,0,0.1,0.0394 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.276 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.276 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.197 +0.667,0.671,0.308,0.274,0,0,0,0,0,0.367,0.317 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.1,0.675 +1,0.787,0.551,0.484,0,0,0,0,0,0,0.22 +1,0.771,0.725,0.619,0,0,0,0,0,0,0.0927 +1,0.741,0.852,0.783,0,0,0,0,0,0,0 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.119 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.565,0.0875,0.116,0,0,0,0,0,0,0.0788 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.365 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.619,0.17,0.291,0,0,0,0,0,0,0.0788 +1,0.619,0.186,0.279,0,0,0,0,0,0,0 +0.667,0.59,0.109,0.16,0,0,0,0,0,0,0.0394 +0.667,0.59,0.126,0.159,0,0,0,0,0,0,0.236 +0.667,0.59,0.142,0.159,0,0,0,0,0,0,0.197 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0788 +1,0.725,0.452,0.386,0,0,0,0,0,0,0.158 +0.667,0.701,0.318,0.291,0,0,0,0,0,0.233,0.0788 +1,0.787,0.551,0.484,0.487,0.233,0,0,0,0,0 +1,0.771,0.725,0.619,0.497,0,0,0,0,0,0 +1,0.741,0.852,0.783,0.604,0,0,0,0,0,0.118 +1,0.679,0.786,0.88,0.602,0,0,0,0,0,0 +1,0.599,0.337,0.415,0.611,0,0,0,0,0,0 +1,0.568,0.157,0.183,0.525,0,0,0,0,0,0.18 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.437,0.544,0.233,0.233,0.168 +1,0.633,0.0879,0.417,0,0,0.45,0,0,0,0.0578 +1,0.648,0.108,0.427,0,0,0.335,0,0,0,0.158 +1,0.648,0.127,0.424,0,0,0.563,0,0,0,0 +1,0.648,0.143,0.411,0,0,0.604,0,0,0.233,0.118 +0.667,0.619,0.111,0.279,0.309,0.317,0.673,0,0,0,0.118 +0.667,0.619,0.117,0.271,0.241,0.167,0,0,0,0,0.354 +0.667,0.619,0.131,0.269,0,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.276 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0.0394 +0.333,0.616,0.104,0.162,0,0,0.0214,0.0702,0,0.317,0.0788 +0.333,0.631,0.125,0.17,0,0,0.382,0.474,0.55,1,0.158 +1,0.787,0.461,0.484,0.377,0.483,0.347,0,0.683,0.333,0 +1,0.771,0.646,0.619,0.583,0,0.45,0,0,0,0 +1,0.741,0.797,0.783,0.895,0,0.633,0,0,0,0.172 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.208 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0186,0.0506,0,0,0,0,0,0,0.0394 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.118 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.669 +1,0.633,0.0879,0.417,0,0,0,0,0,0,0.163 +0.667,0.619,0.077,0.301,0,0,0.0657,0.263,0.0667,0,0.646 +0.333,0.59,0.053,0.174,0,0,0.538,0,0.417,0,0.0788 +0.333,0.59,0.0582,0.17,0,0,0.203,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0.817,0.276 +0.667,0.619,0.131,0.269,0,0,0,0,0,0.117,0.0788 +0.667,0.619,0.139,0.268,0,0,0,0,0,0,0.158 +0.667,0.64,0.155,0.269,0,0,0.563,0.263,0.317,0,0.0394 +0.667,0.671,0.191,0.274,0,0,0.347,0,0.417,0,0 +1,0.771,0.343,0.412,0,0,0,0,0,0,0.309 +1,0.787,0.461,0.484,0,0,0,0,0,0,0.12 +1,0.771,0.646,0.619,0,0,0,0,0,0.233,0.307 +1,0.741,0.797,0.783,0.707,0.483,0,0,0,0,0.184 +1,0.64,0.509,0.603,0,0,0,0,0,0,0.146 +1,0.599,0.31,0.415,0,0,0,0,0,0,0.525 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.56,0.0377,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.56,0.0157,0.0495,0,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.093 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.135 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.471 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.62 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.158 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.315 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0.131,0.263,0.233,0,0.197 +0.333,0.616,0.104,0.162,0,0,0,0,0,0.233,0.0394 +0.667,0.701,0.234,0.291,0,0,0,0,0,0,0 +0.667,0.712,0.313,0.339,0,0,0,0,0,0,0.118 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +1,0.621,0.276,0.294,0,0,0,0,0,0,0.118 +1,0.601,0.262,0.326,0,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.348 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0,0.502 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.208 +0.667,0.59,0.053,0.174,0,0,0,0,0,0,0.391 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.118 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.197 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.667,0.671,0.191,0.274,0,0,0,0,0,0.233,0.0394 +0.667,0.701,0.234,0.291,0.379,0.233,0,0,0,0,0 +0.667,0.712,0.313,0.339,0.468,0,0,0,0,0.467,0.0394 +1,0.771,0.646,0.619,0.534,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0,0,0,0,0,0,0.0394 +0.667,0.64,0.509,0.603,0,0,0.382,0.263,0.317,0,0 +0.667,0.599,0.31,0.415,0,0,0.462,0,0.417,0,0 +1,0.565,0.0765,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.207 +1,0.56,0.0238,0.0798,0,0,0,0,0,0,0.513 +1,0.57,0.0318,0.143,0,0,0,0,0,0,0.693 +1,0.609,0.0639,0.295,0,0,0,0,0,0,0.169 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0788 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0.138 +0.667,0.619,0.117,0.271,0,0,0,0,0,0,0.143 +0.667,0.59,0.0735,0.159,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.667,0.601,0.0853,0.159,0,0,0,0,0,0.233,0.0788 +0.667,0.671,0.191,0.274,0,0,0,0,0,0,0 +1,0.771,0.343,0.412,0.314,0.317,0,0,0,0,0 +1,0.787,0.461,0.484,0.248,0.917,0.28,0.263,0.483,0,0 +1,0.771,0.646,0.619,0,0,0.309,0,0,0,0.0394 +1,0.741,0.797,0.783,0,0,0,0,0,0,0.118 +1,0.64,0.509,0.603,0,0,0,0,0,0,0 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.568,0.137,0.183,0,0,0,0,0,0,0.1 +1,0.56,0.0443,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.236 +0.667,0.56,0.0223,0.0798,0,0,0,0,0,0,0.0788 +0.667,0.57,0.0297,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +0.667,0.59,0.0641,0.175,0,0,0,0,0,0,0.197 +0.667,0.59,0.0809,0.174,0.703,0.233,0,0,0,0,0.236 +0.667,0.59,0.0941,0.17,0,0,0,0,0,0,0.0788 +0.667,0.59,0.102,0.164,0.777,0.483,0,0,0,0,0 +0.667,0.59,0.109,0.16,0.715,0,0,0,0,0,0.197 +0.667,0.619,0.234,0.269,0.0637,0,0,0,0,0.233,0.236 +0.667,0.619,0.267,0.268,0,0,0,0,0,0,0 +0.667,0.64,0.293,0.269,0,0,0,0,0,0,0.371 +0.667,0.671,0.308,0.274,0,0,0,0,0,0,0.195 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0 +0.333,0.637,0.196,0.194,0,0,0,0,0,0,0.0788 +1,0.771,0.725,0.619,0,0,0,0,0,0,0 +1,0.741,0.852,0.783,0,0,0,0,0,0,0.139 +1,0.679,0.786,0.88,0,0,0,0,0,0,0.45 +1,0.599,0.337,0.415,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.111 +1,0.619,0.144,0.299,0,0,0,0,0,0,0.284 +1,0.648,0.246,0.411,0,0,0,0,0,0,0.196 +0.667,0.619,0.186,0.279,0,0,0,0,0,0,0.466 +0.667,0.619,0.199,0.271,0,0,0,0,0,0,0 +0.667,0.619,0.234,0.269,0,0,0,0,0,0.467,0.197 +1,0.648,0.391,0.378,0,0,0,0,0,0,0.158 +0.667,0.601,0.156,0.159,0,0,0,0,0,0,0.0394 +0.667,0.616,0.163,0.162,0,0,0,0,0,0,0 +0.667,0.631,0.168,0.17,0,0,0,0,0,0,0.0394 +0.667,0.637,0.196,0.194,0,0,0,0,0,0,0.276 +0.667,0.631,0.254,0.239,0,0,0,0,0,0,0.0788 +1,0.681,0.574,0.538,0,0,0.476,0.263,0.367,0,0.0394 +1,0.64,0.53,0.603,0,0,0.251,0,0.617,0,0.388 +1,0.617,0.496,0.597,0,0,0,0,0,0.367,0.139 +1,0.568,0.157,0.183,0,0,0,0,0,0.333,0 +1,0.557,0.0595,0.099,0,0,0,0,0,0,0 +1,0.56,0.0238,0.0578,0,0,0,0,0,0,0.0394 +1,0.56,0.0172,0.0495,0,0,0,0,0,0,0.236 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.385 +1,0.578,0.0478,0.236,0,0,0,0,0,0,0.26 +0.667,0.585,0.0399,0.172,0,0,0,0,0,0.233,0.158 +0.667,0.59,0.0465,0.175,0,0,0,0,0,0,0.0788 +0.333,0.59,0.053,0.174,0,0,0,0,0,0,0.118 +0.333,0.59,0.0582,0.17,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0633,0.164,0,0,0,0,0,0,0 +0.333,0.59,0.0662,0.16,0,0,0,0,0,0,0.236 +0.333,0.59,0.0735,0.159,0,0,0,0,0,0,0.118 +0.333,0.59,0.0772,0.159,0,0,0,0,0,0,0.0788 +0.333,0.601,0.0853,0.159,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.0394 +0.667,0.712,0.313,0.339,0,0,0,0,0,0.15,0.0394 +0.667,0.701,0.436,0.429,0,0,0,0,0,0,0 +0.667,0.681,0.537,0.538,0.428,0.317,0,0,0,0,0.0394 +1,0.64,0.509,0.603,0.314,0.167,0,0,0,0,0.118 +1,0.599,0.31,0.415,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.119 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.473 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.366 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.215 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.318 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.345 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.111 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.317,0.236 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.15,0.315 +0.333,0.591,0.073,0.149,0,0,0.269,0.333,0,0,0.276 +0.333,0.591,0.0767,0.149,0,0,0.385,0.193,0.233,0.233,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.347 +1,0.728,0.277,0.353,0,0,0,0,0,0.233,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.0394 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.141 +0.667,0.704,0.432,0.365,0,0,0.18,0.263,0.0667,0,0.297 +1,0.683,0.532,0.464,0,0,0.164,0,0.667,0,0.258 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.0903 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.204 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.464 +1,0.611,0.0634,0.284,0,0,0,0,0,0,0.324 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.356 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.241 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.518 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.3 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.317,0.197 +1,0.774,0.34,0.371,0,0,0,0,0,0.633,0.315 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0394 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.158 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.0995 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.154 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.188 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.707 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.37 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.118 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.667,0.591,0.0658,0.15,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.467,0.354 +1,0.714,0.31,0.296,0,0,0,0,0,0,0.116 +1,0.704,0.432,0.365,0.455,0.567,0,0,0,0,0.537 +1,0.683,0.532,0.464,0.3,0.65,0,0,0,0,0.0394 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.328 +1,0.586,0.0396,0.167,0,0,0,0,0,0,0.214 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.38 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.132 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0.373,0.317,0,0,0,0,0.276 +0.333,0.591,0.0767,0.149,0.283,0.167,0,0,0,0,0.118 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0788 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.467,0.0788 +1,0.774,0.34,0.371,0.314,0.317,0,0,0,0,0.158 +1,0.79,0.457,0.42,0.538,0.167,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0.663,0,0,0,0,0,0.11 +1,0.744,0.791,0.671,0.476,0,0,0,0,0,0.241 +1,0.682,0.749,0.799,0,0,0,0,0,0,0 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0.165 +1,0.56,0.0281,0.0578,0,0,0,0,0,0,0.45 +1,0.56,0.0208,0.0495,0,0,0,0,0,0,0.0394 +1,0.56,0.0179,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.29,0.317,0,0,0,0,0.223 +0.667,0.621,0.143,0.278,0.347,0.4,0,0,0,0,0.294 +1,0.651,0.244,0.381,0,0,0,0,0,0,0.678 +1,0.651,0.268,0.364,0,0,0,0,0,0,0.159 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.147 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.158 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.197 +0.667,0.642,0.291,0.249,0,0,0,0,0,0.567,0.0788 +0.667,0.673,0.305,0.252,0,0,0,0,0,1,0 +1,0.774,0.464,0.371,0,0,0,0,0,1,0.0788 +1,0.79,0.547,0.42,0,0,0,0,0,1,0.21 +1,0.774,0.719,0.523,0,0,0,0,0,1,0 +1,0.683,0.57,0.464,0,0,0,0,0,0.483,0.0394 +1,0.642,0.526,0.549,0,0,0,0,0,0,0.296 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.0788 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.232 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.486 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.299 +0.333,0.591,0.0934,0.16,0,0,0.11,0.333,0,0,0.233 +0.667,0.621,0.185,0.259,0,0,0.428,0.193,0.483,0,0.315 +0.333,0.591,0.108,0.15,0,0,0.502,0,0,0,0.236 +0.667,0.591,0.125,0.149,0,0,0.15,0,0,0,0.118 +0.667,0.591,0.141,0.149,0.12,0.0667,0,0,0,0,0.207 +0.667,0.602,0.154,0.149,0.717,0.65,0,0,0,0,0.155 +0.667,0.673,0.305,0.252,0,0,0.0306,0.0702,0,0.317,0.445 +0.667,0.704,0.315,0.264,0,0,0.0183,1,0.05,0.633,0.628 +0.667,0.714,0.371,0.296,0,0,0,0,0.433,0,0.0788 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.0394 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0 +0.333,0.602,0.272,0.299,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.0767 +0.667,0.565,0.0869,0.116,0,0,0,0,0,0,0.075 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.349 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.108 +1,0.56,0.0236,0.0781,0,0,0,0,0,0.0667,0.44 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0.4,0.249 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.216 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.118 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.273 +0,0.562,0.0159,0.0495,0,0,0.272,0.263,0.0667,0,0.269 +0.333,0.602,0.0846,0.149,0,0,0.295,0,0.667,0,0 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.233,0.0394 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.233,0.197 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0776 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.433 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.109 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.152 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.141 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.406 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.717,0.0788 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0.233,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.394 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.158 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0394 +0.667,0.617,0.103,0.151,0,0,0,0,0,0,0 +1,0.774,0.34,0.371,0,0,0,0,0,0,0.324 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0788 +1,0.744,0.791,0.671,0.738,0.233,0,0,0,0,0 +1,0.682,0.749,0.799,0.497,0.0667,0,0,0,0,0.299 +1,0.6,0.307,0.405,0.616,0.167,0,0,0,0.567,0.197 +1,0.569,0.136,0.183,0.237,0,0,0,0,0.633,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.148 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.196 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.268 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0539 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.318 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.277 +0.333,0.571,0.0316,0.139,0.103,0.0667,0,0,0,0,0 +0.333,0.586,0.0396,0.167,0.625,1,0,0,0,0,0 +0.333,0.591,0.0462,0.168,0.565,0.15,0,0,0,0,0.156 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.254 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.205 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.158 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.197 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.315 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.23 +0.667,0.642,0.153,0.249,0,0,0,0,0,0.0667,0.409 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.167,0.0788 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.197 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0,0,0.11,0.263,0.0667,0,0 +1,0.744,0.791,0.671,0,0,0.511,0,0.167,0,0.0394 +1,0.682,0.749,0.799,0,0,0.379,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.307 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.51 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.158 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.233,0.197 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0.0667,0.354 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0.167,0.0788 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.475 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.236 +1,0.79,0.457,0.42,0,0,0,0,0,0.233,0.118 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.386 +1,0.683,0.532,0.464,0,0,0,0,0,0,0.168 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.234 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.187 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.505 +1,0.589,0.0632,0.317,0,0,0,0,0,0.233,0.781 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.474 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.0578 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.118 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.118 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.158 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.0394 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.236 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0.0394 +0.667,0.704,0.432,0.365,0,0,0,0,0,0,0.118 +0.667,0.683,0.532,0.464,0,0,0,0,0,0,0.383 +1,0.602,0.26,0.299,0,0,0,0,0,0,0.0199 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0798 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.0788 +0.667,0.591,0.0803,0.164,0,0,0,0,0,0,0.315 +1,0.621,0.169,0.27,0,0,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0,0,0,0.317,0.0788 +0.333,0.591,0.108,0.15,0,0,0,0,0,0.4,0.0788 +0.667,0.591,0.125,0.149,0,0,0,0,0,0,0.158 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.118 +0.667,0.642,0.291,0.249,0,0,0,0,0,0,0 +0.667,0.673,0.305,0.252,0,0,0,0,0,0,0.236 +1,0.774,0.464,0.371,0,0,0,0,0,0,0.0394 +0.667,0.714,0.371,0.296,0,0,0,0,0,0,0 +1,0.774,0.719,0.523,0,0,0,0,0,0,0 +1,0.744,0.845,0.671,0,0,0,0,0,0,0.0394 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.073 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.133 +1,0.56,0.0223,0.0781,0,0,0,0,0,0,0.457 +1,0.58,0.0409,0.228,0,0,0,0,0,0,0.255 +1,0.611,0.0685,0.284,0,0,0,0,0,0.233,0.477 +1,0.621,0.109,0.286,0,0,0,0,0,0,0 +0.667,0.591,0.0803,0.164,0.243,0.317,0,0,0,0,0.0788 +0.333,0.591,0.0934,0.16,0.525,0.167,0,0,0,0,0 +0.333,0.591,0.101,0.154,0,0,0.356,0.263,0.317,0,0.0788 +0.667,0.621,0.198,0.251,0,0,0.67,0,0.667,0,0.357 +0.333,0.591,0.125,0.149,0,0,0.404,0,0,0,0 +0.667,0.621,0.265,0.249,0,0,0.705,0,0,0,0.0788 +0.667,0.642,0.291,0.249,0,0,0.63,0,0,0.467,0.394 +0.667,0.673,0.305,0.252,0,0,0.459,0,0,0,0.118 +0.667,0.704,0.315,0.264,0,0,0.639,0,0,0,0.0788 +0.333,0.638,0.194,0.173,0.246,0.317,0.243,0,0,0,0 +0.667,0.704,0.485,0.365,0.408,0.167,0,0,0,0,0.0394 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0 +1,0.565,0.0869,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.158 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.197 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0.317,0 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.633,0 +0.667,0.621,0.116,0.251,0,0,0.101,0.0702,0,0,0.118 +0.667,0.621,0.13,0.249,0,0,0.414,0.193,0.483,0,0.433 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0.0788 +0.667,0.642,0.153,0.249,0,0,0,0,0,0,0.118 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.467,0.221 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.322 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.346 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0968 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0.506,0.263,0.483,0,0.197 +1,0.56,0.0157,0.0495,0,0,0.476,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.302 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0954 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.17 +1,0.621,0.0895,0.278,0,0,0,0,0,0,0.194 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.449 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.485 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.283 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.527 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.118 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.0667,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.167,0.354 +1,0.79,0.457,0.42,0.449,0.483,0,0,0,0,0.0788 +1,0.774,0.64,0.523,0.478,0,0,0,0,0,0.136 +1,0.744,0.791,0.671,0.729,0,0,0,0,0.233,0.466 +1,0.642,0.505,0.549,0.466,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0394 +1,0.569,0.136,0.183,0,0,0,0,0,0,0.0719 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0.0539 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.325 +1,0.58,0.0474,0.228,0,0,0,0,0,0.15,0.131 +1,0.635,0.0871,0.402,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.426 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.168 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.467,0.0788 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.467,0.0788 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.683,0.532,0.464,0.522,0.817,0,0,0,0,0.0394 +1,0.642,0.505,0.549,0.672,0.4,0,0,0,0,0.104 +1,0.581,0.162,0.227,0,0,0,0,0,0,0.224 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.259 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.236 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0.817,0.0788 +0.333,0.591,0.0462,0.168,0,0,0,0,0,1,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,1,0.236 +0.333,0.591,0.0578,0.16,0,0,0,0,0,1,0.236 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0.0333,0.118 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.0394 +0.667,0.714,0.31,0.296,0,0,0,0,0,0,0 +0.667,0.704,0.432,0.365,0.0925,0.0667,0,0,0,0.717,0.0394 +1,0.744,0.791,0.671,0.621,0.417,0,0,0,0,0 +1,0.682,0.749,0.799,0.571,0,0,0,0,0,0.133 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.213 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.56,0.0186,0.0503,0,0,0,0,0,0,0.197 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.219 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.154 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.365 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.176 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.163 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.118 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.118 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.233,0.0394 +0.667,0.714,0.31,0.296,0.461,0.567,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0.7,0.15,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0,0.125 +1,0.581,0.162,0.227,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.289 +1,0.591,0.0636,0.168,0,0,0,0,0,0,0.248 +1,0.621,0.143,0.278,0,0,0,0,0,0,0.393 +1,0.621,0.169,0.27,0,0,0,0,0,0,0.177 +1,0.651,0.268,0.364,0,0,0,0,0,0,0.236 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.278 +1,0.651,0.34,0.349,0,0,0,0,0,0,0.397 +1,0.651,0.388,0.348,0,0,0,0,0,0,0.236 +1,0.682,0.427,0.349,0,0,0.427,0.263,0.233,0.233,0.158 +1,0.728,0.449,0.353,0,0,0.446,0,0,0,0.0788 +1,0.774,0.464,0.371,0,0,0.907,0,0,0,0.0394 +1,0.79,0.547,0.42,0,0,0.497,0,0,0,0.0394 +1,0.774,0.719,0.523,0,0,0.486,0,0,0,0.0788 +1,0.744,0.845,0.671,0,0,0.407,0,0,0.0667,0 +1,0.682,0.78,0.799,0,0,0,0,0,0.167,0 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.108 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.56,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.0667,0.526 +1,0.591,0.0636,0.168,0,0,0,0,0,0.167,0.0394 +1,0.591,0.0803,0.164,0,0,0,0,0,0,0.118 +1,0.621,0.169,0.27,0,0,0,0,0,0,0.0394 +0.667,0.591,0.101,0.154,0,0,0,0,0,0,0 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.0788 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.236 +0.333,0.591,0.141,0.149,0,0,0,0,0,0,0.276 +0.333,0.602,0.154,0.149,0,0,0,0,0,0.233,0.158 +0.667,0.673,0.305,0.252,0.11,0.0667,0.00459,0.263,0.567,0,0.236 +1,0.774,0.464,0.371,0.45,0.167,0,0,0.417,0,0.0788 +1,0.79,0.547,0.42,0,0,0,0,0,0,0.0788 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0 +0.667,0.683,0.57,0.464,0,0,0,0,0,0.233,0.0719 +1,0.682,0.78,0.799,0,0,0,0,0,0,0 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.559,0.059,0.099,0,0,0,0,0,0,0.0394 +1,0.559,0.0314,0.066,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.118 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.0788 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.236 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.362 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.316 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.155 +0.333,0.591,0.073,0.149,0,0,0,0,0,0.467,0.296 +0.667,0.621,0.137,0.249,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0788 +0.333,0.617,0.103,0.151,0,0,0,0,0,0,0.276 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.158 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.315 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.293 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.221 +0.667,0.58,0.0474,0.228,0,0,0,0,0,0,0.475 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.231 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0.118 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.236 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.158 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.158 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.315 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0,0.582 +0.667,0.714,0.31,0.296,0,0,0,0,0,0.467,0.0202 +1,0.774,0.64,0.523,0,0,0,0,0,0,0 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0394 +1,0.602,0.26,0.299,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.104 +1,0.559,0.0314,0.107,0,0,0,0,0,0,0.276 +1,0.589,0.0632,0.317,0,0,0,0,0,0.233,0.604 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0913 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.311 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.248 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0.0667,0.283 +0.667,0.621,0.11,0.259,0,0,0,0,0,0.4,0.265 +0.667,0.621,0.116,0.251,0,0,0,0,0,0,0.0788 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.118 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.158 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.167,0.158 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0394 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0632 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.298 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0562 +1,0.56,0.0236,0.0781,0,0,0,0,0,0,0.217 +0.667,0.571,0.0316,0.139,0,0,0.19,0.263,0.0667,0.717,0.166 +0.667,0.586,0.0396,0.167,0,0,0,0,1,0,0.585 +0.333,0.591,0.0462,0.168,0,0,0,0,0.417,0,0.297 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0 +0.667,0.621,0.0997,0.27,0,0,0,0,0,0,0.115 +0.667,0.621,0.11,0.259,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0658,0.15,0,0,0,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.118 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0394 +0.667,0.673,0.19,0.252,0,0,0,0,0,0.0667,0.268 +1,0.774,0.34,0.371,0,0,0,0,0,0.167,0.0394 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.118 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0788 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.214 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.56,0.0171,0.0495,0,0,0,0,0,0,0.315 +1,0.56,0.0157,0.0495,0,0,0,0,0,0,0.142 +1,0.559,0.0213,0.0511,0,0,0,0,0,0,0.216 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.474 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0.273 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0462,0.168,0,0,0,0,0,0,0 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.236 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.0788 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0 +1,0.79,0.457,0.42,0,0,0,0,0,0,0 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.118 +1,0.744,0.791,0.671,0,0,0,0,0,0,0 +1,0.642,0.505,0.549,0,0,0,0,0,0.0667,0.0394 +1,0.6,0.307,0.405,0,0,0,0,0,0.167,0.0873 +1,0.569,0.136,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0573 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.171 +1,0.586,0.0433,0.167,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.158 +0.667,0.591,0.0934,0.16,0,0,0,0,0,0.567,0.0788 +0.667,0.591,0.101,0.154,0,0,0,0,0,0.383,0.197 +0.667,0.591,0.108,0.15,0,0,0,0,0,0,0.197 +0.333,0.591,0.125,0.149,0,0,0,0,0,0,0.158 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0394 +0.333,0.602,0.154,0.149,0,0,0,0,0,0,0.315 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.621 +0.667,0.704,0.315,0.264,0,0,0,0,0,0,0.417 +0.667,0.714,0.371,0.296,0,0,0,0,0,0.233,0.197 +0.667,0.704,0.485,0.365,0,0,0,0,0,0,0.222 +0.667,0.683,0.57,0.464,0,0,0,0,0,0,0.166 +1,0.682,0.78,0.799,0,0,0,0,0,0,0.126 +1,0.62,0.492,0.582,0,0,0,0,0,0,0 +1,0.573,0.224,0.249,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.396,0.317,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.527,0.167,0,0,0,0,0.118 +1,0.586,0.0433,0.167,0,0,0,0,0,0.317,0 +1,0.591,0.0636,0.168,0,0,0.557,0.263,0.233,0.15,0.0394 +0.667,0.621,0.143,0.278,0,0,0.252,0,0,0,0.0788 +0.667,0.621,0.169,0.27,0,0,0.265,0,0,0,0.0394 +0.667,0.621,0.185,0.259,0,0,0.167,0,0,0,0.158 +0.667,0.621,0.198,0.251,0,0,0,0,0,0,0.118 +0.667,0.621,0.233,0.249,0,0,0,0,0,0,0.197 +0.667,0.621,0.265,0.249,0,0,0,0,0,0,0.0394 +0.667,0.602,0.154,0.149,0,0,0,0,0,0.233,0.276 +0.667,0.617,0.162,0.151,0,0,0,0,0,0,0.315 +1,0.774,0.464,0.371,0,0,0,0,0,0,0.0788 +1,0.79,0.547,0.42,0.349,0.483,0,0,0,0,0 +1,0.774,0.719,0.523,0.297,0,0,0,0,0,0.0394 +1,0.744,0.845,0.671,0,0,0,0,0,0,0 +1,0.682,0.78,0.799,0,0,0,0,0,0,0.115 +1,0.6,0.334,0.405,0,0,0,0,0,0,0.111 +1,0.569,0.156,0.183,0,0,0,0,0,0,0 +1,0.56,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0236,0.0578,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.192 +1,0.571,0.0316,0.139,0,0,0,0,0,0,0.348 +0.667,0.586,0.0396,0.167,0.791,0.483,0.101,0.0702,0,0,0.147 +0.667,0.621,0.0764,0.286,0.0855,0,0.312,0.193,0.483,0,0.242 +0.333,0.591,0.0527,0.164,0,0,0.453,0,0,0,0.0394 +0.333,0.591,0.0578,0.16,0,0,0.592,0,0,0,0.0788 +0.333,0.591,0.0629,0.154,0,0,0.309,0,0,0,0 +0.333,0.591,0.0658,0.15,0,0,0.326,0,0,0,0.118 +0.333,0.591,0.073,0.149,0,0,0.42,0,0,0,0.158 +0.333,0.591,0.0767,0.149,0,0,0.586,0,0,0,0.276 +0.333,0.602,0.0846,0.149,0,0,0.0214,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.167,0.118 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0788 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.0788 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0394 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.251 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.316 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.398 +0.667,0.586,0.0396,0.167,0,0,0,0,0,0,0.162 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0527,0.164,0,0,0.145,0.333,0,0,0 +0.333,0.591,0.0578,0.16,0,0,0.255,0.737,0.3,0,0.158 +0.667,0.621,0.11,0.259,0,0,0.379,0,0.683,0,0 +0.667,0.621,0.116,0.251,0,0,0.424,0,0,0,0.0394 +0.333,0.591,0.073,0.149,0,0,0.531,0,0,0,0.236 +0.333,0.591,0.0767,0.149,0,0,0.277,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0.0489,0.333,0,0,0.0394 +0.667,0.673,0.19,0.252,0,0,0,0.456,0.233,0.233,0 +0.667,0.704,0.232,0.264,0,0,0,0,0,0,0.398 +1,0.79,0.457,0.42,0,0,0.41,0.263,0.317,0,0.543 +1,0.774,0.64,0.523,0,0,0.101,0,0.167,0,0.0394 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.0394 +1,0.642,0.505,0.549,0,0,0,0,0,0,0 +1,0.6,0.307,0.405,0,0,0,0,0,0,0 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.169 +1,0.58,0.0474,0.228,0,0,0,0,0,0,0.227 +0.667,0.611,0.0634,0.284,0,0,0,0,0,0,0.248 +0.667,0.621,0.0764,0.286,0,0,0,0,0,0,0.259 +0.333,0.591,0.0527,0.164,0,0,0,0,0,0,0.158 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.354 +0.333,0.591,0.073,0.149,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0.0394 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.0788 +0.333,0.617,0.103,0.151,0,0,0,0,0,0.0667,0.354 +0.333,0.633,0.124,0.157,0,0,0,0,0,0.167,0.0394 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.0394 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.136 +1,0.744,0.791,0.671,0,0,0,0,0,0.233,0 +1,0.682,0.749,0.799,0.328,0.317,0,0,0,0,0.139 +1,0.62,0.453,0.582,0.44,0.4,0,0,0,0,0.0742 +0.667,0.565,0.0759,0.116,0,0,0,0,0,0,0.0557 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.23 +0.667,0.56,0.0236,0.0781,0,0,0,0,0,0,0.235 +0.667,0.571,0.0316,0.139,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.218 +0.667,0.591,0.0462,0.168,0,0,0,0,0,0,0.163 +0.667,0.621,0.0895,0.278,0,0,0,0,0,0,0.206 +0.333,0.591,0.0578,0.16,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0629,0.154,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0767,0.149,0,0,0,0,0,0,0 +0.333,0.602,0.0846,0.149,0,0,0,0,0,0,0.142 +0.667,0.673,0.19,0.252,0,0,0,0,0,0,0.504 +0.667,0.704,0.232,0.264,0,0,0,0,0,0.233,0.385 +1,0.79,0.457,0.42,0,0,0,0,0,0,0.154 +1,0.774,0.64,0.523,0,0,0,0,0,0,0.502 +1,0.744,0.791,0.671,0,0,0,0,0,0,0.355 +1,0.682,0.749,0.799,0,0,0,0,0,0,0.231 +1,0.6,0.307,0.405,0,0,0,0,0,0,0.0394 +1,0.565,0.0759,0.116,0,0,0,0,0,0,0.0394 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.242 +0.667,0.538,0.0323,0.136,0,0,0,0,0,0,0.248 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.364 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.289 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.512 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.0394 +0.333,0.589,0.128,0.148,0,0,0,0,0,0,0.118 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.118 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.0394 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.118 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0 +0.667,0.548,0.113,0.274,0,0,0,0,0,0.0667,0 +0.667,0.548,0.147,0.263,0,0,0,0,0,0.167,0.0788 +0.667,0.548,0.174,0.256,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.245,0,0,0,0,0,0,0.118 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.0394 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.158 +0.667,0.548,0.273,0.235,0,0,0,0,0,0.233,0.315 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0 +0.667,0.591,0.315,0.238,0,0,0.197,0.263,0.0667,0,0.315 +1,0.617,0.326,0.247,0,0,0.414,0,0.417,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.156 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.0788 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0.0801 +1,0.568,0.806,0.726,0,0,0,0,0,0,0.16 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +0.667,0.529,0.0286,0.0578,0,0,0,0,0,0,0.118 +0.667,0.529,0.0211,0.0495,0,0,0,0,0,0,0.118 +0.667,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.158 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.158 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.158 +1,0.548,0.147,0.263,0,0,0,0,0,0,0 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.0788 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +1,0.548,0.204,0.237,0,0,0,0,0,0,0.0394 +1,0.548,0.24,0.235,0,0,0,0,0,0.233,0.276 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.587 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.147 +1,0.606,0.464,0.332,0,0,0,0,0,0,0.0394 +1,0.645,0.479,0.345,0,0,0,0,0,0,0 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.0813 +1,0.645,0.743,0.467,0,0,0,0,0,0.233,0.0407 +1,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.546,0.182,0.219,0.639,0.467,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.197 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.142 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.165 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0394 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.354 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0394 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.315 +0.667,0.617,0.239,0.247,0.642,0.467,0,0,0,0,0.315 +0.667,0.626,0.32,0.273,0.649,0.467,0,0,0,0,0 +1,0.645,0.662,0.467,0.627,0,0,0,0,0,0.0788 +1,0.619,0.817,0.595,0.129,0,0,0,0,0,0.118 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.307 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.177 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.467,0.164 +1,0.514,0.0488,0.222,0,0,0.644,0.263,0.567,0.233,0.158 +0.667,0.54,0.0653,0.277,0,0,0.323,0,0.4,0,0.0788 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.118 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0394 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.233,0.0788 +1,0.645,0.351,0.345,0,0,0,0,0,0,0 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0394 +1,0.617,0.446,0.328,0,0,0,0,0,0.317,0.0394 +1,0.619,0.817,0.595,0,0,0,0,0,1,0 +1,0.568,0.774,0.726,0,0,0,0,0,0.8,0.502 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.135 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.172 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.351 +0.667,0.529,0.0241,0.0768,0,0,0,0,0,0,0.0788 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.233,0.303 +0.667,0.548,0.0788,0.274,0.627,0.7,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0.692,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0.298,0,0,0,0,0,0.197 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.118 +0.333,0.555,0.0751,0.142,0,0,0.0887,0.263,0.0667,0,0 +0.667,0.555,0.0789,0.142,0,0,0.242,0,0.167,0,0.0394 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.118 +0.667,0.576,0.106,0.144,0,0,0,0,0,0.317,0.197 +1,0.645,0.351,0.345,0,0,0,0,0,0.383,0 +0.667,0.594,0.168,0.161,0,0,0,0,0,0,0.0788 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0394 +0.667,0.581,0.283,0.231,0,0,0,0,0,0,0 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.325 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.197 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.537 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.375 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0394 +0.667,0.548,0.134,0.235,0,0,0,0,0,0,0.0788 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.118 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.233,0.118 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.0394 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0788 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.196 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.221 +1,0.568,0.774,0.726,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.258 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.16 +1,0.529,0.0241,0.0768,0,0,0.0489,0.0702,0,0,0.337 +0.667,0.538,0.0323,0.136,0.541,0.467,0,0.193,0.233,0,0 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.317,0 +0.333,0.555,0.0473,0.162,0,0,0,0,0,1,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,1,0.136 +0.667,0.548,0.103,0.256,0,0,0,0,0,0.983,0 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0676,0.143,0.428,0.467,0,0,0,0,0.0394 +0.667,0.548,0.134,0.235,0.162,0,0,0,0,0,0.315 +0.667,0.548,0.142,0.235,0,0,0,0,0,0,0.591 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0788 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.467,0 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0394 +1,0.658,0.473,0.384,0,0,0.026,0.0702,0,0,0.0394 +1,0.645,0.662,0.467,0,0,0.593,0.193,0.233,0,0.0394 +1,0.619,0.817,0.595,0,0,0.682,0,0,0,0 +1,0.568,0.774,0.726,0,0,0.498,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.0738 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0554 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.26 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.397 +1,0.54,0.0706,0.277,0,0,0,0,0,0,0.542 +1,0.548,0.113,0.274,0,0,0,0,0,0.233,0.421 +1,0.542,0.212,0.37,0,0,0,0,0,0,0.378 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.331 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.282 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.191 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.513 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.693 +0.333,0.564,0.159,0.142,0,0,0,0,0,0,0.0788 +0.333,0.576,0.167,0.144,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.594,0.2,0.161,0,0,0,0,0,0,0 +0.667,0.617,0.501,0.328,0,0,0.492,0.263,0.317,0.233,0.158 +1,0.619,0.873,0.595,0,0,0,0,0.65,0,0.118 +1,0.566,0.543,0.501,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0.0443,0.0702,0,0.233,0.0788 +1,0.548,0.147,0.263,0,0,0.781,0.193,0.483,0,0.118 +1,0.542,0.252,0.359,0,0,0.365,0,0,0,0.197 +1,0.542,0.277,0.343,0,0,0.645,0,0,0,0.0788 +1,0.542,0.297,0.331,0,0,0.451,0,0,0,0.118 +1,0.542,0.351,0.328,0,0,0.243,0,0,0,0.0394 +1,0.542,0.401,0.327,0,0,0.177,0,0,0,0.0394 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.0394 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.0394 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.118 +1,0.658,0.565,0.384,0,0,0,0,0,0.0667,0.0394 +1,0.645,0.743,0.467,0,0,0,0,0,0.867,0.197 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +0.667,0.566,0.543,0.501,0,0,0,0,0,0,0 +0.667,0.531,0.345,0.388,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.158 +1,0.529,0.0241,0.0768,0,0,0.304,0.263,0.233,0,0.236 +1,0.538,0.0323,0.136,0,0,0.424,0,0,0,0.236 +1,0.54,0.0653,0.277,0,0,0.433,0,0,0,0.345 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.17 +0.667,0.548,0.0923,0.263,0,0,0,0,0,0,0.334 +0.667,0.548,0.103,0.256,0,0,0,0,0,0,0.551 +0.667,0.548,0.113,0.245,0,0,0,0,0,0,0.217 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.281 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0816 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0802 +0.667,0.564,0.0871,0.142,0,0,0,0,0,0,0.0788 +0.667,0.576,0.106,0.144,0,0,0,0,0,0,0.0788 +1,0.617,0.239,0.247,0,0,0,0,0,0,0 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.0788 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0394 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0394 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.231 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.431 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.197 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.111 +0.667,0.562,0.0159,0.0495,0,0,0.335,0.263,0.233,0,0.163 +0.667,0.548,0.0788,0.274,0,0,0.581,0,0,0,0.236 +0.667,0.548,0.0923,0.263,0,0,0.44,0,0,0,0.236 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.197 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.158 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.0394 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.233,0.123 +1,0.645,0.351,0.345,0.164,0.0667,0,0,0,0,0.173 +1,0.658,0.473,0.384,0.164,0.4,0,0,0,0.317,0.307 +1,0.645,0.662,0.467,0,0,0,0,0,0.617,0.171 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.285 +0.667,0.564,0.269,0.275,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.219,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.216 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.373 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0391 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.276 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0788 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.233,0.236 +0.667,0.617,0.239,0.247,0.396,0.467,0,0,0,0,0.0788 +0.667,0.626,0.32,0.273,0.284,0,0,0,0,0.233,0.0788 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.118 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.0754 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.516 +1,0.516,0.468,0.557,0,0,0,0,0,0,0.292 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.242 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.567,0.194 +1,0.514,0.0488,0.222,0,0,0,0,0,0.617,0.274 +0.333,0.551,0.0406,0.163,0,0,0,0,0,0,0.122 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.253 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.281 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.118 +0.667,0.548,0.119,0.237,0,0,0.0183,0.0702,0,0,0.118 +0.667,0.548,0.134,0.235,0,0,0.65,0.456,0.567,0,0.118 +0.667,0.548,0.142,0.235,0,0,0.573,0,0.15,0.233,0.378 +1,0.568,0.23,0.328,0,0,0.754,0,0,0,0.0394 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.394 +0.667,0.589,0.128,0.148,0,0,0,0,0,0.233,0.197 +1,0.626,0.32,0.273,0.12,0.0667,0,0,0,0,0.0788 +1,0.617,0.446,0.328,0.401,0.4,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0.233,0.0778 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.272 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.0394 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.124 +0.667,0.548,0.0788,0.274,0,0,0.529,0.263,0.233,0,0.16 +0.333,0.555,0.0541,0.156,0,0,0.431,0,0,0,0.433 +0.333,0.555,0.0593,0.153,0,0,0.511,0,0,0,0.315 +0.333,0.555,0.0646,0.147,0,0,0.491,0,0,0,0.0788 +0.333,0.555,0.0676,0.143,0,0,0.462,0,0,0,0.118 +0.333,0.555,0.0751,0.142,0,0,0.422,0,0,0,0.197 +0.333,0.555,0.0789,0.142,0,0,0.32,0,0,0,0.153 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.274 +0.667,0.591,0.196,0.238,0,0,0,0,0,0,0.0788 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.0788 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.198 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.3 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.176 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.529,0.0226,0.0768,0,0,0,0,0,0.233,0.0788 +1,0.538,0.0301,0.136,0,0,0,0,0,0,0.197 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.197 +1,0.555,0.0654,0.162,0,0,0.131,0.263,0.0667,0.233,0.275 +1,0.555,0.0826,0.156,0,0,0.0917,0,1,0,0.345 +1,0.542,0.252,0.359,0,0,0,0,0.133,0,0.314 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.445 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.272 +0.667,0.548,0.24,0.235,0.283,0.233,0,0,0,0,0.0788 +0.667,0.548,0.273,0.235,0.613,0,0,0,0,0,0.0394 +0.667,0.566,0.3,0.235,0.386,0,0,0,0,0.567,0.118 +0.667,0.591,0.315,0.238,0,0,0,0,0,0.133,0 +1,0.617,0.326,0.247,0,0,0,0,0,0,0.0394 +1,0.626,0.383,0.273,0,0,0,0,0,0,0 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0 +1,0.568,0.806,0.726,0.37,0.467,0,0,0,0,0 +1,0.516,0.509,0.557,0.558,0,0,0,0,0,0 +1,0.477,0.232,0.249,0,0,0,0,0,0,0 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.197 +1,0.555,0.0654,0.162,0,0,0,0,0,0,0.118 +1,0.548,0.147,0.263,0,0,0,0,0,0.233,0.0394 +0.667,0.555,0.0961,0.153,0,0,0,0,0,0,0.315 +1,0.548,0.191,0.245,0,0,0,0,0,0,0 +0.667,0.555,0.111,0.143,0,0,0,0,0,0,0.0788 +0.667,0.555,0.129,0.142,0,0,0,0,0,0,0.118 +0.667,0.555,0.146,0.142,0,0,0,0,0,0.0667,0.0394 +0.333,0.564,0.159,0.142,0,0,0,0,0,0.167,0.0394 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.276 +0.333,0.589,0.172,0.148,0,0,0,0,0,0,0.315 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.158 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0.0394 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.197 +1,0.566,0.543,0.501,0,0,0,0,0,0,0.128 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0.159 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.491 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.0788 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.175 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.171 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0788 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.315 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.236 +0.333,0.576,0.106,0.144,0,0,0,0,0,0.317,0.158 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.383,0.0788 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0.197 +1,0.645,0.662,0.467,0.433,0.233,0,0,0,0,0.0802 +0.667,0.6,0.55,0.413,0.23,0,0,0,0,0,0.221 +1,0.568,0.774,0.726,0,0,0,0,0,0,0.235 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.145 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.118 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0394 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.189 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.456 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.233,0.405 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.158 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.276 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0,0.0394 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.3 +0.667,0.617,0.239,0.247,0,0,0,0,0,0.233,0.363 +1,0.658,0.473,0.384,0,0,0,0,0,0,0.0394 +1,0.645,0.662,0.467,0,0,0,0,0,0,0.12 +1,0.619,0.817,0.595,0,0,0,0,0,0,0.209 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.364 +1,0.546,0.167,0.219,0,0,0,0,0,0,0.463 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.222 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.638 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.188 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.226 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.338 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.158 +0.333,0.555,0.0751,0.142,0,0,0.199,0.333,0,0,0.118 +0.333,0.555,0.0789,0.142,0,0,0.673,0.193,0.717,0,0.197 +0.333,0.564,0.0871,0.142,0,0,0.59,0,0,0.233,0 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.118 +1,0.645,0.351,0.345,0.222,0.317,0,0,0,0,0.0788 +1,0.658,0.473,0.384,0.663,0.617,0.00917,0.0702,0,0,0.158 +1,0.645,0.662,0.467,0.394,0,0.667,0.193,0.233,0,0.118 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.0719 +1,0.564,0.269,0.275,0,0,0,0,0,0,0.0394 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.0394 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.197 +1,0.529,0.0158,0.0495,0,0,0,0,0,0.233,0 +1,0.529,0.0188,0.05,0,0,0,0,0,0,0.544 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.322 +1,0.514,0.0488,0.222,0,0,0,0,0,0.0667,0.134 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0.167,0.0788 +0.667,0.555,0.0473,0.162,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.163 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.187 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.252 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.576,0.106,0.144,0,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.247,0,0,0,0,0,0,0.197 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.645,0.662,0.467,0,0,0,0,0,0,0 +1,0.619,0.817,0.595,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.0394 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.338 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.408 +0.667,0.54,0.0653,0.277,0,0,0,0,0,0,0.333 +0.667,0.548,0.0788,0.274,0,0,0.768,0.263,0.233,0,0.778 +0.667,0.548,0.0923,0.263,0,0,0.541,0,0,0,0.262 +0.667,0.548,0.103,0.256,0,0,0.638,0,0,0,0.197 +0.333,0.555,0.0646,0.147,0,0,0.378,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0.453,0,0,0,0.0788 +0.333,0.555,0.0751,0.142,0,0,0.754,0,0,0,0.197 +0.333,0.555,0.0789,0.142,0,0,0.335,0,0,0,0.197 +0.333,0.564,0.0871,0.142,0,0,0,0,0,0.0667,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.167,0.118 +1,0.645,0.351,0.345,0.134,0.0667,0,0,0,0,0.197 +1,0.658,0.473,0.384,0.585,0.4,0,0,0,0,0.182 +1,0.645,0.662,0.467,0,0,0,0,0,0.467,0 +1,0.619,0.817,0.595,0.435,0.467,0,0,0,0,0.158 +1,0.564,0.269,0.275,0.209,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.124 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.455 +1,0.548,0.174,0.256,0,0,0,0,0,0,0.0202 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.197 +0.667,0.548,0.204,0.237,0,0,0,0,0,0,0.0394 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.276 +0.667,0.548,0.273,0.235,0,0,0,0,0,0,0.0394 +0.667,0.564,0.159,0.142,0,0,0,0,0,0.233,0.354 +0.667,0.576,0.167,0.144,0,0,0,0,0,0,0.0788 +0.667,0.589,0.172,0.148,0,0,0,0,0,0,0.118 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.236 +1,0.645,0.743,0.467,0,0,0,0,0,0,0.184 +1,0.619,0.873,0.595,0,0,0,0,0,0,0.0164 +1,0.568,0.806,0.726,0,0,0,0,0,0,0 +1,0.531,0.345,0.388,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.158 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.111 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.381 +1,0.542,0.252,0.359,0,0,0,0,0,0,0.425 +1,0.542,0.277,0.343,0,0,0,0,0,0,0.213 +1,0.542,0.297,0.331,0,0,0,0,0,0,0.302 +1,0.542,0.351,0.328,0,0,0,0,0,0,0.638 +1,0.542,0.401,0.327,0,0,0,0,0,0,0.197 +0.667,0.566,0.3,0.235,0,0,0,0,0,0,0.236 +0.667,0.591,0.315,0.238,0,0,0,0,0,0,0.288 +0.667,0.617,0.326,0.247,0,0,0,0,0,0,0.158 +0.667,0.626,0.383,0.273,0,0,0,0,0,0,0.0394 +0.667,0.617,0.501,0.328,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.413,0,0,0,0,0,0,0.0788 +0.667,0.566,0.543,0.501,0.611,0.817,0,0,0,0,0 +1,0.516,0.509,0.557,0.246,0.117,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.313,0.263,0.567,0,0.455 +1,0.514,0.0488,0.222,0,0,0.673,0,0.4,0.233,0.438 +1,0.529,0.09,0.39,0,0,0.485,0,0,0,0.334 +1,0.542,0.11,0.387,0,0,0.546,0,0,0,0 +0.667,0.548,0.0923,0.263,0,0,0.722,0,0,0,0.0394 +0.667,0.548,0.103,0.256,0,0,0.424,0,0,0,0.0788 +0.667,0.548,0.113,0.245,0,0,0.639,0,0,0,0.0394 +0.667,0.548,0.119,0.237,0,0,0.445,0,0,0.233,0.0788 +0.667,0.548,0.134,0.235,0,0,0.661,0,0,0,0.0394 +0.667,0.548,0.142,0.235,0,0,0.379,0,0,0,0.165 +1,0.568,0.23,0.328,0,0,0.699,0,0,0,0.3 +0.667,0.591,0.196,0.238,0,0,0.44,0,0,0,0.0394 +1,0.617,0.239,0.247,0,0,0,0,0,0,0.0788 +1,0.626,0.32,0.273,0,0,0,0,0,0,0.158 +1,0.617,0.446,0.328,0,0,0,0,0,0,0.0394 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.564,0.269,0.275,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.418 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.417 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.239 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0.25 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.518 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0757 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.438 +0.333,0.555,0.0751,0.142,0,0,0.361,0.263,0.233,0,0.158 +0.333,0.555,0.0789,0.142,0,0,0.381,0,0,0,0.158 +0.333,0.564,0.0871,0.142,0,0,0.419,0,0,0,0.0788 +0.333,0.576,0.106,0.144,0,0,0.402,0,0,0.233,0.0394 +0.667,0.617,0.239,0.247,0,0,0.306,0,0,0,0.0788 +0.667,0.626,0.32,0.273,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.328,0,0,0,0,0,0,0.118 +0.667,0.6,0.55,0.413,0,0,0,0,0,0.0667,0.0394 +0.667,0.564,0.269,0.275,0,0,0,0,0,0.4,0.0893 +1,0.531,0.317,0.388,0,0,0,0,0,0,0.207 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.301 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.272,0.317,0,0,0,0.233,0.192 +1,0.529,0.0241,0.0768,0.595,0.383,0,0,0,0,0.527 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.184 +0.667,0.551,0.0406,0.163,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0,0.118 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.276 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.0788 +0.667,0.566,0.158,0.235,0,0,0,0,0,0,0.238 +1,0.606,0.286,0.332,0,0,0,0,0,0,0.31 +1,0.645,0.351,0.345,0.211,0.317,0,0,0,0,0 +1,0.658,0.473,0.384,0.906,0.617,0,0,0,0.233,0.0788 +1,0.645,0.662,0.467,0.766,0,0.688,0.526,0.233,0,0 +1,0.619,0.817,0.595,0,0,0.502,0,0,0,0.0788 +1,0.568,0.774,0.726,0,0,0.373,0,0,0,0 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0.311 +1,0.529,0.0383,0.0743,0,0,0,0,0,0,0.0968 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0.201 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.136 +1,0.529,0.0241,0.0768,0,0,0,0,0,0.233,0.159 +1,0.538,0.0323,0.136,0,0,0,0,0,0,0.373 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.849 +0.667,0.548,0.0788,0.274,0,0,0,0,0,0,0.553 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.548,0.113,0.245,0,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.197 +0.333,0.555,0.0751,0.142,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.142,0,0,0,0,0,0,0.169 +0.667,0.566,0.158,0.235,0,0,0,0,0,0.0667,0.0788 +0.667,0.591,0.196,0.238,0,0,0,0,0,0.167,0.0394 +1,0.645,0.351,0.345,0,0,0,0,0,0,0.118 +1,0.658,0.473,0.384,0,0,0,0,0,0,0 +1,0.617,0.446,0.328,0,0,0,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0.315 +1,0.566,0.521,0.501,0,0,0,0,0,0,0 +1,0.546,0.167,0.219,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.275 +1,0.529,0.0241,0.0768,0,0,0,0,0,0,0.282 +1,0.514,0.0488,0.222,0,0,0,0,0,0,0.285 +1,0.54,0.0653,0.277,0,0,0,0,0,0,0.38 +0.333,0.555,0.0473,0.162,0,0,0,0,0,0,0.158 +0.333,0.555,0.0541,0.156,0,0,0,0,0,0.317,0.223 +0.333,0.555,0.0593,0.153,0,0,0,0,0,0.15,0.0788 +0.333,0.555,0.0646,0.147,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.143,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +0.333,0.576,0.106,0.144,0,0,0.538,0.263,0.233,0,0.276 +0.667,0.617,0.239,0.247,0,0,0.76,0,0,0,0.354 +1,0.658,0.473,0.384,0,0,0.668,0,0,0,0.0394 +1,0.645,0.662,0.467,0,0,0.213,0,0,0,0 +1,0.6,0.55,0.413,0,0,0,0,0,0,0 +1,0.566,0.521,0.501,0,0,0,0,0,0,0.404 +1,0.531,0.317,0.388,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.551,0.0444,0.163,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.555,0.0826,0.156,0,0,0,0,0,0,0.351 +1,0.548,0.174,0.256,0,0,0.22,0.263,0.0667,0,0.232 +1,0.542,0.277,0.343,0,0,0.309,0,0.9,0,0.332 +0.333,0.555,0.111,0.143,0,0,0,0,0,0,0.118 +0.667,0.548,0.24,0.235,0,0,0,0,0,0,0.0394 +0.667,0.555,0.146,0.142,0,0,0,0,0,0,0.118 +1,0.568,0.441,0.328,0,0,0,0,0,0,0.118 +1,0.606,0.464,0.332,0,0,0,0,0,0,0.118 +1,0.645,0.479,0.345,0,0,0,0,0,0,0.0788 +1,0.658,0.565,0.384,0,0,0,0,0,0,0.0788 +0.667,0.589,0.26,0.189,0,0,0,0,0,0,0.118 +0.667,0.581,0.303,0.231,0,0,0,0,0,0,0 +0.667,0.564,0.281,0.275,0,0,0,0,0,0,0 +1,0.516,0.509,0.557,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.252 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.248 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0,0 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.118 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0.15,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.0833,0.197 +0.667,0.554,0.105,0.145,0,0,0,0,0,0,0 +0.667,0.554,0.111,0.141,0,0,0,0,0,0,0.197 +0.667,0.554,0.129,0.14,0,0,0,0,0,0,0.0394 +0.667,0.554,0.146,0.14,0,0,0,0,0,0,0.118 +0.667,0.562,0.16,0.14,0.609,0.45,0,0,0,0,0.0788 +0.667,0.588,0.316,0.233,0.841,0,0,0,0,0.4,0.276 +1,0.64,0.481,0.338,0.818,0,0,0,0,0.0667,0.0788 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0.117 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.495,0.061,0.099,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0.0394 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.221 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.181 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.165 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.276 +0.667,0.546,0.0926,0.258,0,0,0.0887,0.0702,0,0,0.0394 +0.333,0.554,0.0595,0.15,0,0,0.664,0.474,0.45,0,0.0788 +0.333,0.554,0.0648,0.145,0,0,0.159,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0788 +0.667,0.546,0.142,0.23,0,0,0,0,0,0,0.315 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.0775 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.421 +1,0.64,0.352,0.338,0,0,0.0443,0.0702,0,0.233,0 +1,0.653,0.474,0.377,0,0,0.448,0.193,0.45,0,0.301 +1,0.64,0.664,0.461,0,0,0.138,0,0,0,0.13 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.74 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.187 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.118 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.198 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0.0185 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.148 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.559 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.118 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.118 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.168 +0.333,0.575,0.106,0.141,0.45,0.45,0,0,0,0,0.146 +1,0.64,0.352,0.338,0.288,0,0,0,0,0.233,0 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.235 +1,0.64,0.664,0.461,0,0,0.662,0.263,0.45,0,0.241 +1,0.615,0.82,0.59,0,0,0.76,0,0,0,0.39 +1,0.563,0.523,0.496,0,0,0.471,0,0,0,0.253 +1,0.529,0.318,0.386,0,0,0.216,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0.131,0,0,0,0.158 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.292 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.434 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0.233,0 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.197 +0.333,0.554,0.0678,0.141,0,0,0.419,0.333,0,0,0.118 +0.667,0.546,0.135,0.23,0,0,0.512,0.211,0.217,0,0.197 +0.667,0.546,0.142,0.23,0,0,0.476,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0.18,0,0,0.233,0.118 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.291 +1,0.64,0.352,0.338,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0,0 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.197 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.55 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0394 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.0788 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0753,0.14,0,0,0.541,0.263,0.45,0,0.118 +0.333,0.554,0.0791,0.14,0,0,0.787,0,0,0,0.0394 +0.333,0.562,0.0873,0.14,0,0,0.19,0,0,0.317,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.15,0.354 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.197 +1,0.653,0.474,0.377,0.485,0.217,0,0,0,0,0.197 +1,0.64,0.664,0.461,0.33,0,0,0,0,0,0.0788 +1,0.615,0.82,0.59,0.141,0.0667,0,0,0,0,0.0394 +1,0.562,0.269,0.273,0.443,0.383,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.108 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.137 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.248 +1,0.528,0.0241,0.0763,0,0,0,0,0,0.233,0.236 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0.233,0 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.236 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.0804 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.317,0.257 +0.667,0.546,0.12,0.232,0.766,0.217,0,0,0,0.15,0 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.236 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.158 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.49 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.235 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0788 +1,0.653,0.474,0.377,0.295,0.317,0,0,0,0,0 +1,0.64,0.664,0.461,0.494,0.133,0,0,0,0,0 +1,0.615,0.82,0.59,0.49,0,0,0,0,0,0.0789 +1,0.563,0.777,0.72,0.55,0,0,0,0,0,0.158 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.549,0.0444,0.162,0,0,0,0,0,0,0.451 +1,0.554,0.0655,0.16,0,0,0,0,0,0.233,0.246 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.0394 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.0394 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.276 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.197 +0.333,0.554,0.146,0.14,0,0,0,0,0,0,0.315 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.0394 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +0.667,0.614,0.327,0.242,0,0,0,0,0,0.0667,0 +0.667,0.623,0.384,0.268,0,0,0,0,0,0,0.236 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0.197 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.368 +1,0.512,0.51,0.554,0,0,0,0,0,0,0.0695 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.495,0.0723,0.099,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0.0394 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.197 +0.667,0.554,0.0655,0.16,0,0,0,0,0,0,0.197 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0.422 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.099 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.118 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.118 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.0394 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0 +0.333,0.562,0.16,0.14,0,0,0,0,0,0,0.118 +0.667,0.575,0.167,0.141,0,0,0,0,0,0,0.0394 +1,0.588,0.172,0.146,0,0,0,0,0,0,0.158 +1,0.592,0.201,0.159,0,0,0,0,0,0,0.197 +1,0.588,0.26,0.187,0,0,0,0,0,0,0 +1,0.579,0.304,0.23,0,0,0,0,0,0,0 +1,0.563,0.545,0.496,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.449 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.271 +1,0.512,0.0489,0.22,0,0,0,0,0,0.233,0.212 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.322 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.138 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.118 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.118 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.197 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.169 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.133 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.197 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0394 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0394 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.236 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0.0394 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.293 +1,0.528,0.0241,0.0763,0,0,0.506,0.263,0.217,0,0.23 +1,0.512,0.0489,0.22,0,0,0.28,0,0,0,0.412 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.333,0.575,0.106,0.141,0.168,0.0667,0,0,0,0,0.315 +0.333,0.588,0.128,0.146,0.475,0.15,0,0,0,0,0.197 +1,0.653,0.474,0.377,0.628,0,0,0,0,0,0.118 +1,0.64,0.664,0.461,0.796,0,0,0,0,0,0.118 +1,0.615,0.82,0.59,0.225,0,0,0,0,0,0.118 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0738 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.208 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.173 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.365 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.12 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.18 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0788 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.233,0.197 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.276 +1,0.64,0.352,0.338,0.578,0.45,0,0,0,0,0.0788 +1,0.653,0.474,0.377,0.154,0,0,0,0,0,0.589 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.606 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.216 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.32 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.185 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.16 +0.333,0.549,0.0407,0.162,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.197 +0.667,0.546,0.135,0.23,0,0,0,0,0,0,0.0788 +0.667,0.554,0.0791,0.14,0,0,0.119,0.263,0.0667,0,0.118 +0.333,0.562,0.0873,0.14,0,0,0.384,0,0.85,0,0.0788 +0.667,0.588,0.196,0.233,0,0,0.309,0,0,0,0.118 +0.667,0.614,0.24,0.242,0,0,0.488,0,0,0,0.45 +1,0.653,0.474,0.377,0,0,0.78,0,0,0,0.0545 +1,0.64,0.664,0.461,0,0,0.612,0,0,0,0 +1,0.615,0.82,0.59,0,0,0.37,0,0,0,0 +1,0.563,0.523,0.496,0,0,0.864,0,0,0,0 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.865 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.303 +0.667,0.549,0.0407,0.162,0,0,0,0,0,0,0.0631 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.0138,0.0702,0,0,0.0788 +0.333,0.554,0.0595,0.15,0,0,0.665,0.193,0.217,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0.419,0,0,0.233,0.0788 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.473 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.236 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.0394 +1,0.653,0.474,0.377,0,0,0,0,0,0,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0.295 +1,0.563,0.777,0.72,0,0,0,0,0,0,0.132 +1,0.545,0.167,0.218,0,0,0,0,0,0,0.332 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.274 +1,0.528,0.0226,0.0763,0,0,0,0,0,0,0.326 +1,0.537,0.0302,0.135,0,0,0,0,0,0,0.414 +1,0.549,0.0444,0.162,0,0,0,0,0,0.233,0.248 +1,0.546,0.113,0.27,0,0,0,0,0,0,0.233 +1,0.546,0.148,0.258,0,0,0,0,0,0,0.275 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.122 +0.667,0.546,0.191,0.24,0,0,0,0,0,0,0 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.0788 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.197 +0.333,0.554,0.146,0.14,0,0,0,0,0,0.15,0.236 +0.667,0.563,0.301,0.23,0,0,0,0,0,0.317,0.0788 +1,0.602,0.465,0.324,0,0,0,0,0,0,0.197 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.0788 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +1,0.64,0.745,0.461,0,0,0,0,0,0,0 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0.197 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0907 +1,0.549,0.0444,0.162,0.492,0.65,0,0,0,0,0.491 +1,0.546,0.113,0.27,0.333,0.483,0,0,0,0,0.497 +0.667,0.546,0.148,0.258,0,0,0,0,0,0,0 +0.333,0.554,0.0964,0.15,0,0,0,0,0,0,0.0394 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.158 +0.667,0.546,0.205,0.232,0,0,0,0,0,0,0.0788 +0.667,0.546,0.241,0.23,0,0,0,0,0,0,0.0788 +0.667,0.546,0.274,0.23,0,0,0,0,0,0,0.0788 +0.667,0.562,0.16,0.14,0,0,0,0,0,0.4,0.118 +1,0.602,0.465,0.324,0,0,0,0,0,0.0667,0.118 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.344 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0961 +1,0.597,0.59,0.41,0,0,0,0,0,0,0.475 +1,0.563,0.545,0.496,0,0,0,0,0,0,0.0818 +1,0.529,0.346,0.386,0,0,0,0,0,0,0.199 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.186 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.442 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.315 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.236 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.158 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.236 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0788 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.118 +1,0.602,0.287,0.324,0,0,0,0,0,0.233,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0,0.255 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.32 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.0788 +0.667,0.597,0.552,0.41,0,0,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0,0,0,0,0,0.14 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.392 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.217 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.0634 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0.617,0.118 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.118 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.433 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.158 +0.333,0.575,0.106,0.141,0,0,0,0,0,0.0667,0.0788 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.167,0 +1,0.653,0.474,0.377,0.379,0.45,0,0,0,0,0.276 +1,0.64,0.664,0.461,0.469,0,0,0,0,0,0 +1,0.579,0.284,0.23,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0896 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.381 +1,0.549,0.0407,0.162,0,0,0,0,0,0,0.335 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0.567,0.402 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.367,0.0394 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.276 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.197 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.236 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0394 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.317,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.383,0.499 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.284 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0351 +1,0.563,0.777,0.72,0,0,0,0,0,0,0.151 +1,0.529,0.318,0.386,0,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.115 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.306 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.401 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0711 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.817,0.114 +0.667,0.546,0.12,0.232,0,0,0,0,0,0.35,0.158 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.315 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0.118 +0.333,0.575,0.106,0.141,0,0,0,0,0,0,0.158 +0.333,0.588,0.128,0.146,0,0,0,0,0,0.233,0.118 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.416 +1,0.64,0.664,0.461,0.201,0.0667,0,0,0,0,0.457 +0.667,0.597,0.552,0.41,0.637,1,0,0,0,0,0 +0.667,0.563,0.523,0.496,0,0.983,0,0,0,0,0.242 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0841,0.0702,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.497,0.193,0.45,0,0.236 +1,0.528,0.0241,0.0763,0,0,0.304,0,0,0,0.158 +1,0.537,0.0324,0.135,0,0,0.216,0,0,0,0.264 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.291 +0.667,0.554,0.0475,0.16,0,0,0,0,0,0,0.156 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.214 +0.667,0.546,0.103,0.25,0,0,0,0,0,0,0.102 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0791,0.14,0,0,0.133,0.263,0.567,0,0.197 +0.667,0.563,0.159,0.23,0,0,0,0,0.35,0,0.0788 +1,0.602,0.287,0.324,0,0,0,0,0,0.233,0.197 +1,0.64,0.352,0.338,0,0,0,0,0,0,0.158 +1,0.653,0.474,0.377,0,0,0,0,0,0,0.108 +1,0.64,0.664,0.461,0,0,0,0,0,0,0.336 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.0394 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.0975 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.4,0 +1,0.546,0.113,0.27,0,0,0.237,0.158,0,0.533,0.0394 +1,0.546,0.148,0.258,0,0,0.651,0.386,0.45,0,0.118 +0.667,0.546,0.175,0.25,0,0,0.317,0,0,0,0 +0.667,0.546,0.191,0.24,0,0,0.317,0,0,0,0.0788 +0.667,0.546,0.205,0.232,0.723,0.9,0,0,0,0,0.551 +0.333,0.554,0.129,0.14,0.693,0.233,0,0,0,0,0.197 +0.667,0.546,0.274,0.23,0.497,0,0.462,0.263,0.15,0,0.276 +0.667,0.563,0.301,0.23,0,0,0.563,0,0.0667,0,0.197 +1,0.602,0.465,0.324,0,0,0.312,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.249 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.108 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0.128 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0211,0.0495,0,0,0,0,0,0,0.118 +1,0.528,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.237 +1,0.546,0.148,0.258,0,0,0,0,0,0.233,0.256 +1,0.538,0.253,0.351,0,0,0,0,0,0,0.236 +0.667,0.546,0.191,0.24,0,0,0,0,0,0.15,0.236 +0.333,0.554,0.111,0.141,0,0,0,0,0,1,0.236 +1,0.538,0.352,0.32,0,0,0.546,0.263,0.45,0.0167,0 +1,0.538,0.402,0.32,0,0,0.437,0,0,0,0.118 +1,0.563,0.443,0.321,0,0,0.159,0,0,0,0.118 +1,0.602,0.465,0.324,0,0,0,0,0,0.233,0 +1,0.64,0.481,0.338,0,0,0,0,0,0,0.276 +1,0.653,0.567,0.377,0,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0,0,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +0.667,0.562,0.282,0.273,0,0,0,0,0,0,0.0788 +0.667,0.545,0.182,0.218,0,0,0,0,0,0,0 +1,0.532,0.0896,0.116,0,0,0,0,0,0,0.118 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0.0394 +1,0.528,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0174,0.0495,0,0,0,0,0,0,0.0394 +1,0.528,0.0158,0.0495,0,0,0,0,0,0,0.118 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.0788 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.263 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.195 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0.317,0.254 +0.333,0.554,0.0475,0.16,0,0,0,0,0,1,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0.317,0.0394 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.197 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.236 +0.667,0.614,0.448,0.324,0,0,0,0,0,0,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.562,0.269,0.273,0,0,0,0,0,0,0.0788 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.711 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.224 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.118 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.276 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.276 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.623,0.321,0.268,0.19,0.317,0,0,0,0,0.197 +0.667,0.614,0.448,0.324,0.592,0.133,0,0,0,0,0.475 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.279 +1,0.563,0.523,0.496,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0954 +1,0.537,0.0324,0.135,0,0,0,0,0,0,0.237 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.747 +1,0.538,0.111,0.381,0,0,0,0,0,0,0.338 +0.667,0.546,0.0926,0.258,0,0,0,0,0,0,0.222 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.236 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.118 +0.333,0.562,0.0873,0.14,0,0,0,0,0,0.233,0.118 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0.0788 +1,0.64,0.352,0.338,0.143,0.0667,0,0,0,0,0.0394 +1,0.623,0.321,0.268,0.639,0.85,0,0,0,0,0.0788 +1,0.64,0.664,0.461,0.604,0,0,0,0,0,0.0394 +1,0.615,0.82,0.59,0.682,0,0,0,0,0,0.0394 +1,0.563,0.777,0.72,0.658,0,0,0,0,0,0.0743 +1,0.545,0.167,0.218,0.201,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.403 +1,0.528,0.0189,0.0499,0,0,0,0,0,0,0.25 +1,0.495,0.0324,0.103,0,0,0,0,0,0,0.364 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.296 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.214 +0.333,0.554,0.0475,0.16,0,0,0,0,0,0,0.427 +0.333,0.554,0.0542,0.154,0.312,0.317,0,0,0,0,0.0788 +0.333,0.554,0.0595,0.15,0.253,0.133,0.518,0.263,0.567,0,0.0788 +0.667,0.546,0.114,0.24,0,0,0.65,0,0.35,0,0 +0.667,0.546,0.12,0.232,0,0,0.621,0,0,0.233,0.236 +0.667,0.546,0.135,0.23,0,0,0.83,0,0,0,0 +0.667,0.546,0.142,0.23,0,0,0.199,0,0,0,0.0788 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0.237,0.217,0,0,0,0,0.175 +1,0.653,0.474,0.377,1,0,0,0,0,0,0.41 +1,0.64,0.664,0.461,0.435,0,0,0,0,0.233,0.101 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.185 +1,0.563,0.523,0.496,0,0,0,0,0,0,0.118 +1,0.529,0.318,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.495,0.0218,0.0504,0,0,0,0,0,0,0.37 +0.667,0.528,0.0241,0.0763,0,0,0,0,0,0,0.549 +0.667,0.537,0.0324,0.135,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.554,0.0542,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.411 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0.158 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.118 +1,0.563,0.23,0.321,0,0,0,0,0,0,0.236 +0.667,0.588,0.196,0.233,0,0,0,0,0,0.317,0.315 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.383,0 +0.667,0.623,0.321,0.268,0,0,0,0,0,0.0667,0 +0.667,0.614,0.448,0.324,0,0,0,0,0,0.867,0 +1,0.615,0.82,0.59,0,0,0,0,0,0,0 +1,0.563,0.777,0.72,0,0,0,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0204,0.0499,0,0,0,0,0,0.233,0.0394 +1,0.495,0.0271,0.103,0,0,0,0,0,0,0.0788 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.158 +0.667,0.549,0.0444,0.162,0,0,0,0,0,0.233,0 +1,0.554,0.0655,0.16,0,0,0,0,0,0,0 +0.667,0.554,0.0828,0.154,0,0,0,0,0,0,0.0394 +0.667,0.546,0.175,0.25,0,0,0,0,0,0,0.245 +0.333,0.554,0.105,0.145,0,0,0,0,0,0,0.0951 +0.333,0.554,0.111,0.141,0,0,0,0,0,0,0.569 +0.333,0.554,0.129,0.14,0,0,0,0,0,0,0.322 +0.333,0.554,0.146,0.14,0.283,0.4,0,0,0,0,0 +0.333,0.562,0.16,0.14,0.571,0.05,0,0,0,0,0.394 +0.333,0.575,0.167,0.141,0.579,0,0,0,0,0.233,0.0788 +0.667,0.614,0.327,0.242,0.55,0.45,0,0,0,0,0.315 +1,0.653,0.567,0.377,0.206,0,0,0,0,0,0 +0.667,0.614,0.503,0.324,0.677,0.45,0,0,0,0,0 +0.667,0.597,0.59,0.41,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +1,0.512,0.51,0.554,0,0,0,0,0,0,0 +1,0.474,0.233,0.249,0,0,0,0,0,0,0 +1,0.528,0.0452,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.301 +1,0.512,0.0422,0.22,0,0,0,0,0,0,0.318 +1,0.537,0.0708,0.274,0,0,0,0,0,0,0.118 +1,0.546,0.113,0.27,0,0,0.56,0.263,0.4,0.233,0.118 +1,0.538,0.212,0.362,0,0,0.318,0,0.283,0,0 +1,0.538,0.253,0.351,0,0,0.485,0,0,0,0.118 +1,0.538,0.278,0.335,0,0,0.534,0,0,0,0 +1,0.538,0.298,0.324,0,0,0.313,0,0,0,0.315 +1,0.538,0.352,0.32,0,0,0.466,0,0,0,0.0788 +1,0.538,0.402,0.32,0,0,0.0963,0,0,0,0.28 +0.667,0.563,0.301,0.23,0,0,0,0,0,0,0.0788 +0.667,0.588,0.316,0.233,0,0,0,0,0,0,0 +1,0.64,0.481,0.338,0,0,0,0,0,0.233,0.158 +1,0.653,0.567,0.377,0,0,0,0,0,0,0.0788 +1,0.64,0.745,0.461,0,0,0,0,0,0,0.0394 +1,0.615,0.876,0.59,0,0,0,0,0,0,0 +1,0.563,0.808,0.72,0,0,0,0,0,0,0 +0.667,0.529,0.346,0.386,0,0,0,0,0,0,0 +1,0.503,0.161,0.183,0,0,0,0,0,0,0 +1,0.528,0.0384,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.156 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.564 +1,0.537,0.0655,0.274,0,0,0,0,0,0,0.462 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0.563 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.161 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0.197 +0.333,0.554,0.0678,0.141,0,0,0,0,0,0,0.276 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0,0 +0.333,0.554,0.0791,0.14,0,0,0,0,0,0,0.308 +0.333,0.562,0.0873,0.14,0.419,0.45,0,0,0,0,0.365 +0.333,0.575,0.106,0.141,0.592,0,0,0,0,0,0.431 +1,0.64,0.352,0.338,0.494,0,0,0,0,0.317,0.276 +1,0.653,0.474,0.377,0,0,0,0,0,0.85,0 +1,0.64,0.664,0.461,0,0,0.26,0.263,0.0667,0,0 +1,0.615,0.82,0.59,0,0,0.523,0,0.15,0,0.0394 +1,0.563,0.523,0.496,0,0,0.303,0,0,0,0 +1,0.545,0.167,0.218,0,0,0,0,0,0,0 +1,0.532,0.0783,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.263 +1,0.528,0.0241,0.0763,0,0,0,0,0,0,0.346 +1,0.512,0.0489,0.22,0,0,0,0,0,0,0.265 +0.667,0.537,0.0655,0.274,0,0,0,0,0,0,0.219 +0.667,0.546,0.079,0.27,0,0,0,0,0,0,0 +0.333,0.554,0.0542,0.154,0,0,0,0,0,0,0.118 +0.333,0.554,0.0595,0.15,0,0,0,0,0,0,0.315 +0.333,0.554,0.0648,0.145,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0753,0.14,0,0,0,0,0,0.0667,0.0788 +0.667,0.546,0.142,0.23,0,0,0,0,0,0.167,0.0394 +0.667,0.563,0.159,0.23,0,0,0,0,0,0,0 +0.667,0.588,0.196,0.233,0,0,0,0,0,0,0 +0.667,0.614,0.24,0.242,0,0,0,0,0,0.0667,0.263 +1,0.653,0.474,0.377,0.695,0.45,0,0,0,0.633,0.118 +1,0.64,0.664,0.461,0.089,0,0,0,0,0,0.0394 +1,0.615,0.82,0.59,0,0,0,0,0,0,0.14 +1,0.563,0.777,0.72,0,0,0.356,0.263,0.317,0,0.0394 +1,0.529,0.318,0.386,0,0,0.699,0,0.133,0,0.0394 +1,0.503,0.141,0.183,0,0,0.427,0,0,0,0.0394 +1,0.495,0.059,0.099,0,0,0.558,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0.564,0,0,0,0.118 +1,0.528,0.0171,0.0495,0,0,0.691,0,0,0,0.118 +1,0.528,0.0157,0.0495,0,0,0.485,0,0,0,0.433 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.241 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.197 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.315 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.197 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0.233,0 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.444 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.314 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.262 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.537,0.0316,0.136,0,0,0,0,0,0.233,0.622 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.153 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.481 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.569 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.447 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.456 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.256 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.226 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.376 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0788 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.276 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.0667,0 +0.667,0.623,0.31,0.289,0.361,0.45,0,0,0,0.167,0.0394 +0.667,0.614,0.432,0.362,0.258,0,0,0,0,0,0.142 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0.214 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.0907 +1,0.529,0.307,0.397,0,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0.15,0.558 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0392 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.236 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.435 +0.667,0.614,0.232,0.252,0,0,0,0,0,0,0.368 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.191 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.346 +1,0.615,0.79,0.668,0.309,0.317,0,0,0,0,0.483 +1,0.563,0.749,0.788,0.353,0.133,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.546,0.142,0.263,0,0,0.154,0.263,0.0667,0,0.118 +1,0.546,0.169,0.256,0,0,0.318,0,0.383,0,0.197 +0.667,0.554,0.101,0.147,0,0,0.44,0,0,0,0 +0.667,0.554,0.108,0.143,0,0,0.278,0,0,0,0.158 +0.667,0.554,0.125,0.142,0,0,0.44,0,0,0,0.0788 +0.667,0.554,0.141,0.142,0,0,0.468,0,0,0,0.0394 +0.333,0.562,0.154,0.143,0,0,0.471,0,0,0,0.0788 +0.333,0.575,0.162,0.144,0,0,0.176,0,0,0,0.154 +0.333,0.588,0.167,0.151,0,0,0,0,0,0.233,0.307 +0.667,0.623,0.37,0.289,0.243,0.317,0,0,0,0,0.197 +1,0.64,0.718,0.518,0.803,0.6,0,0,0,0,0.0394 +1,0.597,0.569,0.462,0.602,0,0,0,0,0,0.0788 +1,0.563,0.525,0.542,0,0,0,0,0,0,0 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.236 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0791 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0.195 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.554,0.0803,0.156,0,0,0,0,0,0.317,0.0394 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.15,0.236 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.118 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0 +0.667,0.546,0.232,0.235,0,0,0,0,0,0,0.118 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.0394 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.433 +1,0.602,0.448,0.334,0,0,0,0,0,0,0.0788 +1,0.64,0.464,0.353,0,0,0,0,0,0,0.0394 +1,0.653,0.546,0.408,0,0,0,0,0,0,0.412 +1,0.64,0.718,0.518,0,0,0,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0.233,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0.263,0.263,0.0667,0,0.337 +1,0.503,0.155,0.183,0,0,0.456,0,0.383,0,0.139 +1,0.495,0.059,0.099,0,0,0.3,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0.0788 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.158 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0.362 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.037 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.314 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.465 +1,0.525,0.087,0.39,0.246,0.317,0,0,0,0,0.0394 +0.333,0.554,0.0461,0.162,0.253,0.133,0,0,0,0,0.118 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.149 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.294 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0.0667,0.0788 +0.333,0.554,0.073,0.142,0,0,0,0,0,0.167,0.354 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.567,0.0788 +0.667,0.563,0.153,0.236,0,0,0,0,0,0.15,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.233,0.118 +0.667,0.614,0.232,0.252,0.613,0.45,0,0,0,0.467,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0394 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.29 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.351 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.077 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.236 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.158 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.276 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0788 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.411 +1,0.64,0.339,0.353,0.33,0.317,0,0,0,0.0667,0.197 +1,0.653,0.457,0.408,0.246,0.6,0,0,0,1,0 +1,0.64,0.64,0.518,0,0,0,0,0,0.133,0.195 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.262 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.259 +1,0.512,0.453,0.571,0,0,0,0,0,0,0.0809 +1,0.503,0.136,0.183,0,0,0,0,0,0,0.0788 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.312 +1,0.549,0.0396,0.163,0,0,0,0,0,0,0.796 +1,0.538,0.107,0.387,0,0,0,0,0,0,0.183 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.158 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.233,0.0788 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.118 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.0394 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0788 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.12 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.14 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.313 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.578 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.344 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.23 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.118 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.236 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.158 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.118 +0.333,0.592,0.163,0.169,0,0,0,0,0,0,0 +0.333,0.588,0.224,0.206,0,0,0,0,0,0,0.207 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0.232 +1,0.512,0.453,0.571,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.288 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.0788 +1,0.528,0.0186,0.05,0,0,0,0,0,0.15,0.208 +1,0.495,0.0314,0.104,0,0,0,0,0,0,0.411 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.445 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.266 +0.667,0.546,0.0764,0.274,0.49,0.217,0,0,0,0.233,0.725 +0.667,0.546,0.0894,0.263,0.171,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0788 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.236 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.197 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.236 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.15,0 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0.702,0.683,0,0,0,0,0 +1,0.615,0.79,0.668,0.089,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.158 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.549,0.0433,0.163,0,0,0,0,0,0,0.357 +1,0.554,0.0636,0.162,0,0,0,0,0,0,0.269 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.427 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.158 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0394 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0.118 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.236 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0394 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0 +0.333,0.588,0.167,0.151,0,0,0.0489,0.0702,0,0,0.118 +1,0.653,0.546,0.408,0,0,0.369,0.193,0.217,0,0.0394 +1,0.64,0.718,0.518,0,0,0.41,0,0,0.467,0.118 +1,0.615,0.844,0.668,0,0,0.612,0,0,0,0 +1,0.563,0.779,0.788,0,0,0.0352,0,0,0,0.108 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.509 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.285 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.554,0.0803,0.156,0,0,0,0,0,0,0.262 +1,0.546,0.169,0.256,0,0,0,0,0,0,0.582 +1,0.546,0.184,0.245,0,0,0,0,0,0,0.412 +0.667,0.546,0.198,0.237,0.333,0.567,0,0,0,0.467,0.0394 +0.667,0.546,0.232,0.235,0.622,0.583,0,0,0,0,0.0788 +0.667,0.546,0.264,0.235,0.572,0,0,0,0,0,0.315 +0.667,0.563,0.29,0.236,0.579,0,0,0,0,0,0.0394 +0.667,0.588,0.305,0.239,0.63,0,0,0,0,0,0.158 +1,0.64,0.464,0.353,0.588,0,0,0,0,0,0.118 +0.667,0.623,0.37,0.289,0.581,0,0,0,0,0,0.0394 +0.667,0.614,0.485,0.362,0.579,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0.38,0,0,0,0,0,0 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.0715 +1,0.529,0.334,0.397,0,0,0,0,0,0,0.334 +1,0.503,0.155,0.183,0,0,0,0,0,0,0.253 +1,0.495,0.059,0.099,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.451 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.197 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0.233,0.118 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0788 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.0788 +1,0.64,0.339,0.353,0,0,0,0,0,0,0 +1,0.653,0.457,0.408,0.23,0.317,0,0,0,0,0.118 +1,0.64,0.64,0.518,0.483,0.133,0,0,0,0,0.0788 +1,0.615,0.79,0.668,0.614,0,0,0,0,0,0.118 +1,0.563,0.749,0.788,0.639,0,0,0,0,0,0 +1,0.512,0.453,0.571,0.667,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.528,0.0186,0.05,0,0,0,0,0,0,0.539 +0.667,0.495,0.0314,0.104,0,0,0,0,0,0,0.882 +0.667,0.512,0.0474,0.222,0,0,0.142,0.263,0.217,0,0.431 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.191 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.315 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.197 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.158 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0394 +0.667,0.614,0.232,0.252,0.251,0.0667,0,0,0,0.317,0.0788 +1,0.623,0.31,0.289,0.714,0.15,0,0,0,0.15,0.0394 +1,0.64,0.64,0.518,0.696,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.196 +1,0.529,0.307,0.397,0,0,0,0,0,0,0.149 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0.717,0.0394 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.65,0.394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.276 +0.333,0.554,0.0766,0.142,0.541,0.217,0,0,0,0,0.197 +0.333,0.562,0.0846,0.143,0.698,0,0,0,0,0,0 +0.333,0.575,0.103,0.144,0.445,0,0,0,0,0,0.0788 +0.667,0.614,0.232,0.252,0.155,0.0667,0,0,0,0,0.236 +1,0.653,0.457,0.408,0.716,0.85,0,0,0,0,0 +1,0.64,0.64,0.518,0.709,0,0,0,0,0,0.322 +1,0.615,0.79,0.668,0.685,0,0,0,0,0,0 +1,0.563,0.504,0.542,0.602,0,0,0,0,0,0.2 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.485 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0.224 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.167 +1,0.537,0.0316,0.136,0,0,0,0,0,0,0.195 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.803 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0.212 +0.667,0.554,0.0526,0.156,0,0,0,0,0,0,0.401 +0.667,0.554,0.0577,0.153,0,0,0,0,0,0,0.347 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.197 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.201 +1,0.563,0.222,0.329,0,0,0,0,0,0,0.407 +1,0.602,0.276,0.334,0,0,0,0,0,0,0.0394 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.233,0.158 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0788 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0.0788 +0.667,0.597,0.532,0.462,0,0,0,0,0,0,0 +0.333,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.512,0.453,0.571,0,0,0,0,0,0,0.346 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.115 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.351 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.281 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.183 +1,0.546,0.0764,0.274,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.378 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0.233,0.317 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.375 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.264 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.0788 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.276 +0.667,0.588,0.19,0.239,0,0,0.101,0.0702,0,0,0 +1,0.64,0.339,0.353,0.407,0.567,0.549,0.193,0.45,0.233,0.0394 +1,0.653,0.457,0.408,0.702,0.35,0.11,0,0,0,0 +1,0.64,0.64,0.518,0.138,0,0,0,0,0,0 +1,0.615,0.79,0.668,0.504,0.45,0,0,0,0,0.197 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.546,0.198,0.237,0,0,0,0,0,0,0.0788 +0.667,0.546,0.232,0.235,0.768,0.45,0,0,0,0,0.197 +0.667,0.546,0.264,0.235,0.147,0,0,0,0,0,0.118 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.0394 +0.667,0.588,0.305,0.239,0,0,0,0,0,0,0.512 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0.0394 +1,0.653,0.546,0.408,0,0,0,0,0,0.233,0.0788 +1,0.64,0.718,0.518,0,0,0,0,0,0,0.0678 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.118 +1,0.563,0.779,0.788,0,0,0,0,0,0,0 +1,0.512,0.492,0.571,0,0,0,0,0,0,0.234 +1,0.474,0.224,0.249,0,0,0,0,0,0,0.244 +1,0.495,0.0699,0.099,0,0,0,0,0,0,0 +1,0.528,0.028,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.817,0.194 +1,0.546,0.142,0.263,0,0,0,0,0,0.133,0.374 +1,0.546,0.169,0.256,0,0,0,0,0,0.233,0.118 +0.667,0.546,0.184,0.245,0.44,0.567,0,0,0,0,0.197 +0.667,0.546,0.198,0.237,0.677,0.35,0,0,0,0,0.151 +1,0.538,0.339,0.328,0,0,0,0,0,0,0.233 +0.667,0.546,0.264,0.235,0,0,0,0,0,0,0.354 +0.667,0.563,0.29,0.236,0.316,0.317,0,0,0,0,0 +1,0.602,0.448,0.334,0.729,0.133,0,0,0,0,0.42 +0.333,0.588,0.167,0.151,0.611,0,0.333,0.263,0.45,0,0.159 +0.667,0.623,0.37,0.289,0,0,0.584,0,0,0,0 +1,0.64,0.718,0.518,0,0,0.48,0,0,0,0 +1,0.615,0.844,0.668,0,0,0,0,0,0,0.102 +1,0.563,0.779,0.788,0,0,0,0,0,0,0.141 +1,0.512,0.492,0.571,0,0,0,0,0,0,0 +1,0.532,0.0868,0.116,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.125 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.425 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.183 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.158 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.197 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0394 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.276 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.569 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.317,0.38 +1,0.653,0.457,0.408,0,0,0,0,0,0.15,0.245 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.461 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.06 +0.667,0.563,0.504,0.542,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.108 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.484 +0.667,0.512,0.0474,0.222,0,0,0.145,0.0702,0,0,0.177 +0.667,0.537,0.0633,0.277,0.387,0.217,0.651,0.193,0.667,0,0 +0.667,0.546,0.0764,0.274,0.485,0,0.388,0,0,0,0.0394 +0.667,0.546,0.0894,0.263,0.141,0,0.44,0,0,0,0.0788 +0.667,0.546,0.0996,0.256,0,0,0.694,0,0,0,0.0394 +0.667,0.546,0.11,0.245,0,0,0.59,0,0,0,0.0788 +0.667,0.546,0.116,0.237,0,0,0.674,0,0,0,0.354 +0.333,0.554,0.073,0.142,0,0,0.193,0,0,0,0.315 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0788 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.233,0.0788 +1,0.653,0.457,0.408,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.0788 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.749,0.788,0,0,0,0,0,0,0 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.0394 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0.461 +1,0.487,0.0631,0.308,0,0,0,0,0,0,0.323 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0.233,0.236 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.0539 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.253 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.567 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.055 +0.333,0.562,0.0159,0.0495,0,0,0.596,0.86,0,0,0.276 +0.667,0.554,0.073,0.142,0,0,0.318,0.193,0.667,0,0.0394 +0.667,0.554,0.0766,0.142,0,0,0.436,0,0,0,0.236 +0.667,0.562,0.0846,0.143,0,0,0.567,0,0,0,0.118 +0.667,0.588,0.19,0.239,0,0,0.659,0,0,0,0.236 +0.667,0.614,0.232,0.252,0,0,0.48,0,0,0,0.177 +0.667,0.623,0.31,0.289,0,0,0.312,0,0,0,0 +0.667,0.614,0.432,0.362,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.562,0.26,0.296,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0 +0.667,0.528,0.0236,0.0768,0,0,0,0,0,0,0.304 +0.667,0.537,0.0316,0.136,0,0,0,0,0,0,0.0788 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0394 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.158 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.312 +0.667,0.546,0.11,0.245,0,0,0,0,0,0,0.318 +0.667,0.546,0.116,0.237,0,0,0,0,0,0,0.207 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0 +0.667,0.546,0.137,0.235,0,0,0,0,0,0,0.0788 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.0394 +0.667,0.588,0.19,0.239,0,0,0,0,0,0,0.118 +0.667,0.614,0.232,0.252,0.164,0.0667,0,0,0,0,0 +0.333,0.592,0.163,0.169,0.354,0.383,0,0,0,0,0 +0.667,0.614,0.432,0.362,0.645,0.45,0,0,0,0,0.0394 +0.667,0.597,0.532,0.462,0.318,0,0,0,0,0,0 +0.667,0.562,0.26,0.296,0,0,0,0,0,0.567,0 +1,0.529,0.307,0.397,0,0,0,0,0,0.15,0.0788 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.155 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0.121 +1,0.495,0.0314,0.104,0,0,0,0,0,0.317,0.338 +1,0.512,0.0474,0.222,0,0,0,0,0,0.633,0.44 +0.667,0.549,0.0396,0.163,0,0,0,0,0,0,0.0394 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.118 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.158 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.0394 +0.667,0.546,0.13,0.235,0,0,0,0,0,0,0.315 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.0394 +0.333,0.588,0.124,0.151,0,0,0,0,0,0,0.118 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.0785 +1,0.64,0.64,0.518,0.173,0.0667,0,0,0,0.567,0.348 +1,0.615,0.79,0.668,0.791,0.383,0,0,0,0.15,0 +1,0.563,0.504,0.542,0.724,0,0,0,0,0,0 +1,0.529,0.307,0.397,0.59,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.044,0.0743,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.528,0.0201,0.05,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0.298,0.317,0,0,0,0,0 +1,0.554,0.0636,0.162,0.243,1,0,0,0,0,0.126 +0.667,0.554,0.0803,0.156,0,0.767,0,0,0,0,0.649 +0.667,0.546,0.169,0.256,0,0,0,0,0,0.317,0.0394 +1,0.538,0.268,0.343,0,0,0,0,0,0.4,0 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.158 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0.0788 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.236 +0.333,0.562,0.154,0.143,0,0,0,0,0,0.0667,0.118 +0.333,0.575,0.162,0.144,0,0,0,0,0,0.167,0.394 +0.667,0.614,0.315,0.252,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0.0788 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0.157 +0.333,0.562,0.272,0.296,0,0,0,0,0,0,0.385 +0.667,0.529,0.334,0.397,0,0,0,0,0,0,0.133 +1,0.503,0.155,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.158 +1,0.528,0.0222,0.0768,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.24 +0.667,0.546,0.142,0.263,0,0,0,0,0,0,0.253 +0.667,0.546,0.169,0.256,0,0,0,0,0,0,0.412 +0.667,0.546,0.184,0.245,0,0,0,0,0,0,0.348 +0.333,0.554,0.108,0.143,0,0,0,0,0,0,0.0788 +0.333,0.554,0.125,0.142,0,0,0,0,0,0,0 +0.333,0.554,0.141,0.142,0,0,0,0,0,0,0.197 +0.667,0.563,0.29,0.236,0,0,0,0,0,0,0.158 +0.333,0.575,0.162,0.144,0,0,0,0,0,0,0.0788 +0.333,0.588,0.167,0.151,0,0,0,0,0,0,0 +0.667,0.623,0.37,0.289,0,0,0,0,0,0,0 +0.667,0.614,0.485,0.362,0,0,0,0,0,0,0 +0.667,0.597,0.569,0.462,0,0,0,0,0,0,0.0394 +0.667,0.563,0.525,0.542,0,0,0,0,0,0.233,0 +0.667,0.545,0.176,0.223,0,0,0,0,0,0,0.117 +0.667,0.532,0.0868,0.116,0,0,0,0,0,0,0.0896 +0.667,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +0.667,0.528,0.0236,0.0578,0,0,0,0,0,0,0.0394 +0.667,0.528,0.0171,0.0495,0,0,0,0,0,0,0.197 +0.667,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.33 +1,0.512,0.0474,0.222,0,0,0,0,0,0,0.274 +1,0.537,0.0633,0.277,0,0,0,0,0,0,0.337 +0.667,0.554,0.0461,0.162,0,0,0,0,0,0,0.0568 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.197 +0.333,0.554,0.0657,0.143,0,0,0,0,0,0,0.158 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.0788 +0.333,0.554,0.0766,0.142,0,0,0,0,0,0,0.236 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.158 +0.333,0.575,0.103,0.144,0,0,0,0,0,0.817,0.27 +1,0.64,0.339,0.353,0,0,0,0,0,0.133,0.267 +1,0.653,0.457,0.408,0,0,0,0,0,0,0.153 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.134 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0.118 +1,0.528,0.0157,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.152 +1,0.528,0.0236,0.0768,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.549,0.0396,0.163,0,0,0,0,0,0,0.353 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0,0.377 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0.233,0.242 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.272 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0.233,0.0394 +0.333,0.554,0.0657,0.143,0.148,0.0667,0,0,0,0,0.0788 +0.333,0.554,0.073,0.142,0.635,1,0,0,0,0,0.0788 +0.333,0.554,0.0766,0.142,0,0.55,0,0,0,0,0.0788 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.0394 +0.333,0.575,0.103,0.144,0,0,0,0,0,0,0.13 +0.333,0.588,0.124,0.151,0,0,0,0,0,0.0667,0.133 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.167,0.152 +1,0.64,0.64,0.518,0,0,0,0,0,0,0.118 +1,0.615,0.79,0.668,0,0,0,0,0,0,0 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.131 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.119 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0702 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.554,0.0461,0.162,0,0,0,0,0,0.233,0.0788 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0.118 +0.333,0.554,0.0577,0.153,0,0,0.515,0.263,0.567,0,0.0394 +0.333,0.554,0.0628,0.147,0,0,0.674,0,1,0,0.158 +0.333,0.554,0.0657,0.143,0,0,0.19,0,0.0167,0,0.69 +0.333,0.554,0.073,0.142,0,0,0,0,0,0,0.155 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.667,0.563,0.153,0.236,0,0,0,0,0,0,0.197 +0.667,0.588,0.19,0.239,0,0,0,0,0,0.817,0.0788 +0.667,0.614,0.232,0.252,0,0,0,0,0,0.383,0.0394 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0.0394 +0.333,0.588,0.224,0.206,0,0,0,0,0,0.233,0.0788 +0.333,0.579,0.274,0.256,0,0,0,0,0,0,0.208 +1,0.563,0.749,0.788,0,0,0,0,0,0,0.0671 +1,0.545,0.161,0.223,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.128,0.0702,0,0,0.204 +1,0.512,0.0474,0.222,0,0,0.604,0.193,0.667,0,0.366 +1,0.525,0.087,0.39,0,0,0,0,0,0,0.461 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.117 +0.333,0.554,0.0526,0.156,0,0,0,0,0,0,0 +0.333,0.554,0.0577,0.153,0,0,0,0,0,0,0.197 +0.333,0.554,0.0628,0.147,0,0,0,0,0,0,0.0394 +0.333,0.554,0.0657,0.143,0,0,0.168,0.263,0.0667,0.817,0.0394 +0.667,0.546,0.13,0.235,0,0,0.517,0,0.15,0.133,0.0394 +0.667,0.546,0.137,0.235,0,0,0.532,0,0,0,0.197 +0.667,0.563,0.153,0.236,0,0,0.327,0,0,0,0.158 +1,0.602,0.276,0.334,0,0,0.529,0,0,0.0667,0 +1,0.64,0.339,0.353,0,0,0.11,0,0,1,0.0733 +0.667,0.623,0.31,0.289,0,0,0,0,0,0.367,0.638 +1,0.64,0.64,0.518,0.157,0.0667,0,0,0,0,0.616 +1,0.597,0.532,0.462,0.586,0.15,0,0,0,0,0 +1,0.563,0.749,0.788,0.717,0,0,0,0,0,0.452 +1,0.529,0.307,0.397,0,0,0,0,0,0,0 +1,0.532,0.0759,0.116,0,0,0,0,0,0,0 +1,0.528,0.0374,0.0743,0,0,0,0,0,0,0 +1,0.528,0.0236,0.0578,0,0,0,0,0,0,0.0788 +1,0.528,0.0171,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.528,0.0186,0.05,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.777 +0.667,0.537,0.0633,0.277,0,0,0,0,0,0,0.166 +0.667,0.546,0.0764,0.274,0,0,0,0,0,0,0.287 +0.667,0.546,0.0894,0.263,0,0,0,0,0,0,0.155 +0.667,0.546,0.0996,0.256,0,0,0,0,0,0,0.25 +0.667,0.554,0.0628,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.433 +0.333,0.562,0.0846,0.143,0,0,0,0,0,0,0.604 +0.667,0.588,0.19,0.239,0.709,0.45,0,0,0,0,0.158 +0.667,0.614,0.232,0.252,0.0785,0,0,0,0,0.233,0.118 +0.667,0.623,0.31,0.289,0,0,0,0,0,0,0 +1,0.64,0.64,0.518,0,0,0,0,0,0,0 +1,0.615,0.79,0.668,0,0,0,0,0,0,0.0394 +1,0.563,0.504,0.542,0,0,0,0,0,0,0.693 +1,0.545,0.161,0.223,0,0,0,0,0,0,0.0726 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.0394 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.236 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.113 +1,0.548,0.113,0.286,0,0,0,0,0,0.483,0.433 +1,0.542,0.212,0.392,0,0,0,0,0,0.233,0.272 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.187 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.0394 +0.667,0.548,0.204,0.251,0.265,0.233,0,0,0,0,0.0788 +0.667,0.548,0.24,0.249,0.728,0.467,0,0,0,0.233,0.0788 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.118 +0.667,0.591,0.315,0.259,0,0,0,0,0,0.233,0.197 +0.667,0.617,0.326,0.286,0,0,0,0,0,0.25,0.583 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.219 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.115 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.273 +1,0.516,0.509,0.561,0,0,0,0,0,0,0.0982 +1,0.477,0.232,0.249,0,0,0,0,0,0,0.156 +1,0.497,0.0721,0.099,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0.118 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0.158 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.118 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.205 +1,0.548,0.147,0.278,0,0,0,0,0,0,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0.473 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0 +0.667,0.548,0.24,0.249,0,0,0.0398,0.246,0,0,0.118 +0.667,0.548,0.273,0.249,0,0,0.719,0.281,0.733,0,0.0394 +0.667,0.564,0.159,0.15,0,0,0.55,0,0.183,0.483,0.0394 +0.667,0.591,0.315,0.259,0,0,0.778,0,0,0,0.118 +1,0.645,0.479,0.404,0,0,0.54,0,0,0,0.236 +1,0.658,0.565,0.501,0,0,0.208,0,0,0,0 +1,0.645,0.743,0.656,0,0,0,0,0,0,0.187 +1,0.619,0.873,0.806,0,0,0,0,0,0,0.118 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.497,0.0608,0.099,0,0,0,0,0,0,0.0788 +1,0.529,0.0241,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0173,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.286 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.243 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.118 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.233,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.158 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.239 +0.333,0.589,0.128,0.168,0,0,0,0,0,0,0.274 +0.667,0.626,0.32,0.351,0,0,0,0,0,0,0.212 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0.323,0.317,0,0,0,0,0 +1,0.568,0.774,0.851,0.503,0.617,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0.181 +1,0.538,0.0323,0.139,0.71,0.467,0,0,0,0.167,0.171 +0.667,0.551,0.0406,0.167,0.293,0,0,0,0,0,0.244 +0.667,0.555,0.0473,0.168,0,0,0,0,0,0,0.229 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.118 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.197 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.274 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.305 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0394 +0.333,0.589,0.128,0.168,0,0,0,0,0,0.233,0.215 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.158 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.839 +1,0.529,0.0158,0.0495,0,0,0,0,0,0,0.228 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0817 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.473 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.499 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.852 +1,0.548,0.0788,0.286,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.236 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0.0667,0.236 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.167,0.276 +1,0.606,0.286,0.363,0,0,0,0,0,0,0 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.567,0.0788 +0.667,0.626,0.32,0.351,0,0,0,0,0,0.15,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.151 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.322 +1,0.49,0.0653,0.317,0,0,0,0,0,0,0.313 +0.667,0.54,0.0653,0.284,0,0,0,0,0,0,0.315 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0.0138,0.0702,0,0,0.118 +0.333,0.555,0.0676,0.15,0,0,0.723,0.193,0.217,0,0 +0.333,0.555,0.0751,0.149,0,0,0.699,0,0,0,0.0394 +0.333,0.555,0.0789,0.149,0,0,0.622,0,0,0,0.276 +0.333,0.564,0.0871,0.15,0.358,0.317,0,0,0,0,0.354 +0.333,0.576,0.106,0.154,0.768,0.15,0,0,0,0,0 +0.667,0.617,0.239,0.286,0.564,0,0,0,0,0.233,0 +1,0.658,0.473,0.501,0.635,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.667,0,0,0,0,0,0.0394 +1,0.619,0.817,0.806,0.108,0,0,0,0,0,0.0394 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.236 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.169 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.3 +1,0.529,0.0241,0.0781,0,0,0,0,0,0.483,0.336 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.713 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.798 +1,0.542,0.11,0.404,0,0,0,0,0,0.233,0.445 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.183 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0.0667,0.276 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0.9,0.0394 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.236 +0.667,0.555,0.0751,0.149,0,0,0,0,0,0.0667,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.167,0 +0.667,0.566,0.158,0.251,0,0,0,0,0,0,0.0788 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.0788 +1,0.658,0.473,0.501,0,0,0,0,0,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0.0667,0.418 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.167,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.514 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.532 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.289 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.2 +1,0.551,0.0444,0.167,0,0,0,0,0,0.233,0.185 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +0.667,0.548,0.147,0.278,0,0,0,0,0,0.233,0.0788 +1,0.542,0.252,0.381,0,0,0,0,0,0,0 +0.667,0.548,0.191,0.259,0,0,0,0,0,0.233,0.0394 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.66 +1,0.542,0.351,0.349,0,0,0,0,0,0,0.265 +1,0.542,0.401,0.349,0,0,0,0,0,0.483,0.0733 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.312 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.427 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0.279 +0.667,0.626,0.383,0.351,0,0,0,0,0,0,0.191 +0.667,0.617,0.501,0.454,0,0,0.229,0.263,0.217,0,0.13 +0.667,0.6,0.588,0.554,0,0,0.497,0,0,0,0 +1,0.566,0.543,0.584,0,0,0,0,0,0,0.12 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.24 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.236 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.263 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.11 +1,0.555,0.0826,0.164,0,0,0,0,0,0.233,0.316 +1,0.548,0.174,0.27,0,0,0,0,0,0,0.214 +1,0.542,0.277,0.364,0,0,0,0,0,0,0.591 +1,0.542,0.297,0.352,0.64,0.467,0,0,0,0.233,0.162 +0.667,0.548,0.24,0.249,0.15,0,0,0,0,0,0.0394 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.29 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.197 +1,0.606,0.464,0.363,0,0,0,0,0,0,0.118 +1,0.645,0.479,0.404,0,0,0,0,0,0,0.118 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.118 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.505,0.161,0.183,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0797 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.296 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.258 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.424 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0.233,0.401 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.349 +0.333,0.555,0.0593,0.16,0.654,0.467,0,0,0,0,0.276 +0.333,0.555,0.0646,0.154,0.564,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0.283,0,0,0,0,0,0.197 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.233,0.0394 +0.333,0.576,0.106,0.154,0,0,0.0657,0.0702,0,0,0.276 +1,0.645,0.351,0.404,0.264,0.317,0.645,0.193,0.817,0,0.0788 +1,0.658,0.473,0.501,0.623,0.15,0.398,0,0.333,0,0 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.112 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.21 +1,0.516,0.468,0.561,0,0,0,0,0,0,0.112 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.457 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.157 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.358 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0.483,0.477 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.236 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0394 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.394 +0.667,0.564,0.0871,0.15,0,0,0,0,0,0,0.207 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.178 +0.667,0.617,0.239,0.286,0,0,0,0,0,0,0.23 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.118 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.344 +1,0.538,0.0323,0.139,0,0,0.333,0.333,0,0,0.158 +1,0.54,0.0653,0.284,0,0,0.732,0.737,0.217,0,0 +0.667,0.555,0.0473,0.168,0,0,0.58,0,0,0,0.158 +0.667,0.548,0.0923,0.278,0,0,0.277,0,0,0,0.0788 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.197 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0.202,0.0667,0,0,0,0,0.208 +0.667,0.617,0.239,0.286,0.494,1,0,0,0,0,0.418 +0.667,0.626,0.32,0.351,0,0.1,0,0,0,0,0.29 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.184 +0.667,0.6,0.55,0.554,0,0,0,0,0,0.233,0.422 +1,0.566,0.521,0.584,0,0,0,0,0,0,0.209 +1,0.531,0.317,0.391,0.408,0.467,0,0,0,0,0 +1,0.533,0.0781,0.116,0.133,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0 +0.333,0.555,0.0593,0.16,0,0,0.463,0.263,0.217,0,0.354 +0.333,0.555,0.0646,0.154,0,0,0.295,0.263,0.0667,0,0.0788 +0.667,0.548,0.119,0.251,0,0,0.428,0,0.15,0,0.197 +0.667,0.548,0.134,0.249,0,0,0.352,0,0,0,0.197 +0.667,0.548,0.142,0.249,0,0,0.761,0,0,0,0.276 +0.667,0.566,0.158,0.251,0,0,0.801,0,0,0.233,0.276 +1,0.606,0.286,0.363,0,0,0.766,0,0,0.483,0.0788 +1,0.645,0.351,0.404,0,0,0.554,0,0,0,0.0394 +1,0.658,0.473,0.501,0,0,0.216,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.114 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.421 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.26 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.498 +1,0.514,0.0488,0.228,0,0,0,0,0,0,0.491 +1,0.54,0.0653,0.284,0,0,0,0,0,0,0.442 +0.667,0.555,0.0473,0.168,0.216,0.0667,0,0,0,0.233,0.56 +0.667,0.548,0.0923,0.278,0.639,0.867,0,0,0,0,0 +0.667,0.548,0.103,0.27,0.716,0,0,0,0,0,0.0394 +0.667,0.548,0.113,0.259,0.437,0,0,0,0,0,0.197 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.483,0.158 +0.333,0.594,0.168,0.2,0,0,0,0,0,0,0.0788 +0.667,0.617,0.446,0.454,0,0,0,0,0,0,0.0796 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.119 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.153 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.349 +1,0.538,0.0301,0.139,0,0,0,0,0,0.483,0.118 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.118 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0.368 +1,0.542,0.252,0.381,0,0,0,0,0,0,0.389 +1,0.542,0.277,0.364,0,0,0,0,0,0,0 +0.667,0.548,0.204,0.251,0,0,0,0,0,0,0.291 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.479 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.303 +0.667,0.566,0.3,0.251,0,0,0,0,0,0,0.0788 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.0394 +1,0.645,0.743,0.656,0,0,0.18,0.526,0.233,0,0.0788 +1,0.619,0.873,0.806,0,0,0.317,0,0.217,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.22 +0.667,0.551,0.0444,0.167,0,0,0,0,0,0,0.47 +1,0.555,0.0654,0.168,0,0,0,0,0,0,0.249 +1,0.555,0.0826,0.164,0,0,0,0,0,0,0 +1,0.555,0.0961,0.16,0,0,0,0,0,0,0.236 +1,0.555,0.104,0.154,0,0,0,0,0,0.233,0.0394 +0.667,0.555,0.111,0.15,0,0,0,0,0,0,0.0394 +0.667,0.555,0.129,0.149,0,0,0,0,0,0,0.118 +0.667,0.555,0.146,0.149,0,0,0,0,0,0,0.0394 +0.667,0.564,0.159,0.15,0,0,0,0,0,0,0.383 +0.667,0.576,0.167,0.154,0,0,0,0,0,0,0.15 +0.667,0.589,0.172,0.168,0.515,0.733,0,0,0,0,0.0788 +0.667,0.594,0.2,0.2,0.674,0.433,0,0,0,0,0.0394 +0.667,0.589,0.26,0.252,0.176,0,0.324,0.526,0.233,0,0.0394 +1,0.6,0.588,0.554,0,0,0.414,0,1,0,0 +0.667,0.566,0.543,0.584,0,0,0,0,0.367,0,0.0788 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.667,0.529,0.0188,0.0503,0,0,0,0,0,0,0.0394 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.118 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.135 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.165 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.118 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.236 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0394 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.3,0.0788 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.167,0 +0.667,0.617,0.239,0.286,0.22,0.0667,0,0,0,0,0 +0.333,0.594,0.168,0.2,0.59,0.167,0,0,0,0,0.0394 +0.333,0.589,0.231,0.252,0,0,0,0,0,0,0 +0.333,0.581,0.283,0.302,0,0,0,0,0,0,0.0688 +0.667,0.566,0.521,0.584,0,0,0,0,0,0,0.268 +1,0.531,0.317,0.391,0,0,0,0,0,0,0.163 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.653 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.23 +1,0.551,0.0406,0.167,0,0,0,0,0,0,0.773 +1,0.542,0.11,0.404,0,0,0,0,0,0,0.358 +1,0.542,0.131,0.392,0,0,0,0,0,0,0.143 +0.667,0.548,0.103,0.27,0.302,0.317,0,0,0,0,0.444 +0.667,0.548,0.113,0.259,0.752,0.15,0,0,0,0,0.238 +0.667,0.548,0.119,0.251,0.384,0,0.162,0.263,0.217,0,0.236 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.0394 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.0788 +1,0.645,0.351,0.404,0,0,0,0,0,0,0.0788 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.128 +1,0.645,0.662,0.656,0,0,0,0,0,0,0.247 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.564,0.269,0.317,0,0,0,0,0,0,0 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.382 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.433 +1,0.529,0.0241,0.0781,0,0,0.11,0.0702,0,0.317,0.236 +0.667,0.538,0.0323,0.139,0,0,0,0.193,0.45,0.167,0.305 +0.333,0.551,0.0406,0.167,0,0,0,0,0,0,0.331 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.255 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0881 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.301 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.418 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.184 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.118 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0788 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.233,0.154 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.217 +0.667,0.617,0.239,0.286,0.59,0.467,0,0,0,0,0.0394 +1,0.658,0.473,0.501,0.688,0,0,0,0,0,0 +1,0.645,0.662,0.656,0.621,0,0,0,0,0,0 +1,0.619,0.817,0.806,0.639,0,0,0,0,0,0.164 +1,0.564,0.269,0.317,0.347,0,0,0,0,0,0.123 +1,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.569 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.12 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0.0803 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0971 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.0788 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.65,0.197 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.0788 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.276 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0394 +0.667,0.617,0.239,0.286,0,0,0.534,0.526,0.217,0,0.118 +1,0.658,0.473,0.501,0.119,0.0667,0,0,0,0,0.0394 +1,0.645,0.662,0.656,0.682,0.4,0,0,0,0,0.0788 +1,0.619,0.817,0.806,0.304,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0.0394 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.262 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.162 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0.817,0.0788 +0.667,0.538,0.0323,0.139,0.171,0.0667,0,0,0,0.383,0.236 +0.333,0.551,0.0406,0.167,0.658,0.4,0,0,0,0,0.0788 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.236 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.276 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.197 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0.817,0.0788 +1,0.606,0.286,0.363,0,0,0,0,0,0.15,0.118 +1,0.645,0.351,0.404,0,0,0.373,0.263,0.317,0,0.0788 +1,0.658,0.473,0.501,0,0,0.524,0,1,0,0 +1,0.645,0.662,0.656,0,0,0,0,0.75,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.568,0.774,0.851,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +1,0.529,0.0203,0.0503,0,0,0,0,0,0,0.197 +1,0.529,0.0226,0.0781,0,0,0,0,0,0,0.0788 +1,0.538,0.0301,0.139,0,0,0,0,0,0,0.149 +1,0.551,0.0444,0.167,0,0,0,0,0,0,0.301 +1,0.548,0.113,0.286,0,0,0,0,0,0.483,0.275 +1,0.542,0.212,0.392,0,0,0,0,0,0,0.257 +0.667,0.548,0.174,0.27,0,0,0,0,0,0,0.195 +0.667,0.548,0.191,0.259,0,0,0,0,0,0,0.433 +0.333,0.555,0.111,0.15,0,0,0,0,0,0.233,0.0788 +0.333,0.555,0.129,0.149,0,0,0,0,0,0.483,0 +0.333,0.555,0.146,0.149,0,0,0,0,0,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.458 +0.667,0.591,0.315,0.259,0,0,0,0,0,0,0.0973 +0.333,0.589,0.172,0.168,0,0,0,0,0,0.233,0.0394 +0.667,0.626,0.383,0.351,0,0,0,0,0,0.233,0 +1,0.645,0.743,0.656,0.373,0.467,0,0,0,0.233,0.163 +1,0.619,0.873,0.806,0.555,0,0,0,0,0,0.175 +1,0.568,0.806,0.851,0.314,0,0.388,0.263,0.217,0,0 +1,0.531,0.345,0.391,0,0,0.425,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0.274,0,0,0,0 +1,0.529,0.0451,0.0743,0,0,0,0,0,0,0 +1,0.529,0.0286,0.0578,0,0,0,0,0,0,0 +1,0.529,0.0211,0.0495,0,0,0,0,0,0,0 +1,0.529,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.149 +1,0.54,0.0706,0.284,0,0,0,0,0,0,0.291 +1,0.548,0.113,0.286,0.726,0.467,0,0,0,0,0.197 +1,0.548,0.147,0.278,0,0,0,0,0,0,0.197 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0.233,0.0788 +0.667,0.555,0.104,0.154,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.298 +0.667,0.548,0.24,0.249,0,0,0.5,0.263,0.733,0,0.315 +1,0.542,0.401,0.349,0,0,0.396,0,0.183,0,0 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.0394 +1,0.606,0.464,0.363,0,0,0,0,0,0.233,0.197 +1,0.645,0.479,0.404,0,0,0,0,0,0,0 +1,0.658,0.565,0.501,0.503,0.467,0,0,0,0,0.158 +0.667,0.617,0.501,0.454,0,0,0,0,0,0,0 +0.667,0.6,0.588,0.554,0,0,0,0,0,0,0.0394 +0.667,0.564,0.281,0.317,0,0,0,0,0,0,0.0394 +0.667,0.546,0.182,0.22,0,0,0,0,0,0,0 +0.667,0.533,0.0894,0.116,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.268 +1,0.529,0.0188,0.0503,0,0,0,0,0,0,0.118 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.118 +0.667,0.538,0.0323,0.139,0,0,0.199,0.263,0.0667,0.483,0.118 +0.333,0.551,0.0406,0.167,0,0,0.46,0,0.15,0,0 +0.333,0.555,0.0473,0.168,0,0,0.642,0,0,0,0.0788 +0.333,0.555,0.0541,0.164,0,0,0.821,0,0,0,0.0788 +0.333,0.555,0.0593,0.16,0,0,0.0657,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.118 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.197 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0.278 +0.333,0.576,0.106,0.154,0,0,0,0,0,0,0.567 +0.667,0.617,0.239,0.286,0,0,0,0,0,0.0667,0.316 +1,0.658,0.473,0.501,0,0,0,0,0,0.9,0.118 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +0.667,0.546,0.167,0.22,0,0,0,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.483,0.197 +0.667,0.514,0.0488,0.228,0,0,0,0,0,0,0 +0.667,0.54,0.0653,0.284,0,0,0.59,0.263,0.317,0,0.236 +0.667,0.548,0.0788,0.286,0,0,0.476,0,0.133,0,0.0394 +0.667,0.548,0.0923,0.278,0,0,0.489,0,0,0,0.158 +0.667,0.548,0.103,0.27,0,0,0.11,0,0,0,0.0394 +0.333,0.555,0.0646,0.154,0.183,0.0667,0,0,0,0,0.236 +0.333,0.555,0.0676,0.15,0.752,0.167,0,0,0,0,0 +0.333,0.555,0.0751,0.149,0.565,0,0,0,0,0,0.0788 +0.333,0.555,0.0789,0.149,0.36,0,0,0,0,0.567,0.158 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.4,0.0788 +0.667,0.591,0.196,0.259,0,0,0,0,0,0,0.0788 +0.667,0.617,0.239,0.286,0,0,0.317,0.263,0.217,0,0 +1,0.658,0.473,0.501,0,0,0.662,0,0,0,0 +1,0.645,0.662,0.656,0,0,0,0,0,0,0 +0.667,0.6,0.55,0.554,0,0,0,0,0,0,0.116 +1,0.568,0.774,0.851,0,0,0,0,0,0,0.118 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.9,0.118 +1,0.538,0.0323,0.139,0,0,0,0,0,0,0.487 +1,0.529,0.09,0.402,0,0,0,0,0,0,0.446 +0.667,0.548,0.0788,0.286,0,0,0,0,0,0,0.195 +0.667,0.548,0.0923,0.278,0,0,0,0,0,0,0.329 +0.667,0.548,0.103,0.27,0,0,0,0,0,0,0.158 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0.0788 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0.233,0.0394 +0.333,0.555,0.0789,0.149,0,0,0,0,0,0,0.197 +0.333,0.564,0.0871,0.15,0,0,0,0,0,0,0 +0.333,0.576,0.106,0.154,0.173,0.0667,0,0,0,0,0.0799 +0.667,0.617,0.239,0.286,0.386,0.633,0,0,0,0,0.617 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.099 +1,0.645,0.662,0.656,0,0,0,0,0,0.233,0 +1,0.619,0.817,0.806,0,0,0,0,0,0,0 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.233,0.228 +1,0.497,0.0323,0.107,0,0,0,0,0,0,0.148 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0.424 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.555,0.0473,0.168,0,0,0,0,0,0,0.216 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.796 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.119 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.181 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0751,0.149,0,0,0,0,0,0,0.158 +0.333,0.555,0.0789,0.149,0,0,0.216,0.263,0.317,0,0.0788 +0.333,0.564,0.0871,0.15,0,0,0.151,0,0.6,0,0.0394 +0.333,0.576,0.106,0.154,0,0,0.313,0,0,0,0.205 +0.667,0.617,0.239,0.286,0,0,0.628,0,0,0,0.488 +0.667,0.626,0.32,0.351,0,0,0.384,0,0,0,0.347 +1,0.645,0.662,0.656,0,0,0.294,0,0,0,0.124 +1,0.619,0.817,0.806,0,0,0,0,0,0,0.135 +1,0.566,0.521,0.584,0,0,0,0,0,0,0 +1,0.531,0.317,0.391,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.558 +1,0.529,0.0241,0.0781,0,0,0,0,0,0,0.448 +0.667,0.538,0.0323,0.139,0,0,0,0,0,0,0 +0.667,0.551,0.0406,0.167,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.555,0.0541,0.164,0,0,0,0,0,0,0.0394 +0.333,0.555,0.0593,0.16,0,0,0,0,0,0,0.118 +0.333,0.555,0.0646,0.154,0,0,0,0,0,0,0.354 +0.333,0.555,0.0676,0.15,0,0,0,0,0,0,0 +0.667,0.548,0.134,0.249,0,0,0,0,0,0,0.236 +0.667,0.548,0.142,0.249,0,0,0,0,0,0,0.236 +0.667,0.566,0.158,0.251,0,0,0,0,0,0.0667,0.118 +0.667,0.591,0.196,0.259,0,0,0,0,0,0.167,0 +1,0.645,0.351,0.404,0,0,0,0,0,0,0 +1,0.658,0.473,0.501,0,0,0,0,0,0,0.0394 +1,0.645,0.662,0.656,0,0,0.286,0.263,0.217,0,0 +1,0.619,0.817,0.806,0.38,0.467,0.541,0,0,0,0 +1,0.568,0.774,0.851,0.105,0,0.524,0,0,0,0 +1,0.531,0.317,0.391,0,0,0.384,0,0,0,0 +1,0.533,0.0781,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.233,0.0788 +1,0.542,0.16,0.404,0,0,0.274,0.263,0.483,0,0.0394 +1,0.542,0.212,0.392,0,0,0.509,0,0.433,0,0.0788 +1,0.542,0.252,0.381,0,0,0.428,0,0,0,0.0788 +1,0.542,0.277,0.364,0,0,0.404,0,0,0,0.197 +0.667,0.548,0.204,0.251,0,0,0.465,0,0,0,0.118 +0.667,0.548,0.24,0.249,0,0,0.576,0,0,0,0.0788 +0.667,0.548,0.273,0.249,0,0,0.534,0,0,0,0.197 +0.667,0.566,0.3,0.251,0,0,0.555,0,0,0,0 +0.667,0.591,0.315,0.259,0,0,0.391,0,0,0,0 +0.667,0.617,0.326,0.286,0,0,0.572,0,0,0,0.27 +1,0.658,0.565,0.501,0,0,0,0,0,0,0.236 +1,0.645,0.743,0.656,0,0,0,0,0,0,0 +1,0.619,0.873,0.806,0,0,0,0,0,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0 +1,0.531,0.345,0.391,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.126 +1,0.555,0.0654,0.168,0,0,0,0,0,0.233,0.433 +0.667,0.555,0.0826,0.164,0,0,0,0,0,0.733,0 +0.667,0.555,0.0961,0.16,0,0,0,0,0,0,0 +0.667,0.555,0.104,0.154,0.585,0.233,0,0,0,0,0 +1,0.542,0.297,0.352,0,0,0,0,0,0,0.0788 +0.667,0.548,0.24,0.249,0,0,0,0,0,0,0.315 +0.667,0.548,0.273,0.249,0,0,0,0,0,0,0.453 +1,0.568,0.441,0.351,0,0,0,0,0,0,0.413 +1,0.606,0.464,0.363,0.64,0.467,0,0,0,0.233,0.255 +1,0.645,0.479,0.404,0.6,0,0,0,0,0,0.0394 +1,0.626,0.383,0.351,0.668,0,0,0,0,0,0.0394 +1,0.617,0.501,0.454,0.675,0,0.211,0.263,0.233,0,0.315 +1,0.619,0.873,0.806,0.26,0,0,0,0.683,0,0 +1,0.568,0.806,0.851,0,0,0,0,0,0,0.0394 +1,0.516,0.509,0.561,0,0,0,0,0,0,0 +1,0.533,0.0894,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.74 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.338 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0.0788 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0.25,0.0788 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0.208,0.0667,0,0,0,0.25,0.0394 +0.333,0.601,0.0774,0.162,0.253,0.417,0,0,0,0,0.315 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.567,0.0394 +1,0.788,0.413,0.655,0,0,0,0,0,1,0.282 +1,0.772,0.578,0.829,0,0,0,0,0,1,0.118 +1,0.741,0.713,0.905,0,0,0,0,0,1,0.0788 +1,0.679,0.676,0.821,0,0,0,0,0,1,0 +1,0.599,0.278,0.356,0,0,0,0,0,0.7,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.197 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.46 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.109 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0.294 +0.333,0.591,0.0427,0.175,0,0,0.119,0.0702,0,0,0.116 +0.333,0.591,0.0486,0.174,0,0,0.388,0.175,0.233,0,0.0788 +0.333,0.591,0.0532,0.17,0,0,0.313,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0394 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.236 +1,0.726,0.25,0.417,0,0,0,0,0,0.25,0 +1,0.772,0.307,0.501,0.614,0.483,0,0,0,0,0.381 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.317 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.306 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.19 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.117 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.379 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.197 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.394 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.236 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.197 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.317,0.236 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0.183,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.712,0.28,0.453,0,0,0,0,0,0,0.0394 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.186 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.165 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.214 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.133 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.181 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.218 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.418 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.16 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.119 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.567,0.315 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.183,0.0394 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.197 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0 +0.667,0.64,0.139,0.274,0,0,0,0,0,0.0667,0.0788 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.683,0.158 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0394 +1,0.788,0.413,0.655,0.274,0.0667,0,0,0,0,0 +1,0.772,0.578,0.829,0.408,0.167,0,0,0,0,0 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.115 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.118 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.353 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.532 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.555 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.303 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.269 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.243 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0.235 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.158 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +0.667,0.616,0.0938,0.172,0,0,0,0,0,0,0.158 +1,0.702,0.21,0.35,0,0,0,0,0,0.317,0.0788 +1,0.712,0.28,0.453,0,0,0,0,0,0.683,0 +1,0.702,0.39,0.569,0,0,0,0,0,0,0.0394 +1,0.681,0.481,0.62,0,0,0,0,0,0.25,0 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.168 +1,0.599,0.278,0.356,0,0,0,0,0,0,0.111 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.118 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.5,0.0788 +0.667,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0.244,0.233,0,0,0,0,0 +0.667,0.591,0.0855,0.17,0.524,0,0,0,0,0,0.17 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.422 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0,0.394 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.389 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.31 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.533 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.637,0.177,0.251,0,0,0,0,0,0,0.118 +0.333,0.632,0.228,0.309,0,0,0,0,0,0.75,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0 +0.333,0.58,0.16,0.203,0,0,0,0,0,0,0.0788 +0.333,0.565,0.0796,0.116,0,0,0,0,0,0,0 +0.667,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.439 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.215 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.106 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.591,0.0737,0.174,0,0,0,0,0,0,0.158 +0.667,0.591,0.0855,0.17,0.506,0.233,0,0,0,0,0.197 +0.667,0.62,0.167,0.279,0.682,0,0,0,0,0,0.0788 +0.667,0.62,0.179,0.271,0.275,0,0.229,0.246,0.333,0,0.118 +0.667,0.62,0.21,0.269,0,0,0.422,0,0.133,0,0.0788 +0.667,0.62,0.239,0.269,0,0,0.656,0,0,0,0.197 +0.667,0.64,0.263,0.274,0,0,0.318,0,0,0.25,0.197 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.21 +1,0.772,0.649,0.829,0,0,0,0,0,0,0.121 +1,0.741,0.763,0.905,0,0,0,0,0,0,0.303 +1,0.679,0.704,0.821,0,0,0,0,0,0,0.0788 +1,0.618,0.444,0.51,0,0,0,0,0,0,0.227 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0.171,0.0667,0,0,0,0.25,0.227 +1,0.578,0.0433,0.236,0.442,0.417,0.716,0.737,0.117,0.317,0.171 +1,0.633,0.0786,0.417,0,0,0.52,0,0.117,0.433,0.276 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0.75,0.0788 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.25,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0667,0.158 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.933,0.236 +0.667,0.62,0.118,0.269,0,0,0,0,0,0.25,0.118 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.276 +0.667,0.64,0.139,0.274,0,0,0.913,0.246,0.583,0,0.197 +0.667,0.671,0.172,0.294,0,0,0.265,0,0.6,0.25,0.128 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.255 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.301 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.231 +1,0.741,0.713,0.905,0,0,0,0,0,0,0 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.0394 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0 +1,0.57,0.0296,0.143,0,0,0.246,0.246,0.0833,0,0.286 +1,0.585,0.0368,0.172,0,0,0.622,0,0.15,0,0.242 +1,0.649,0.0963,0.427,0,0,0.0214,0,0,0,0.454 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.29 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.303 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.25 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.158 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.158 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0788 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.158 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +0.667,0.637,0.148,0.251,0.384,0.233,0,0,0,0,0 +1,0.772,0.578,0.829,0.7,0,0,0,0,0,0.0394 +1,0.681,0.481,0.62,0.447,0,0,0,0,0,0 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.0394 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.286 +1,0.578,0.0433,0.236,0,0,0,0,0,0,0.585 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.553 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.284 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.236 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.236 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.265 +0.667,0.712,0.28,0.453,0,0,0.0795,0.246,0.333,0,0.34 +0.667,0.702,0.39,0.569,0,0,0,0,0.617,0,0.627 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.131 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.212 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.192 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.36 +0.667,0.609,0.0577,0.295,0,0,0,0,0,0,0.419 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.269 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.512 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.317,0.25 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.433,0.118 +0.667,0.62,0.105,0.271,0,0,0,0,0,0,0.0788 +0.667,0.591,0.0669,0.159,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.304 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.464 +0.667,0.671,0.172,0.294,0.335,0.317,0,0,0,0,0.468 +0.667,0.702,0.21,0.35,0.545,0.167,0,0,0,0,0.112 +0.667,0.712,0.28,0.453,0.133,0,0,0,0,0,0.171 +1,0.772,0.578,0.829,0.67,0.233,0,0,0,0,0.283 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0564 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0.0788 +1,0.56,0.0165,0.0495,0,0,0,0,0,0.25,0.312 +1,0.56,0.0152,0.0495,0,0,0,0,0,0,0.0978 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.415 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.285 +0.667,0.62,0.0695,0.301,0,0,0,0,0,0,0.158 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0.139 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0.317,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,1,0.333 +0.667,0.591,0.0604,0.16,0,0,0,0,0,0.933,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.567,0.197 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.433,0.0788 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.118 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.144 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.479 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.189 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.304 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.317,0 +0.667,0.591,0.0855,0.17,0,0,0,0,0,1,0.118 +0.667,0.62,0.167,0.279,0,0,0,0,0,1,0 +0.667,0.62,0.179,0.271,0,0,0,0,0,0.433,0 +0.667,0.62,0.21,0.269,0,0,0,0,0,0,0.0394 +0.667,0.62,0.239,0.269,0,0,0,0,0,0,0.118 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.394 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.197 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.197 +0.667,0.712,0.335,0.453,0,0,0,0,0,0,0.0788 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0.0394 +1,0.741,0.763,0.905,0,0,0.648,0.246,0.233,0,0 +1,0.679,0.704,0.821,0,0,0.625,0,0,0,0.442 +1,0.599,0.302,0.356,0,0,0.537,0,0,0,0.0394 +1,0.568,0.141,0.183,0,0,0.624,0,0,0,0.215 +1,0.558,0.0637,0.099,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.118 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.118 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.276 +1,0.591,0.0737,0.174,0,0,0,0,0,0,0 +1,0.591,0.0855,0.17,0,0,0,0,0,0,0.158 +1,0.591,0.0927,0.164,0,0,0,0,0,0,0.0394 +0.667,0.591,0.0986,0.16,0,0,0,0,0,0.0667,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.683,0.236 +0.667,0.591,0.129,0.159,0,0,0,0,0,0,0.236 +0.667,0.601,0.14,0.162,0,0,0,0,0,0,0.315 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.0734 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.308 +1,0.788,0.493,0.655,0,0,0,0,0,0,0.531 +0.667,0.702,0.438,0.569,0,0,0,0,0,0,0 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0.0394 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.241 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.212 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.19 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0,0.147 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.337 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0.348 +0.667,0.62,0.105,0.271,0,0,0.428,0.246,0.233,0,0 +0.333,0.591,0.0669,0.159,0,0,0.596,0,0,0,0.118 +0.333,0.591,0.0702,0.159,0,0,0.583,0,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0.488,0,0,0,0.0394 +0.333,0.616,0.0938,0.172,0,0,0.827,0,0,0,0.197 +0.333,0.632,0.113,0.2,0.635,0.483,0,0,0,0,0.197 +1,0.788,0.413,0.655,0.651,0,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0.232,0,0.225,0.246,0.233,0,0.207 +1,0.741,0.713,0.905,0,0,0.145,0,0,0,0.2 +1,0.601,0.236,0.307,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.0394 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.683,0.166 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.327 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.146 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0.687,0.483,0,0,0,0,0.276 +0.333,0.591,0.0604,0.16,0.231,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0394 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.276 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.197 +0.667,0.702,0.21,0.35,0,0,0,0,0,0.75,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.181 +1,0.741,0.713,0.905,0,0,0.757,0.246,0.583,0,0.383 +1,0.679,0.676,0.821,0,0,0.813,0,0.367,0,0 +1,0.58,0.147,0.203,0,0,0.291,0,0,0,0.101 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.233 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.17 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.0667,0.379 +0.667,0.578,0.0433,0.236,0,0,0,0,0,0.683,0.0788 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.276 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.236 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.0667,0.0394 +0,0.562,0.0159,0.0495,0,0,0.193,0.246,0.0833,0.183,0.0394 +0.667,0.671,0.172,0.294,0,0,0,0,0.15,0,0.0788 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.543 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.412 +1,0.772,0.578,0.829,0,0,0,0,0,0,0.281 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.347 +1,0.64,0.456,0.564,0,0,0,0,0,0,0.415 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.192 +0.667,0.558,0.0289,0.11,0,0,0,0,0,0,0.158 +0.333,0.57,0.0296,0.143,0,0,0,0,0,0,0.0788 +0.333,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0.25,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0577,0.164,0,0,0.0795,0.0702,0,0,0.0788 +0.333,0.591,0.0604,0.16,0,0,0.775,0.175,0.233,0,0.158 +0.333,0.591,0.0669,0.159,0,0,0.538,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0.263,0,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.333,0.632,0.113,0.2,0,0,0,0,0,0,0.118 +0.333,0.637,0.148,0.251,0.25,0.317,0,0,0,0,0.459 +1,0.772,0.578,0.829,0.583,0.167,0,0,0,0,0 +1,0.741,0.713,0.905,0.654,0,0,0,0,0,0.158 +1,0.679,0.676,0.821,0.297,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0.275 +1,0.587,0.057,0.33,0,0,0,0,0,0.183,0.622 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.296 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.632 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.373 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.299 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.315 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0.317,0.0394 +1,0.64,0.139,0.274,0,0,0,0,0,0.183,0.197 +1,0.726,0.25,0.417,0,0,0,0,0,0.25,0.161 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.0394 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0.677,0.233,0,0,0,0,0 +1,0.741,0.713,0.905,0.536,0,0,0,0,0,0.162 +1,0.64,0.456,0.564,0.839,0,0,0,0,0,0.0177 +1,0.58,0.147,0.203,0.67,0,0,0,0,0,0 +1,0.565,0.0695,0.116,0.59,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0.438,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.25,0.38 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0.25,0 +0.333,0.591,0.0855,0.17,0,0,0,0,0,0,0.276 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0.0394 +0.333,0.591,0.114,0.159,0,0,0,0,0,0,0.0394 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0.0394 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.0394 +0.667,0.671,0.276,0.294,0,0,0,0,0,0,0.158 +0.667,0.702,0.285,0.35,0,0,0,0,0,0,0.197 +1,0.788,0.493,0.655,0,0,0.361,0.246,0.0833,0.25,0.0788 +1,0.772,0.649,0.829,0,0,0.612,0,0.15,0,0 +1,0.741,0.763,0.905,0,0,0.326,0,0,0,0.197 +1,0.679,0.704,0.821,0,0,0.609,0,0,0,0 +1,0.618,0.444,0.51,0,0,0.555,0,0,0.25,0 +1,0.571,0.202,0.249,0,0,0,0,0,0,0.0394 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.558,0.0205,0.0518,0,0,0,0,0,0,0.0788 +0.667,0.56,0.0213,0.0798,0,0,0,0,0,0,0.0788 +0.667,0.57,0.0278,0.143,0,0,0,0,0,0,0.0394 +0.667,0.585,0.0403,0.172,0.215,0.317,0,0,0,0,0.0788 +0.667,0.62,0.0991,0.301,0.709,0.167,0,0,0,0,0 +0.667,0.62,0.129,0.299,0,0,0,0,0,0,0.0394 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0927,0.164,0,0,0,0,0,0,0 +0.333,0.591,0.0986,0.16,0,0,0,0,0,0,0.0788 +0.667,0.62,0.21,0.269,0,0,0.586,0.246,0.583,0,0.158 +1,0.649,0.35,0.379,0,0,0.251,0,0.117,0,0.0788 +0.667,0.64,0.263,0.274,0,0,0,0,0,0,0.118 +0.333,0.616,0.147,0.172,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.0963,0.0702,0,0,0 +0,0.562,0.0181,0.0495,0,0,0.468,0.175,0.233,0,0 +0.333,0.621,0.266,0.335,0,0,0.106,0,0,0,0.0394 +1,0.679,0.704,0.821,0,0,0,0,0,0,0 +1,0.599,0.302,0.356,0,0,0,0,0,0,0 +1,0.568,0.141,0.183,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.327 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.34 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0.197 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.345 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.0806 +0.667,0.62,0.0905,0.291,0,0,0,0,0,0,0.0788 +0.667,0.62,0.0996,0.279,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.118 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.0394 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.199 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.25,0.18 +1,0.772,0.307,0.501,0,0,0,0,0,0.25,0 +1,0.788,0.413,0.655,0.673,0.817,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0.566,0.4,0,0,0,0,0 +1,0.741,0.713,0.905,0.55,0,0,0,0,0,0.0788 +1,0.64,0.456,0.564,0,0,0,0,0,0,0 +1,0.58,0.147,0.203,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.342 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.202 +1,0.57,0.0296,0.143,0,0,0,0,0,0,0.216 +1,0.609,0.0577,0.295,0,0,0,0,0,0,0.253 +0.667,0.591,0.0427,0.175,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0.0667,0.158 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0.183,0.0394 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.197 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0394 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0 +0.333,0.632,0.113,0.2,0,0,0,0,0,0.25,0.0808 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.205 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.0788 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.0394 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.161 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.139 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.147 +0.333,0.562,0.0159,0.0495,0.534,0.483,0,0,0,0.317,0.354 +0.333,0.591,0.0427,0.175,0.113,0,0,0,0,0.433,0.0788 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0394 +0.667,0.671,0.172,0.294,0,0,0,0,0,0,0.119 +1,0.772,0.307,0.501,0.105,0.0667,0,0,0,0.5,0.0394 +1,0.788,0.413,0.655,0.375,0.417,0,0,0,0,0.158 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.236 +0.667,0.681,0.481,0.62,0,0,0,0,0,0,0 +0.667,0.601,0.236,0.307,0,0,0,0,0,0,0.0394 +0.667,0.58,0.147,0.203,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.0826,0.246,0.0833,0,0.0394 +1,0.56,0.0224,0.0798,0,0,0.491,0,0.15,0,0.455 +1,0.578,0.0433,0.236,0,0,0.746,0,0,0,0.137 +0.667,0.585,0.0368,0.172,0,0,0.625,0,0,0,0.158 +0.667,0.591,0.0427,0.175,0,0,0.488,0,0,0,0.158 +0.667,0.62,0.0813,0.299,0,0,0,0,0,0,0 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.158 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.288 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.361 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0.511 +0.333,0.591,0.0702,0.159,0,0,0,0,0,0,0.236 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.0394 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.25,0 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0,0,0,0,0,0,0 +1,0.772,0.578,0.829,0,0,0.502,0.246,0.233,0,0.0394 +1,0.681,0.481,0.62,0,0,0.535,0,0,0,0.184 +1,0.64,0.456,0.564,0,0,0.586,0,0,0,0.201 +1,0.58,0.147,0.203,0,0,0.0917,0,0,0,0.0394 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0.0394 +1,0.56,0.0224,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.0394 +1,0.56,0.0224,0.0798,0,0,0,0,0,0,0.269 +1,0.57,0.0296,0.143,0,0,0,0,0,0.25,0.316 +1,0.633,0.0786,0.417,0,0,0,0,0,0,0.0394 +1,0.649,0.0963,0.427,0,0,0,0,0,0,0.0788 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.433 +0.667,0.62,0.118,0.269,0,0,0,0,0,0,0.0788 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,0.0788 +0.667,0.64,0.139,0.274,0,0,0,0,0,0,0.0788 +1,0.726,0.25,0.417,0,0,0,0,0,0.25,0.118 +0.667,0.702,0.21,0.35,0,0,0,0,0,0,0.158 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.0394 +1,0.772,0.578,0.829,0,0,0,0,0,0,0 +1,0.741,0.713,0.905,0.157,0.0667,0,0,0,0,0 +1,0.679,0.676,0.821,0.602,0.917,0,0,0,0,0.2 +1,0.618,0.409,0.51,0.627,0,0,0,0,0,0 +1,0.568,0.123,0.183,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.453 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.287 +1,0.591,0.0586,0.175,0,0,0,0,0,0,0.385 +1,0.62,0.129,0.299,0,0,0,0,0,0,0.115 +0.667,0.62,0.153,0.291,0,0,0,0,0,0,0.489 +0.667,0.62,0.167,0.279,0,0,0,0,0,0,0.206 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0.0394 +0,0.562,0.0181,0.0495,0,0,0,0,0,0.25,0.0394 +0.333,0.591,0.129,0.159,0,0,0,0,0,0,0 +0.333,0.601,0.14,0.162,0,0,0,0,0,0,0.118 +1,0.726,0.405,0.417,0,0,0,0,0,0,0.118 +1,0.772,0.419,0.501,0,0,0.428,0.246,0.233,0,0 +0.667,0.712,0.335,0.453,0,0,0.488,0,0,0,0.118 +0.667,0.702,0.438,0.569,0,0,0.413,0,0,0,0.158 +0.667,0.681,0.514,0.62,0,0,0,0,0,0,0.0788 +0.667,0.64,0.475,0.564,0,0,0,0,0,0,0.0394 +0.667,0.599,0.302,0.356,0,0,0,0,0,0,0.205 +0.667,0.565,0.0796,0.116,0,0,0,0,0,0,0 +1,0.56,0.0409,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.56,0.0193,0.0506,0,0,0,0,0,0,0.0788 +1,0.56,0.0213,0.0798,0,0,0,0,0,0,0.105 +1,0.57,0.0278,0.143,0,0,0,0,0,0,0.328 +1,0.585,0.0403,0.172,0,0,0,0,0,0,0.236 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +0.667,0.591,0.0855,0.17,0,0,0,0,0,0,0.158 +0.667,0.591,0.0927,0.164,0,0,0,0,0,0,0.554 +0.667,0.62,0.179,0.271,0,0,0,0,0,0,0 +0.667,0.591,0.114,0.159,0,0,0,0,0,0,0.0394 +1,0.62,0.239,0.269,0,0,0.329,0.246,0.583,0,0.0788 +1,0.679,0.385,0.387,0,0,0.752,0,0.367,0,0.158 +1,0.726,0.405,0.417,0,0,0.742,0,0,0,0.118 +1,0.772,0.419,0.501,0,0,0,0,0,0,0 +1,0.788,0.493,0.655,0.447,0.567,0,0,0,0,0.0788 +1,0.772,0.649,0.829,0.284,1,0.373,0.86,0,0,0.0788 +1,0.741,0.763,0.905,0,0.15,0.398,0.632,0.233,0,0.0394 +1,0.679,0.704,0.821,0,0,0.555,0,0,0,0.0788 +1,0.618,0.444,0.51,0,0,0.657,0,0,0,0.0788 +1,0.568,0.141,0.183,0,0,0.352,0,0,0,0 +1,0.56,0.0348,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.483 +1,0.56,0.0224,0.0798,0,0,0,0,0,0.0667,0.313 +0.667,0.57,0.0296,0.143,0,0,0,0,0,0.183,0.0394 +0.667,0.585,0.0368,0.172,0,0,0,0,0,0,0 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.158 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.297 +0.667,0.671,0.172,0.294,0,0,0,0,0,0.25,0.387 +1,0.772,0.307,0.501,0,0,0,0,0,0,0.276 +1,0.788,0.413,0.655,0,0,0,0,0,0,0.118 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.131 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.155 +1,0.679,0.676,0.821,0,0,0,0,0,0,0 +1,0.599,0.278,0.356,0,0,0,0,0,0,0.308 +1,0.565,0.0695,0.116,0,0,0,0,0,0,0.137 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.171 +1,0.56,0.0178,0.0506,0,0,0,0,0,0,0.309 +1,0.558,0.0289,0.11,0,0,0,0,0,0,0.117 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.283 +0.333,0.591,0.0427,0.175,0,0,0,0,0,0,0.394 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.112 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.107 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.241 +0.667,0.62,0.125,0.269,0,0,0,0,0,0,1 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0.25,0.118 +0.667,0.671,0.172,0.294,0,0,0.388,0.246,0.233,0,0.0394 +0.667,0.702,0.21,0.35,0,0,0.635,0,0,0,0.0788 +0.667,0.712,0.28,0.453,0,0,0,0,0,0,0.0788 +0.667,0.702,0.39,0.569,0,0,0,0,0,0,0.313 +1,0.741,0.713,0.905,0,0,0,0,0,0,0.129 +1,0.679,0.676,0.821,0,0,0,0,0,0,0.0788 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.242 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.57,0.0296,0.143,0.454,0.483,0,0,0,0,0.0394 +0.667,0.585,0.0368,0.172,0.534,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.25,0 +0.333,0.591,0.0486,0.174,0,0,0,0,0,0,0.118 +0.333,0.591,0.0532,0.17,0,0,0,0,0,0,0.0394 +0.333,0.591,0.0577,0.164,0,0,0,0,0,0,0.197 +0.333,0.591,0.0604,0.16,0,0,0,0,0,0,0.118 +0.333,0.591,0.0669,0.159,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.236 +0.333,0.601,0.0774,0.162,0,0,0,0,0,0,0.158 +0.333,0.616,0.0938,0.172,0,0,0,0,0,0,0.0394 +1,0.772,0.307,0.501,0,0,0,0,0,0,0 +1,0.788,0.413,0.655,0.145,0.0667,0,0,0,0,0 +0.667,0.702,0.39,0.569,0.628,1,0,0,0,0,0 +0.667,0.681,0.481,0.62,0,0.9,0,0,0,0,0.0788 +1,0.601,0.236,0.307,0,0,0,0,0,0,0.0815 +1,0.58,0.147,0.203,0,0,0,0,0,0,0.296 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.234 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.198 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.788 +1,0.618,0.069,0.318,0,0,0.405,0.246,0.25,0,0.398 +1,0.647,0.113,0.456,0,0,0.401,0,0,0,0.465 +0.667,0.618,0.0898,0.312,0,0,0.211,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0788 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.138 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.434 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.315 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0394 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0.118 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.183,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0.35,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.201 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.225 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0.521,0.246,0.25,0,0.312 +1,0.631,0.078,0.433,0,0,0.11,0,0,0.267,0.508 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.255 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.703 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.22 +0.667,0.618,0.0989,0.3,0,0,0,0,0,0,0.268 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.118 +0.667,0.618,0.117,0.289,0,0,0,0,0,0.267,0.422 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0788 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0394 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0788 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.422,0.433,0,0,0,0,0.137 +1,0.77,0.573,0.919,0.522,0.6,0,0,0,0,0.241 +1,0.739,0.708,0.747,0.654,0,0,0,0,0,0.2 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.496 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0992 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.197 +0.667,0.585,0.04,0.177,0,0,0,0,0,0,0.0394 +0.667,0.59,0.0582,0.184,0,0,0,0,0,0,0 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0.118 +0.667,0.59,0.0849,0.181,0,0,0,0,0,0,0 +0.667,0.59,0.092,0.175,0,0,0,0,0,0.267,0.356 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.473 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0.188 +0.333,0.59,0.128,0.173,0,0,0,0,0,0,0.175 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0788 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.315 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0.0394 +1,0.785,0.489,0.946,0,0,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.197 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.57,0.201,0.249,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0.267,0.118 +0.667,0.618,0.128,0.321,0,0,0.33,0.246,0.583,0.267,0 +0.667,0.618,0.152,0.312,0,0,0.433,0.0702,0.45,0,0.118 +0.667,0.618,0.166,0.3,0,0,0.858,0.175,0.833,0,0.118 +0.667,0.618,0.178,0.292,0,0,0.255,0,0.2,0,0.197 +0.667,0.618,0.209,0.289,0,0,0,0,0,0.817,0.158 +0.667,0.59,0.128,0.173,0,0,0,0,0,0.267,0.155 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.117 +0.667,0.67,0.274,0.425,0,0,0,0,0,0,0.0394 +0.667,0.7,0.283,0.553,0,0,0,0,0,0,0.154 +0.667,0.711,0.332,0.647,0.117,0.0667,0,0,0,0,0.166 +0.667,0.7,0.435,0.629,0.422,0.45,0,0,0,0.267,0.0394 +0.667,0.68,0.51,0.515,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.311 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.142 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.439 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0.197 +1,0.559,0.0151,0.0495,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.559,0.0223,0.0816,0,0,0.286,0.719,0,0,0.276 +1,0.577,0.043,0.245,0,0,0.635,0.772,0.25,0.433,0.0394 +1,0.608,0.0573,0.305,0,0,0,0,0,0.383,0.558 +0.667,0.59,0.0424,0.184,0,0,0,0,0,0.267,0.203 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.339 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.193 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.578 +0.333,0.6,0.0769,0.194,0,0,0.115,0.193,0,0,0.223 +0.333,0.616,0.0931,0.237,0,0,0,0.0526,0.25,0.817,0.184 +1,0.77,0.304,0.804,0.426,0.433,0,0,0,0,0 +1,0.785,0.409,0.946,0.105,0.617,0,0,0,0,0.0815 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.202 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0688 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.412 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.127 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.464 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.267,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.197 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.551 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.0394 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0788 +0.333,0.631,0.112,0.301,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0394 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.126 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.104 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.403 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.276 +0.333,0.59,0.0483,0.185,0.351,0.517,0,0,0,0,0.284 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0.307 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.267,0.197 +0.667,0.67,0.17,0.425,0,0,0,0,0,0,0.0394 +0.667,0.7,0.208,0.553,0.501,0.933,0,0,0,0,0.197 +0.667,0.711,0.278,0.647,0.119,0.3,0,0,0,0,0.243 +1,0.77,0.573,0.919,0.585,0.333,0,0,0,0,0.261 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.441 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.151 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.282 +1,0.585,0.0366,0.177,0,0,0,0,0,0,0.0915 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.267,0.197 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0.33,0.246,0.2,0,0 +0.333,0.59,0.0665,0.169,0,0,0.586,0,0.567,0,0.276 +0.333,0.59,0.0697,0.173,0,0,0.433,0,0,0,0.276 +0.333,0.6,0.0769,0.194,0,0,0.661,0,0,0,0.0394 +0.333,0.616,0.0931,0.237,0,0,0.726,0,0,0.267,0.0788 +0.667,0.7,0.208,0.553,0,0,0.55,0,0,0,0.0394 +1,0.785,0.409,0.946,0.171,0.183,0.734,0,0,0,0.118 +1,0.77,0.573,0.919,0.377,0.333,0.0917,0,0,0,0.0394 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.202 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.148 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0.119,0.183,0,0,0,0.267,0.0788 +0.667,0.59,0.0424,0.184,0.572,1,0,0,0,0,0 +0.667,0.59,0.0483,0.185,0,0.133,0,0,0,0,0.158 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0.118 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.433,0.0394 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0.383,0.158 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.366 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.204 +0.667,0.616,0.0931,0.237,0,0,0,0,0,0.683,0 +0.667,0.7,0.208,0.553,0.517,0.25,0,0,0,1,0.118 +1,0.785,0.409,0.946,0.0663,0,0,0,0,0.783,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.541 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0821 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.483 +1,0.577,0.0372,0.245,0,0,0,0,0,0,0.118 +1,0.608,0.0619,0.305,0,0,0,0,0,0,0.352 +0.333,0.59,0.0582,0.184,0,0,0,0,0,0,0.326 +0.333,0.59,0.0732,0.185,0,0,0,0,0,0.267,0.0394 +0.333,0.59,0.0849,0.181,0,0,0.202,0.0702,0,0,0.0394 +0.333,0.59,0.092,0.175,0,0,0.434,0.175,0.517,0,0.0394 +0.667,0.618,0.178,0.292,0,0,0.532,0,0,0,0.197 +0.667,0.618,0.209,0.289,0,0,0.45,0,0,0,0.158 +0.667,0.618,0.237,0.297,0,0,0.482,0,0,0,0.236 +0.667,0.6,0.139,0.194,0,0,0,0,0,0,0.158 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.267,0.0394 +1,0.7,0.283,0.553,0,0,0,0,0,0,0 +1,0.785,0.489,0.946,0,0,0,0,0,0,0.0394 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.27 +1,0.59,0.0732,0.185,0,0,0,0,0,0,0.201 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.315 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.0394 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.276 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0.494 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.156 +0.667,0.639,0.261,0.338,0.161,0.0667,0,0,0,0,0.204 +0.667,0.67,0.274,0.425,0.777,0.45,0,0,0,0,0.0838 +1,0.7,0.283,0.553,0.612,0,0,0,0,0.267,0.158 +1,0.785,0.489,0.946,0.217,0,0,0,0,0,0.315 +0.667,0.7,0.435,0.629,0,0,0,0,0,0,0.0394 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0.248 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.18 +1,0.564,0.079,0.116,0,0,0,0,0,0,0.0757 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0.311 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0.337 +1,0.559,0.0164,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.529 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.35 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0.267,0.17 +1,0.59,0.0424,0.184,0,0,0,0,0,0,0.304 +0.667,0.59,0.0483,0.185,0,0,0,0,0,0,0.0394 +0.667,0.618,0.0898,0.312,0,0,0,0,0,0,0 +0.667,0.618,0.0989,0.3,0.164,0.183,0,0,0,0,0.288 +0.667,0.618,0.104,0.292,0.627,0.867,0,0,0,0,0.204 +0.667,0.618,0.117,0.289,0.115,0,0,0,0,0,0.158 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.236 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0.267,0.118 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.158 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0.628,0.517,0,0,0,0,0.0788 +1,0.77,0.573,0.919,0.134,0,0,0,0,0,0 +1,0.68,0.477,0.515,0,0,0,0,0,0,0 +1,0.6,0.234,0.222,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0757 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.577,0.043,0.245,0,0,0.234,0.246,0.2,0.267,0 +1,0.631,0.078,0.433,0,0,0.602,0,0.317,0,0.118 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0.552 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.236 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.473 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.267,0.276 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.141 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0971 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.132 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.342 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.332 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0.433,0.118 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0.933,0.0788 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.334 +0.667,0.639,0.138,0.338,0,0,0,0,0,0.533,0.236 +1,0.724,0.248,0.612,0,0,0,0,0,0.267,0.158 +1,0.77,0.304,0.804,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.125 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.214 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.379 +1,0.616,0.405,0.493,0,0,0,0,0,0,0 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.221 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.267,0.197 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.197 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0788 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.158 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.0788 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0788 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0948 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.276 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.567,0.122,0.183,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.433,0.236 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.1,0.0985 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.57 +1,0.631,0.078,0.433,0,0,0,0,0,0,0.0991 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.158 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0394 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0.267,0.473 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.158 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.182 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +1,0.739,0.708,0.747,0,0,0,0,0,0,0 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.58,0.146,0.197,0,0,0,0,0,0,0.291 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.118 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.317,0.0394 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.217,0.578 +1,0.59,0.0582,0.184,0,0,0,0,0,0,0.527 +1,0.618,0.128,0.321,0,0,0,0,0,0,0.129 +1,0.618,0.152,0.312,0,0,0,0,0,0,0.154 +1,0.618,0.166,0.3,0,0,0,0,0,0.817,0 +0.667,0.59,0.0979,0.171,0,0,0,0,0,0.267,0 +1,0.618,0.209,0.289,0,0,0,0,0,0,0.158 +1,0.647,0.347,0.421,0.323,0.517,0,0,0,0,0.118 +1,0.677,0.382,0.482,0.293,0,0,0,0,0,0.197 +1,0.724,0.402,0.612,0,0,0,0,0,0,0.0394 +1,0.77,0.415,0.804,0.187,0.0667,0,0,0,0,0 +1,0.785,0.489,0.946,0.56,0.183,0,0,0,0,0.0788 +1,0.77,0.643,0.919,0.757,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.0394 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.23 +1,0.569,0.0277,0.147,0,0,0,0,0,0,0.699 +1,0.585,0.04,0.177,0,0,0,0,0,0.817,0.286 +1,0.618,0.0983,0.318,0,0,0,0,0,0.55,0 +1,0.647,0.183,0.456,0,0,0,0,0,0,0 +0.667,0.618,0.152,0.312,0,0,0,0,0,0,0.315 +0.667,0.618,0.166,0.3,0,0,0,0,0,0,0.158 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.0394 +0.333,0.59,0.113,0.169,0,0,0,0,0,0.267,0 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.677,0.382,0.482,0,0,0,0,0,0,0.118 +1,0.724,0.402,0.612,0,0,0,0,0,0,0.0788 +1,0.77,0.415,0.804,0.295,0.317,0,0,0,0,0.118 +1,0.785,0.489,0.946,0.257,0.2,0,0,0,0,0 +1,0.7,0.435,0.629,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0.283,0.783,0,0,0,0,0 +1,0.564,0.079,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.429 +1,0.585,0.0565,0.342,0,0,0,0,0,0,0.354 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.401 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.248 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.197 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0.433,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0.1,0.0788 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.236 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.383 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.267,0.259 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0.158 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.522 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.118 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0 +0.667,0.639,0.452,0.394,0,0,0.303,0.246,0.2,0,0.279 +0.667,0.598,0.276,0.345,0,0,0.206,0,0.05,0,0.107 +0.667,0.564,0.0691,0.116,0,0,0,0,0,0,0.0394 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.559,0.0223,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +1,0.559,0.0223,0.0816,0,0,0,0,0,0.183,0.456 +1,0.577,0.043,0.245,0,0,0,0,0,0.35,0.237 +1,0.608,0.0573,0.305,0,0,0,0,0,0,0.229 +1,0.647,0.0955,0.452,0,0,0,0,0,0,0.242 +0.667,0.618,0.0807,0.321,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.433,0.0394 +0.333,0.6,0.0769,0.194,0,0,0.63,0.246,0.25,0.383,0.315 +0.667,0.67,0.17,0.425,0,0,0.7,0,0,0,0.382 +0.667,0.7,0.208,0.553,0,0,0.402,0,0,0.433,0.0394 +1,0.785,0.409,0.946,0,0,0,0,0,0.383,0.118 +1,0.77,0.573,0.919,0,0,0.11,0.193,0,0,0.118 +1,0.739,0.708,0.747,0,0,0.52,0.0526,0.25,0,0.121 +1,0.677,0.671,0.566,0,0,0.552,0,0,0,0 +1,0.598,0.276,0.345,0,0,0.502,0,0,0,0.0788 +1,0.564,0.0691,0.116,0,0,0.422,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.625 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.285 +1,0.577,0.043,0.245,0,0,0,0,0,0,0.0383 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0424,0.184,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0.503,0.683,0,0,0,0,0.118 +0.333,0.59,0.0528,0.181,0.145,0.367,0,0,0,0,0.61 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.146 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.452 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0788 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.17 +0.333,0.631,0.112,0.301,0,0,0,0,0,0.533,0.258 +0.333,0.636,0.147,0.348,0,0,0,0,0,0,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0788 +1,0.68,0.477,0.515,0,0,0,0,0,0,0.236 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.0394 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.286 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0.224 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.184 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.363 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.433 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0788 +0.667,0.618,0.104,0.292,0,0,0,0,0,0,0.236 +0.667,0.618,0.117,0.289,0,0,0,0,0,0,0.212 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.158 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0394 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.236 +0.667,0.631,0.112,0.301,0,0,0,0,0,0,0.118 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.362 +0.667,0.7,0.387,0.629,0,0,0,0,0,0,0.0394 +0.667,0.621,0.246,0.282,0,0,0,0,0,0,0 +1,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.23 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.092 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.263 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.243 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.311 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.611 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.16 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.205 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.518 +1,0.77,0.304,0.804,0,0,0,0,0,0,0.236 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.683,0 +0.667,0.7,0.387,0.629,0.569,0.517,0,0,0,0.4,0.0788 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.258 +0.667,0.639,0.452,0.394,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.12 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0.128 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.213 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.541 +1,0.618,0.0983,0.318,0,0,0,0,0,0,0.26 +0.667,0.59,0.0732,0.185,0,0,0,0,0,0,0 +0.333,0.562,0.0181,0.0495,0,0,0,0,0,0,0.158 +1,0.618,0.166,0.3,0,0,0,0,0,0,0 +0.333,0.59,0.0979,0.171,0,0,0,0,0,0,0.236 +0.333,0.59,0.113,0.169,0,0,0,0,0,0,0 +0.667,0.618,0.237,0.297,0,0,0,0,0,0,0.118 +0.667,0.639,0.261,0.338,0,0,0,0,0,0,0.0788 +0.667,0.616,0.146,0.237,0,0,0,0,0,0.267,0.0394 +1,0.77,0.415,0.804,0.421,0.317,0,0,0,0.267,0.0394 +1,0.785,0.489,0.946,0.319,0.467,0,0,0,0,0 +1,0.77,0.643,0.919,0,0,0,0,0,0,0 +1,0.739,0.756,0.747,0,0,0,0,0,0,0 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.598,0.3,0.345,0,0,0,0,0,0,0.0788 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.559,0.0407,0.0743,0,0,0,0,0,0,0.175 +1,0.559,0.0264,0.0578,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.59,0.0732,0.185,0,0,0.326,0.246,0.0833,0,0.0394 +0.667,0.618,0.152,0.312,0,0,0.876,0,0.683,0,0 +0.667,0.618,0.166,0.3,0,0,0.405,0,0,0,0.0788 +0.667,0.618,0.178,0.292,0,0,0,0,0,0,0.118 +0.667,0.618,0.209,0.289,0,0,0,0,0,0,0 +1,0.618,0.237,0.297,0,0,0,0,0,0,0.354 +1,0.639,0.261,0.338,0,0,0,0,0,0,0.75 +1,0.67,0.274,0.425,0,0,0,0,0,0,0.27 +1,0.7,0.283,0.553,0,0,0,0,0,0,0.313 +1,0.711,0.332,0.647,0,0,0,0,0,0,0.0788 +0.667,0.7,0.435,0.629,0,0,0,0,0,0.267,0.142 +1,0.739,0.756,0.747,0,0,0,0,0,0,0.215 +1,0.677,0.698,0.566,0,0,0,0,0,0,0 +1,0.616,0.441,0.493,0,0,0,0,0,0,0 +1,0.567,0.14,0.183,0,0,0,0,0,0,0 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.0788 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.193 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0.0671 +0.667,0.585,0.0366,0.177,0,0,0,0,0,0,0.0394 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.0788 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.118 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.276 +0.667,0.59,0.0697,0.173,0,0,0,0,0,0.533,0.118 +0.667,0.6,0.0769,0.194,0,0,0,0,0,0,0.0788 +1,0.724,0.248,0.612,0,0,0,0,0,0.183,0.34 +1,0.77,0.304,0.804,0,0,0,0,0,0.0833,0.0394 +0.667,0.711,0.278,0.647,0,0,0,0,0,0.267,0 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.0394 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.162 +1,0.639,0.452,0.394,0,0,0,0,0,0,0.208 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0781 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.304 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.728 +1,0.569,0.0294,0.147,0,0,0,0,0,0,0 +0.667,0.585,0.0366,0.177,0.358,0.433,0,0,0,0,0.0394 +0.333,0.59,0.0424,0.184,0.415,0.0833,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0.415,0.433,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.197,0.0833,0,0,0,0,0.0394 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.0788 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.197 +0.667,0.618,0.124,0.297,0,0,0,0,0,0,0.0788 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0.421,0.433,0,0,0,0,0 +0.333,0.631,0.112,0.301,0.126,0.0833,0,0,0,0,0.668 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.311 +1,0.77,0.573,0.919,0,0,0,0,0,0,0.185 +1,0.739,0.708,0.747,0,0,0,0,0,0,0.185 +1,0.677,0.671,0.566,0,0,0,0,0,0,0 +1,0.598,0.276,0.345,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.559,0.0177,0.051,0,0,0,0,0,0,0.236 +1,0.559,0.0223,0.0816,0,0,0,0,0,0,0.318 +1,0.585,0.0565,0.342,0,0,0.219,0.246,0.45,0,0.564 +1,0.631,0.078,0.433,0,0,0.255,0,0.317,0,0.458 +0.333,0.59,0.0424,0.184,0,0,0.615,0,0,0,0.236 +0.333,0.59,0.0483,0.185,0,0,0.735,0,0,0,0 +0.333,0.59,0.0528,0.181,0,0,0.419,0,0,0,0 +0.333,0.59,0.0574,0.175,0,0,0.00917,0,0,0,0.0394 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.158 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.118 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0.0394 +0.333,0.6,0.0769,0.194,0,0,0,0,0,0,0.118 +0.333,0.616,0.0931,0.237,0.578,0.517,0,0,0,0.267,0 +0.667,0.7,0.208,0.553,0,0,0,0,0,0,0 +0.667,0.711,0.278,0.647,0,0,0,0,0,0,0.239 +0.667,0.7,0.387,0.629,0.651,0.517,0,0,0,0,0.15 +1,0.739,0.708,0.747,0.773,0,0,0,0,0,0.0394 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.0394 +1,0.58,0.146,0.197,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.559,0.0223,0.0816,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0.118 +0.333,0.59,0.0528,0.181,0,0,0,0,0,0.267,0.315 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0 +0.333,0.59,0.06,0.171,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0665,0.169,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0697,0.173,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.333,0.616,0.0931,0.237,0,0,0,0,0,0,0.158 +0.667,0.7,0.208,0.553,0,0,0,0,0,0.267,0.197 +1,0.785,0.409,0.946,0,0,0,0,0,0,0 +1,0.77,0.573,0.919,0.78,0.933,0,0,0,0,0 +1,0.739,0.708,0.747,0.661,0.117,0,0,0,0,0.0788 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.173 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0394 +1,0.567,0.122,0.183,0,0,0,0,0,0,0.0394 +1,0.559,0.0346,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.188 +0.667,0.569,0.0294,0.147,0,0,0,0,0,0,0.283 +0.667,0.608,0.0573,0.305,0,0,0,0,0,0,0.0765 +0.667,0.618,0.069,0.318,0,0,0,0,0,0,0.0394 +0.333,0.59,0.0483,0.185,0,0,0,0,0,0,0 +0.333,0.59,0.0528,0.181,0.618,0.25,0,0,0,0,0.0394 +0.333,0.59,0.0574,0.175,0,0,0,0,0,0,0.127 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.276 +0.667,0.639,0.138,0.338,0,0,0,0,0,0,0.118 +0.667,0.67,0.17,0.425,0,0,0,0,0,0.433,0.0394 +1,0.77,0.304,0.804,0,0,0,0,0,0.1,0 +1,0.785,0.409,0.946,0,0,0,0,0,0,0.0394 +1,0.77,0.573,0.919,0,0,0,0,0,0,0 +0.667,0.68,0.477,0.515,0,0,0,0,0,0,0.0394 +1,0.677,0.671,0.566,0,0,0,0,0,0,0.344 +1,0.598,0.276,0.345,0,0,0,0,0,0,0.0992 +1,0.564,0.0691,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0873 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.361 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.222 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.439 +0.333,0.647,0.118,0.183,0,0,0,0,0,0.267,0.0394 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.118 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.118 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.118 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.158 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.394 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.236 +1,0.993,0.647,1,0,0,0,0,0,0,0.0394 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0394 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.654,0.0438,0.066,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.197 +1,0.732,0.168,0.337,0,0,0,0,0,0,0 +1,0.732,0.198,0.328,0,0,0,0,0,0,0 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.158 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.0788 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.225 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.419 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.333 +1,0.915,0.531,0.661,0,0,0,0,0,0,0.268 +1,0.836,0.372,0.596,0,0,0,0,0,0,0.154 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.727 +1,0.836,0.573,0.638,0,0,0,0,0,0,0.366 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0.317,0 +1,0.667,0.183,0.183,0,0,0,0,0,0.233,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.836 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.284 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.655 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.197 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.0667,0.197 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.483,0.253 +1,0.993,0.541,1,0,0,0,0,0,0,0.361 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.197 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0394 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.817,0.0788 +1,0.634,0.189,0.196,0.459,0.267,0,0,0,0.583,0 +1,0.614,0.0879,0.116,0.871,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0.44,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.267,0.118 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.218 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.118 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0.267,0.236 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.55,0.0788 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0788 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.158 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0.506,0.317,0,0,0,0,0.147 +0.667,0.836,0.51,0.638,0.574,1,0,0,0,0,0 +1,0.934,0.936,0.732,0.548,0.317,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.0788 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.283 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.197 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.176 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0 +0.667,0.64,0.0449,0.181,0.483,0.533,0,0,0,0,0.159 +0.667,0.647,0.0527,0.19,0.476,0,0,0,0,0,0.31 +0.667,0.732,0.105,0.337,0,0,0,0,0,0.267,0.222 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.197 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.158 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0788 +0.333,0.66,0.0982,0.204,0.344,0.317,0,0,0,0,0.118 +0.667,0.797,0.224,0.457,0.218,0.217,0,0,0,0.317,0.0394 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.233,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.354 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.197 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.461 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.136 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.413 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.69 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.247 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.185 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.636 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.296 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.124 +0.667,0.732,0.136,0.307,0,0,0,0,0,0.267,0 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0788 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.0788 +0.667,0.836,0.273,0.596,0.353,0.317,0,0,0,0,0.0394 +0.667,0.849,0.366,0.683,0.461,0.217,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0.558,0.246,0.267,0,0.0788 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0.357 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.187 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.141 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.321 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.185 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.157 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.413 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.301 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.128 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.233 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.326 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.774 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.221 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.918 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.614 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.419 +1,0.973,0.758,0.933,0,0,0.0612,0.0702,0,0,0.458 +1,0.934,0.936,0.732,0,0,0.506,0.175,0.267,0,0.0394 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.262 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.349 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.0788 +1,0.647,0.0928,0.193,0,0,0.358,0.246,0.333,0,0 +1,0.647,0.108,0.189,0,0,0,0,0.217,0.0667,0.381 +1,0.818,0.317,0.449,0,0,0,0,0,0.2,0.0939 +1,0.818,0.34,0.436,0,0,0,0,0,0,0.321 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.496 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.431 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0.0394 +0.333,0.679,0.189,0.253,0,0,0,0,0,0,0.118 +0.333,0.699,0.195,0.323,0,0,0,0,0,0.317,0 +0.333,0.705,0.228,0.366,0,0,0,0,0,0.233,0.197 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0.0394 +0.667,0.81,0.673,0.504,0,0,0,0,0,0,0 +0.333,0.66,0.32,0.218,0,0,0,0,0,0,0 +0.667,0.706,0.394,0.342,0,0,0,0,0,0,0.0806 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0.23 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.207 +0.667,0.608,0.031,0.0578,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.356 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0.103 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.179 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.356 +1,0.647,0.0928,0.193,0,0,0,0,0,0,0.0394 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.157 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.206 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.491 +1,0.818,0.402,0.432,0,0,0,0,0,0,0.0394 +1,0.818,0.459,0.446,0,0,0,0,0,0,0.0788 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0.474 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.473 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.19 +1,0.993,0.647,1,0,0,0,0,0,0,0.493 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.106 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0.385 +1,0.706,0.394,0.342,0,0,0,0,0,0,0.0359 +1,0.614,0.101,0.116,0,0,0,0,0,0,0.281 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.0798 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.11 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.846 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.503 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.382 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.375 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.287 +1,0.732,0.105,0.337,0,0,0,0,0,0,0.31 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0.207 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.384 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.191 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0,0.118 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0.0394 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.115 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.267,0.194 +1,0.973,0.402,0.869,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.55,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0394 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.857,0.887,0.554,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.0394 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.831 +1,0.74,0.0747,0.351,0,0,0,0,0,0.267,0.372 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.118 +0.667,0.732,0.0895,0.33,0,0,0.0214,0.0702,0,0,0.0788 +0.667,0.732,0.105,0.337,0,0,1,0.965,0.0833,0,0 +0.333,0.647,0.0664,0.189,0,0,0.124,0,1,0,0.118 +0.333,0.647,0.0724,0.183,0,0,0,0,0.3,0,0 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.276 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.419 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.43 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0.569 +1,0.973,0.758,0.933,0,0,0.414,0.246,0.267,0,0 +1,0.934,0.936,0.732,0,0,0.633,0,0,0,0 +1,0.857,0.887,0.554,0,0,0.24,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.25 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.0948 +0.333,0.562,0.0159,0.0495,0.295,0.317,0,0,0,0,0.0394 +0.333,0.64,0.0449,0.181,0.295,0.217,0,0,0,0.267,0 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.118 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.236 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0.55,0.236 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.0394 +0.667,0.797,0.224,0.457,0.223,0.317,0,0,0,0.0667,0 +1,0.973,0.402,0.869,0.407,0.767,0,0,0,0.2,0.0394 +1,0.993,0.541,1,0,0,0,0,0,0,0.0394 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.118 +0.667,0.758,0.596,0.386,0,0,0.489,0.246,0.267,0,0 +1,0.706,0.363,0.342,0,0,0.424,0,0,0,0 +1,0.667,0.16,0.183,0,0,0.356,0,0,0,0 +1,0.654,0.0689,0.099,0,0,0.398,0,0,0,0.0394 +1,0.654,0.0362,0.066,0,0,0.584,0,0,0,0 +1,0.654,0.0208,0.0495,0,0,0.295,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0355,0.15,0,0,0,0,0,0,0.338 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.111 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.315 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.276 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.224 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0.0667,0.0394 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.2,0.0788 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0 +1,0.993,0.541,1,0,0,0,0,0,0.0667,0 +1,0.973,0.758,0.933,0.642,0.817,0,0,0,0.483,0.197 +1,0.934,0.936,0.732,0.297,0.55,0,0,0,0,0.0788 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.0394 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0728 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.577 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.694 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.149 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.118 +0.667,0.647,0.0845,0.177,0,0,0,0,0,0.55,0.0394 +0.667,0.647,0.0888,0.182,0,0,0,0,0,0,0.0394 +0.667,0.66,0.0982,0.204,0,0,0,0,0,0,0.158 +0.667,0.679,0.12,0.253,0,0,0,0,0,0,0.0394 +0.667,0.836,0.273,0.596,0,0,0,0,0,0,0.241 +1,0.993,0.541,1,0,0,0,0,0,0,0.118 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.308 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.295 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.205 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0,0.0788 +0.667,0.647,0.108,0.189,0,0,0,0,0,0,0.158 +0.667,0.647,0.118,0.183,0,0,0,0,0,0,0.0788 +0.667,0.647,0.125,0.178,0,0,0,0,0,0,0.158 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.0394 +1,0.818,0.459,0.446,0.394,0.317,0,0,0,0,0.158 +1,0.857,0.505,0.513,0.627,0.217,0,0,0,0.0667,0.158 +1,0.915,0.531,0.661,0.679,0,0,0,0,0.767,0.118 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.241 +1,0.993,0.647,1,0,0,0,0,0,0,0.247 +1,0.973,0.851,0.933,0,0,0,0,0,0,0 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.779,0.582,0.488,0,0,0,0,0,0,0.325 +0.667,0.667,0.183,0.183,0,0,0,0,0,0,0.0394 +0.667,0.608,0.0499,0.0743,0,0,0,0,0,0,0.292 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.0788 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0.197 +1,0.608,0.019,0.0495,0,0,0,0,0,0,0.118 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0181,0.0495,0,0,0,0,0,0,0.11 +0.667,0.647,0.0731,0.19,0,0,0,0,0,0.267,0.56 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0.0675 +1,0.818,0.289,0.468,0,0,0,0,0,0,0.213 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0394 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.357 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.566 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.303 +1,0.857,0.505,0.513,0,0,0,0,0,0,0.158 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.158 +0.667,0.836,0.372,0.596,0,0,0.0489,0.0702,0,0,0.111 +0.667,0.849,0.437,0.683,0,0,0.598,0.175,0.267,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0.267,0 +0.667,0.81,0.673,0.504,0.653,0.533,0.317,0.246,0.333,0,0 +1,0.857,0.923,0.554,0.131,0,0.572,0,0.483,0,0 +1,0.706,0.394,0.342,0,0,0.503,0,0,0,0.2 +1,0.667,0.183,0.183,0,0,0.115,0,0,0,0.35 +1,0.654,0.0689,0.099,0,0,0,0,0,0,0.13 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.195 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.365 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.189 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.14 +0.667,0.719,0.074,0.313,0,0,0,0,0,0.267,0.115 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.341 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.213 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.158 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.236 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0788 +0.333,0.679,0.12,0.253,0,0,0,0,0,0.0667,0.158 +0.667,0.836,0.273,0.596,0,0,0,0,0,1,0.118 +0.667,0.849,0.366,0.683,0.513,0.533,0,0,0,0.05,0 +0.667,0.836,0.51,0.638,0.382,0,0,0,0,0,0.182 +1,0.934,0.936,0.732,0,0,0,0,0,0,0.119 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0.267,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.26 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.0898 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.0788 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.281 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0596 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.118 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.315 +0.667,0.797,0.224,0.457,0,0,0,0,0,0.267,0.0759 +1,0.973,0.402,0.869,0,0,0.295,0.246,0.267,0,0.427 +0.667,0.849,0.366,0.683,0,0,0.68,0,0,0,0.515 +0.667,0.836,0.51,0.638,0,0,0.19,0,0,0,0.253 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.226 +0.667,0.66,0.306,0.218,0,0,0,0,0,0,0.0394 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0.267,0.306 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.148 +1,0.798,0.103,0.444,0.309,0.267,0,0,0,0,0.522 +1,0.818,0.126,0.47,0.396,0,0.22,0.246,0.333,0,0.331 +1,0.818,0.149,0.481,0,0,0.335,0,0.217,0,0.46 +1,0.818,0.168,0.468,0,0,0.451,0,0,0,0.278 +0.667,0.732,0.129,0.316,0,0,0.55,0,0,0,0.158 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.197 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.118 +1,0.818,0.235,0.446,0,0,0,0,0,0,0.0788 +1,0.857,0.263,0.513,0,0,0,0,0,0,0.0394 +1,0.915,0.327,0.661,0.532,0.817,0,0,0,0.0667,0.118 +0.667,0.836,0.273,0.596,0.162,0,0,0,0,1,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0.9,0.0788 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0394 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.706,0.363,0.342,0,0,0,0,0,0,0 +1,0.667,0.16,0.183,0,0,0,0,0,0,0.118 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0.208 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.163 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.293 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.259 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.418 +0.667,0.621,0.0355,0.15,0,0,0,0,0,0,0.161 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0578 +0.333,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0.158 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.178,0,0,0.11,0.0702,0,0,0 +0.333,0.562,0.0159,0.0495,0,0,0.887,0.175,0.55,0,0.0394 +0.333,0.647,0.0888,0.182,0,0,0.359,0,0,0,0.197 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.118 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.416 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.0394 +1,0.66,0.306,0.218,0,0,0,0,0,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.608,0.026,0.0578,0,0,0,0,0,0,0.0394 +1,0.608,0.0183,0.0495,0,0,0,0,0,0,0.373 +1,0.608,0.0166,0.0495,0,0,0,0,0,0,0.0394 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.211 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.129 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.115 +0.667,0.64,0.0449,0.181,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.0788 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.197 +0,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0,0.562,0.0159,0.0495,0,0,0,0,0,0.317,0 +0.333,0.647,0.0759,0.178,0.176,0.0667,0,0,0,0.233,0.0394 +0.333,0.647,0.0845,0.177,0.743,0.467,0,0,0,0,0 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.158 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.118 +0.667,0.836,0.273,0.596,0,0,0,0,0,0.317,0.276 +1,0.993,0.541,1,0,0,0,0,0,0.233,0.348 +0.667,0.836,0.51,0.638,0,0,0,0,0,0,0.0723 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0 +0.667,0.758,0.596,0.386,0,0,0,0,0,0.267,0.0394 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0.152 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.247 +1,0.732,0.128,0.33,0,0,0,0,0,0,0.346 +1,0.818,0.242,0.481,0,0,0,0,0,0,0.55 +0.667,0.732,0.198,0.328,0,0,0,0,0,0,0.118 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0394 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.0394 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.197 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.315 +0.667,0.758,0.343,0.359,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0.267,0.197 +1,0.973,0.549,0.869,0,0,0,0,0,0,0.0394 +1,0.993,0.647,1,0,0,0,0,0,0,0.29 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.473 +1,0.934,1,0.732,0,0,0,0,0,0,0.572 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0.0394 +1,0.654,0.0816,0.099,0,0,0,0,0,0,0 +1,0.608,0.031,0.0578,0,0,0,0,0,0,0 +1,0.608,0.0224,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.621,0.0327,0.15,0,0,0,0,0,0.567,0.197 +1,0.64,0.049,0.181,0,0,0,0,0,0.55,0.175 +1,0.647,0.0731,0.19,0,0,0,0,0,0,0.393 +0.667,0.647,0.0928,0.193,0,0,0,0,0,0.567,0.0394 +0.667,0.732,0.198,0.328,0,0,0,0,0,0.267,0.0394 +0.667,0.732,0.217,0.316,0,0,0,0,0,0,0.135 +0.333,0.647,0.125,0.178,0,0,0,0,0,0,0.272 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.394 +0.667,0.732,0.312,0.314,0,0,0.338,0.246,0.333,0.267,0.0394 +1,0.857,0.505,0.513,0,0,0.106,0,0.483,0,0.354 +1,0.915,0.531,0.661,0,0,0,0,0,0.0667,0.197 +1,0.836,0.372,0.596,0,0,0,0,0,0.483,0 +1,0.849,0.437,0.683,0,0,0,0,0,0,0.0788 +1,0.836,0.573,0.638,0,0,0,0,0,0,0 +1,0.81,0.673,0.504,0,0,0,0,0,0,0 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.155 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.272 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.0788 +0.667,0.647,0.0527,0.19,0,0,0,0,0,0,0.411 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.22 +0.667,0.732,0.117,0.328,0,0,0,0,0,0,0.158 +0.667,0.732,0.129,0.316,0,0,0,0,0,0,0.118 +0.667,0.732,0.136,0.307,0,0,0,0,0,0,0.0788 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0.363 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.197 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.323,0,0,0.393,0.246,0.333,0,0.487 +1,0.993,0.541,1,0,0,0,0,0.767,0,0.542 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.199 +1,0.934,0.936,0.732,0,0,0,0,0,0,0 +1,0.66,0.306,0.218,0,0,0,0,0,0,0.236 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.387 +1,0.68,0.0551,0.251,0,0,0,0,0,0,0.227 +0.667,0.719,0.074,0.313,0,0,0,0,0,0,0.174 +0.333,0.647,0.0527,0.19,0,0,0,0,0,0,0.158 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.0394 +0.667,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.667,0.647,0.0724,0.183,0,0,0.0963,0.0702,0,0,0.236 +0.667,0.647,0.0759,0.178,0,0,0.31,0.175,0.817,0,0.0788 +0.333,0.647,0.0845,0.177,0,0,0.0352,0,0,0.0667,0.276 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0.767,0.118 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.0394 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.267,0 +0.667,0.849,0.366,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.51,0.638,0.106,0.0667,0,0,0,0,0.0788 +1,0.934,0.936,0.732,0.665,0.75,0,0,0,0.267,0 +1,0.857,0.887,0.554,0.623,0,0,0,0,0,0.368 +1,0.779,0.536,0.488,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.141 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.252 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.266 +1,0.68,0.0551,0.251,0,0,0,0,0,0.55,0.322 +1,0.719,0.074,0.313,0,0,0,0,0,0,0.387 +1,0.818,0.126,0.47,0,0,0,0,0,0,0.279 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.06 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0.267,0.0788 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.197 +0.333,0.647,0.0845,0.177,0,0,0,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0,0,0,0,0.0394 +0.333,0.66,0.0982,0.204,0,0,0,0,0,0,0.315 +0.667,0.797,0.224,0.457,0,0,0,0,0,0,0.0394 +0.333,0.699,0.145,0.323,0,0,0,0,0,0.267,0.157 +1,0.993,0.541,1,0,0,0,0,0,0,0 +1,0.973,0.758,0.933,0,0,0,0,0,0,0 +1,0.934,0.936,0.732,0,0,0.352,0.86,0,0,0.0394 +1,0.857,0.887,0.554,0,0,0.145,0.175,0.55,0,0 +1,0.634,0.189,0.196,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +0.667,0.562,0.0159,0.0495,0,0,0,0,0,0,0.197 +1,0.608,0.026,0.0829,0,0,0,0,0,0,0.358 +1,0.68,0.0551,0.251,0,0,0,0,0,0.267,0.331 +1,0.798,0.103,0.444,0,0,0,0,0,0,0.161 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0.118 +0.333,0.647,0.0604,0.193,0,0,0,0,0,0,0.118 +0.333,0.647,0.0664,0.189,0,0,0,0,0,0,0 +0.333,0.647,0.0724,0.183,0,0,0,0,0,0,0.158 +0.333,0.647,0.0759,0.178,0,0,0,0,0,0,0.0394 +0.333,0.647,0.0845,0.177,0,0,0.541,0.246,0.267,0,0 +0.333,0.647,0.0888,0.182,0,0,0.683,0,0,0,0.293 +0.667,0.758,0.181,0.359,0,0,0.246,0,0,0,0.0788 +0.333,0.679,0.12,0.253,0,0,0.817,0,0,0,0.158 +1,0.973,0.402,0.869,0,0,0.287,0,0,0,0.53 +1,0.993,0.541,1,0,0,0,0,0,0,0.515 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.0913 +0.667,0.81,0.629,0.504,0,0,0,0,0,0,0.297 +0.667,0.758,0.596,0.386,0,0,0,0,0,0,0.302 +0.667,0.634,0.189,0.196,0,0,0,0,0,0,0.0787 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.608,0.02,0.0513,0,0,0,0,0,0,0.0788 +1,0.608,0.026,0.0829,0,0,0.102,0.246,0.0833,0.317,0.157 +1,0.68,0.0551,0.251,0,0,0.479,0,1,0.233,0.222 +1,0.798,0.103,0.444,0.103,0.0667,0.356,0,1,0,0 +1,0.818,0.126,0.47,0.714,0.2,0.656,0,0.4,0,0.276 +1,0.818,0.149,0.481,0.0925,0,0.476,0,0,0,0.309 +1,0.818,0.168,0.468,0,0,0.694,0,0,0,0.21 +0.667,0.732,0.129,0.316,0,0,0.194,0,0,0,0.0394 +0.667,0.732,0.136,0.307,0,0,0.624,0,0,0,0.0394 +0.667,0.732,0.153,0.305,0,0,0.502,0,0,0,0.158 +0.333,0.647,0.0888,0.182,0,0,0.485,0,0,0,0.118 +0.333,0.66,0.0982,0.204,0,0,0.408,0,0,0,0 +0.667,0.797,0.224,0.457,0,0,0.55,0,0,0,0.197 +0.667,0.836,0.273,0.596,0,0,0.22,0,0,0,0.223 +0.667,0.705,0.191,0.366,0,0,0,0,0,0,0.0394 +0.667,0.699,0.263,0.344,0,0,0,0,0,0,0 +0.667,0.686,0.322,0.277,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0.211 +1,0.706,0.363,0.342,0,0,0,0,0,0,0.304 +1,0.614,0.0879,0.116,0,0,0,0,0,0,0.158 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0.267,0.0394 +1,0.621,0.0327,0.15,0,0,0,0,0,0,0 +1,0.64,0.049,0.181,0,0,0,0,0,0,0.0394 +1,0.647,0.0731,0.19,0,0,0,0,0,0.267,0.274 +1,0.732,0.168,0.337,0,0,0,0,0,0,0.553 +1,0.732,0.198,0.328,0,0,0,0,0,0,0.219 +1,0.732,0.217,0.316,0,0,0,0,0,0,0.0794 +0.667,0.732,0.233,0.307,0,0,0,0,0,0,0.197 +0.333,0.647,0.146,0.177,0,0,0,0,0,0,0.0394 +0.333,0.647,0.165,0.182,0,0,0,0,0,0,0.0394 +0.333,0.66,0.18,0.204,0,0,0,0,0,0.267,0.197 +0.667,0.797,0.36,0.457,0,0,0.372,0.246,0.55,0,0.118 +1,0.973,0.549,0.869,0,0,0.211,0,0,0,0.158 +1,0.993,0.647,1,0,0,0,0,0,0,0.0788 +1,0.973,0.851,0.933,0,0,0,0,0,0,0.0788 +1,0.934,1,0.732,0,0,0,0,0,0,0 +1,0.857,0.923,0.554,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0.0394 +1,0.614,0.101,0.116,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0181,0.0495,0,0,0,0,0,0,0 +1,0.647,0.0731,0.19,0,0,0,0,0,0.267,0 +0.667,0.732,0.168,0.337,0,0,0,0,0,0,0.118 +0.333,0.647,0.108,0.189,0,0,0,0,0,0,0.118 +0.333,0.647,0.118,0.183,0,0,0,0,0,0,0.0788 +0,0.562,0.0181,0.0495,0,0,0,0,0,0,0.41 +0.667,0.732,0.274,0.305,0,0,0,0,0,0,0.287 +0.667,0.732,0.312,0.314,0,0,0,0,0,0,0.494 +0.333,0.66,0.18,0.204,0,0,0,0,0,0,0 +0.667,0.797,0.36,0.457,0,0,0,0,0,0,0.0788 +0.667,0.836,0.372,0.596,0,0,0,0,0,0,0.0394 +0.667,0.849,0.437,0.683,0,0,0,0,0,0,0 +0.667,0.836,0.573,0.638,0,0,0,0,0,0,0.0788 +1,0.934,1,0.732,0,0,0,0,0,0,0.158 +1,0.758,0.621,0.386,0,0,0,0,0,0,0 +1,0.706,0.394,0.342,0,0,0,0,0,0,0 +1,0.667,0.183,0.183,0,0,0,0,0,0,0 +1,0.608,0.0424,0.0743,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0.131 +1,0.74,0.0747,0.351,0.538,0.533,0,0,0,0,0.522 +1,0.798,0.103,0.444,0,0,0,0,0,0.267,0.157 +0.667,0.732,0.0895,0.33,0,0,0,0,0,0,0 +0.667,0.732,0.105,0.337,0,0,0,0,0,0,0.0788 +0.667,0.732,0.117,0.328,0.159,0.0667,0,0,0,0.267,0 +0.667,0.732,0.129,0.316,0.429,1,0,0,0,0.55,0.0394 +0.667,0.732,0.136,0.307,0,0.3,0,0,0,0,0.354 +0.667,0.732,0.153,0.305,0,0,0,0,0,0,0 +0.667,0.732,0.162,0.314,0,0,0,0,0,0,0.0788 +0.667,0.758,0.181,0.359,0,0,0,0,0,0,0.197 +0.333,0.679,0.12,0.253,0,0,0,0,0,0,0.197 +0.333,0.699,0.145,0.323,0,0,0,0,0,0,0.14 +1,0.993,0.541,1,0,0,0,0,0,0,0.116 +1,0.973,0.758,0.933,0,0,0,0,0,0,0.325 +1,0.81,0.629,0.504,0,0,0,0,0,0,0 +1,0.758,0.596,0.386,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 +1,0.562,0.0159,0.0495,0,0,0,0,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv deleted file mode 100644 index c19c94bbfa..0000000000 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv +++ /dev/null @@ -1,8761 +0,0 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.14 -0.667,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.159 -0.667,0.334,0.334,0.25,0,0,0,0.14,0.732,0.0895,0,0,0.119 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.342 -0.667,0.334,0.334,0.5,0,0,0,0.14,0.732,0.117,0,0,0.149 -0.667,0.322,0.322,0.0167,0,0,0,0.14,0.732,0.129,0,0,0.402 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.0372 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.223 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.26 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.0372 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0.5,0,0,0,0.14,0.836,0.273,0,0,0.0743 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.0743 -0.667,0.677,0.677,0.05,0,0,0,0.14,0.836,0.51,0,0,0.149 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.0743 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0372 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0.25,0,0,0,0.281,0.608,0.026,0,0,0.334 -1,0.355,0.355,0.783,0,0,0,0,0.74,0.0747,0,0,0.28 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.162 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.275 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.217 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.168 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.365 -0.667,0.181,0.181,0,0,0.233,0,0.281,0.647,0.0759,0,0.295,0.154 -0.667,0.18,0.18,0,0,0.25,0.217,0.281,0.647,0.0845,0,0.44,0 -0.667,0.182,0.182,0.25,0,0,0.6,0.281,0.647,0.0888,0,0.55,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.479,0.186 -0.333,0.234,0.234,0,0.4,0,0,0.281,0.679,0.12,0.707,0.379,0.0743 -0.667,0.548,0.548,0,0.667,0,0,0.14,0.836,0.273,0,0.287,0.112 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.223 -0.667,0.677,0.677,0,0.65,0,0,0.14,0.836,0.51,0.635,0,0.417 -0.667,0.307,0.307,0,0.15,0,0,0.281,0.686,0.322,0,0,0.112 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.195 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.186 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.192,0.192,0,0.65,0.233,0,0.281,0.647,0.0527,0.614,0.494,0.0963 -0.667,0.343,0.343,0.517,0.15,0,0.717,0.14,0.732,0.105,0,0.232,0.121 -0.667,0.334,0.334,0,0,0,0.917,0.14,0.732,0.117,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.149 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.186 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.0841,0.149 -0.333,0.234,0.234,0,0,0.483,0,0.281,0.679,0.12,0,0.448,0.215 -0.667,0.548,0.548,0,0,0,0.817,0.14,0.836,0.273,0,0,0.112 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.335 -0.667,0.677,0.677,0,0.65,0,0,0.14,0.836,0.51,0.792,0,0.0743 -0.667,0.565,0.565,0.767,0.15,0,0,0.14,0.81,0.629,0.143,0,0.0372 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.297 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.314 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.448 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.313 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.222 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.264 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.292 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.157 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0.15,0,0,0.281,0.647,0.0888,0.458,0,0 -0.333,0.196,0.196,0,0.65,0,0,0.281,0.66,0.0982,0.538,0,0.187 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0.634,0,0.158 -0.667,0.548,0.548,0.25,0,0,0,0.14,0.836,0.273,0.378,0,0.127 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0743 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.223 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0.233,0,0.421,0.562,0.0159,0,0.424,0 -1,0.253,0.253,0.517,0,0.25,0.217,0.14,0.68,0.0551,0,0.229,0 -1,0.449,0.449,0,0,0,1,0,0.798,0.103,0,0,0 -0.333,0.192,0.192,0,0,0,0.417,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0743 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.112 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.647,0.0724,0,0,0.186 -0.333,0.181,0.181,1,0,0,0,0.281,0.647,0.0759,0,0,0.186 -0.333,0.18,0.18,0.3,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0372 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.186 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.105 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.146 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.269 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.0372 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.347 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.167 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.281 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.52 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.153 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.189,0,0,0.186 -0.667,0.548,0.548,0.417,0,0,0,0.14,0.836,0.372,0,0,0.0743 -0.667,0.669,0.669,0.1,0,0.483,0,0.14,0.849,0.437,0,0.613,0.223 -0.667,0.677,0.677,0.917,0,0,0.633,0.14,0.836,0.573,0,0.136,0.0743 -1,0.823,0.823,0.367,0,0,1,0,0.934,1,0,0,0.08 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.112 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0882 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.123 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.19 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.242 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.351 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.184 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.0743 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.149 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.0372 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.186 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0.1,0,0.186 -0.667,0.669,0.669,0,0.817,0,0,0.14,0.849,0.437,0.438,0,0.149 -0.667,0.677,0.677,0,0.25,0,0,0.14,0.836,0.573,0,0,0.0372 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.119 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.206 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.223 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.166 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0502 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.145 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0978 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.0887 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.115 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.149 -0.333,0.196,0.196,0,0,0.717,0,0.281,0.66,0.0982,0,0.511,0.149 -0.667,0.418,0.418,0,0,0,0.483,0.14,0.797,0.224,0,0,0.52 -0.667,0.548,0.548,0,0,0,0.867,0.14,0.836,0.273,0,0,0.372 -0.667,0.669,0.669,0,0.4,0,0,0.14,0.849,0.366,0.508,0,0.301 -1,0.991,0.991,0,0.667,0.233,0,0,0.973,0.758,0.139,0.635,0 -0.667,0.565,0.565,0,0,0,0.533,0.14,0.81,0.629,0,0.601,0.0372 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.117 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0.368 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.221 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.271 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0372 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0.106,0.263 -0.667,0.334,0.334,0,0,0.717,0,0.14,0.732,0.117,0,0.508,0.118 -0.333,0.186,0.186,0,0,0,0.733,0.281,0.647,0.0724,0,0.454,0.0372 -0.333,0.181,0.181,0,0,0,0.9,0.281,0.647,0.0759,0,0.731,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.633,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.322 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.0173 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.186 -0.333,0.299,0.299,0,0.15,0,0,0.281,0.699,0.145,0.391,0,0.297 -0.667,0.669,0.669,0,0.65,0,0,0.14,0.849,0.366,0.653,0,0.149 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.173,0,0.149 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.26 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.203 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.0697 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.414 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.247 -0.333,0.192,0.192,0.25,0,0,0,0.281,0.647,0.0664,0,0,0.163 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.732,0.129,0,0,0.135 -0.667,0.313,0.313,0.0167,0,0,0,0.14,0.732,0.136,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0.25,0,0.233,0,0.421,0.562,0.0159,0,0.502,0.0372 -0.667,0.343,0.343,0,0,0,0.967,0.14,0.758,0.181,0,0,0.0372 -1,0.602,0.602,0,0,0,0.117,0,0.915,0.327,0,0,0.149 -0.667,0.548,0.548,0.25,0,0,0,0.14,0.836,0.273,0,0,0.149 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.223 -0.667,0.677,0.677,0,0,0.483,0,0.14,0.836,0.51,0,0.124,0.315 -1,0.565,0.565,0,0,0,0.267,0.14,0.81,0.629,0,0,0.112 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.535 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.111 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0833,0.0833,0.25,0,0,0,0.281,0.608,0.026,0,0,0.194 -0.667,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.118 -0.333,0.183,0.183,0.517,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0743 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.297 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0372 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.112 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0372 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0372 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.0372 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.112 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0.204,0,0.0372 -1,0.979,0.979,0,0.8,0,0,0,0.993,0.541,0.753,0,0.149 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.149 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.267 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0532,0.0532,0,0,0,0,0.14,0.654,0.0242,0,0,0.268 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.324 -1,0.151,0.151,0.25,0,0,0,0.281,0.621,0.0355,0,0,0.133 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.228 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.421 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.403 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.132 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.158 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.224 -1,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.43 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0.243,0,0.497 -0.667,0.548,0.548,0,0.9,0,0,0.14,0.836,0.273,0.481,0,0.52 -0.667,0.669,0.669,0,0.45,0,0,0.14,0.849,0.366,0,0,0.113 -0.333,0.363,0.363,0,0,0.233,0,0.281,0.699,0.263,0,0.382,0.112 -0.333,0.307,0.307,0,0,0,0.533,0.281,0.686,0.322,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0867 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0.0347 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.14 -1,0.0532,0.0532,0.917,0,0,0,0.14,0.654,0.0249,0,0,0.222 -1,0.117,0.117,0.633,0,0,0,0.14,0.654,0.0301,0,0,0.199 -1,0.355,0.355,0,0,0,0,0,0.74,0.0619,0,0,0.0797 -1,0.449,0.449,0,0,0,0,0,0.798,0.111,0,0,0.111 -1,0.477,0.477,0,0,0,0,0,0.818,0.183,0,0,0.438 -1,0.49,0.49,0,0,0,0,0,0.818,0.242,0,0,0.483 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.394 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.34 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.216 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0.167,0,0,0,0.281,0.647,0.165,0,0,0.0743 -0.333,0.196,0.196,0.0833,0,0,0,0.281,0.66,0.18,0,0,0.335 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.189,0,0,0.0743 -0.667,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.0743 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0.0749,0.0372 -0.667,0.363,0.363,0,0,0.717,0,0.281,0.699,0.296,0,0.56,0.0743 -0.667,0.565,0.565,0,0,0,0.267,0.14,0.81,0.673,0,0.131,0.0791 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.049 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.343,0.343,0.35,0.567,0,0,0.14,0.732,0.168,0.798,0,0 -1,0.477,0.477,0,0.233,0,0,0,0.818,0.289,0.15,0,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.317,0,0,0.0743 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.0372 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0.0724,0,0.0743 -0.667,0.315,0.315,0,0.817,0,0,0.14,0.732,0.312,0.896,0,0.223 -0.667,0.343,0.343,0,0.25,0,0,0.14,0.758,0.343,0,0,0.0372 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.189,0,0,0.112 -0.667,0.548,0.548,0.417,0,0,0,0.14,0.836,0.372,0,0,0.0743 -0.667,0.669,0.669,0.1,0,0,0,0.14,0.849,0.437,0,0,0.335 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.0743 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.149 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.26 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.216 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0.128,0 -0.667,0.186,0.186,0,0,0.483,0,0.281,0.647,0.0724,0,0.839,0.223 -0.333,0.181,0.181,0,0,0,0.533,0.281,0.647,0.0759,0,0.651,0.223 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.595,0.0372 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.524,0.0372 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.396,0.0372 -0.333,0.234,0.234,0.25,0,0,0,0.281,0.679,0.12,0,0.538,0.367 -0.667,0.548,0.548,0,0.65,0,0,0.14,0.836,0.273,0.796,0.131,0.26 -0.667,0.669,0.669,0.5,0.417,0,0,0.14,0.849,0.366,0,0,0.446 -0.333,0.363,0.363,0.783,0,0,0,0.281,0.699,0.263,0,0,0.0372 -0.333,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.0743 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0743 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.122 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0.15,0,0,0.281,0.647,0.0759,0.292,0,0 -0.667,0.311,0.311,0.517,0.917,0,0,0.14,0.732,0.153,0.483,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.112 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.297 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.297 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.186 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.0743 -1,0.565,0.565,0,0,0.233,0,0.14,0.81,0.629,0,0.202,0.112 -1,0.43,0.43,0,0,0,0.717,0.14,0.758,0.596,0,0,0.0743 -1,0.212,0.212,0,0,0,0.917,0.281,0.634,0.189,0,0,0.186 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.149 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.267 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.126 -0.667,0.183,0.183,0.267,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0743 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0.106,0.25 -0.667,0.322,0.322,0,0,0.483,0,0.14,0.732,0.129,0,0,0.0999 -0.333,0.181,0.181,0,0,0,0.967,0.281,0.647,0.0759,0,0,0.0372 -0.333,0.18,0.18,0,0,0,0.667,0.281,0.647,0.0845,0,0,0.149 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.186 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.186 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0.167,0,0 -0.333,0.0495,0.0495,0,0.8,0,0,0.421,0.562,0.0159,0.555,0,0.0743 -0.333,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.0372 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.207 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0.3,0,0,0,0.14,0.68,0.0551,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.0743 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.347 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.199 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.186 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.186 -0.333,0.182,0.182,0,0,0.233,0,0.281,0.647,0.0888,0,0.364,0.149 -0.333,0.196,0.196,0,0,0,0.467,0.281,0.66,0.0982,0,0.321,0 -0.333,0.234,0.234,0,0,0,0.617,0.281,0.679,0.12,0,0,0.186 -0.333,0.299,0.299,0.25,0,0,0,0.281,0.699,0.145,0.176,0,0.112 -0.667,0.669,0.669,0,0.9,0,0,0.14,0.849,0.366,0.675,0,0.112 -0.667,0.677,0.677,0,0.167,0,0,0.14,0.836,0.51,0.646,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.253,0.253,0.25,0,0,0,0.14,0.68,0.0551,0,0,0.158 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.132 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.193 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.613 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.183 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0372 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0743 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.166 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.099 -0.667,0.548,0.548,0.5,0,0,0,0.14,0.836,0.273,0,0,0.149 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.112 -0.667,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.149 -0.667,0.565,0.565,0.6,0,0,0,0.14,0.81,0.629,0,0,0.0743 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.207 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.178 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.175 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.108 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0.158 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0181,0,0,0.0793 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.134 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.154 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.26 -0.333,0.18,0.18,0,0.0667,0,0,0.281,0.647,0.146,0.364,0,0.223 -0.333,0.182,0.182,0,0.733,0,0,0.281,0.647,0.165,0.74,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0.529,0,0 -0.333,0.234,0.234,0.417,0,0,0,0.281,0.679,0.189,0.455,0,0.186 -0.667,0.548,0.548,0.35,0,0,0,0.14,0.836,0.372,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0.137,0,0.149 -0.333,0.363,0.363,0,0.533,0,0,0.281,0.699,0.296,0.616,0,0.112 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0.499,0,0.112 -0.667,0.43,0.43,0,0.567,0,0,0.14,0.758,0.621,0.79,0,0.186 -1,0.374,0.374,0,0.233,0,0,0.14,0.706,0.394,0,0,0.186 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.149 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0.12 -1,0.316,0.316,0.1,0,0.15,0,0.14,0.719,0.0799,0,0.193,0 -1,0.334,0.334,0,0,1,0,0.14,0.732,0.128,0,0.324,0 -1,0.343,0.343,0.417,0,0.533,0,0.14,0.732,0.168,0,0.402,0.272 -1,0.477,0.477,1,0,0,0.933,0,0.818,0.289,0,0,0.259 -1,0.458,0.458,0.133,0,0,0.967,0,0.818,0.317,0,0.301,0.534 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0.00459,0.261 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.175 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.283 -0.333,0.234,0.234,0.517,0,0,0,0.281,0.679,0.189,0,0,0.0372 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.195,0,0,0.268 -0.667,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.0743 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.16 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.498 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.186 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.188 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.386 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0.25,0,0,0,0.281,0.647,0.0604,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.0887,0.0743 -0,0.0495,0.0495,0,0,0.717,0,0.421,0.562,0.0159,0,0.369,0.112 -0.333,0.18,0.18,0,0,0,0.733,0.281,0.647,0.0845,0,0.723,0 -0.667,0.315,0.315,0.25,0,0,0.0833,0.14,0.732,0.162,0,0.0917,0 -0.667,0.343,0.343,0.267,0,0,0,0.14,0.758,0.181,0,0,0.0372 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.26 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.249 -0.667,0.677,0.677,0.0333,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.223 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.0657,0 -1,0.0833,0.0833,0,0,0.483,0,0.281,0.608,0.026,0,0.413,0.257 -1,0.253,0.253,0,0,0,0.817,0.14,0.68,0.0551,0,0,0.22 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.0998 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.177 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.334,0.334,0,0,0.733,0,0.14,0.732,0.117,0,0.731,0 -0.333,0.186,0.186,0,0,0.233,0.233,0.281,0.647,0.0724,0,0.401,0.0372 -0.333,0.181,0.181,0,0,0,0.85,0.281,0.647,0.0759,0,0.492,0.112 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.719,0.112 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.763,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.402,0 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0.573,0.112 -0.667,0.548,0.548,0.0333,0,0,0,0.14,0.836,0.273,0,0,0.0372 -0.667,0.669,0.669,0,0.267,0,0,0.14,0.849,0.366,0.616,0,0.0743 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.753,0,0.112 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0.245,0,0.0743 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0.25,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0833,0.0833,0.517,0,0,0,0.281,0.608,0.026,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.196,0.196,0.783,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0.25,0,0.483,0,0.281,0.647,0.0759,0,0.0352,0.186 -0.667,0.311,0.311,0,0,0.483,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0.983,0.14,0.732,0.162,0,0,0 -1,0.49,0.49,0,0,0,0.65,0,0.857,0.263,0,0,0.0372 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0.259 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.26 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.174 -0.333,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.311 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.238 -0.667,0.212,0.212,0.5,0,0,0,0.281,0.634,0.189,0,0,0.112 -1,0.116,0.116,0.0167,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0.25,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.188 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0743 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.161 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.321 -0.667,0.311,0.311,0.25,0,0,0,0.14,0.732,0.153,0,0,0.517 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.246 -0.667,0.343,0.343,0.5,0,0,0,0.14,0.758,0.181,0,0,0.16 -0.667,0.234,0.234,0.267,0,0,0,0.281,0.679,0.12,0,0,0.117 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.149 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.0372 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.0372 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.132 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.381 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.212 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0372 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0.483,0,0.281,0.647,0.0724,0,0.537,0.112 -0.333,0.181,0.181,0,0,0.233,0.233,0.281,0.647,0.0759,0,0.752,0 -0.333,0.18,0.18,0,0,0,1,0.281,0.647,0.0845,0,0.307,0 -0.667,0.315,0.315,0,0,0,0.4,0.14,0.732,0.162,0,0,0 -0.667,0.343,0.343,0.25,0,0,0,0.14,0.758,0.181,0,0,0.0743 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.149 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.409 -0.667,0.669,0.669,0.517,0,0,0,0.14,0.849,0.366,0,0,0.223 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.0372 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.241 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.263 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.317 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.238 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0.205 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.175 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.192,0.192,0,0,0.15,0,0.281,0.647,0.0731,0,0.393,0 -0.667,0.196,0.196,0,0,0.567,0,0.281,0.647,0.0928,0,0.466,0 -0.667,0.192,0.192,0,0,0,0.533,0.281,0.647,0.108,0,0.674,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0.538,0.194 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.227 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.0743 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.335 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.372 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.222 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0.0875 -1,0.253,0.253,1,0,0,0,0.14,0.68,0.0473,0,0,0.211 -0.667,0.183,0.183,0.917,0,0,0,0.281,0.64,0.049,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.322,0.322,0.167,0,0,0,0.14,0.732,0.217,0,0.106,0 -0.333,0.181,0.181,0.0833,0,0.717,0,0.281,0.647,0.125,0,0.621,0 -0.667,0.311,0.311,0,0,0,0.65,0.14,0.732,0.274,0,0.775,0 -0.667,0.315,0.315,0,0,0,0.7,0.14,0.732,0.312,0,0.335,0.186 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.297 -0.667,0.418,0.418,0.25,0,0,0,0.14,0.797,0.36,0,0,0.186 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.0743 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.112 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.0743 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.0743 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.297 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.274 -1,0.183,0.183,0.25,0.4,0,0,0.281,0.64,0.0449,0.536,0,0 -1,0.192,0.192,0,0.4,0,0,0.281,0.647,0.0527,0.531,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0.558,0,0.0372 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0.655,0,0.112 -1,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.186 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.112 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.294 -0.667,0.315,0.315,0,0,0.733,0,0.14,0.732,0.162,0,0.384,0.192 -0.667,0.343,0.343,0,0,0.95,0,0.14,0.758,0.181,0,0,0.0372 -0.667,0.418,0.418,0,0,0,0.517,0.14,0.797,0.224,0,0,0.149 -0.667,0.548,0.548,0,0,0,0.833,0.14,0.836,0.273,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0743 -0.667,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.0951 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.0372 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.492 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0.25,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.75,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.183,0.183,0.283,0,0,0,0.281,0.64,0.0449,0,0,0.162 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0827 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.248 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.148 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.149 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.186 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.223 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.186 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.0743 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.419 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.149 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0744 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.162 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0928 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.149 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.333,0.307,0.307,0.5,0,0,0,0.281,0.686,0.322,0,0,0.284 -0.667,0.43,0.43,0.0167,0,0,0,0.14,0.758,0.596,0,0,0.124 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0.464 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.0458 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.45,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0.05,0,0,0,0.281,0.623,0.0353,0,0,0.228 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.258 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.142 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.149 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.223 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.372 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0.112 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.226 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.158 -1,0.442,0.442,0.95,0,0,0,0.14,0.71,0.36,0,0,0.0372 -1,0.183,0.183,0.583,0,0,0,0.14,0.671,0.159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.122 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.438 -0.667,0.181,0.181,0.25,0,0,0,0.281,0.642,0.0447,0,0,0.166 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.518 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.19 -0.667,0.328,0.328,0.2,0,0,0,0.14,0.736,0.116,0,0,0.252 -0.667,0.316,0.316,0.567,0,0,0,0.14,0.736,0.128,0,0,0.173 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0743 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0372 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0743 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.335 -0.333,0.322,0.322,0.25,0,0,0,0.281,0.708,0.19,0,0,0.112 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0372 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0.207 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0794,0,0,0.192 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.303 -0.333,0.193,0.193,0.383,0,0,0,0.281,0.649,0.0923,0,0,0.154 -0.333,0.189,0.189,0.117,0,0,0,0.281,0.649,0.108,0,0,0 -0.333,0.183,0.183,0,0,0.117,0,0.281,0.649,0.117,0,0.22,0.0372 -0.333,0.178,0.178,0,0,0.383,0.0833,0.281,0.649,0.125,0,0.494,0.186 -0.333,0.177,0.177,0,0,0,0.167,0.281,0.649,0.145,0,0.453,0.0372 -0.333,0.178,0.178,0.25,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.112 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0743 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.0372 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.149 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.297 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.149 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.166 -1,0.313,0.313,0.883,0,0,0,0.14,0.723,0.0794,0,0,0.297 -0.667,0.33,0.33,0.383,0,0,0,0.14,0.736,0.127,0,0,0.114 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0372 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.0372 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0.0372 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.0372 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.112 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0743 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.194,0,0,0.294 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.318 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.284 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.438 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.0372 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.139 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.247 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.549 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.288 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0743 -0.667,0.307,0.307,0,0.6,0,0,0.14,0.736,0.135,0.839,0,0.223 -0.333,0.0495,0.0495,0,0.45,0,0,0.421,0.562,0.0159,0.0965,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.143,0,0.223 -0.333,0.0495,0.0495,0.2,0.783,0,0,0.421,0.562,0.0159,0.594,0,0.223 -0.667,0.322,0.322,0.3,0,0,0,0.281,0.708,0.19,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.0743 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0743 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0867 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0372 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.26 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.195 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.0372 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.354 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.349 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0692 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.227 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.125 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.186 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.149 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0743 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.223 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0372 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.154 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.108 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.158 -0.333,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.309 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.231 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.306 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.125 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.351,0.351,0,0,0,0,0,0.745,0.0742,0,0,0.223 -0.667,0.313,0.313,0.5,0,0,0,0.14,0.723,0.0735,0,0,0.149 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.511 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.417 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.372 -0.667,0.316,0.316,0.25,0,0,0,0.14,0.736,0.128,0,0,0.112 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.0372 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.219 -0.333,0.208,0.208,0.25,0,0,0,0.281,0.682,0.119,0,0,0.0743 -0.667,0.466,0.466,0.2,0,0,0,0.14,0.841,0.271,0,0,0 -0.667,0.595,0.595,0.05,0,0,0,0.14,0.854,0.364,0,0,0.149 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.0743 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.231 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.186 -0.667,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0.2,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0.567,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.168 -0.667,0.307,0.307,0,0,0.25,0,0.14,0.736,0.161,0,0.219,0.296 -0.667,0.322,0.322,0,0,0,0.65,0.14,0.762,0.179,0,0.722,0.116 -0.667,0.367,0.367,0,0,0,0.917,0.14,0.802,0.222,0,0.569,0.284 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0.424,0.107 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.318,0.0743 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.149 -0.667,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.0372 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.149 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.187 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.188 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.0511 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.291 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.275 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.281 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.0372 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.335 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0372 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.194,0,0,0.0743 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.112 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.294,0,0,0.0489 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.463 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0466 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.0847 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.187 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.333,0.183,0.183,0.383,0,0,0,0.281,0.649,0.117,0,0,0.112 -0.667,0.307,0.307,0.117,0,0,0,0.14,0.736,0.231,0,0,0.112 -0.667,0.305,0.305,0.25,0,0,0,0.14,0.736,0.272,0,0,0.186 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.112 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.0372 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0372 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.194,0,0,0.0743 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.226,0,0,0.297 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.112 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.0743 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0829,0.0829,0.817,0,0,0,0.281,0.61,0.0259,0,0,0.112 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.352 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.236 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.124 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0743 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.67,0.67,0.05,0,0,0,0.14,0.841,0.507,0,0,0.112 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.12 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0172 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.123 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.186 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.0743 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.0743 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.223 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.149 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0.35,0.433,0,0.281,0.649,0.0839,0.503,0.373,0.112 -0.333,0.178,0.178,0,0.433,0.0667,0.25,0.281,0.649,0.0882,0,0.472,0.0372 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.569,0.0372 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0.112 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0372 -0.667,0.595,0.595,0.45,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0.05,0,0,0,0.14,0.841,0.507,0,0,0.112 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0372 -0.667,0.501,0.501,0,0,0.25,0,0.14,0.762,0.592,0,0.0627,0.348 -1,0.442,0.442,0,0,0,0.65,0.14,0.71,0.36,0,0,0.318 -1,0.0495,0.0495,0,0,0,0.667,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.38 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.202 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.389 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.452 -1,0.337,0.337,0.2,0,0,0,0.14,0.736,0.104,0,0,0.377 -0.667,0.328,0.328,0.3,0,0,0,0.14,0.736,0.116,0,0,0.149 -0.333,0.183,0.183,0.2,0,0,0,0.281,0.649,0.072,0,0,0.112 -0.667,0.307,0.307,0.567,0,0,0,0.14,0.736,0.135,0,0,0.0372 -0.667,0.305,0.305,0.2,0,0,0,0.14,0.736,0.152,0,0,0.0372 -0.333,0.178,0.178,0.3,0,0,0,0.281,0.649,0.0882,0,0,0.297 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0743 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.112 -0.333,0.258,0.258,0.767,0,0,0,0.281,0.701,0.144,0,0,0.399 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0992 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.171 -0.667,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.0372 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0372 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.173 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,0.25,0,0,0,0.14,0.684,0.0548,0,0,0.149 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.254 -0.333,0.189,0.189,0.2,0,0,0,0.281,0.649,0.066,0,0,0.0743 -0.333,0.183,0.183,1,0,0,0,0.281,0.649,0.072,0,0,0.112 -0.333,0.178,0.178,1,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,1,0,0,0,0.281,0.649,0.0839,0,0,0.0372 -0.333,0.178,0.178,0.133,0,0,0,0.281,0.649,0.0882,0,0,0.112 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0372 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.294 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.387 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.185 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.404 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.302 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.3,0,0,0,0.281,0.623,0.0353,0,0,0.118 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.111 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.124 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.149 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.186 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.26 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.112 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.26 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.149 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.0372 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.223 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.116 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.223 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.112 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.0372 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.112 -0.667,0.322,0.322,0.25,0,0,0,0.14,0.762,0.34,0,0,0.0372 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.223 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.223 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.0743 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0.147,0,0.0743 -0.667,0.625,0.625,0,0.783,0,0,0.14,0.815,0.668,0.401,0,0.0743 -0.667,0.501,0.501,0,0.267,0,0,0.14,0.762,0.617,0,0,0.0372 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0,0,0.157 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.107 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0794,0,0,0.306 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.105 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.57 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.424 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.383 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.168 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.185 -0,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.226,0,0,0.0743 -0.333,0.36,0.36,0.767,0,0,0,0.281,0.701,0.294,0,0,0.149 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.0823 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.213 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.244 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.151 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.112 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.368 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.366 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.225 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.124 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0,0.1,0,0,0.421,0.562,0.0159,0.306,0,0.186 -1,0.526,0.526,0,0.95,0,0,0,0.922,0.325,0.724,0,0.0372 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0.49,0,0.0743 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0743 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.112 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0372 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.412 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0513,0.0513,0.25,0,0,0,0.281,0.61,0.02,0,0,0.201 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.195 -1,0.351,0.351,0,0,0.25,0,0,0.745,0.0742,0,0.398,0.347 -1,0.444,0.444,0,0,0,0.65,0,0.804,0.102,0,0.534,0.0718 -0.333,0.19,0.19,0,0,0,0.667,0.281,0.649,0.0524,0,0.728,0.112 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0.748,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0.338,0.0372 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0.616,0.0743 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0.714,0.0852 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0.578,0.0743 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.433,0.0372 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0743 -0,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0.217 -0.333,0.258,0.258,0.3,0,0,0,0.281,0.701,0.144,0,0,0.223 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0.0743 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.149 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.165 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.537 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.0867 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0978 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.454 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.161 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.273 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.228 -0.333,0.178,0.178,0.2,0.6,0.183,0,0.281,0.649,0.0754,0.848,0.295,0.112 -0.667,0.305,0.305,0.05,0.183,0.0667,0.25,0.14,0.736,0.152,0,0.599,0.0767 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0.208 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.149 -0.667,0.367,0.367,0.45,0,0,0,0.14,0.802,0.222,0,0,0.112 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0.0372 -0.667,0.595,0.595,0.0833,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.46 -0.667,0.625,0.625,0,0,0.25,0,0.14,0.815,0.625,0,0.0841,0.0372 -1,0.727,0.727,0,0,0,0.65,0,0.863,0.88,0,0,0 -1,0.638,0.638,0,0,0,0.917,0,0.784,0.532,0,0,0.295 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.389 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.108 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.328 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.683,0,0.421,0.562,0.0159,0,0.462,0.0743 -0.333,0.186,0.186,0,0,1,0,0.281,0.662,0.0976,0,0.737,0.26 -0.333,0.208,0.208,0,0,0.0833,0.25,0.281,0.682,0.119,0,0.576,0 -0.333,0.258,0.258,0.5,0,0,0,0.281,0.701,0.144,0,0.378,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0372 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.149 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0743 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.112 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.121 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.2 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.305 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.284 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.234 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.48 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.1 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.249 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.372 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.662,0.0976,0,0,0.112 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.0372 -0.333,0.258,0.258,0,0,0.5,0,0.281,0.701,0.144,0,0.687,0.0372 -0.333,0.322,0.322,0,0,0,0.25,0.281,0.708,0.19,0,0.453,0.483 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0.474,0.297 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0.336,0.149 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0.43,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.0525 -1,0.249,0.249,0,0,0,0,0,0.725,0.23,0,0,0.258 -1,0.099,0.099,0.5,0,0.367,0,0.14,0.658,0.0811,0,0.353,0.0642 -1,0.066,0.066,0,0,0.383,0.0833,0.14,0.658,0.0436,0,0.656,0 -1,0.0495,0.0495,0,0,0,1,0.281,0.61,0.0223,0,0.131,0 -1,0.0495,0.0495,0,0,0,0.483,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0.383,0,0,0,0.281,0.61,0.024,0,0,0.223 -1,0.15,0.15,0.117,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0794,0,0,0.183 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.329 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.109 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.0372 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0.0965,0,0.0743 -0.667,0.466,0.466,0,0.783,0,0,0.14,0.841,0.369,0.764,0,0 -0.667,0.595,0.595,0,0.267,0,0,0.14,0.854,0.434,0,0,0.112 -0.333,0.36,0.36,0.633,0,0,0,0.281,0.701,0.294,0,0,0.169 -1,0.913,0.913,0.383,0,0,0,0,0.941,0.993,0,0,0.215 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.197 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.206 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.133 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0516 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0.281 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.174 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.536 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.138 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.37 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.428 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.646 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.187 -0.667,0.186,0.186,0.383,0,0,0,0.281,0.662,0.179,0,0,0.0743 -0.667,0.208,0.208,0.117,0,0,0,0.281,0.682,0.188,0,0.164,0.0372 -0.667,0.466,0.466,0,0,0.25,0.0833,0.14,0.841,0.369,0,0.37,0.0372 -0.667,0.595,0.595,0,0,0,0.167,0.14,0.854,0.434,0,0,0.112 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0.1,0,0 -0.667,0.625,0.625,0,0.783,0,0,0.14,0.815,0.668,0.822,0,0.0372 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0.59,0,0.186 -0.667,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0.772,0,0.0372 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0.536,0.208,0 -0.667,0.0743,0.0743,0,0,0.567,0,0.281,0.61,0.0421,0,0.494,0.0372 -0.667,0.0578,0.0578,0,0,0,0.783,0.281,0.61,0.0259,0,0.344,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0.778,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0.528,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.125 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.28 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.149 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.0372 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.223 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.26 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0743 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.186 -1,0.246,0.246,0.5,0,0,0,0.281,0.636,0.188,0,0,0.0372 -1,0.116,0.116,0,0,0.183,0,0.281,0.616,0.0874,0,0.265,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0.35,0,0,0.421,0.562,0.0159,0.163,0,0.147 -1,0.313,0.313,0,0.7,0,0,0.14,0.723,0.0735,0,0,0.16 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.112 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.186 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.307,0.307,0.25,0,0,0,0.14,0.736,0.161,0,0,0.196 -0.667,0.322,0.322,0,0.6,0,0,0.14,0.762,0.179,0.842,0,0.0743 -0.667,0.367,0.367,0,0.183,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.149 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.112 -0.667,0.67,0.67,0,0.1,0,0,0.14,0.841,0.507,0.312,0,0.0372 -1,0.913,0.913,0,0.95,0,0,0,0.941,0.929,0.601,0,0.0376 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.0372 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0683 -1,0.15,0.15,0.45,0,0,0,0.281,0.623,0.0353,0,0,0.159 -1,0.181,0.181,0.317,0,0,0,0.281,0.642,0.0447,0,0,0.145 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.556 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.231 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.418 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.109 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.26 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0372 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.16 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.195 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.226 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.238 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.29 -0.667,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.223 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.113 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0743 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.333,0.171,0.171,0.233,0,0,0,0.281,0.591,0.0658,0,0,0.112 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.112 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.477 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0743 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.36 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.328 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.411 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.546 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.295 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.534 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.385 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0.128,0,0.0372 -1,0.426,0.426,0,0.9,0,0,0,0.651,0.157,0.573,0,0.0372 -0.667,0.292,0.292,0,0.117,0,0,0.14,0.621,0.116,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.149 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.186 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0743 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.149 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.202 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.407 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.339 -0.667,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.446 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0816,0.0816,0.233,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0.0743 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.0941 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.304 -0.667,0.312,0.312,0.333,0,0,0,0.14,0.621,0.169,0,0,0.0884 -0.667,0.3,0.3,0.15,0,0,0,0.14,0.621,0.185,0,0,0.132 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.153 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.584 -0.333,0.17,0.17,0,0.233,0,0,0.281,0.591,0.141,0.583,0,0.124 -0.667,0.298,0.298,0,0.533,0,0,0.14,0.642,0.291,0.692,0,0.26 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0.43,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.333,0.331,0.331,0.0833,0,0,0,0.281,0.633,0.252,0,0,0 -0.667,0.635,0.635,0.4,0,0,0,0.14,0.683,0.57,0,0,0.15 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.0743 -0.667,0.185,0.185,0.0833,0,0,0,0.281,0.591,0.0803,0,0,0.163 -0.667,0.312,0.312,0.15,0,0,0,0.14,0.621,0.169,0,0,0.0721 -1,0.426,0.426,0.483,0,0,0,0,0.651,0.268,0,0,0.217 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.0546 -1,0.409,0.409,0,0,0,0,0,0.651,0.34,0,0,0.364 -1,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.26 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.0372 -1,0.326,0.326,0.0833,0,0,0,0.14,0.673,0.305,0,0,0.292 -1,0.395,0.395,0.633,0,0,0,0.14,0.704,0.315,0,0,0.193 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.149 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.149 -0.667,0.635,0.635,0,0.733,0,0,0.14,0.683,0.57,0.774,0,0.262 -0.667,0.555,0.555,0,0.0333,0,0,0.14,0.642,0.526,0,0,0.0773 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.335 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.252 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.116 -0.333,0.177,0.177,0.967,0,0,0,0.281,0.586,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.186 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0.233,0,0,0,0.281,0.591,0.0658,0,0,0.112 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.149 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.186 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.138 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.583 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.336 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.15 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.159 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.113 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.145 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.315 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.274 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.169,0.169,0.75,0,0,0,0.281,0.591,0.073,0,0,0.0372 -1,0.41,0.41,0.217,0,0,0,0,0.651,0.198,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0743 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.186 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.313 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.266 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.494 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.401 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.239 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0706 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.187 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.137 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.26 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.254 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.194 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.172 -0.333,0.0495,0.0495,0.25,0,0.233,0,0.421,0.562,0.0159,0,0.176,0.0743 -0.667,0.289,0.289,0.233,0,0.25,0.217,0.14,0.621,0.13,0,0.619,0.0743 -1,0.41,0.41,0,0,0,1,0,0.651,0.198,0,0.638,0.48 -1,0.422,0.422,0,0,0,0.333,0,0.682,0.222,0,0.615,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.437,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.463,0.186 -0.667,0.507,0.507,0.25,0,0,0,0.14,0.714,0.31,0,0.00917,0 -0.667,0.613,0.613,0.233,0,0,0,0.14,0.704,0.432,0.148,0,0.223 -0.667,0.635,0.635,0,0.9,0,0,0.14,0.683,0.532,0.538,0,0.112 -0.667,0.555,0.555,0,0.117,0,0,0.14,0.642,0.505,0,0,0.0743 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0654 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0.483,0,0.233,0,0.281,0.571,0.0316,0,0.411,0 -0.667,0.305,0.305,0,0,0,0.967,0.14,0.611,0.0634,0,0.339,0.32 -0.667,0.318,0.318,0,0,0,0.583,0.14,0.621,0.0764,0,0.106,0.174 -0.333,0.185,0.185,0,0,0.233,0,0.281,0.591,0.0527,0,0.489,0.334 -0.333,0.181,0.181,0,0,0,0.25,0.281,0.591,0.0578,0,0.56,0.0743 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.537,0.149 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.664,0.0743 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.567,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.131,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.343 -0.667,0.326,0.326,0.233,0,0,0,0.14,0.673,0.19,0,0,0.112 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.186 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.149 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.149 -0.333,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.117 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0.483,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.233,0,0.421,0.562,0.0159,0,0.278,0 -0.333,0.181,0.181,0,0,1,0,0.281,0.591,0.0578,0,0.384,0.0372 -0.333,0.175,0.175,0,0,0,0.467,0.281,0.591,0.0629,0,0.339,0 -0.333,0.171,0.171,0,0,0,0.05,0.281,0.591,0.0658,0,0.347,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.174,0.174,0.233,0,0,0,0.281,0.602,0.0846,0,0,0.297 -0.667,0.326,0.326,0.233,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0.15,0,0,0.14,0.714,0.31,0.393,0,0.112 -0.333,0.331,0.331,0,0.35,0,0,0.281,0.633,0.224,0.382,0,0.149 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.125 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0201,0,0,0.301 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.118 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.0858 -0.667,0.185,0.185,0.333,0,0,0,0.281,0.591,0.0803,0,0,0.255 -0.333,0.181,0.181,0.15,0,0,0,0.281,0.591,0.0934,0,0,0.0168 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.224 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.0496 -0.333,0.169,0.169,0.0833,0.233,0,0,0.281,0.591,0.125,0.419,0,0.305 -0.667,0.17,0.17,0.4,0.533,0,0,0.281,0.591,0.141,0.165,0,0.0743 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.112 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.26 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.149 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.176 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.0372 -0.667,0.635,0.635,0.333,0,0,0,0.14,0.683,0.57,0,0,0.112 -0.667,0.555,0.555,0.15,0,0,0,0.14,0.642,0.526,0,0,0.07 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.112 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.171 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.248 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.154 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.279 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.316 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.302 -1,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.248 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.14 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.552 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.112 -0,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.333,0.174,0.174,0.4,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.0372 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.38 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.0897 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.186 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.112 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.272,0,0,0.0743 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.0372 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.149 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.559,0.0184,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.196 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.408 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.193 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.311 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.26 -0.667,0.395,0.395,0.717,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.0372 -0.667,0.613,0.613,0,0,0.233,0,0.14,0.704,0.432,0,0.318,0.0372 -0.667,0.635,0.635,0,0,0.75,0,0.14,0.683,0.532,0,0,0.0372 -0.667,0.555,0.555,0,0,0,0.717,0.14,0.642,0.505,0,0,0.0372 -0.667,0.2,0.2,0,0,0,0.317,0.281,0.581,0.162,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0372 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0983 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.145 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.383 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.614 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.141 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.169 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.272 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -1,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.313 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.131 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.227 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.226 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.219 -1,0.895,0.895,0.967,0,0,0,0,0.774,0.64,0,0,0.309 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0372 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.175 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.713 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0.233,0,0,0,0.281,0.56,0.0157,0,0,0.132 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.28 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.115 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.312,0.312,0.483,0,0,0,0.14,0.621,0.0997,0,0,0.26 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.149 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.19 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.456 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.591,0.0767,0,0,0.148 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.297 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.1 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.278,0.278,0,0.4,0,0,0.281,0.638,0.163,0.599,0,0 -0.333,0.331,0.331,0,0.367,0,0,0.281,0.633,0.224,0.139,0,0.112 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.406 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.312 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.108 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.162 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.249 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.215 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.112 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0.158,0,0 -0.333,0.171,0.171,0,0.9,0,0,0.281,0.591,0.0658,0.473,0,0.223 -0.333,0.169,0.169,0.233,0.117,0,0,0.281,0.591,0.073,0,0,0.112 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.112 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0743 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.279 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.259 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.158 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.313 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.112 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0934 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.232 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.223 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.169,0.169,0.483,0,0,0,0.281,0.591,0.073,0,0,0.112 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0372 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.308 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0372 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.372 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.224,0,0,0.149 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.125 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.223 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.238 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.148 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0.249 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.07 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.0372 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.186 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.149 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.0743 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0743 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.128 -0.333,0.188,0.188,0.333,0,0,0,0.281,0.617,0.162,0,0,0.233 -0.667,0.395,0.395,0.15,0,0,0,0.14,0.704,0.315,0,0,0.511 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.409 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.635,0.635,0,0.233,0.483,0,0.14,0.683,0.57,0.356,0.427,0.372 -1,0.807,0.807,0,0.783,0,0.8,0,0.682,0.78,0.607,0,0.268 -1,0.5,0.5,0,0,0,0.233,0,0.62,0.492,1,0,0.142 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.406,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.0954 -1,0.318,0.318,0,0,0.567,0,0.14,0.621,0.109,0,0.0612,0.1 -0.667,0.321,0.321,0,0,0.167,0.3,0.14,0.621,0.143,0,0,0.168 -0.333,0.181,0.181,0,0,0,1,0.281,0.591,0.0934,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0.25,0.421,0.562,0.0181,0,0,0.186 -0.333,0.171,0.171,0,0,0.0667,0,0.281,0.591,0.108,0,0.0489,0.0372 -0.333,0.169,0.169,0,0,0.417,0.05,0.281,0.591,0.125,0,0.55,0.0372 -0.333,0.17,0.17,0,0,0,0.2,0.281,0.591,0.141,0,0.404,0.195 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0.555,0.312 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.569,0.431 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.609,0.0776 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0.3,0.332 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.283,0.505 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.297 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.0743 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.274 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.111 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0983 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.283 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.126 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.0633 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.297 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.326,0.326,0.5,0,0,0,0.14,0.673,0.19,0,0,0.328 -0.333,0.222,0.222,0.467,0,0,0,0.281,0.633,0.124,0,0,0.0372 -0.333,0.278,0.278,0.75,0,0,0,0.281,0.638,0.163,0,0,0.112 -0.667,0.613,0.613,0.217,0,0,0,0.14,0.704,0.432,0,0,0.297 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0743 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.157 -0.333,0.177,0.177,0.233,0,0,0,0.281,0.586,0.0396,0,0,0.118 -0.333,0.184,0.184,0.717,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0743 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.112 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0743 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.181 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.387 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0372 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0372 -0.333,0.188,0.188,0.483,0,0,0,0.281,0.617,0.103,0,0,0.335 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.0372 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.149 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0372 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.361 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.281,0.56,0.0157,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.28 -0.667,0.318,0.318,0.483,0,0,0,0.14,0.621,0.0764,0,0,0.252 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0531 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0372 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0372 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.223 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0372 -0.667,0.395,0.395,0.483,0,0,0,0.14,0.704,0.232,0,0,0.149 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0743 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.224,0,0,0.112 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.41 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0969 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.319 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.306 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.206 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.372 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.16 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.171 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.463 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.186 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.12 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0.122,0,0.347 -0.667,0.395,0.395,0,0.9,0,0,0.14,0.704,0.232,0.751,0,0.571 -0.667,0.507,0.507,0,0.117,0,0,0.14,0.714,0.31,0.72,0,0.0744 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.475,0,0.0372 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.724,0,0.223 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0.724,0,0 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0.288,0,0.13 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.332 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0855 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.115 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0.233,0,0,0,0.14,0.58,0.0474,0,0,0.266 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.264 -1,0.318,0.318,0,0.15,0,0,0.14,0.621,0.0764,0.419,0,0.0925 -1,0.456,0.456,0,0.35,0,0,0,0.651,0.126,0.57,0,0.096 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.162 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0.117,0,0.186 -0.667,0.289,0.289,0,0.9,0,0,0.14,0.621,0.13,0.577,0,0.186 -0.667,0.29,0.29,0,0.117,0,0,0.14,0.621,0.137,0,0,0.0372 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.149 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.149 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.25 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0738 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.255 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.257 -1,0.35,0.35,0.233,0,0,0,0.14,0.6,0.307,0,0,0.149 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.112 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0.0372 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.038,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.181 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.157 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0.258,0,0 -0.333,0.169,0.169,0,0.983,0,0,0.281,0.591,0.125,0.455,0,0.112 -0.333,0.17,0.17,0.233,0.0333,0,0,0.281,0.591,0.141,0.885,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0.18,0,0.0372 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.0743 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.223 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.149 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.26 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.0372 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.131 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0.427 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.323 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.237 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.127 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.667,0.171,0.171,0.233,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.485 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.19 -1,0.567,0.567,0.333,0,0,0,0,0.774,0.464,0,0,0.186 -0.667,0.507,0.507,0.383,0,0,0,0.14,0.714,0.371,0,0,0.296 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.335 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.0712 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.16 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.016 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0.483,0,0,0,0.281,0.586,0.0396,0,0,0.0832 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.0372 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.112 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.0372 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.186 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0.733,0,0.281,0.602,0.0846,0,0.457,0 -0.667,0.326,0.326,0,0,0,0.467,0.14,0.673,0.19,0,0.445,0.0372 -0.667,0.395,0.395,0,0.4,0,0.05,0.14,0.704,0.232,0.737,0.0352,0.297 -0.667,0.507,0.507,0.233,0.617,0,0,0.14,0.714,0.31,0.777,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.282,0,0.26 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.26 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.118 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0.483,0,0.281,0.56,0.0236,0,0.462,0.17 -1,0.147,0.147,0,0,0,0.717,0.281,0.571,0.0316,0,0.483,0.473 -0.667,0.305,0.305,0,0,0,0.317,0.14,0.611,0.0634,0,0.595,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0.304,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0.347,0.26 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.0372 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.102 -0.667,0.292,0.292,0,0,0.233,0,0.14,0.621,0.116,0,0.488,0.0743 -0.333,0.169,0.169,0,0,0,0.517,0.281,0.591,0.073,0,0.815,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.445,0.26 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.186 -0.667,0.395,0.395,0.233,0.4,0,0,0.14,0.704,0.232,0.473,0,0.166 -0.667,0.278,0.278,0,0.367,0,0,0.281,0.638,0.163,0.0909,0,0.462 -1,0.895,0.895,0,0,0.483,0,0,0.774,0.64,0,0.206,0.419 -1,0.928,0.928,0,0,0,0.717,0,0.744,0.791,0,0,0.314 -1,0.555,0.555,0,0,0,0.05,0.14,0.642,0.505,0,0,0.075 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.119 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0858 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0846 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.0372 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.149 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.112 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.112 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.188 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0743 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.276 -0.667,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.202 -1,0.124,0.124,0,0,0,0,0,0.558,0.0806,0,0,0.181 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.368 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.0648 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.051,0.051,0.483,0,0,0,0.281,0.56,0.0186,0,0,0.318 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.138 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0.233,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0372 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.326,0.326,0.5,0,0,0,0.14,0.673,0.19,0,0,0.327 -0.667,0.395,0.395,0.217,0,0,0,0.14,0.704,0.232,0,0,0.0372 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.0743 -1,0.895,0.895,0.233,0,0,0,0,0.774,0.64,0,0,0.0372 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.149 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.309 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.131 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.0893 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.195 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.0372 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.112 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.149 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0743 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0372 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.26 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.112 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.26 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.0372 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.231 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.195 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.356 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0.333,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.321,0.321,0.15,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.0372 -1,0.426,0.426,0,0,0.233,0,0,0.651,0.268,0,0.479,0.254 -0.333,0.171,0.171,0,0,0,0.517,0.281,0.591,0.108,0,0.312,0.112 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.317,0.372 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.0887,0.223 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.0743 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.223 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.415 -0.333,0.331,0.331,0.233,0,0,0,0.281,0.633,0.252,0,0,0.338 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.326 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.247 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.063 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.44 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.0978 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.0729 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.112 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.149 -1,0.274,0.274,0.467,0,0,0,0.14,0.671,0.308,0,0,0.223 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.112 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.0743 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.26 -1,0.783,0.783,0,0.2,0,0,0,0.741,0.852,0.451,0,0 -1,0.88,0.88,0,0.783,0,0,0,0.679,0.786,0.759,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0.79,0,0.478 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0.618,0,0.236 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.453,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0.5,0,0,0,0.281,0.57,0.0318,0,0,0.158 -1,0.417,0.417,0.2,0,0,0,0,0.633,0.0879,0,0,0.41 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0.167 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.19 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.215 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.159,0.159,0,0,0.25,0,0.281,0.59,0.0735,0,0.401,0.0743 -0.333,0.159,0.159,0,0,0,0.7,0.281,0.59,0.0772,0,0.277,0 -0.333,0.159,0.159,0,0,0,0.783,0.281,0.601,0.0853,0,0.416,0.0651 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0.401,0.227 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0.763,0.104 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0.739,0.329 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.595,0.149 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0.453,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.381 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.534 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.172 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.261 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.199 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.246 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.637 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.297 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0.467,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.112 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.112 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.149 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.134 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.114 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.174 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.254 -0.667,0.295,0.295,0,0,0.233,0,0.14,0.609,0.0639,0,0.242,0.363 -0.667,0.301,0.301,0,0,0.533,0,0.14,0.619,0.077,0,0.546,0.0969 -1,0.424,0.424,0,0,0,0.233,0,0.648,0.127,0,0.159,0.243 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.112 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.186 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0.233,0,0,0,0.281,0.616,0.104,0,0,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.0743 -0.333,0.194,0.194,0,0,0.733,0,0.281,0.637,0.164,0,0.648,0.112 -0.333,0.239,0.239,0,0,0.55,0,0.281,0.631,0.226,0,0.419,0.112 -0.333,0.294,0.294,0,0,0,0.917,0.281,0.621,0.276,0,0.0749,0.339 -0.667,0.603,0.603,0.25,0,0,0.317,0.14,0.64,0.509,0,0,0.234 -1,0.415,0.415,0.45,0,0,0,0.14,0.599,0.31,0,0,0.231 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.172 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.183 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0.0852 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0835 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0864 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.138 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.24 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.164,0.164,0.233,0,0,0,0.281,0.59,0.0633,0,0,0.112 -0.667,0.271,0.271,0.467,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.0932 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.248 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.479 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.517 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.0743 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0645 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.206 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.182 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.149 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0372 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.0372 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.297 -1,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.0372 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.0372 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.149 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.162 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.069,0,0,0.159 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0.428 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.298 -0.333,0.17,0.17,0.467,0,0,0,0.281,0.59,0.0941,0,0,0.149 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.0743 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.297 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0 -0.333,0.162,0.162,0.05,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.17,0.17,0.417,0,0,0,0.281,0.631,0.168,0,0,0.0743 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.223 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.362 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.188 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.432 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.115 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.354 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0.281,0,0.151 -0.667,0.299,0.299,0,0.733,0,0,0.14,0.619,0.144,0.353,0,0.112 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.245 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.248 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.297 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.186 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.0372 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.149 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.631,0.168,0,0,0.223 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.297 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.149 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0 -0.667,0.603,0.603,0,0,0.517,0,0.14,0.64,0.53,0,0.428,0 -0.667,0.415,0.415,0,0,0,0.483,0.14,0.599,0.337,0,0.391,0.0743 -1,0.183,0.183,0,0,0,0.75,0.14,0.568,0.157,0,0.119,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.116 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.102 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.238 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0.5,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0.2,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.631,0.125,0,0,0.149 -0.667,0.339,0.339,0,0.4,0,0,0.14,0.712,0.313,0.562,0,0.385 -0.667,0.429,0.429,0,0.583,0,0,0.14,0.701,0.436,0.226,0,0.283 -0.667,0.538,0.538,0.233,0,0,0,0.14,0.681,0.537,0,0,0.477 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0372 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0659 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.262 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.182 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.0858 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0743 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0372 -0.333,0.16,0.16,0.467,0,0.233,0,0.281,0.59,0.0662,0,0.211,0.112 -0.667,0.269,0.269,0,0,0.0167,0.45,0.14,0.619,0.131,0,0.226,0.112 -0.667,0.268,0.268,0,0,0,0.533,0.14,0.619,0.139,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.223 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.194,0.194,0.7,0,0,0,0.281,0.637,0.164,0,0,0 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.149 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.0743 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.376 -0.667,0.415,0.415,0.5,0,0,0,0.14,0.599,0.31,0,0,0.384 -1,0.116,0.116,0.2,0,0,0,0.281,0.565,0.0765,0,0,0.186 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.22 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.349 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0.45 -1,0.411,0.411,0,0,0,0,0,0.648,0.143,0,0,0.202 -1,0.394,0.394,0.233,0,0,0,0,0.648,0.158,0,0,0.243 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.186 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.112 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.0794 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0372 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.149 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.186 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.186 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.186 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.0372 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -1,0.295,0.295,0.25,0,0,0,0.14,0.609,0.0639,0,0,0.0543 -0.667,0.301,0.301,0.45,0,0,0,0.14,0.619,0.077,0,0,0.168 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0.252 -1,0.411,0.411,0,0,0,0,0,0.648,0.143,0,0,0.117 -1,0.394,0.394,0.233,0.4,0,0,0,0.648,0.158,0.484,0,0.201 -0.667,0.271,0.271,0,0.583,0,0,0.14,0.619,0.117,0.727,0,0.194 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0.338,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.269,0.269,0.467,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.0743 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.484,0.484,0.233,0,0,0,0,0.787,0.461,0,0,0.112 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.186 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.149 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0372 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.357 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.37 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.186 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.252 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.2 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.213 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.297 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.186 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.26 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.297 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.103 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.499 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.204 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.44 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.217 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.178 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0.05,0,0,0,0.281,0.59,0.0641,0,0,0.0788 -1,0.299,0.299,0.183,0,0,0,0.14,0.619,0.144,0,0,0.216 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.292 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.706 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.192 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.197 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.223 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.0743 -0.333,0.17,0.17,0.55,0,0,0,0.281,0.631,0.168,0,0,0.149 -0.333,0.194,0.194,0.383,0,0,0,0.281,0.637,0.196,0,0,0.186 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.112 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.296,0,0,0.112 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.137 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.39 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.251 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.163 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.333 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.26 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.409 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.372 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.0372 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.223 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.106 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.11,0.11,0.233,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.201 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.231 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.0496 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.335 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.112 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.186 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.339,0.339,0.75,0,0,0,0.14,0.712,0.313,0,0,0.149 -0.667,0.429,0.429,0.417,0,0,0,0.14,0.701,0.436,0,0,0.0743 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.0743 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.112 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.194 -1,0.295,0.295,0.2,0,0,0,0.14,0.609,0.0639,0,0,0.339 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0.118 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.149 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.112 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0372 -0.333,0.159,0.159,0,0.4,0,0,0.281,0.59,0.0772,0.506,0,0.0743 -0.333,0.159,0.159,0,0.583,0,0,0.281,0.601,0.0853,0.135,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.147 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.193 -0.333,0.194,0.194,0.467,0,0.733,0,0.281,0.637,0.164,0,0.485,0.0743 -1,0.619,0.619,0,0,0.0333,0.433,0,0.771,0.646,0,0.728,0.149 -0.667,0.538,0.538,0,0,0,0.55,0.14,0.681,0.537,0,0.704,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0.585,0.0743 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0.758,0.299 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0.661,0.0721 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0.791,0.0372 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0.382,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0.511,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.512,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.33,0.33,0.233,0,0,0,0,0.586,0.0637,0,0,0.202 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.351 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.104 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0.096 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.267 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0863 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0.109,0,0.0372 -0.333,0.159,0.159,0,0.733,0,0,0.281,0.59,0.0772,0.362,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.14 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.2 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.273 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.112 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.173 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0983 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0372 -0.333,0.16,0.16,0.467,0,0,0,0.281,0.59,0.0662,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.186 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.199 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.187 -1,0.412,0.412,0,0,0.483,0,0,0.771,0.343,0,0.106,0.377 -0.667,0.339,0.339,0,0,0.0333,0.433,0.14,0.712,0.313,0,0,0.264 -0.667,0.429,0.429,0,0,0,0.3,0.14,0.701,0.436,0,0,0.533 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.682 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.22 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.223 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.112 -0.667,0.164,0.164,0,0.4,0,0,0.281,0.59,0.0633,0.34,0,0.149 -0.667,0.271,0.271,0.467,0.333,0,0,0.14,0.619,0.117,0,0,0.171 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.28 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0788 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.64,0.155,0,0,0.295 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.0743 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.112 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.149 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.186 -0.667,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0.119,0,0.112 -0.667,0.603,0.603,0,0.733,0,0,0.14,0.64,0.509,0.529,0,0.534 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.0166 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.149 -0.667,0.291,0.291,0.233,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.26 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.186 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.0743 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.112 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0.283,0,0.281,0.59,0.0641,0,0.191,0.362 -1,0.299,0.299,0,0,0.233,0.233,0.14,0.619,0.144,0,0.344,0.143 -0.333,0.0495,0.0495,0,0,0,0.5,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.147 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.295 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.164 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.154 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.0743 -0.667,0.291,0.291,0.05,0,0,0,0.14,0.701,0.318,0,0,0.112 -0.667,0.339,0.339,0.417,0,0,0,0.14,0.712,0.374,0,0,0.146 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.223 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.304 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.0372 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.312 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.184 -1,0.0743,0.0743,0,0.4,0,0,0.281,0.56,0.0377,0.614,0,0.0372 -1,0.0578,0.0578,0,0.333,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.226 -0.667,0.143,0.143,0,0,0.733,0,0.281,0.57,0.0318,0,0.593,0.159 -0.667,0.172,0.172,0,0,0.3,0.167,0.281,0.585,0.0399,0,0.796,0 -0.667,0.301,0.301,0,0,0,1,0.14,0.619,0.077,0,0.328,0.0743 -0.667,0.299,0.299,0,0,0,0.317,0.14,0.619,0.0902,0,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.112 -0.333,0.159,0.159,0.233,0,0,0,0.281,0.59,0.0735,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.149 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.186 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.631,0.125,0,0,0.112 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.0372 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.0372 -0.333,0.294,0.294,0,0,0,0,0.281,0.621,0.276,0,0,0.256 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.113 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.226 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0703 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.211 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.2 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0.233,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.112 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.149 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.286 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.155 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.223 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.0743 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.223 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.112 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.226 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.107 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.131 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.309 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.102 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.223 -0.333,0.17,0.17,0.5,0,0,0,0.281,0.59,0.0582,0,0,0.149 -0.333,0.164,0.164,0.2,0,0,0,0.281,0.59,0.0633,0,0,0.223 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.149 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.149 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.149 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0372 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.186 -0.667,0.339,0.339,0.5,0,0,0,0.14,0.712,0.313,0,0,0.112 -0.667,0.429,0.429,0.433,0,0,0,0.14,0.701,0.436,0,0,0.149 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.339 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.127 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.238 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.28 -0.667,0.172,0.172,0.233,0,0,0,0.281,0.585,0.0399,0,0,0.0566 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.106 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.149 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.223 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.169 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.258 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.0528 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.143,0.143,0.467,0,0,0,0.281,0.57,0.0318,0,0,0.149 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0743 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0743 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.266 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.107 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0372 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.112 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.0372 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0.16,0,0 -0.667,0.429,0.429,0,0.9,0,0,0.14,0.701,0.436,0.675,0,0.0743 -0.667,0.538,0.538,0,0.0833,0,0,0.14,0.681,0.537,0,0,0.453 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.483 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.173 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.242 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.101 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.399 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.116 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.0782 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.149 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.149 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.632 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.451 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.0743 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.0372 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.291 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.189 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0.309 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.296 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.091 -1,0.172,0.172,0.3,0,0,0,0.281,0.585,0.0436,0,0,0.186 -1,0.301,0.301,1,0,0,0,0.14,0.619,0.11,0,0,0.167 -0.667,0.299,0.299,0.817,0.45,0,0,0.14,0.619,0.144,0.737,0,0.0372 -0.667,0.291,0.291,0,0.0333,0,0,0.14,0.619,0.17,0.317,0,0.177 -1,0.394,0.394,0,0,0,0,0,0.648,0.27,0,0,0.376 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.611 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.401 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.112 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.418 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.0546 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.26 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.296 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.223 -0.667,0.232,0.232,0,0.45,0,0,0.281,0.58,0.178,0.588,0,0.0372 -1,0.116,0.116,0,0.533,0,0,0.281,0.565,0.0875,0.599,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0.737,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0.167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0.25,0.15,0,0,0.14,0.578,0.0478,0.449,0,0.0372 -0.667,0.172,0.172,0.217,0.583,0,0,0.281,0.585,0.0399,0.657,0,0.0743 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0.442,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0743 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.0372 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.121 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.28 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.231 -0.667,0.27,0.27,0.717,0,0,0,0.14,0.621,0.0997,0,0,0.14 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0.233,0,0,0,0.281,0.591,0.0658,0,0,0.358 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.21 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.298 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.264,0.264,0,0.15,0,0,0.14,0.704,0.232,0.362,0,0.0743 -0.333,0.173,0.173,0,0.567,0,0,0.281,0.638,0.163,0.659,0,0.186 -0.333,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0,0.112 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.126 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.155 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.35 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0624 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.435 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.157 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.375 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.395 -0.667,0.16,0.16,0.467,0.4,0,0,0.281,0.591,0.0578,0.534,0,0.0372 -0.667,0.259,0.259,0,0.317,0,0,0.14,0.621,0.11,0.597,0,0.0743 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0.581,0,0.0743 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.106 -0.667,0.249,0.249,0.467,0,0,0,0.14,0.621,0.137,0,0,0.485 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.134 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.112 -0.667,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.0372 -0.667,0.296,0.296,0.5,0,0,0,0.14,0.714,0.31,0,0,0.284 -0.667,0.365,0.365,1,0,0,0,0.14,0.704,0.432,0,0,0.186 -0.667,0.464,0.464,0.9,0,0,0,0.14,0.683,0.532,0,0,0.26 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0372 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.243 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0753 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.303 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.661 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0507 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.112 -0.333,0.16,0.16,0,0.15,0,0,0.281,0.591,0.0578,0.386,0,0.297 -0.333,0.154,0.154,0,0.567,0,0,0.281,0.591,0.0629,0.319,0,0.223 -0.333,0.15,0.15,0,0,0.25,0,0.281,0.591,0.0658,0,0.167,0.112 -0.333,0.149,0.149,0,0,0,0.733,0.281,0.591,0.073,0,0,0.112 -0.333,0.149,0.149,0.5,0,0,0,0.281,0.591,0.0767,0,0,0.0743 -0.667,0.249,0.249,0.7,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.437 -0.667,0.264,0.264,0.233,0,0,0,0.14,0.704,0.232,0,0,0.208 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.251 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0743 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0743 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.284,0.284,1,0,0.233,0,0.14,0.611,0.0634,0,0.309,0.0969 -1,0.404,0.404,1,0,1,0,0,0.651,0.107,0,0.206,0.537 -0.667,0.278,0.278,0.383,0,0.283,0.183,0.14,0.621,0.0895,0,0.11,0.134 -0.333,0.16,0.16,0.467,0,0,0.8,0.281,0.591,0.0578,0,0,0.297 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0743 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.112 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0743 -1,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.0743 -1,0.252,0.252,0.233,0,0,0,0.14,0.673,0.19,0,0,0.0372 -1,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.247 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0372 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.186 -0.667,0.464,0.464,0.467,0,0,0,0.14,0.683,0.532,0,0,0.0743 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.277 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.248 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0.0832 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.398 -1,0.286,0.286,0.233,0,0,0,0.14,0.621,0.109,0,0,0.184 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.0372 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.0372 -0.333,0.154,0.154,0.233,0,0,0,0.281,0.591,0.101,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.149,0.149,0,0,0.483,0,0.281,0.591,0.141,0,0.339,0.0372 -0.333,0.149,0.149,0,0,0.533,0,0.281,0.602,0.154,0,0,0.112 -0.667,0.252,0.252,0,0,0,0.933,0.14,0.673,0.305,0,0,0.0372 -0.667,0.264,0.264,0,0,0,0.55,0.14,0.704,0.315,0,0,0.149 -0.667,0.296,0.296,0.233,0,0,0,0.14,0.714,0.371,0,0,0.315 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.0743 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.186 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.15 -1,0.249,0.249,0,0,0,0,0,0.573,0.224,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.109 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.163 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.149,0.149,0.233,0,0,0,0.281,0.591,0.141,0,0,0.112 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.112 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.257 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.0372 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.294,0,0,0.26 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0.717,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.087 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.19 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.277 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.229 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.241 -0.333,0.16,0.16,0.467,0,0,0,0.281,0.591,0.0578,0,0,0.252 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0372 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.223 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.186 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0372 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.149 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.0372 -0.333,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.174 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0818 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.548 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.101 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0743 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.149 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.112 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.309 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.268 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.26 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0743 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0743 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.143 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.122 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.38 -1,0.402,0.402,0,0,0,0,0,0.635,0.0871,0,0,0.241 -1,0.404,0.404,0,0,0,0,0,0.651,0.107,0,0,0.234 -1,0.392,0.392,0,0,0,0,0,0.651,0.126,0,0,0.149 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0372 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.223 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.335 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.0743 -0.667,0.296,0.296,0.717,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0372 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.121 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.245 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.431 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0738 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.112 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.195 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.779 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.26 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0372 -0.667,0.464,0.464,0.467,0,0,0,0.14,0.683,0.532,0,0,0.212 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.0743 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.111 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.143 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0.134,0,0.0835 -1,0.0578,0.0578,0,0.9,0,0,0.281,0.56,0.0236,0.751,0,0 -1,0.0495,0.0495,0,0.0667,0,0,0.281,0.56,0.0171,0,0,0.0928 -1,0.0495,0.0495,0.5,0,0,0,0.281,0.56,0.0157,0,0,0.0931 -1,0.0495,0.0495,0.45,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.286,0.286,0.467,0,0,0,0.14,0.621,0.0764,0,0,0.159 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.089 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.149 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.106,0 -0.333,0.149,0.149,0,0,0.5,0,0.281,0.602,0.0846,0,0,0 -1,0.353,0.353,0.467,0,0,0.95,0,0.728,0.277,0,0,0.149 -1,0.371,0.371,0,0.4,0,0.533,0,0.774,0.34,0.516,0.138,0.149 -0.667,0.296,0.296,0,0.0833,0.5,0,0.14,0.714,0.31,0,0.365,0.186 -0.667,0.365,0.365,0,0,0,0.95,0.14,0.704,0.432,0,0.638,0.0743 -1,0.671,0.671,0,0,0,0.0333,0,0.744,0.791,0,0.642,0.45 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0.454,0.186 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.222,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.125 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.0925 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.159 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.333,0.149,0.149,0,0,0.5,0,0.281,0.602,0.154,0,0.739,0 -0.667,0.252,0.252,0,0,0,0.7,0.14,0.673,0.305,0,0.44,0.186 -0.667,0.264,0.264,0,0,0,0.0333,0.14,0.704,0.315,0,0.176,0.112 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0.661,0.26 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0.221,0 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.223 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0837 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.164,0.164,0.217,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.0743 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.304 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.23 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.152 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.299 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.335 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.167,0,0,0.0899 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0,0.42 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.335 -0.667,0.464,0.464,0,0.4,0,0,0.14,0.683,0.57,0.662,0,0.149 -0.667,0.549,0.549,0,0.567,0,0,0.14,0.642,0.526,0.36,0,0.0372 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.0372 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0942 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.07 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.249 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.0639 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.146 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.489 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.149 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0743 -0,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.149 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0.112 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.186 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.127 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.112 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.286 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.596 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.017 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.376 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.315 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.123 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0.4,0,0,0.281,0.591,0.073,0.722,0,0 -0.333,0.149,0.149,0,0.317,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0743 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.442 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.55 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.335 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.172 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.301 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0712 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.176 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.26 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.215 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.183 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.167 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0743 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.255 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.374 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0372 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.107 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0578 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.269 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.216 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.096 -0.333,0.15,0.15,0,0.65,0,0,0.281,0.591,0.0658,0.631,0,0 -0.333,0.149,0.149,0,0.0667,0.233,0,0.281,0.591,0.073,0.514,0.213,0.149 -0.333,0.149,0.149,0,0,0.0167,0.233,0.281,0.591,0.0767,0,0.45,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.494,0.149 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.65,0.149 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0.167,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.186 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0372 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.186 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.186 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.164 -1,0.284,0.284,1,0,0,0,0.14,0.611,0.0634,0,0,0.199 -0.667,0.286,0.286,0.433,0,0,0,0.14,0.621,0.0764,0,0,0.127 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.111 -0.667,0.27,0.27,0.717,0,0,0,0.14,0.621,0.0997,0,0,0.637 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.499 -0.667,0.251,0.251,0.233,0,0,0,0.14,0.621,0.116,0,0,0.442 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.106 -1,0.348,0.348,0,0,0,0,0,0.651,0.198,0,0,0.263 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.363 -0.333,0.151,0.151,0.233,0,0,0,0.281,0.617,0.103,0,0,0.149 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.149 -0.333,0.173,0.173,0,0,0.733,0,0.281,0.638,0.163,0,0.393,0.328 -0.667,0.365,0.365,0,0,0.0167,0.45,0.14,0.704,0.432,0,0,0.112 -1,0.671,0.671,0,0,0,0.783,0,0.744,0.791,0,0,0.0743 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.101 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.107 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.17 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.515 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.212 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.147 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.372 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.157 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.225 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0,0.409 -0.333,0.207,0.207,0,0,0,0,0.281,0.633,0.252,0,0,0.186 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.149 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.105 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.112 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.112 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.0371 -1,0.349,0.349,0,0,0,0,0,0.682,0.427,0,0,0.52 -1,0.353,0.353,0.233,0,0,0,0,0.728,0.449,0,0,0.339 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.243 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.0743 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.458 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.378 -1,0.582,0.582,0.467,0,0,0,0,0.62,0.492,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.149 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.08 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.167,0.167,0.95,0,0,0,0.281,0.586,0.0396,0,0,0.593 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.0372 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0743 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0372 -0.333,0.149,0.149,0.467,0,0,0,0.281,0.591,0.073,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0372 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.223 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.112 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.576 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.0683 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.275 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.139 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.309 -0.333,0.164,0.164,0.233,0,0,0,0.281,0.591,0.0527,0,0,0.256 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0743 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0372 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.112 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.149 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.186 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.281 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0372 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.286 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.166 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.101 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.247 -0.667,0.278,0.278,0.467,0,0,0,0.14,0.621,0.0895,0,0,0.203 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0372 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.0372 -0.667,0.296,0.296,0,0.4,0,0,0.14,0.714,0.31,0.705,0,0.149 -0.667,0.365,0.365,0,0.567,0,0,0.14,0.704,0.432,0.6,0,0.268 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0.276,0,0.112 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.532 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.151 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0,0.233,0,0.281,0.586,0.0396,0,0.379,0 -0.667,0.168,0.168,0,0,0.0167,0.233,0.281,0.591,0.0462,0,0.576,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.199 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.148 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.297 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.211 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.293 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -0.667,0.296,0.296,0.233,0,0,0,0.14,0.714,0.31,0,0,0.196 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.186 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -0.667,0.227,0.227,0,0,0.483,0,0.281,0.581,0.162,0,0.246,0.0372 -1,0.183,0.183,0,0,0.533,0,0.14,0.569,0.136,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0.483,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.75,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.284,0.284,0.45,0,0,0,0.14,0.611,0.0634,0,0,0.157 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.21 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.0372 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0372 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.112 -0.333,0.149,0.149,0,0,0.25,0,0.281,0.591,0.073,0,0.404,0.0372 -0.667,0.249,0.249,0.25,0,0,0.7,0.14,0.621,0.137,0,0.505,0.0372 -0.667,0.249,0.249,0.217,0,0,0.0333,0.14,0.642,0.153,0,0.572,0.112 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.696,0.112 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0.375,0.0372 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0.141,0 -0.333,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0,0.112 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.26 -0.333,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.112 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.89 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.348 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.252,0.252,0,0.65,0,0,0.14,0.673,0.305,0.547,0,0.223 -0.667,0.264,0.264,0,0.317,0,0,0.14,0.704,0.315,0,0,0.388 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0,0.297 -0.333,0.207,0.207,0,0,0,0,0.281,0.633,0.252,0,0,0.335 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.223 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.0372 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.112 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.123 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.181 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.0372 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.0372 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.112 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.306 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.278 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.167,0,0,0.438 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0,0.112 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.26 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.0743 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.0372 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.157 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.146 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.152 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.364 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.446 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.263 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.442 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0372 -0.667,0.252,0.252,0.233,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0.4,0,0,0.14,0.704,0.232,0.64,0,0 -0.667,0.296,0.296,0,0.317,0,0,0.14,0.714,0.31,0.291,0,0.186 -0.333,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0,0.0743 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0372 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.101 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.136 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.28 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.253 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.148 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.2 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.215 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.377 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.388 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.297 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0.149 -0.333,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0,0.111 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.126 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.308 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.343 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0372 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.172 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.242 -0.667,0.286,0.286,0.233,0,0,0,0.14,0.621,0.0764,0,0,0.128 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.386 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.417 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.412 -0.667,0.251,0.251,0.233,0,0,0,0.14,0.621,0.116,0,0,0.149 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.297 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0.0372 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0.0743 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.296,0.296,0.367,0,0,0,0.14,0.714,0.31,0,0,0.186 -0.667,0.365,0.365,0.233,0,0,0,0.14,0.704,0.432,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.112 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.0372 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.149 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.153 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.113 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0.128,0,0.168 -0.333,0.168,0.168,0,0.9,0,0,0.281,0.591,0.0462,0.681,0,0 -0.333,0.164,0.164,0,0.0667,0,0,0.281,0.591,0.0527,0,0,0.112 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.418 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.194 -0.333,0.15,0.15,0.233,0,0,0,0.281,0.591,0.0658,0,0,0.16 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.149,0.149,0.233,0,0,0,0.281,0.602,0.0846,0,0,0.0372 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.0372 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.349 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0372 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.223 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.149 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.226 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.252 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.733,0,0.421,0.562,0.0159,0,0.502,0 -0.667,0.0495,0.0495,0,0,0.0167,0.233,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.164 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0611 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.213,0,0.0372 -0.333,0.153,0.153,0,0.7,0,0,0.421,0.555,0.0593,0.0965,0,0.112 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0743 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.112 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.223 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.112 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.112 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0.147,0,0.223 -0.667,0.328,0.328,0,0.7,0,0,0.807,0.617,0.446,0.432,0,0.0743 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.112 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.333,0.0495,0.0495,0,0.65,0,0,0.421,0.562,0.0159,0.555,0,0.0743 -0.667,0.116,0.116,0,0.283,0,0,0.614,0.533,0.0781,0,0,0.223 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.163,0.163,0.433,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.149 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.167 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0.155 -0.667,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.109 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.195 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.539 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0.355 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.446 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.0372 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.0372 -0.333,0.189,0.189,0.233,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.149 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.334 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.15 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0.115 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.231 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0.112 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.235,0.235,0.25,0,0,0,0.421,0.548,0.24,0,0,0.149 -0.667,0.235,0.235,0.45,0,0,0,0.421,0.548,0.273,0,0,0.112 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.0743 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.112 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.459 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.132 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.0372 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0.144 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.128 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0805 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.084 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0.201 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.145 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.264 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.667,0.163,0.163,0.25,0,0,0,0.421,0.551,0.0406,0,0,0.322 -0.667,0.274,0.274,0.45,0,0,0,0.421,0.548,0.0788,0,0,0.319 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.209 -0,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.149 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.0743 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.0372 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.168 -0.667,0.275,0.275,0,0.65,0,0,0.614,0.564,0.269,0.787,0,0.0743 -1,0.219,0.219,0,0.283,0,0,0.614,0.546,0.167,0.662,0,0.112 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.116 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.374 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0.4,0,0,0.421,0.548,0.0788,0.603,0,0 -0.667,0.263,0.263,0,0.533,0,0,0.421,0.548,0.0923,0.108,0,0.213 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0372 -0.333,0.147,0.147,0.5,0,0,0,0.421,0.555,0.0646,0,0,0.186 -0.333,0.143,0.143,0.2,0,0,0,0.421,0.555,0.0676,0,0,0.186 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.186 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.112 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.112 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.149 -0.667,0.273,0.273,0.467,0,0,0,0.749,0.626,0.32,0,0,0.0743 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.186 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.383 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.529,0.0241,0,0,0.186 -1,0.136,0.136,0.883,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.256,0.256,0.5,0,0,0,0.421,0.548,0.103,0,0.106,0 -0.333,0.147,0.147,0.2,0,0.75,0,0.421,0.555,0.0646,0,0.612,0 -0.333,0.143,0.143,0,0,0,0.7,0.421,0.555,0.0676,0,0.384,0 -0.667,0.235,0.235,0,0,0,0.0167,0.421,0.548,0.134,0,0.373,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.508,0.26 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0.502,0 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0.823,0.186 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0.463,0.223 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.52,0.186 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0.329,0.112 -0.667,0.413,0.413,0.233,0,0,0,0.807,0.6,0.55,0,0,0.0743 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.335 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.319 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.106 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.339 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.214 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0743 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.149 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.186 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.118 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0372 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.112 -0.333,0.148,0.148,0.233,0,0,0,0.421,0.589,0.128,0,0,0.325 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.186 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.199 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.331 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.125 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.0372 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.112 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0743 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0372 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.26 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0372 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0372 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.368 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.41 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.171 -0.667,0.413,0.413,0,0.65,0,0,0.807,0.6,0.55,0.649,0,0.0743 -0.667,0.501,0.501,0.75,0.283,0,0,0.807,0.566,0.521,0,0,0.0372 -0.667,0.219,0.219,0.183,0,0,0,0.614,0.546,0.167,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.0694 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.112 -1,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.26 -0.333,0.144,0.144,0.467,0,0,0,0.421,0.576,0.167,0,0,0.372 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.112 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0.174,0,0.112 -0.667,0.328,0.328,0,0.7,0,0,0.807,0.617,0.501,0.57,0,0.136 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0.779,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0.683,0,0.186 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.385 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.295 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0.0875 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0.127,0 -0,0.0495,0.0495,0,0,0.5,0,0.421,0.562,0.0181,0,0.459,0.0743 -0.333,0.143,0.143,0.233,0,0,0.95,0.421,0.555,0.111,0,0.631,0 -0.333,0.142,0.142,0,0.15,0,0.25,0.421,0.555,0.129,0.443,0.323,0 -0.667,0.235,0.235,0,0.783,0,0,0.421,0.548,0.273,0.111,0,0.287 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.51 -0.667,0.144,0.144,0,0,0.233,0,0.421,0.576,0.167,0,0.237,0.483 -0.667,0.247,0.247,0,0,0.517,0,0.421,0.617,0.326,0,0.44,0.112 -0.667,0.273,0.273,0,0,0,0.95,0.749,0.626,0.383,0,0,0.282 -0.667,0.328,0.328,0,0,0,0.25,0.807,0.617,0.501,0,0,0.249 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.259 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.349 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.071 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.165 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.501 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.18 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.139,0,0.0372 -0.333,0.153,0.153,0,0.7,0,0,0.421,0.555,0.0593,0.685,0,0.0372 -0.333,0.147,0.147,0.7,0,0,0,0.421,0.555,0.0646,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.149 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0372 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.0743 -0.333,0.161,0.161,0,0,0.233,0,0.585,0.594,0.168,0,0.263,0.112 -0.333,0.189,0.189,0,0,0.0167,0.45,0.614,0.589,0.231,0,0.771,0.409 -0.333,0.231,0.231,0,0,0,1,0.614,0.581,0.283,0,0.101,0.47 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.445 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.409 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0.233,0,0.807,0.514,0.0488,0,0.232,0.163 -0.667,0.277,0.277,0,0,0.517,0,0.421,0.54,0.0653,0,0.255,0.274 -0.667,0.274,0.274,0,0.4,0,0.233,0.421,0.548,0.0788,0.506,0,0.124 -0.333,0.156,0.156,0,0.533,0,0,0.421,0.555,0.0541,0,0,0.0372 -0.333,0.153,0.153,0,0.4,0,0,0.421,0.555,0.0593,0.777,0,0.0372 -0.667,0.245,0.245,0,0.3,0,0,0.421,0.548,0.113,0,0,0.0372 -0.667,0.237,0.237,0.5,0,0,0,0.421,0.548,0.119,0,0,0.0743 -0.667,0.235,0.235,0.2,0,0,0,0.421,0.548,0.134,0,0,0.124 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.205,0,0,0.205 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.223 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0743 -0.333,0.148,0.148,0,0,0.233,0,0.421,0.589,0.128,0,0.136,0.409 -0.667,0.273,0.273,0,0,0.767,0,0.749,0.626,0.32,0,0.572,0.0372 -0.667,0.328,0.328,0,0,0,0.7,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0,0,0.267,0.807,0.6,0.55,0,0,0.346 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.149 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.19 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.458 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.143 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.0697 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.23 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.363 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0764 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0.233,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0.467,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0372 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.365 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.301 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.149 -0.667,0.328,0.328,0,0.65,0,0,0.807,0.617,0.446,0.735,0,0.186 -0.667,0.413,0.413,0,0.283,0,0,0.807,0.6,0.55,0,0,0.111 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.0372 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.112 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0.233,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.149 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.0372 -0.333,0.148,0.148,0.5,0,0,0,0.421,0.589,0.128,0,0,0.112 -0.667,0.273,0.273,0.683,0,0,0,0.749,0.626,0.32,0,0,0.112 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.135 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.231 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0372 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.411 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.147 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.135 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.201 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0372 -0.667,0.237,0.237,0.467,0,0,0,0.421,0.548,0.119,0,0,0.297 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.179 -0.667,0.235,0.235,0,0,0.25,0,0.421,0.548,0.142,0,0.269,0.481 -0.667,0.235,0.235,0,0,0.233,0.7,0.421,0.566,0.158,0,0.445,0.316 -0.333,0.144,0.144,0,0,0.0167,0.467,0.421,0.576,0.106,0,0.274,0 -0.333,0.148,0.148,0.233,0,0,1,0.421,0.589,0.128,0,0,0.197 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.328,0.328,0.7,0,0,0,0.807,0.617,0.446,0,0,0.149 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.112 -0.333,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.223 -0.333,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.253 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.274,0.274,0.233,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.23 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.193 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.141 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.112 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.186 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.0372 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.26 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.0743 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.0743 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.26,0,0,0.0743 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0743 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0372 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.148 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0203,0,0,0.233 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0271,0,0,0.463 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0421,0,0,0.165 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0.199 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0.182 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.47 -0.667,0.235,0.235,0,0,0.233,0,0.421,0.548,0.273,0,0.339,0.112 -0.667,0.235,0.235,0,0,0.517,0,0.421,0.566,0.3,0,0.0627,0.112 -0.667,0.238,0.238,0,0,0,0.95,0.421,0.591,0.315,0,0,0.0372 -0.333,0.148,0.148,0,0,0,0.25,0.421,0.589,0.172,0,0,0.0743 -0.667,0.273,0.273,0.25,0,0,0,0.749,0.626,0.383,0,0,0.186 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.223 -0.333,0.231,0.231,1,0,0,0,0.614,0.581,0.303,0,0,0.0372 -0.333,0.275,0.275,0.117,0,0,0,0.614,0.564,0.281,0,0,0 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.121 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.116 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.114 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0.0697 -0.667,0.162,0.162,0.183,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.263,0.263,0,0,0.233,0,0.421,0.548,0.0923,0,0.237,0.11 -0.667,0.256,0.256,0,0,1,0,0.421,0.548,0.103,0,0.335,0.387 -0.333,0.147,0.147,0,0,0.0333,0.433,0.421,0.555,0.0646,0,0,0.149 -0.333,0.143,0.143,0,0,0,0.533,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.246 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.363 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.186 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0372 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0743 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.0372 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0.149 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.0372 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0.25,0,0,0,0.614,0.538,0.0323,0,0,0.189 -0.667,0.163,0.163,0.217,0,0,0,0.421,0.551,0.0406,0,0,0.316 -0.667,0.274,0.274,0.233,0,0,0,0.421,0.548,0.0788,0,0,0.432 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.254 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0905 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.112 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.335 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.149 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0743 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.0743 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.0743 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.23 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0983 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.163 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.126 -0.667,0.245,0.245,0.467,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.112 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.186 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.0372 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.543 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.552 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.223 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.13 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.168 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.0516 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0992 -0.667,0.162,0.162,0.467,0,0,0,0.421,0.555,0.0473,0,0,0.163 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0.106,0,0.0372 -0.667,0.256,0.256,0,0.7,0,0,0.421,0.548,0.103,0.349,0,0.155 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0743 -0.667,0.235,0.235,0,0,0.25,0,0.421,0.548,0.142,0,0.453,0.178 -1,0.328,0.328,0,0,0,0.7,0.421,0.568,0.23,0,0,0 -0.667,0.238,0.238,0,0,0,0.0167,0.421,0.591,0.196,0,0,0.0372 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.186 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.348 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.395 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0372 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.112 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.117 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.483 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0372 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0.15,0,0,0.421,0.555,0.0676,0.451,0,0.0372 -0.667,0.235,0.235,0,0.783,0,0,0.421,0.548,0.134,0.544,0,0.149 -0.333,0.142,0.142,0,0,0.25,0,0.421,0.555,0.0789,0,0.55,0.0372 -0.333,0.142,0.142,0,0,0,0.95,0.421,0.564,0.0871,0,0.659,0.149 -0.333,0.144,0.144,0,0,0,0.0167,0.421,0.576,0.106,0,0.489,0.335 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.167,0.447 -1,0.384,0.384,0.467,0,0,0,0.912,0.658,0.473,0,0,0.0727 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.413,0.413,0,0.4,0,0,0.807,0.6,0.55,0.61,0,0.297 -0.667,0.501,0.501,0,0.0667,0,0,0.807,0.566,0.521,0.722,0,0.0372 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0.579,0,0.3 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.104 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.124 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.116 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.425 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.241 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.223 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.297 -1,0.726,0.726,0.233,0,0,0,1,0.568,0.806,0,0,0.223 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.112 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.165 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0203,0,0,0.124 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0.126 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.162 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.432 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.297 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.265 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.0372 -0.333,0.148,0.148,0.233,0,0,0,0.421,0.589,0.172,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0.161,0,0.186 -0.667,0.328,0.328,0,0.7,0,0,0.807,0.617,0.501,0.566,0,0.0743 -0.333,0.231,0.231,0,0,0,0,0.614,0.581,0.303,0,0,0.0372 -0.333,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0.0743 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.119 -1,0.0768,0.0768,0.467,0,0,0,0.614,0.529,0.0241,0,0,0.0881 -1,0.136,0.136,0.233,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.186 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0372 -0.333,0.142,0.142,0.933,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0743 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.569 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.351 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.319 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.114 -1,0.277,0.277,0.467,0,0,0,0.421,0.54,0.0653,0,0,0.228 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0,0.207 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.513 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.102 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.112 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.112 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.223 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.149 -0.667,0.238,0.238,0.233,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0372 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.149 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0743 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.26 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.112 -0.667,0.116,0.116,0.5,0,0,0,0.614,0.533,0.0781,0,0,0.0743 -1,0.0743,0.0743,0.2,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.264 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0.208 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.153 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.25 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.129 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.223 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0372 -0.333,0.142,0.142,0.25,0,0,0,0.421,0.564,0.0871,0,0,0.0372 -0.667,0.238,0.238,0.217,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.0372 -0.667,0.273,0.273,0.467,0,0,0,0.749,0.626,0.32,0,0,0.186 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.112 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.225 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.09,0,0,0.587 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.339 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.53 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.282 -0.667,0.245,0.245,0.467,0,0,0,0.421,0.548,0.113,0,0,0.134 -0.333,0.143,0.143,0.5,0,0,0,0.421,0.555,0.0676,0,0,0.0671 -0,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0.206 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.148,0.148,0.233,0,0,0,0.421,0.589,0.128,0,0,0.0743 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0.141 -0.667,0.413,0.413,0.233,0,0,0,0.807,0.6,0.55,0,0,0.0372 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0372 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.137 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.108 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.329 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.35 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.71 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.52 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0773 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.405 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.118 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0743 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.149 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.149 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.185 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.149 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.16 -1,0.274,0.274,0.5,0,0,0,0.421,0.548,0.113,0,0,0.178 -0.667,0.263,0.263,0.2,0.15,0,0,0.421,0.548,0.147,0.37,0,0.0372 -0.667,0.256,0.256,0,0.783,0,0,0.421,0.548,0.174,0.476,0,0.0743 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.335 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.0743 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.149 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.26 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.0372 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.0743 -0.667,0.328,0.328,0.233,0,0,0,0.807,0.617,0.501,0,0,0.0372 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0743 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.141 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.102 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.112 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.229 -0.333,0.0495,0.0495,0,0,0.0667,0,0.421,0.562,0.0181,0,0.242,0 -0.333,0.15,0.15,0,0,0.183,0.283,0.421,0.554,0.0964,0,0.537,0.112 -0.333,0.145,0.145,0.233,0,0,0.867,0.421,0.554,0.105,0,0.489,0.112 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0.379,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0.379,0.0372 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0743 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.112 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.0743 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.186 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.0743 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.175 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.339 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.339 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0.25,0,0.421,0.554,0.0678,0,0.222,0.112 -0.333,0.14,0.14,0,0,0,0.917,0.421,0.554,0.0753,0,0.529,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.495,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.784,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0.789,0.0743 -0.667,0.242,0.242,0,0.15,0,0,0.421,0.614,0.24,0.433,0.431,0.387 -0.667,0.268,0.268,0,0.3,0,0,0.749,0.623,0.321,0.494,0.45,0.223 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0.583,0.274,0.0743 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0372 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.0972 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0721 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.336 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0708 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.233,0,0.421,0.562,0.0159,0,0.234,0 -0.667,0.22,0.22,0.483,0,0.283,0.183,0.807,0.512,0.0489,0,0.531,0.0589 -0.667,0.274,0.274,0.217,0,0,0.267,0.421,0.537,0.0655,0.104,0.119,0.132 -0.667,0.27,0.27,0,0.9,0,0,0.421,0.546,0.079,0.712,0,0 -0.333,0.154,0.154,0,0.0167,0,0,0.421,0.554,0.0542,0.818,0,0.0743 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0.792,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0.15,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.112 -0.333,0.146,0.146,0,0.4,0,0,0.421,0.588,0.128,0.631,0,0.112 -0.667,0.268,0.268,0,0.283,0,0,0.749,0.623,0.321,0.635,0,0.0743 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0.629,0,0.0743 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.788,0,0.232 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.62,0,0.149 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0.469,0,0.149 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.398 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.2 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0823 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.426 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.206,0 -0.333,0.154,0.154,0,0,0.517,0,0.421,0.554,0.0542,0,0.266,0 -0.333,0.15,0.15,0,0,0,0.217,0.421,0.554,0.0595,0,0.399,0.0743 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0.385,0.0372 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.531,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0.45,0.0372 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.535,0.219 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.726,0.288 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.474,0.0372 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.335 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.0372 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.0372 -0.667,0.41,0.41,0.233,0,0,0,0.807,0.597,0.552,0,0,0.0372 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.112 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.0762 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0942 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.435 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.371 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.255 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0.204,0,0.211 -0.333,0.141,0.141,0,0.45,0,0,0.421,0.554,0.0678,0.777,0,0.0743 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.112 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.269 -0.333,0.14,0.14,0.233,0,0,0,0.421,0.562,0.0873,0,0,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0743 -0.333,0.146,0.146,0.233,0,0,0,0.421,0.588,0.128,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.297 -0.333,0.187,0.187,0.233,0,0,0,0.614,0.588,0.232,0,0,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.112 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.0743 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.232 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.047 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.182 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.224 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.217 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0372 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.0743 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.149 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.149 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.186 -0.333,0.146,0.146,0.25,0,0,0,0.421,0.588,0.128,0,0,0.0372 -0.667,0.268,0.268,0.217,0,0,0,0.749,0.623,0.321,0,0,0.286 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.393 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0759 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.441 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0.25,0.0333,0.614,0.537,0.0302,0,0.795,0.324 -1,0.274,0.274,0,0,0,0.417,0.421,0.537,0.0708,0,0,0.199 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.673 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.197 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0718 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0.583,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.14,0.14,0.583,0,0,0,0.421,0.562,0.16,0,0,0 -0.667,0.141,0.141,0,0,0.25,0,0.421,0.575,0.167,0,0.131,0 -0.667,0.146,0.146,0,0,0,0.217,0.421,0.588,0.172,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.187,0.187,0,0,0.317,0,0.614,0.588,0.26,0,0.265,0.0743 -0.667,0.41,0.41,0,0,0.2,0.267,0.807,0.597,0.59,0,0,0.149 -0.667,0.496,0.496,0,0,0,0.183,0.807,0.563,0.545,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.186 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.132 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.297 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.233 -1,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0.15,0,0,0,0.614,0.537,0.0302,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.193 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.123 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.141 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.137 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.333,0.146,0.146,0.233,0,0,0,0.421,0.588,0.172,0,0,0.26 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.392 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.296 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.158 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.112 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.315 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0.933,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0,0.483,0,0.421,0.549,0.0407,0,0.303,0 -0.667,0.16,0.16,0.233,0,0.0333,0.433,0.421,0.554,0.0475,0,0,0.0372 -0.667,0.258,0.258,0,0,0,0.483,0.421,0.546,0.0926,0,0,0.297 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.0372 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.0372 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.558 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0.5,0,0,0,0.421,0.588,0.196,0,0,0.0372 -0.667,0.242,0.242,0.433,0,0,0,0.421,0.614,0.24,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.186 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.112 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0743 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.263 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.115 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0.233,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.162 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.283 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.375 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.297 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.14,0.14,0.433,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0743 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0.165,0,0.112 -0.667,0.268,0.268,0,0.683,0,0,0.749,0.623,0.321,0.703,0,0.501 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0.373,0,0.245 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0372 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.156,0,0.223 -1,0.554,0.554,0,0.683,0,0,1,0.512,0.47,0.434,0,0.129 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0.7,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.112 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.205 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.149 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0372 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.223 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.223 -0.333,0.146,0.146,0.233,0,0,0,0.421,0.588,0.128,0,0,0.483 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.0372 -0.333,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.188 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.112 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0.0887 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0.119 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.121 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0743 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.112 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0.25,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0.45,0,0,0,0.421,0.562,0.0873,0,0,0.52 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0372 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.223 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.274 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.108 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.268 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.2 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0.5,0,0,0,0.807,0.512,0.0489,0,0,0.142 -0.333,0.162,0.162,1,0,0,0,0.421,0.549,0.0407,0,0,0 -0,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0.467,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0372 -0.333,0.14,0.14,0,0,0.233,0,0.421,0.562,0.0873,0,0.0795,0.265 -0.667,0.233,0.233,0,0,0.0167,0.45,0.421,0.588,0.196,0,0,0.1 -0.333,0.146,0.146,0.5,0,0,0.933,0.421,0.588,0.128,0,0,0.0743 -0.667,0.268,0.268,0.2,0.4,0,0,0.749,0.623,0.321,0.519,0,0.0372 -0.333,0.187,0.187,0,0.283,0,0,0.614,0.588,0.232,0.209,0,0.26 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0372 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.335 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.263 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.194 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.349 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.0951 -0.333,0.145,0.145,0,0,0.317,0,0.421,0.554,0.105,0,0.11,0.363 -0.333,0.141,0.141,0,0,0.983,0,0.421,0.554,0.111,0,0.304,0 -0.667,0.23,0.23,0,0,0,0.483,0.421,0.546,0.241,0,0.463,0 -0.333,0.14,0.14,0.0833,0,0,0.9,0.421,0.554,0.146,0,0.489,0.186 -0.333,0.14,0.14,0.85,0,0,0,0.421,0.562,0.16,0,0,0 -0.333,0.141,0.141,0.233,0,0,0,0.421,0.575,0.167,0,0,0.223 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.112 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.0743 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.297 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0743 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.0372 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0.317,0,0.421,0.562,0.0181,0,0.297,0 -0.667,0.16,0.16,0,0,0.717,0,0.421,0.554,0.0655,0,0.11,0 -0.333,0.154,0.154,0,0,0,0.75,0.421,0.554,0.0828,0,0,0.0639 -0.667,0.25,0.25,0,0,0,0.633,0.421,0.546,0.175,0,0,0.277 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.123 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.186 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.297 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.112 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.0743 -0.333,0.146,0.146,0.0833,0,0,0,0.421,0.588,0.172,0,0,0.149 -0.667,0.268,0.268,0.15,0,0,0,0.749,0.623,0.384,0,0,0.0372 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.0743 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0372 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.342 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.234 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.25 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0.284 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.0759 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.251 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.173 -1,0.386,0.386,0.467,0,0,0,0.421,0.525,0.0903,0,0,0.434 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.441 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.184 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.176 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.149 -0.667,0.141,0.141,0,0.15,0,0,0.421,0.554,0.0678,0.42,0,0 -0.667,0.14,0.14,0,0.533,0,0,0.421,0.554,0.0753,0.628,0,0.0372 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0.592,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0.811,0,0 -1,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0.703,0,0.0743 -0.667,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.171 -0.667,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.19 -0.667,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0.235 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0327 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.207 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.362 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.223 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.186 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.26 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.149 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.26 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.0372 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.57 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.174 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0.233,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.115 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.17 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.422 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.503 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.34 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.142 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.129 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.186 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.149 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.149 -0.667,0.242,0.242,0.467,0,0,0,0.421,0.614,0.24,0,0,0.149 -0.667,0.268,0.268,0,0.4,0,0,0.749,0.623,0.321,0.707,0,0.409 -0.667,0.324,0.324,0,0.517,0,0,0.807,0.614,0.448,0.56,0,0.0372 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.403 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.232 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.163 -1,0.386,0.386,0,0,0.517,0,0.421,0.525,0.0903,0,0.537,0.363 -0.667,0.27,0.27,0,0,0,0.683,0.421,0.546,0.079,0,0.309,0.116 -0.667,0.258,0.258,0.75,0,0,0.467,0.421,0.546,0.0926,0,0.683,0.277 -0.667,0.25,0.25,0.183,0,0,0,0.421,0.546,0.103,0,0.404,0.0762 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.489,0.0743 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.443,0.0743 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.595,0.0372 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.783,0.372 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.641,0.0743 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.0979,0.213 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.0372 -0.667,0.268,0.268,0.233,0,0,0,0.749,0.623,0.321,0,0,0.0743 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.149 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.186 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.254 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.31 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.175 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.228 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0.233,0,0,0,0.421,0.554,0.0475,0,0,0.112 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.112 -0.667,0.25,0.25,0.933,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.24,0.24,0.233,0,0,0,0.421,0.546,0.114,0,0,0.297 -0.667,0.232,0.232,0.5,0,0,0,0.421,0.546,0.12,0,0,0.112 -0.333,0.14,0.14,0.667,0,0,0,0.421,0.554,0.0753,0,0,0.0372 -0.333,0.14,0.14,0,0,0.233,0,0.421,0.554,0.0791,0,0.419,0 -0.667,0.23,0.23,0,0,0.283,0.183,0.421,0.563,0.159,0,0,0.0743 -0.667,0.233,0.233,0,0,0,0.0333,0.421,0.588,0.196,0,0,0.0372 -0.333,0.146,0.146,0.5,0,0,0,0.421,0.588,0.128,0,0,0.112 -0.667,0.268,0.268,0.9,0,0,0,0.749,0.623,0.321,0,0,0.0743 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0372 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0743 -0.333,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.265 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.105 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.667,0.16,0.16,0.15,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.112 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.223 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.234 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.113 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.0743 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.149 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0372 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.29 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.106 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.196 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.345 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.08 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0881 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0372 -0.667,0.23,0.23,0,0,0.317,0,0.421,0.546,0.241,0,0.229,0 -1,0.32,0.32,0,0,0.467,0,0.421,0.538,0.402,0,0.509,0 -1,0.321,0.321,0,0,0,0.917,0.421,0.563,0.443,0,0.758,0.0372 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.668,0.112 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0.194,0.0743 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.297 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.403 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.112 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.0743 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.127 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.211 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.181 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.229 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0.233,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.26 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.372 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0743 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.26 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0372 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0697 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.264 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.0372 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.112 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0.467,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0.65,0,0,0.421,0.575,0.106,0.51,0,0.112 -0.333,0.146,0.146,0,0.0333,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.181 -0.667,0.324,0.324,0,0,0.517,0,0.807,0.614,0.448,0,0.206,0.335 -0.667,0.41,0.41,0,0,0,0.217,0.807,0.597,0.552,0,0.56,0.223 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.404,0 -1,0.386,0.386,0.233,0,0,0,0.807,0.529,0.318,0,0,0.111 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0372 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0.25,0,0,0,0.614,0.537,0.0324,0.113,0,0 -1,0.274,0.274,0.217,0.683,0,0,0.421,0.537,0.0655,0.794,0,0.171 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0.497 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0549 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.223 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0.517,0,0.421,0.562,0.0159,0,0.59,0 -0.333,0.14,0.14,0,0,0,0.45,0.421,0.562,0.0873,0,0.731,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0.523,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.563,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.186 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.149 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.22 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.284 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.391 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.371 -0.667,0.27,0.27,0,0.4,0,0,0.421,0.546,0.079,0.755,0,0.104 -0.667,0.258,0.258,0,0.283,0,0,0.421,0.546,0.0926,0.547,0,0.0951 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0.176,0,0.0743 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.372 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.223 -0.333,0.14,0.14,0.7,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0743 -0.333,0.141,0.141,0.7,0,0,0,0.421,0.575,0.106,0,0,0.0372 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0.124,0,0.24 -1,0.461,0.461,0,0.683,0,0,1,0.64,0.664,0.8,0,0.213 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.798,0,0.149 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0.13,0,0.0743 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0372 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.07 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.205 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0372 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.112 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.146 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.264 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.186 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.513 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.0837 -0.333,0.23,0.23,0,0,0,0,0.614,0.579,0.284,0,0,0.0931 -0.667,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.359 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0181,0,0,0.135 -0.667,0.258,0.258,0.85,0,0.0667,0,0.421,0.546,0.148,0,0.211,0.238 -0.667,0.25,0.25,0,0,0.183,0.283,0.421,0.546,0.175,0,0.732,0.249 -0.667,0.24,0.24,0,0,0,0.633,0.421,0.546,0.191,0,1,0.24 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0.0505,0.324 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.444 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.228 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.223 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.149 -0.667,0.268,0.268,0.0833,0,0,0,0.749,0.623,0.384,0,0,0 -0.333,0.187,0.187,0.15,0,0,0,0.614,0.588,0.26,0,0,0.0743 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.358 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.0743 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.467,0,0.25,0,0.421,0.562,0.0181,0,0.419,0 -1,0.27,0.27,0.0833,0,0,0.533,0.421,0.546,0.113,0,0.486,0.26 -1,0.362,0.362,0.617,0,0,0.85,0.421,0.538,0.212,0,0,0.204 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0372 -0,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.14,0.14,0.85,0,0,0,0.421,0.554,0.146,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.297 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.335 -0.667,0.268,0.268,0.467,0,0,0,0.749,0.623,0.384,0,0,0.112 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.186 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0743 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.0978 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.355 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.123 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.119 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.147 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.486 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.266 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.193 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.296 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.339 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0372 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.112 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0372 -0.333,0.146,0.146,0,0,0.233,0,0.421,0.588,0.128,0,0.199,0 -0.667,0.268,0.268,0.233,0,0.283,0.183,0.749,0.623,0.321,0.0965,0.596,0.112 -0.667,0.324,0.324,0,0.9,0,0.733,0.807,0.614,0.448,0.716,0.291,0.168 -0.667,0.41,0.41,0,0.0167,0.25,0.2,0.807,0.597,0.552,0,0.682,0.257 -0.667,0.496,0.496,0,0,0,0.25,0.807,0.563,0.523,0,0.234,0.0743 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.277 -1,0.22,0.22,0.233,0,0,0,0.807,0.512,0.0489,0,0,0.102 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0743 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0.25,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0.45,0,0,0,0.421,0.546,0.135,0,0,0.112 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.149 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.0372 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.112 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.0743 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.0372 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0743 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0 -0.667,0.496,0.496,0,0.65,0,0,0.807,0.563,0.523,0.772,0,0.0372 -0.667,0.386,0.386,0,0.0333,0,0,0.807,0.529,0.318,0.117,0,0.34 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.807,0.495,0.0212,0,0,0.167 -0.667,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.222,0.222,0.233,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.277,0.277,0.233,0.4,0,0,0.421,0.537,0.0633,0.74,0,0.112 -0.667,0.274,0.274,0,0.517,0,0,0.421,0.546,0.0764,0,0,0.449 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.327 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0743 -0,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0.95,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0.15,0,0,0.421,0.562,0.0846,0.419,0,0.257 -0.667,0.239,0.239,0,0.3,0,0,0.421,0.588,0.19,0.737,0,0.361 -0.667,0.252,0.252,0,0,0.233,0,0.421,0.614,0.232,0.0603,0.382,0.224 -0.667,0.289,0.289,0,0,0.0167,0.45,0.749,0.623,0.31,0,0.0489,0.112 -0.667,0.362,0.362,0,0,0,0.45,0.807,0.614,0.432,0,0,0.149 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.297 -0.333,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.495,0.0314,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0372 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.124 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.0785 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.187,0,0,0.362 -1,0.327,0.327,0,0,0,0,0.421,0.538,0.198,0,0,0.198 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0372 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0.156,0,0.0372 -0.667,0.252,0.252,0.75,0.683,0,0,0.421,0.614,0.232,0.755,0,0 -0.667,0.289,0.289,0.2,0,0,0,0.749,0.623,0.31,0.683,0,0.26 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.644,0,0.149 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.223 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.112 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0743 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.059,0,0,0 -1,0.066,0.066,0,0,0,0,0.807,0.495,0.0314,0,0,0.127 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0829 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.166 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0314 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0776 -0.667,0.252,0.252,0.233,0.4,0,0,0.421,0.614,0.232,0.701,0,0 -1,0.408,0.408,0,0.517,0,0,0.912,0.653,0.457,0,0,0.102 -0.667,0.362,0.362,0.467,0,0,0,0.807,0.614,0.432,0,0,0.149 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.295 -0.333,0.296,0.296,0,0.65,0,0,0.614,0.562,0.26,0.651,0,0.349 -1,0.397,0.397,0,0.267,0,0,0.807,0.529,0.307,0.202,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0.0372 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0295,0,0,0.112 -1,0.277,0.277,0.717,0,0.233,0,0.421,0.537,0.0684,0,0.459,0.186 -1,0.274,0.274,0.5,0,1,0,0.421,0.546,0.109,0,0.538,0.218 -0.667,0.263,0.263,0.933,0,0.267,0.2,0.421,0.546,0.142,0,0.463,0.0743 -0.667,0.256,0.256,0,0,0,0.0167,0.421,0.546,0.169,0,0.599,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.379,0.413 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0.665,0.26 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0.602,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0.546,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0.532,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0.691,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0.651,0.0372 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.0372 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.251,0,0,0.543 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.141 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.286 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.277,0.277,0.467,0,0,0,0.421,0.537,0.0684,0,0,0.177 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.109,0,0,0.269 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.0963 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.223 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.0372 -1,0.353,0.353,0.5,0,0,0,0.421,0.64,0.464,0,0,0.26 -1,0.408,0.408,0.45,0.15,0,0,0.912,0.653,0.546,0.436,0,0.26 -1,0.518,0.518,0,0.767,0,0,1,0.64,0.718,0.596,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0.573,0.255,0.207 -1,0.788,0.788,0,0,0.983,0,1,0.563,0.779,0.147,0.709,0.225 -1,0.571,0.571,0,0,0.267,0.2,1,0.512,0.492,0,0,0.102 -1,0.116,0.116,0,0,0,0.25,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.0998 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.393 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.149 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.223 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.216 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.17 -0.333,0.142,0.142,0,0.15,0,0,0.421,0.554,0.0766,0.403,0,0.0169 -0.333,0.143,0.143,0,0.767,0,0,0.421,0.562,0.0846,0.204,0,0 -0.333,0.144,0.144,0.25,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,0.217,0.4,0,0,0.421,0.614,0.232,0.622,0,0.223 -0.667,0.289,0.289,0,0.283,0,0,0.749,0.623,0.31,0.688,0,0.0743 -0.333,0.206,0.206,0.467,0,0,0,0.614,0.588,0.224,0,0,0.297 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.112 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0372 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.11 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0.95,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.141,0,0,0 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.157,0,0,0.0372 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.165,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0372 -0.333,0.142,0.142,0,0,0.25,0,0.421,0.554,0.0766,0,0.333,0.26 -0.333,0.143,0.143,0,0,0,0.45,0.421,0.562,0.0846,0,0.428,0.0743 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.719,0.0743 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.528,0.0372 -0.667,0.289,0.289,0.95,0,0,0,0.749,0.623,0.31,0,0,0.0372 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.297 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.513 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.126 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.113 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.146 -0.333,0.0495,0.0495,0,0,0.733,0,0.421,0.562,0.0159,0,0.971,0 -0.667,0.156,0.156,0,0,0.767,0,0.421,0.554,0.0526,0,0.419,0 -0.667,0.153,0.153,0,0,0,0.667,0.421,0.554,0.0577,0,0.317,0.0743 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.0557 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.112 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.0671 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0.165,0,0 -1,0.408,0.408,0,0.9,0,0,0.912,0.653,0.457,0.635,0,0.223 -0.667,0.362,0.362,0,0.0167,0,0,0.807,0.614,0.432,0.38,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.26 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0.233,0,0,0,0.614,0.537,0.0316,0,0,0.158 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.162,0.162,0.233,0,0,0,0.421,0.554,0.0461,0,0,0.16 -0.333,0.156,0.156,0,0,0.483,0,0.421,0.554,0.0526,0,0.165,0.174 -0.333,0.153,0.153,0,0,0.0167,0.45,0.421,0.554,0.0577,0,0.717,0.335 -0.333,0.147,0.147,0,0,0,0.9,0.421,0.554,0.0628,0,0.821,0.186 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0.546,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.265,0.0372 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.841,0.112 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.149 -0.667,0.144,0.144,0.95,0,0,0,0.421,0.575,0.103,0,0,0.335 -0.667,0.252,0.252,0,0,0.25,0,0.421,0.614,0.232,0,0.538,0 -0.667,0.289,0.289,0,0,0,0.95,0.749,0.623,0.31,0,0.581,0.149 -0.667,0.362,0.362,0,0,0,0.633,0.807,0.614,0.432,0,0.538,0.0372 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0.381,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0.573,0 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0.281,0 -0.667,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0881 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.207 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.185 -0.667,0.274,0.274,0.717,0,0,0,0.421,0.546,0.0764,0,0,0.118 -0.667,0.263,0.263,0.233,0,0,0,0.421,0.546,0.0894,0,0,0.36 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0743 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.112 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.326 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0776 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.386 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.174 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.365 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.804 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.372 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.352 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.146 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.169 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.227 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.149 -0.667,0.235,0.235,1,0,0.233,0,0.421,0.546,0.264,0,0.339,0.149 -0.667,0.236,0.236,0.433,0,0.517,0,0.421,0.563,0.29,0,0.485,0 -0.667,0.144,0.144,0,0,0,0.95,0.421,0.575,0.162,0,0.45,0.0743 -0.667,0.252,0.252,0,0,0,0.167,0.421,0.614,0.315,0,0.459,0.0743 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0.185,0.0372 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.149 -0.667,0.256,0.256,0,0.4,0,0,0.614,0.579,0.294,0.638,0,0.0743 -0.667,0.542,0.542,0,0.517,0,0,0.807,0.563,0.525,0.601,0,0.0372 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0.529,0,0.186 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.186 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.0372 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0295,0,0,0 -1,0.163,0.163,0.233,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.155,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.112 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.0372 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.0887,0 -0.333,0.143,0.143,0,0,0.25,0.2,0.421,0.554,0.108,0,0,0.112 -0.667,0.142,0.142,0,0,0,0.7,0.421,0.554,0.125,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.149 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.0372 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.0743 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.0372 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.251,0,0,0.0372 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0.473 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.234 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.293 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.142 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.0907 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.185 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.198 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.236 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.149 -0.667,0.252,0.252,0.233,0,0,0,0.421,0.614,0.232,0,0,0.446 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.149 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.504 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.0372 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.227 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0743 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.667,0.147,0.147,0.233,0,0,0,0.421,0.554,0.0628,0,0,0.149 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.149 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0743 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0743 -0.667,0.143,0.143,0.233,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.112 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0743 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.0372 -0.333,0.206,0.206,0.467,0,0,0,0.614,0.588,0.224,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.128 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.223 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.206 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.0604 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.142 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.268 -0.667,0.252,0.252,0.467,0,0,0,0.421,0.614,0.232,0,0,0.0441 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.286 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0372 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.149 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.337 -1,0.397,0.397,0.233,0,0,0,0.807,0.529,0.307,0,0,0.308 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.016 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0.233,0,0,0,0.614,0.528,0.0236,0,0,0.346 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.0794 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.161 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.121 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.149 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.555 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.281 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.112 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.149 -0.333,0.169,0.169,0.233,0,0,0,0.585,0.592,0.163,0,0,0.0372 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.196 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.601 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0534 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0372 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.142,0.142,0.217,0,0,0,0.421,0.554,0.0766,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0957 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0.161,0,0.112 -0.667,0.289,0.289,0,0.683,0,0,0.749,0.623,0.31,0.614,0,0.112 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.118 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.198 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.105 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.297 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.164 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.23 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.333,0.147,0.147,0.233,0,0,0,0.421,0.554,0.101,0,0,0.141 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.121 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.0743 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.186 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.0743 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.409 -0.333,0.169,0.169,0,0.65,0,0,0.585,0.592,0.194,0.837,0,0.35 -0.667,0.362,0.362,0.717,0.267,0,0,0.807,0.614,0.485,0.111,0,0.458 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.171 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.404 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.26 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.0914 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.669 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.138 -0.667,0.256,0.256,0.467,0,0,0,0.421,0.546,0.169,0,0,0.315 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.26 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.186 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.0743 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.0372 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.107 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.186 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.18 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.102 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.405 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.299 -0.667,0.163,0.163,0.5,0.15,0,0,0.421,0.549,0.0396,0.353,0,0.226 -0.333,0.162,0.162,0.217,0.533,0,0,0.421,0.554,0.0461,0.506,0,0.0743 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0.675,0,0 -0.333,0.153,0.153,0,0,0.25,0,0.421,0.554,0.0577,0.733,0.566,0.0743 -0.333,0.147,0.147,0,0,0,0.45,0.421,0.554,0.0628,0,0.472,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0.343,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.187 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.149 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.0372 -0.333,0.151,0.151,0.233,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.0372 -1,0.518,0.518,0,0.4,0,0,1,0.64,0.64,0.59,0,0.186 -0.667,0.256,0.256,0,0.517,0,0,0.614,0.579,0.274,0.124,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.167,0,0 -1,0.05,0.05,0,0.9,0,0,0.614,0.528,0.0186,0.536,0,0.0881 -1,0.104,0.104,0,0.0167,0.233,0,0.807,0.495,0.0314,0.351,0.304,0.499 -0.667,0.136,0.136,0,0,0.517,0,0.614,0.537,0.0316,0,0.78,0 -1,0.39,0.39,0,0,0,0.95,0.421,0.525,0.087,0,0.697,0.222 -1,0.387,0.387,0,0,0,0.4,0.421,0.538,0.107,0,0.43,0.0906 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.414,0.0776 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.396,0.223 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0.497,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0.558,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.375,0.0743 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.318,0.236 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.7,0.149 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.41,0.0372 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0.709,0.223 -0.667,0.289,0.289,0.467,0,0,0,0.749,0.623,0.31,0,0.687,0.149 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0.19,0.142 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.153 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0743 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.132 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.15 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0372 -0.667,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.26 -0.667,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.372 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.2 -0.667,0.462,0.462,0,0,0.733,0,0.807,0.597,0.532,0,0.128,0.159 -0.667,0.296,0.296,0,0,0.0167,0.45,0.614,0.562,0.26,0,0,0.335 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.223 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.149 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.116 -1,0.222,0.222,0.233,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0743 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0743 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0743 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.223 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.149 -0.667,0.289,0.289,0,0.45,0.483,0,0.749,0.623,0.31,0.77,0.407,0.223 -0.333,0.206,0.206,0,0,0.267,0.2,0.614,0.588,0.224,0.113,0.596,0 -0.333,0.256,0.256,0,0,0,0.467,0.614,0.579,0.274,0,0.324,0.0372 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0.847,0.223 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0.343,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.156,0.156,0.467,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.112 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0743 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.409 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.112 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0.467,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0.141,0,0.159 -0.667,0.289,0.289,0,0.683,0,0,0.749,0.623,0.31,0.675,0,0.0699 -0.667,0.362,0.362,0,0,0.233,0,0.807,0.614,0.432,0,0.242,0.0743 -0.667,0.462,0.462,0,0,0.0167,0.45,0.807,0.597,0.532,0,0.396,0 -0.667,0.542,0.542,0,0,0,0.667,0.807,0.563,0.504,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.197 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.185 -0.667,0.245,0.245,0.233,0,0,0,0.421,0.546,0.184,0,0,0.17 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.667,0.235,0.235,0.75,0,0,0,0.421,0.546,0.264,0,0,0.223 -0.667,0.236,0.236,0.45,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.112 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.41 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.38 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.0743 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.294,0,0,0.202 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.272 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0.233,0,0.421,0.562,0.0181,0,0.206,0 -1,0.277,0.277,0,0,0.267,0.2,0.421,0.537,0.0684,0,0.794,0.0712 -0.667,0.162,0.162,0,0,0,0.917,0.421,0.554,0.0636,0,0.00459,0.104 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.125 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.258 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.29 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.282 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.223 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.251,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.116 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0.186 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.242 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0715 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.0919 -0.667,0.277,0.277,0.467,0,0,0,0.421,0.537,0.0633,0,0,0.209 -0.667,0.274,0.274,0,0.45,0,0,0.421,0.546,0.0764,0.558,0,0.219 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0.672,0,0 -0.667,0.256,0.256,0.5,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,1,0,0,0,0.421,0.546,0.11,0,0,0.0743 -0.333,0.143,0.143,0.417,0,0,0,0.421,0.554,0.0657,0,0,0.149 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0743 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.112 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.149 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.186 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0743 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -0.667,0.397,0.397,0.233,0,0,0,0.807,0.529,0.307,0,0,0.149 -1,0.183,0.183,0,0.45,0,0,0.807,0.503,0.136,0.404,0,0.186 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.153 -1,0.222,0.222,0.233,0,0,0,0.807,0.512,0.0474,0,0,0.201 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.119 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.37 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.151 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0.25,0,0,0,0.421,0.588,0.19,0,0,0.52 -1,0.353,0.353,0.217,0,0,0,0.421,0.64,0.339,0,0,0.149 -0.667,0.289,0.289,0.467,0,0,0,0.749,0.623,0.31,0,0,0.112 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.372 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.149 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.375 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.508 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.0992 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0814 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0.217,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0743 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0372 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0372 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.186 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.112 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0.717,0,0,0,0.421,0.575,0.103,0,0,0.112 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.149 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.186 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0743 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.472 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.496 -0.667,0.136,0.136,0.467,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.0372 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0.233,0,0.421,0.562,0.0159,0,0.303,0 -0.333,0.143,0.143,0,0,0.0167,0.45,0.421,0.554,0.0657,0,0.576,0.186 -0.333,0.142,0.142,0.467,0,0,0.667,0.421,0.554,0.073,0,0.72,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.202,0.207 -0.667,0.236,0.236,0,0,0.25,0,0.421,0.563,0.153,0,0.569,0 -0.667,0.239,0.239,0,0,0,0.45,0.421,0.588,0.19,0,0.416,0 -1,0.353,0.353,0.467,0.4,0,0,0.421,0.64,0.339,0.69,0,0.112 -0.667,0.289,0.289,0,0.517,0,0,0.749,0.623,0.31,0.148,0,0.0372 -0.667,0.362,0.362,0,0.217,0,0,0.807,0.614,0.432,0.583,0,0.223 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.223,0.223,0.233,0,0,0,0.614,0.545,0.161,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.257 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.409 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.252,0.252,0,0.65,0,0,0.421,0.614,0.232,0.536,0,0.149 -1,0.408,0.408,0,0.267,0,0,0.912,0.653,0.457,0.666,0,0.599 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.138 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.239 -0.333,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0721 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.398 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.325 -0.667,0.27,0.27,0.417,0,0,0,0.421,0.548,0.174,0,0,0.485 -0.667,0.259,0.259,0.3,0,0,0,0.421,0.548,0.191,0,0,0.112 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.314 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.175 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.222 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.113 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.372 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.112 -0.667,0.454,0.454,0,0.567,0,0,0.807,0.617,0.501,0.631,0,0.582 -1,0.806,0.806,0,0.367,0,0,1,0.619,0.873,0,0,0.199 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.299 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.0675 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0.0667,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0421,0,0,0.182 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0706,0,0,0.117 -0.667,0.168,0.168,0.233,0,0,0,0.421,0.555,0.0654,0,0.0138,0 -0.667,0.278,0.278,0,0,0.75,0,0.421,0.548,0.147,0,0.748,0.149 -0.667,0.27,0.27,0,0,0,0.45,0.421,0.548,0.174,0,0.425,0.26 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0.687,0.186 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0.416,0.0743 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.436,0.0743 -0.667,0.249,0.249,0.167,0,0,0,0.421,0.548,0.273,0,0.257,0 -0.667,0.251,0.251,0.317,0,0,0,0.421,0.566,0.3,0,0.492,0.26 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.514,0.223 -0.667,0.286,0.286,0.717,0,0,0,0.421,0.617,0.326,0,0.0749,0.0372 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.135 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.214 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.208 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0.169 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.262 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.296 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.0372 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.0864 -1,0.228,0.228,0.483,0,0,0,0.807,0.514,0.0488,0,0,0.0896 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.177 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.413 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.355 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.0372 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.0372 -0.667,0.249,0.249,0,0,0.233,0,0.421,0.548,0.134,0,0.318,0.0743 -0.333,0.149,0.149,0,0,0.267,0.2,0.421,0.555,0.0789,0,0.171,0 -0.667,0.251,0.251,0,0,0.233,0.0167,0.421,0.566,0.158,0,0.234,0.112 -0.667,0.259,0.259,0,0,0.0167,0.45,0.421,0.591,0.196,0,0.696,0.149 -0.667,0.286,0.286,0,0,0,0.467,0.421,0.617,0.239,0,0,0.0743 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.448 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.308 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.283 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.223 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.807,0.497,0.0188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.107,0.107,0.467,0,0,0,0.807,0.497,0.0323,0,0,0.308 -0.667,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.269 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.0697 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.241 -0.667,0.278,0.278,0.483,0,0,0,0.421,0.548,0.0923,0,0,0.104 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.186 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.112 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0743 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0372 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.186 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.112 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.0743 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.186 -1,0.249,0.249,0,0,0,0,1,0.477,0.203,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0.126 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.807,0.497,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.164 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.147 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.221 -0.667,0.164,0.164,0.233,0,0,0,0.421,0.555,0.0541,0,0,0.405 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.196 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.27 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.223 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.545 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.0587 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.149 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.206 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.421 -0.667,0.284,0.284,0,0,0.233,0,0.421,0.54,0.0653,0,0.193,0.0511 -0.333,0.168,0.168,0,0,0.517,0,0.421,0.555,0.0473,0,0.349,0 -0.333,0.164,0.164,0,0,0,0.917,0.421,0.555,0.0541,0,0.379,0.112 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0.642,0.297 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0.541,0.112 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0.497,0.335 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0.781,0.0372 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.216,0.0743 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0.642,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0.485,0.0372 -0.667,0.286,0.286,0.967,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.0372 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0 -0.333,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.0743 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.143 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.38 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.295 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0689 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.156 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.0619 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.271 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.258 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.415 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.26 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.112 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0743 -0.333,0.168,0.168,0.967,0.4,0,0,0.421,0.589,0.128,0.558,0,0.26 -0.667,0.351,0.351,0,0.0667,0,0,0.749,0.626,0.32,0.436,0,0.0743 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0372 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.149 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.112 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.14 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0706,0,0,0.087 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.255 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.154 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.282 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.149,0.149,0.417,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.149,0.149,0.0667,0,0,0,0.421,0.555,0.146,0,0,0.112 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.0743 -0.667,0.154,0.154,0.417,0,0,0,0.421,0.576,0.167,0,0,0.0743 -1,0.404,0.404,0.0667,0,0,0,0.421,0.645,0.479,0,0,0.112 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.372 -1,0.656,0.656,0,0.0667,0,0,1,0.645,0.743,0.26,0,0.141 -0.667,0.554,0.554,0,0.867,0,0,0.807,0.6,0.588,0.495,0,0.0372 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.0743 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.112 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0.0863 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0.0173 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.113 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0706,0,0,0.749 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.261 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.192 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.185 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0,0.461 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.297,0,0,0.249 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.321 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.274 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.421 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.0776 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.104 -0.333,0.2,0.2,0.233,0,0,0,0.585,0.594,0.2,0,0,0.186 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.213 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.0372 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0.467,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.139,0.139,0.5,0,0,0,0.614,0.538,0.0323,0,0,0.149 -0.667,0.167,0.167,0.217,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.104 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.328 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.112 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.186 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.364 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.223 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0372 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.421 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.155 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.228,0.228,1,0,0,0,0.807,0.514,0.0488,0,0,0.137 -1,0.284,0.284,0.65,0,0,0,0.421,0.54,0.0653,0,0,0.206 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.245 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.295 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.259 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.415 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0,0.0495,0.0495,0.233,0,0.233,0,0.421,0.562,0.0159,0,0.42,0.0372 -0.333,0.154,0.154,0.717,0,0.783,0,0.421,0.576,0.106,0,0.517,0 -0.667,0.286,0.286,0,0,0,0.683,0.421,0.617,0.239,0,0.466,0 -0.667,0.351,0.351,0,0,0,0.233,0.749,0.626,0.32,0,0.638,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0372 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.0372 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0372 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0429 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.224 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.0743 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0743 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0.178,0,0.0743 -0.667,0.351,0.351,0,0.7,0,0,0.749,0.626,0.32,0.403,0,0.0372 -0.333,0.252,0.252,0,0.4,0,0,0.614,0.589,0.231,0.746,0,0.186 -0.667,0.554,0.554,0,0.3,0,0,0.807,0.6,0.55,0.106,0,0.112 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.149 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.204 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.231 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.26 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.533 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.368 -0.333,0.164,0.164,0,0.4,0,0,0.421,0.555,0.0541,0.692,0,0.141 -0.333,0.16,0.16,0,0.533,0,0,0.421,0.555,0.0593,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.205 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.273 -0.333,0.149,0.149,0,0,0.233,0,0.421,0.555,0.0751,0,0.272,0.53 -0,0.0495,0.0495,0,0,0.783,0,0.421,0.562,0.0159,0,0.414,0.0372 -0.333,0.15,0.15,0,0,0,0.683,0.421,0.564,0.0871,0,0.436,0 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.576,0.106,0,0,0.0372 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.0372 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.0372 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.372 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.192 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0527 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.106 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0.279 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0.25,0,0,0,0.421,0.555,0.0473,0,0,0.183 -0.667,0.278,0.278,0.233,0,0,0,0.421,0.548,0.0923,0,0,0.0881 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.175 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.228 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.341 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.372 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.576,0.106,0,0,0.0743 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.149 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.234 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0.65,0,0.421,0.555,0.0654,0,0.67,0 -1,0.164,0.164,0,0,0.617,0,0.421,0.555,0.0826,0,0.544,0 -1,0.16,0.16,0,0,0,0.683,0.421,0.555,0.0961,0,0.317,0.0372 -1,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0.164,0.0743 -1,0.251,0.251,0,0,0.25,0,0.421,0.548,0.204,0,0.323,0.223 -0.667,0.149,0.149,0,0,0,0.617,0.421,0.555,0.129,0,0.774,0.378 -1,0.349,0.349,0,0,0,0.767,0.421,0.542,0.401,0,0.361,0.295 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.451 -1,0.363,0.363,0.233,0,0,0,0.421,0.606,0.464,0,0,0.454 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.179 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0,0.128,0.0743 -0.667,0.554,0.554,0,0,0.25,0.117,0.807,0.6,0.588,0,0.549,0.0372 -0.667,0.584,0.584,0,0,0,0.8,0.807,0.566,0.543,0,0.722,0.186 -0.667,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.661,0.0372 -0.667,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0.229,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.258 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.112 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.64 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.479 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.0743 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.0743 -0.333,0.149,0.149,0.167,0,0,0,0.421,0.555,0.146,0,0,0.0743 -0.667,0.251,0.251,0.317,0,0,0,0.421,0.566,0.3,0,0,0.0372 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.186 -0.333,0.2,0.2,0.483,0,0,0,0.585,0.594,0.2,0,0,0.112 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.112 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.297 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.12 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0.344,0.25 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0741 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.0887 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.144 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.101,0 -0.667,0.16,0.16,0,0,0.983,0,0.421,0.555,0.0593,0,0.44,0.262 -0.667,0.154,0.154,0.483,0,0.0333,0.433,0.421,0.555,0.0646,0,0,0.172 -0.667,0.15,0.15,0,0,0,0.0167,0.421,0.555,0.0676,0,0,0 -0.667,0.149,0.149,0,0.15,0,0,0.421,0.555,0.0751,0.417,0,0 -0.667,0.149,0.149,0,0.783,0,0,0.421,0.555,0.0789,0.393,0.295,0.0372 -0.667,0.251,0.251,0,0,0.5,0,0.421,0.566,0.158,0,0.555,0.335 -0.667,0.259,0.259,0,0,0,0.95,0.421,0.591,0.196,0,0.414,0.186 -0.667,0.286,0.286,0,0,0,0.2,0.421,0.617,0.239,0.182,0.509,0.0743 -0.667,0.351,0.351,0,0.7,0,0,0.749,0.626,0.32,0.391,0.361,0.223 -0.667,0.454,0.454,0,0.65,0,0,0.807,0.617,0.446,0.677,0,0 -0.667,0.554,0.554,0.483,0.05,0,0,0.807,0.6,0.55,0,0,0.335 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.0743 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.331 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.223 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.287,0 -0.667,0.15,0.15,0,0,0.75,0,0.421,0.564,0.0871,0,0.0612,0.223 -0.667,0.154,0.154,0,0,0,0.217,0.421,0.576,0.106,0,0,0.149 -0.667,0.168,0.168,0.233,0,0,0,0.421,0.589,0.128,0,0,0.149 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0372 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.324 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.102 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0743 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0372 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0743 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0743 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.0743 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.149 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.0743 -0.333,0.2,0.2,0.483,0,0,0,0.585,0.594,0.168,0,0,0.128 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.229 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.206 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0372 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0934 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0808 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.173 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.109 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.296 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.244 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.286 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.313 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.274 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.437 -0.667,0.15,0.15,0.233,0,0,0,0.421,0.564,0.0871,0,0,0.296 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0743 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.0372 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.319 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.317 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.318 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.112 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.08 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.262 -0.667,0.0781,0.0781,0.25,0,0,0,0.614,0.529,0.0241,0,0,0 -0.333,0.139,0.139,1,0,0,0,0.614,0.538,0.0323,0,0,0 -0,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0.14 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0372 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.152 -0.333,0.15,0.15,0.233,0,0,0,0.421,0.564,0.0871,0,0,0.235 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0743 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.0372 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.112 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0372 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.112 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.112 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0817 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.119 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.186 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.149 -0.333,0.15,0.15,0.417,0,0,0,0.421,0.564,0.159,0,0,0.0743 -0.333,0.154,0.154,0.55,0,0,0,0.421,0.576,0.167,0,0,0.297 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.0743 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.0743 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0,0,0.413 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.372 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.153 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0835 -1,0.139,0.139,0.417,0,0,0,0.614,0.538,0.0301,0,0,0.138 -0.667,0.167,0.167,0.3,0,0,0,0.421,0.551,0.0444,0,0,0.472 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.112 -0.667,0.16,0.16,0.233,0,0,0,0.421,0.555,0.0961,0,0,0.112 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.186 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.0372 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.0372 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.0648 -0.667,0.286,0.286,0.167,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.351,0.351,0.55,0.317,0,0,0.749,0.626,0.383,0.407,0,0.0372 -1,0.454,0.454,0,0.383,0,0,0.807,0.617,0.501,0.231,0,0.149 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.232 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.321 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.152 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0465 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.141 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.132 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.297 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.149 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0.0352,0.26 -0.333,0.149,0.149,0,0,0.75,0,0.421,0.555,0.0789,0,0.503,0 -0.333,0.15,0.15,0,0,0,0.7,0.421,0.564,0.0871,0,0.572,0.186 -0.333,0.154,0.154,0,0,0,0.45,0.421,0.576,0.106,0.113,0.0703,0.0372 -0.333,0.168,0.168,0,0.467,0,0,0.421,0.589,0.128,0.59,0,0.122 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.332 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.0372 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.163 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.214 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.0762 -1,0.0503,0.0503,0.233,0,0,0,0.614,0.529,0.0188,0,0,0.096 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.532 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.253 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.235 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0743 -0.333,0.164,0.164,0,0.15,0,0,0.421,0.555,0.0541,0.363,0,0.409 -0.333,0.16,0.16,0,0.55,0,0,0.421,0.555,0.0593,0.268,0,0.112 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0743 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.23 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.236 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0775 -0.667,0.286,0.286,0.25,0,0,0,0.421,0.617,0.239,0,0,0.0743 -0.667,0.351,0.351,0.95,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0.233,0,0,0,0.807,0.617,0.446,0,0,0.0743 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0372 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0372 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.322 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0942 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.0837 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.168 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.26 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0.25,0,0,0,0.421,0.576,0.106,0,0,0.112 -0.667,0.286,0.286,0.233,0,0,0,0.421,0.617,0.239,0.171,0,0.112 -1,0.501,0.501,0,0.9,0,0,0.912,0.658,0.473,0.811,0,0.203 -0.667,0.454,0.454,0,0.0333,0,0,0.807,0.617,0.446,0.664,0,0.0743 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0.731,0,0.0743 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.247 -0.667,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.125 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.1 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0.483,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.149 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.372 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.555,0.0646,0,0,0.149 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0743 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0372 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0372 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0372 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.166 -0.667,0.286,0.286,0,0.65,0,0,0.421,0.617,0.239,0.414,0,0 -0.667,0.351,0.351,0,0.433,0,0,0.749,0.626,0.32,0.423,0,0 -0.667,0.454,0.454,0,0.783,0,0,0.807,0.617,0.446,0.258,0,0.186 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0372 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.0372 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0604 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.191 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0372 -0.333,0.154,0.154,0,0.65,0.25,0,0.421,0.555,0.0646,0.972,0.317,0.0743 -0.333,0.15,0.15,0,0.283,0,0.683,0.421,0.555,0.0676,0,0.274,0.0372 -0.333,0.149,0.149,0.967,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0743 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.0743 -1,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.43 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.26 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.444 -0.333,0.302,0.302,0,0.15,0,0,0.614,0.581,0.283,0.419,0,0.0814 -0.667,0.584,0.584,0,0.55,0,0,0.807,0.566,0.521,0.124,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0802 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.196 -1,0.284,0.284,0.667,0,0,0,0.421,0.54,0.0706,0,0,0.127 -1,0.286,0.286,0.05,0,0.25,0,0.421,0.548,0.113,0,0.479,0 -0.667,0.278,0.278,0,0,0,0.45,0.421,0.548,0.147,0,0.543,0.112 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0.625,0.0743 -0.667,0.259,0.259,0,0.567,0,0,0.421,0.548,0.191,0.738,0,0.112 -0.667,0.251,0.251,0,0.133,0,0,0.421,0.548,0.204,0.145,0,0.0372 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.186 -1,0.349,0.349,0.233,0,0,0,0.421,0.542,0.401,0,0,0.0743 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.615 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.454,0.454,1,0,0,0,0.807,0.617,0.501,0,0,0 -0.667,0.554,0.554,0.267,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -0.667,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.239 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0508 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.0825 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.444 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.217 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.553 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.196 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.379 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.0743 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.149 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0832 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.124 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.0657,0 -1,0.236,0.236,0.75,0,0.233,0.217,0.14,0.578,0.0433,0,0.709,0.0729 -1,0.295,0.295,0,0,0,0.0167,0.14,0.609,0.0577,0,0.372,0.181 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0.281,0.257 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.0917,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0743 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.186 -0.333,0.159,0.159,0,0.65,0,0,0.281,0.591,0.0669,0.694,0,0 -0.333,0.159,0.159,0,0.333,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.325 -1,0.417,0.417,0,0,0.7,0,0,0.726,0.25,0,0.269,0.384 -1,0.501,0.501,0.25,0,0,0.5,0,0.772,0.307,0,0,0.112 -0.667,0.453,0.453,0,0,0,0.45,0.14,0.712,0.28,0,0,0.186 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.149 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0743 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0743 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.123 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0958 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0496 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.115 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0372 -0.333,0.162,0.162,0.5,0,0,0,0.281,0.601,0.0774,0,0,0.0743 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.0743 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.0372 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.112 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.186 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0743 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.424 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.117 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.158 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.259 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.191 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.283 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.596 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.261 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.176 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.293 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.0372 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.112 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.149 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0372 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.246 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.133 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.157 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.047 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.509 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.355 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.054 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.326 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.226 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.149 -0.333,0.159,0.159,0.75,0,0,0,0.281,0.591,0.0669,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0372 -0.333,0.162,0.162,0.5,0,0,0,0.281,0.601,0.0774,0,0,0.0372 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.26 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0372 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0372 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.18 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.367 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -0.667,0.236,0.236,0.25,0,0,0,0.14,0.578,0.0433,0,0,0.12 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.171 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.112 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.16 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.381 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.303 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.335 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.203,0,0,0.0372 -0.667,0.335,0.335,0.25,0,0,0,0.281,0.621,0.248,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0984 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.223 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.5,0,0.733,0,0.281,0.56,0.02,0,0.344,0 -1,0.0495,0.0495,0,0,0.2,0.267,0.281,0.56,0.0173,0,0.344,0 -1,0.0495,0.0495,0,0,0,0.917,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.22 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0624,0,0,0.376 -1,0.427,0.427,0,0,0,0,0,0.649,0.14,0,0,0.186 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.351 -0.667,0.291,0.291,0.25,0,0.483,0,0.14,0.62,0.153,0,0.344,0.0938 -0.667,0.279,0.279,0,0,0.7,0,0.14,0.62,0.167,0,0.454,0 -0.333,0.16,0.16,0,0,0,0.767,0.281,0.591,0.0986,0,0.466,0.0743 -0.333,0.159,0.159,0,0,0,0.183,0.281,0.591,0.114,0,0.763,0.112 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0.431,0.186 -0.667,0.162,0.162,0.75,0,0,0,0.281,0.601,0.14,0,0.827,0 -1,0.294,0.294,0.5,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.149 -0.667,0.453,0.453,0.25,0,0,0,0.14,0.712,0.335,0,0,0.52 -0.667,0.569,0.569,0.75,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.149 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.112 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.363 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0.128 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0.0496 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0624,0,0,0.16 -1,0.301,0.301,0.5,0,0,0,0.14,0.62,0.0991,0,0,0.385 -1,0.424,0.424,0.25,0,0,0,0,0.649,0.185,0,0,0.346 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.146 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.186 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.149 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.0372 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.0743 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -1,0.905,0.905,0.5,0,0,0,0,0.741,0.763,0,0,0.335 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.245 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0.187 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.0797 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0983 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0.234 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0743 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.26 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0743 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0372 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.112 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.297 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.203,0,0,0.207 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.38 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.112 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.217 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.163 -0.667,0.143,0.143,0.25,0,0,0,0.281,0.57,0.0296,0,0,0.29 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0907 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0.499 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0,0.426 -0.667,0.291,0.291,0.75,0,0,0,0.14,0.62,0.0905,0,0,0.47 -0.333,0.164,0.164,0.75,0,0,0,0.281,0.591,0.0577,0,0,0.249 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0743 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.186 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.0926 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.293 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.403 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.26 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.236 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.286 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0.25,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0.111,0,0.137 -0.333,0.175,0.175,0,0.733,0,0,0.281,0.591,0.0427,0.698,0,0.151 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0.857,0,0.0743 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.116 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.388 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0406 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.439 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.382 -0.333,0.172,0.172,0.5,0,0,0,0.281,0.616,0.0938,0,0,0.136 -0.667,0.35,0.35,0.75,0,0,0,0.14,0.702,0.21,0,0,0.186 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0372 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0743 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.298 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.423 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.0907 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.245 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.149 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.149 -0.333,0.172,0.172,0,0,0.233,0,0.281,0.616,0.0938,0,0.0917,0 -0.333,0.2,0.2,0,0,0.467,0,0.281,0.632,0.113,0,0,0.135 -0.333,0.251,0.251,0,0,0,1,0.281,0.637,0.148,0,0,0.212 -0.333,0.309,0.309,0,0,0,0.183,0.281,0.632,0.203,0,0,0.409 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.149 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.112 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.145 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.124 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0372 -0.333,0.164,0.164,0,0,0.233,0,0.281,0.591,0.0577,0,0.339,0 -0.333,0.16,0.16,0,0,0.7,0,0.281,0.591,0.0604,0,0.63,0 -0.333,0.159,0.159,0,0,0,0.767,0.281,0.591,0.0669,0,0.583,0.186 -0.333,0.159,0.159,0,0,0,0.417,0.281,0.591,0.0702,0,0.693,0.0372 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.44,0.26 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.349,0.26 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.229,0.112 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.26 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0372 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0.0411 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.162 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.169,0,0 -1,0.175,0.175,0.5,0.733,0,0,0.281,0.591,0.0586,0.744,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.192 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.136 -0.667,0.279,0.279,0.5,0,0,0,0.14,0.62,0.167,0,0,0.143 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0986,0,0,0.112 -0,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.101 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.084 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0.186 -0.333,0.309,0.309,0.75,0,0,0,0.281,0.632,0.228,0,0,0.112 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.0372 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.18 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.264 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.105 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.361 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.121 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.347 -0.333,0.17,0.17,0.5,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.269,0.269,0.25,0,0,0,0.14,0.62,0.21,0,0,0.112 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.0743 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.149 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.223 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.0743 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0.0743 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.228,0,0,0.246 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.389 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.488 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.687 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.197 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.5,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.459 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.318 -0.667,0.175,0.175,0,0.4,0,0,0.281,0.591,0.0427,0.635,0,0.0372 -0.667,0.299,0.299,0,0.583,0,0,0.14,0.62,0.0813,0.408,0,0 -0.667,0.291,0.291,0,0.65,0.233,0,0.14,0.62,0.0905,0.635,0.627,0.0743 -1,0.394,0.394,0.75,0.333,0,0.95,0,0.649,0.142,0.221,0.534,0 -1,0.382,0.382,0,0,0,0,0,0.649,0.149,0,0.353,0 -1,0.269,0.269,0,0.15,0,0,0.14,0.62,0.118,0.458,0.246,0 -1,0.269,0.269,0,0.583,0,0,0.14,0.62,0.125,0.124,0,0.105 -0.333,0.162,0.162,0.5,0,0,0,0.281,0.601,0.0774,0,0,0.26 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0372 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.0743 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.149 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0743 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0743 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.397 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.158 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.265 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.135 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.19 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.42 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0624 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.207 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.283 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.0743 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.203,0,0,0.43 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.213 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0.5,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.26 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.186 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.223 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.297 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.0954 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0743 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0372 -0.333,0.2,0.2,0,0,0.233,0,0.281,0.632,0.113,0,0.563,0.0372 -0.667,0.453,0.453,0,0,0,0.7,0.14,0.712,0.28,0,0.0841,0.149 -0.667,0.309,0.309,0,0,0,0,0.281,0.632,0.203,0,0,0.0372 -0.667,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.384 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.216 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.424 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.101 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.75,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.112 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0743 -0.333,0.172,0.172,0.25,0,0,0,0.281,0.616,0.0938,0,0,0.0372 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.0743 -1,0.655,0.655,0.5,0.4,0,0,0,0.788,0.413,0.718,0.133,0.0743 -1,0.829,0.829,0,0.583,0.467,0,0,0.772,0.578,0.605,0.459,0.436 -1,0.905,0.905,0,0,0,0.7,0,0.741,0.713,0.178,0.401,0.201 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.717,0.229 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0.596,0.0743 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0.572,0.149 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0.494,0.0372 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0265,0,0.349,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.02,0,0,0.084 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0.0372 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -0.667,0.172,0.172,0.5,0,0.467,0,0.281,0.585,0.0403,0,0.639,0.26 -1,0.301,0.301,0,0,0,0.467,0.14,0.62,0.0991,0,0.844,0.0743 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0.543,0 -0.333,0.17,0.17,0.25,0,0,0,0.281,0.591,0.0855,0,0.774,0.186 -0.667,0.279,0.279,0.5,0,0,0,0.14,0.62,0.167,0,0.493,0.0372 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0.365,0.409 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.0743 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0,0.0495,0.0495,0,0,0.7,0,0.421,0.562,0.0181,0,0.534,0 -0.333,0.309,0.309,0,0,0,0.233,0.281,0.632,0.228,0,0.361,0 -0.333,0.335,0.335,0.25,0,0,0,0.281,0.621,0.266,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0.2 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.352 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.162 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.268 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.0372 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.223 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.0743 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0.122,0,0.252 -1,0.829,0.829,0,0.733,0,0,0,0.772,0.649,0.557,0,0.307 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.447 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.0743 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0.318 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.289 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0.75,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0743 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.149 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.0372 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.372 -0.667,0.453,0.453,0.25,0,0,0,0.14,0.712,0.28,0,0,0.26 -0.667,0.569,0.569,0.5,0,0,0,0.14,0.702,0.39,0,0,0.186 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0.233,0,0.421,0.562,0.0159,0,0.203,0.0372 -1,0.116,0.116,0,0,0.233,0.233,0.281,0.565,0.0695,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0.95,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0966 -0.667,0.279,0.279,0.25,0,0,0,0.14,0.62,0.0996,0,0,0.254 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.223 -0.333,0.172,0.172,0,0.65,0,0,0.281,0.616,0.0938,0.742,0,0 -0.667,0.35,0.35,0,0.0833,0,0,0.14,0.702,0.21,0.738,0,0.269 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0.677,0,0.418 -0.667,0.569,0.569,0.5,0,0,0,0.14,0.702,0.39,0.72,0,0.149 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.705,0,0 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.335 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.101,0.105 -1,0.301,0.301,0.5,0,0.233,0.217,0.14,0.62,0.0695,0,0,0.258 -1,0.299,0.299,0,0,0,0.0167,0.14,0.62,0.0813,0,0,0.385 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.194 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0.75,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0.75,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.112 -0.667,0.569,0.569,0,0.15,0,0,0.14,0.702,0.39,0.38,0,0.149 -0.667,0.62,0.62,0,0.733,0,0,0.14,0.681,0.481,0.573,0,0.166 -0.667,0.564,0.564,0,0.0833,0,0,0.14,0.64,0.456,0.28,0,0.518 -0.667,0.356,0.356,0.25,0,0,0,0.14,0.599,0.278,0,0,0.24 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.119 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.173 -0.333,0.0495,0.0495,0,0.15,0,0,0.421,0.562,0.0159,0.375,0,0 -0.333,0.174,0.174,0,0.833,0,0,0.281,0.591,0.0486,0.562,0,0.112 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0.679,0,0.297 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0.584,0,0.0743 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0.703,0,0.112 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0.733,0,0.0372 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0.434,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0.635,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0.67,0,0.186 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.186 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0372 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.112 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0372 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.26 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.162 -1,0.236,0.236,0.25,0,0,0,0.14,0.578,0.0433,0,0,0.0837 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0743 -0.667,0.17,0.17,0.5,0,0,0,0.281,0.591,0.0532,0,0,0.26 -0.667,0.279,0.279,0.5,0,0,0,0.14,0.62,0.0996,0,0,0.149 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.112 -1,0.378,0.378,0,0,0,0,0,0.649,0.169,0,0,0.112 -1,0.379,0.379,0,0,0,0,0,0.649,0.179,0,0,0 -1,0.387,0.387,0,0,0,0,0,0.679,0.2,0,0,0.149 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.186 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.186 -0.333,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -0.667,0.0743,0.0743,0.5,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.558,0.0349,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0.25,0,0,0,0.281,0.591,0.0586,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.246 -1,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.118 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.269 -0.333,0.16,0.16,0.25,0,0,0,0.281,0.591,0.0986,0,0,0.211 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.0372 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.155 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.227 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.442 -0.333,0.309,0.309,0,0,0,0,0.281,0.632,0.228,0,0,0.146 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.149 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.149 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0265,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.02,0,0,0.114 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.0905 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.379 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.137 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.333,0.164,0.164,0.75,0,0,0,0.281,0.591,0.0927,0,0,0.112 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.149 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0 -0.333,0.159,0.159,0.75,0,0,0,0.281,0.591,0.129,0,0,0.149 -0.667,0.274,0.274,0.5,0,0.233,0,0.14,0.64,0.263,0,0.225,0.112 -0.667,0.294,0.294,0,0,0,0.467,0.14,0.671,0.276,0,0.55,0 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.285,0,0,0.0372 -0.667,0.453,0.453,0.5,0,0,0,0.14,0.712,0.335,0.147,0,0.0372 -0.667,0.569,0.569,0,0.733,0,0,0.14,0.702,0.438,0.794,0,0.0743 -0.667,0.335,0.335,0,0,0,0,0.281,0.621,0.266,0,0,0.0743 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0.0372 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.129 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.546 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.103 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.0986 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.186 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.349 -0.667,0.279,0.279,0.25,0,0,0,0.14,0.62,0.0996,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0372 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.149 -0.667,0.274,0.274,0,0,0.233,0,0.14,0.64,0.139,0,0.469,0.0743 -1,0.294,0.294,0,0,0,0.7,0.14,0.671,0.172,0,0.378,0.181 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0.502,0.0743 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0.106,0.0372 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.186 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.0372 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.261 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.087 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.383 -0.667,0.279,0.279,0,0.4,0,0,0.14,0.62,0.0996,0.503,0,0.23 -0.333,0.16,0.16,0,0.583,0,0,0.281,0.591,0.0604,0.282,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.0372 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.112 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.223 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0372 -0.667,0.564,0.564,0,0.4,0,0,0.14,0.64,0.456,0.698,0,0.446 -0.667,0.356,0.356,0,0.583,0,0,0.14,0.599,0.278,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.075 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0743 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.196 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.284 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.233 -0.667,0.271,0.271,0,0,0.233,0,0.14,0.62,0.105,0,0.291,0.451 -0.667,0.269,0.269,0,0,0.7,0,0.14,0.62,0.118,0,0.242,0.376 -0.667,0.269,0.269,0.5,0,0,0.767,0.14,0.62,0.125,0,0,0.0788 -0.333,0.162,0.162,0,0,0,0.183,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.372 -1,0.501,0.501,0.25,0,0,0,0,0.772,0.307,0,0,0.0743 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.26 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0743 -1,0.821,0.821,0,0.4,0,0,0,0.679,0.676,0.623,0,0.149 -1,0.356,0.356,0,0.0833,0,0,0.14,0.599,0.278,0.497,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0.818,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0.271,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.0743 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.26 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0.617,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0.75,0,0,0,0.281,0.631,0.112,0,0,0.373 -1,0.946,0.946,0,0.267,0,0,0,0.785,0.409,0.484,0,0.0372 -0.667,0.339,0.339,0,0.517,0,0,0.281,0.631,0.202,0.135,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.263 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.21 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.276 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.175,0.175,0.617,0,0,0,0.281,0.59,0.0574,0,0,0 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.647,0.647,0,0.517,0,0,0.14,0.711,0.278,0.594,0,0 -0.667,0.629,0.629,0,0.533,0,0,0.14,0.7,0.387,0.302,0,0.0372 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.186 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -0.667,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.0888 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0.532 -1,0.177,0.177,1,0,0,0,0.281,0.585,0.04,0,0,0.0963 -0.667,0.184,0.184,0.133,0,0,0,0.281,0.59,0.0582,0,0,0.163 -0.667,0.185,0.185,0.5,0,0,0,0.281,0.59,0.0732,0,0,0.316 -0.333,0.181,0.181,0.0333,0,0,0,0.281,0.59,0.0849,0,0,0.347 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.147 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.335 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.165 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.276 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.112 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.223 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.0743 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0.233,0,0.421,0.562,0.0181,0,0.587,0 -1,0.051,0.051,0,0,0,0.967,0.281,0.559,0.0192,0,0.644,0 -1,0.0816,0.0816,0,0,0,0.0667,0.281,0.559,0.0212,0,0.569,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0.434,0.137 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0.584,0.107 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0.437,0.233 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0.72,0.235 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.218 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.0372 -0.667,0.171,0.171,0.267,0,0,0,0.281,0.59,0.0979,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.251 -1,0.421,0.421,0,0,0,0,0,0.647,0.347,0,0,0.112 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.168 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.592 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.179 -0.333,0.348,0.348,0.267,0,0,0,0.281,0.636,0.175,0,0,0.186 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.227,0,0,0 -0.333,0.282,0.282,0,0.25,0,0,0.281,0.621,0.264,0.844,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0.301,0,0.297 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.273 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.225 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.0663 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.184,0.184,0,0,0.35,0,0.281,0.59,0.0424,0,0.303,0.112 -1,0.321,0.321,0,0,0.583,0,0.14,0.618,0.0807,0,0.887,0 -1,0.312,0.312,0,0,0,0.883,0.14,0.618,0.0898,0,0.644,0 -0.667,0.175,0.175,0,0,0,0.15,0.281,0.59,0.0574,0,0.528,0.112 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0.624,0.223 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.402,0 -0.667,0.173,0.173,0,0.267,0,0,0.281,0.59,0.0697,0.44,0,0.15 -0.667,0.338,0.338,0,0.517,0,0,0.14,0.639,0.138,0.527,0,0.0747 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0.267,0,0,0,0.14,0.7,0.208,0,0,0.112 -0.667,0.647,0.647,0.367,0.25,0,0,0.14,0.711,0.278,0.649,0.0489,0.0743 -0.667,0.629,0.629,0.167,0,0.467,0,0.14,0.7,0.387,0,0.234,0 -0.667,0.515,0.515,0,0,0,0.85,0.14,0.68,0.477,0,0,0.149 -0.667,0.394,0.394,0,0,0,0.7,0.14,0.639,0.452,0,0,0.0743 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0785 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.0138,0 -0.333,0.0495,0.0495,0,0,0.233,0.0833,0.421,0.562,0.0159,0,0.454,0 -0.333,0.185,0.185,0,0,0,0.95,0.281,0.59,0.0483,0,0.434,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.401,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0.446,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0.289,0.191 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.0743 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0372 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0372 -0.333,0.237,0.237,0,0.0167,0,0,0.281,0.616,0.0931,0.263,0,0.297 -0.333,0.301,0.301,0,0.767,0,0,0.281,0.631,0.112,0.579,0,0.0743 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.0743 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0.483 -0.333,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.112 -0.333,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.105 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.229 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.163 -1,0.0816,0.0816,0,0,0.233,0,0.281,0.559,0.0223,0,0.445,0.0814 -1,0.245,0.245,0,0,0,0.583,0.14,0.577,0.043,0,0,0.108 -1,0.177,0.177,0,0,0,0.7,0.281,0.585,0.0366,0,0,0.118 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0743 -0.333,0.185,0.185,0.117,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0.7,0,0,0,0.281,0.59,0.0528,0,0,0.223 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0743 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0372 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0743 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.139 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.341 -1,0.804,0.804,0.267,0.0167,0,0,0,0.77,0.304,0.243,0,0.248 -0.333,0.348,0.348,0,0.233,0,0,0.281,0.636,0.147,0.291,0,0.112 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.223 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0372 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.281 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0323 -1,0.0816,0.0816,0.367,0,0,0,0.281,0.559,0.0223,0,0,0.147 -1,0.245,0.245,0.167,0,0,0,0.14,0.577,0.043,0,0,0.0712 -0.667,0.177,0.177,0.117,0,0,0,0.281,0.585,0.0366,0,0,0.131 -0.333,0.184,0.184,0.7,0.267,0.233,0,0.281,0.59,0.0424,0.447,0.316,0.153 -0.333,0.185,0.185,0,0.783,0,0.583,0.281,0.59,0.0483,0.236,0.18,0.0372 -0.333,0.181,0.181,0,0,0,0.967,0.281,0.59,0.0528,0,0,0.186 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0372 -0.333,0.171,0.171,0,0.0167,0,0,0.281,0.59,0.06,0.36,0,0.223 -0.333,0.169,0.169,0,0.5,0,0,0.281,0.59,0.0665,0.892,0,0.0743 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0372 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.27 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.147 -0.667,0.647,0.647,0.533,0,0,0,0.14,0.711,0.278,0,0,1 -0.667,0.629,0.629,0,0.517,0,0,0.14,0.7,0.387,0.718,0,0.236 -0.667,0.515,0.515,0,0.533,0,0,0.14,0.68,0.477,0.171,0,0.166 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.137 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.17 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.109 -1,0.177,0.177,0,0,0.233,0,0.281,0.585,0.0366,0,0.291,0 -1,0.184,0.184,0,0,0,0.25,0.281,0.59,0.0424,0,0,0.0743 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0743 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.112 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.055,0 -0.333,0.348,0.348,0,0,0.467,0,0.281,0.636,0.147,0,0.332,0.149 -0.333,0.339,0.339,0,0,0,0.85,0.281,0.631,0.202,0,0,0.186 -0.333,0.282,0.282,0,0,0,0.433,0.281,0.621,0.246,0,0,0.149 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0743 -0.667,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0619 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0.223 -1,0.177,0.177,0.583,0,0,0,0.281,0.585,0.04,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.174 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.179 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.429 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.264 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0.4,0,0,0.421,0.562,0.0181,0.584,0,0.0743 -0.333,0.194,0.194,0,0.383,0,0,0.281,0.6,0.139,0.113,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.15,0,0,0.0372 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.149 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.186 -0.333,0.282,0.282,0,0,0,0,0.281,0.621,0.264,0,0,0.129 -0.333,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0,0,0.149 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.169 -0.667,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0539 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.161 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.119 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.0864 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.263 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.262 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.112 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.297 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.177 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.15,0,0,0.0887 -0.667,0.647,0.647,0.25,0,0,0,0.14,0.711,0.332,0,0,0.169 -0.667,0.629,0.629,0.567,0,0,0,0.14,0.7,0.435,0,0,0.174 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.279 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.0743 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.335 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.163 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.0922 -0.667,0.184,0.184,0.117,0,0,0,0.281,0.59,0.0424,0,0,0.184 -0.667,0.321,0.321,0.15,0,0,0,0.14,0.618,0.0807,0,0,0.0743 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0372 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.558 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.0372 -0.667,0.173,0.173,0,0,0.233,0,0.281,0.59,0.0697,0,0.00917,0.0372 -0.667,0.194,0.194,0,0,0,0.583,0.281,0.6,0.0769,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0.183,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.112 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.446 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.533,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.305,0.305,0,0.267,0,0,0.14,0.608,0.0573,0.343,0,0.18 -1,0.452,0.452,0,0.517,0,0,0,0.647,0.0955,0.26,0,0.0662 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.149 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0829 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.0743 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.335 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.223 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.222 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.173 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.134 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0743 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.244 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.253 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.223 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0372 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.186 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0.117,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0.417,0,0,0,0.281,0.616,0.0931,0,0,0.0372 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.297 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.149 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.23 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.489 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.257 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.468 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0896 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.189 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0691 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.244 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.494 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.492 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.112 -1,0.421,0.421,0,0,0,0,0,0.647,0.177,0,0,0.186 -0.667,0.338,0.338,0.267,0,0,0,0.14,0.639,0.138,0,0,0.112 -0.667,0.425,0.425,0,0,0.233,0,0.14,0.67,0.17,0,0.44,0.112 -0.667,0.553,0.553,0,0,0,0.833,0.14,0.7,0.208,0,0.599,0.112 -0.667,0.647,0.647,0,0,0,0.717,0.14,0.711,0.278,0,0.466,0.112 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0.43,0.333 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0.407,0 -0.667,0.394,0.394,0,0,0.233,0,0.14,0.639,0.452,0,0.356,0.244 -1,0.493,0.493,0,0,0,0.833,0,0.616,0.405,0,0.563,0.08 -1,0.249,0.249,0,0,0,0.2,0,0.57,0.175,0,0.538,0.0978 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0534,0,0,0.227 -1,0.066,0.066,0,0,0,0,0.14,0.557,0.0287,0,0,0.118 -1,0.0495,0.0495,0,0,0,0,0.14,0.557,0.017,0,0,0.121 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.204 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.21 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.172 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.16 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.258 -0.667,0.3,0.3,0.967,0.0167,0,0,0.14,0.618,0.0989,0.321,0,0.104 -0.667,0.292,0.292,0,0.767,0,0,0.14,0.618,0.104,0.612,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.186 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.149 -0.333,0.237,0.237,0.117,0,0,0,0.281,0.616,0.0931,0,0,0.149 -0.333,0.301,0.301,0.7,0,0,0,0.281,0.631,0.112,0,0,0.149 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.0743 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.104 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.207 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.372 -0.667,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.25 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0.314 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.0986 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.253 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.203 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.195 -0.667,0.171,0.171,0.267,0,0,0,0.281,0.59,0.0979,0,0,0.119 -1,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.225 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.195 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.149 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.186 -1,0.553,0.553,0,0.4,0.233,0,0.14,0.7,0.283,0.577,0.462,0.394 -0.667,0.647,0.647,0,0.383,0.467,0,0.14,0.711,0.332,0.338,0.206,0.0743 -0.667,0.629,0.629,0,0,0,0.25,0.14,0.7,0.435,0,0,0.0372 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.264,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.201 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.118 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.147 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.427 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.0817 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.0743 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.333,0.0495,0.0495,0.533,0,0,0,0.421,0.562,0.0181,0,0,0.372 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.15,0,0,0.335 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.175,0,0,0 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.227,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.0743 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0,0,0.223 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.0372 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.13 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.313 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0344 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.12 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.186 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0372 -0.667,0.171,0.171,0.617,0,0,0,0.281,0.59,0.06,0,0,0.384 -0.333,0.169,0.169,0.2,0,0,0,0.281,0.59,0.0665,0,0,0.127 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0.117,0,0,0,0.14,0.639,0.138,0,0,0.0743 -0.667,0.425,0.425,0.417,0,0,0,0.14,0.67,0.17,0,0,0.0743 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0.223 -0.333,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.188 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.218 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.106 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0.167,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.186 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.26 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.0684 -0.667,0.553,0.553,0.117,0,0,0,0.14,0.7,0.208,0,0,0.18 -0.667,0.647,0.647,0.15,0.267,0,0,0.14,0.711,0.278,0.479,0,0.112 -0.667,0.629,0.629,0,0.783,0,0,0.14,0.7,0.387,0.623,0,0.149 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0.44,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0.751,0,0.112 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0.712,0,0.0743 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0.315,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0.517,0,0,0.281,0.59,0.0528,0.571,0,0.0743 -0.333,0.175,0.175,0,0.267,0,0,0.281,0.59,0.0574,0.0983,0,0.26 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.335 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0372 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0372 -0.333,0.237,0.237,0.267,0,0,0,0.281,0.616,0.0931,0,0,0.186 -0.333,0.301,0.301,0.617,0,0.6,0,0.281,0.631,0.112,0,0.616,0.0372 -0.667,0.647,0.647,1,0,0.567,0,0.14,0.711,0.278,0,0.274,0.149 -0.667,0.629,0.629,1,0,0,0.9,0.14,0.7,0.387,0,0,0 -0.333,0.282,0.282,0.4,0,0,0.383,0.281,0.621,0.246,0,0,0.186 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0743 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.333,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0.15,0,0,0,0.281,0.585,0.0366,0,0,0.0372 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0.0528,0.0372 -0.333,0.185,0.185,0,0,0.467,0,0.281,0.59,0.0483,0,0.565,0.142 -0.333,0.181,0.181,0,0,0,0.85,0.281,0.59,0.0528,0,0.636,0 -0.333,0.175,0.175,0,0,0,0.95,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.239 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0.367,0,0,0,0.281,0.631,0.112,0,0,0.0372 -0.333,0.348,0.348,0.167,0,0,0,0.281,0.636,0.147,0,0,0 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.372 -1,0.566,0.566,0,0,0.233,0,0,0.677,0.671,0,0.286,0.112 -1,0.345,0.345,0,0.0167,0,0.583,0.14,0.598,0.276,0.223,0.63,0.0372 -1,0.116,0.116,0,0.767,0,0.883,0.281,0.564,0.0691,0.456,0,0.0743 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0.533,0,0,0,0.281,0.559,0.0164,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0.117,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.185,0.185,0.15,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.171 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.322 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.409 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.149 -0.333,0.237,0.237,0.267,0,0,0,0.281,0.616,0.0931,0,0,0.26 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.242 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.551 -0.667,0.629,0.629,0.117,0,0,0,0.14,0.7,0.387,0,0,0.112 -0.667,0.515,0.515,0.417,0,0,0,0.14,0.68,0.477,0,0,0.0372 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.112 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0372 -1,0.116,0.116,0,0,0,0.0833,0.281,0.564,0.0691,0,0,0.266 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0.0983,0,0 -1,0.177,0.177,1,0.9,0,0,0.281,0.585,0.04,0.66,0,0 -0.667,0.184,0.184,0.133,0.15,0,0,0.281,0.59,0.0582,0.575,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0.731,0,0.0928 -0.667,0.181,0.181,0.5,0,0,0,0.281,0.59,0.0849,0,0,0.283 -0.667,0.3,0.3,0.0333,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.0372 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.0743 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.0743 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.372 -0.667,0.553,0.553,0,0,0.233,0,0.14,0.7,0.283,0,0.138,0.112 -0.667,0.647,0.647,0,0,0,0.467,0.14,0.711,0.332,0,0.411,0.149 -0.667,0.629,0.629,0,0,0,0.817,0.14,0.7,0.435,0,0.63,0.149 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0.131,0.256 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0,0,0 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.0746 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.149 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.173,0.173,0.533,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.0372 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.488 -0.667,0.301,0.301,0.25,0,0,0,0.281,0.631,0.15,0,0,0.532 -1,0.647,0.647,0.0167,0,0,0,0.14,0.711,0.332,0,0,0.267 -1,0.919,0.919,0,0,0.483,0,0,0.77,0.643,0,0.479,0 -1,0.747,0.747,0,0,0.217,0.25,0,0.739,0.756,0,0,0.112 -1,0.566,0.566,0,0,0,0.267,0,0.677,0.698,0,0,0.26 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0.617,0,0,0,0.281,0.559,0.0223,0,0,0.147 -1,0.245,0.245,0.2,0,0,0,0.14,0.577,0.043,0,0,0.0601 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0743 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0743 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.352 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0372 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0.117,0,0,0,0.14,0.618,0.117,0,0,0.0743 -1,0.297,0.297,0.15,0,0,0,0.14,0.618,0.124,0,0,0.0372 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.26 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.0743 -0.667,0.348,0.348,0,0.0167,0,0,0.281,0.636,0.147,0.321,0,0.112 -0.667,0.339,0.339,0,1,0,0,0.281,0.631,0.202,0.516,0,0.0372 -0.333,0.0495,0.0495,0,0.0333,0,0,0.421,0.562,0.0159,0,0,0.451 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.203 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0.117,0,0,0,0.14,0.577,0.043,0,0,0.225 -1,0.433,0.433,0.267,0,0,0,0,0.631,0.078,0,0,0.286 -0.333,0.184,0.184,0.15,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0.35,0,0.281,0.59,0.0483,0,0.396,0.0372 -0.333,0.181,0.181,0,0,0.583,0,0.281,0.59,0.0528,0,0.474,0.149 -0.333,0.175,0.175,0,0,0,0.25,0.281,0.59,0.0574,0,0.677,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0.543,0.372 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.568,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.508,0 -0.667,0.338,0.338,0.267,0,0,0,0.14,0.639,0.138,0,0.213,0.0372 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.551,0.186 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.542,0.149 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0.581,0.186 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0.537,0 -0.333,0.282,0.282,0.617,0,0,0,0.281,0.621,0.246,0,0.673,0.0372 -0.333,0.222,0.222,1,0,0,0,0.281,0.6,0.234,0,0.365,0.152 -0.667,0.197,0.197,0.3,0,0,0,0.281,0.58,0.146,0,0.11,0.0372 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.189 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0893 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.0372 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0372 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.397 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.251 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.223 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.223 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.112 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.112 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.0372 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.112 -0.667,0.629,0.629,0,0,0.1,0,0.14,0.7,0.387,0,0.171,0 -0.667,0.515,0.515,0,0,0.367,0.1,0.14,0.68,0.477,0,0.22,0.0372 -0.667,0.394,0.394,0,0,0,1,0.14,0.639,0.452,0,0,0 -0.667,0.0495,0.0495,0,0,0,0.45,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.318,0.318,0.417,0,0,0,0.14,0.618,0.069,0,0,0.109 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0372 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0372 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.112 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.149 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.0372 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.142 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.374 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.305,0.305,0.7,0.517,0,0,0.14,0.608,0.0573,0.646,0,0.143 -0.667,0.318,0.318,0,0.533,0,0,0.14,0.618,0.069,0,0,0.293 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.186 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.26 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.194,0.194,0.267,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.333,0.301,0.301,0.267,0,0,0,0.281,0.631,0.112,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.149 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.186 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.1 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.201 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.177 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.363 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.2 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.297 -0.333,0.253,0.253,0.267,0,0,0,0.281,0.679,0.189,0,0,0.0372 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.297 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.149 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.402 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.0372 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.188 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.137 -0.333,0.253,0.253,0,0,0.483,0,0.281,0.679,0.189,0,0.335,0 -0.333,0.323,0.323,0,0,0,0.467,0.281,0.699,0.195,0,0.572,0.0372 -0.333,0.366,0.366,0,0,0,1,0.281,0.705,0.228,0,0.94,0.112 -0.333,0.344,0.344,0,0,0,1,0.281,0.699,0.296,0,0.534,0 -0.333,0.277,0.277,0,0,0,0.567,0.281,0.686,0.345,0,0.26,0.112 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.089 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.0907 -1,0.313,0.313,0,0.4,0,0,0.14,0.719,0.074,0.523,0,0.18 -0.667,0.33,0.33,0,0.683,0,0,0.14,0.732,0.0895,0,0,0.346 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.0616 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.288 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.3 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.269 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0455 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.355 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.346 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.213 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.0372 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.335 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.457,0.457,0.5,0,0,0,0.14,0.797,0.224,0,0,0.135 -1,0.869,0.869,0.583,0,0,0,0,0.973,0.402,0,0,0.183 -1,1,1,0.3,0,0,0,0,0.993,0.541,0,0,0.112 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.372 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.149 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.186 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.149 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.12 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.0414 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.248 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.125 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.112 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.186 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.333,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.683,0.683,0.4,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.207 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.186 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.112 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.181 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.0823 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.253 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.168 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.105 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.182,0.182,0.5,0,0,0,0.281,0.647,0.0888,0,0,0.0743 -0.333,0.204,0.204,0.05,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,1,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.596,0.596,1,0,0,0,0.14,0.836,0.273,0,0,0.112 -0.667,0.683,0.683,0.817,0,0,0,0.14,0.849,0.366,0,0,0.298 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.111 -0.667,0.504,0.504,0,0.4,0,0,0.14,0.81,0.629,0.43,0,0.623 -1,0.218,0.218,0,0.417,0,0,0.281,0.66,0.306,0.258,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.156 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.289 -0.667,0.19,0.19,0.267,0,0,0,0.281,0.647,0.0527,0,0,0.185 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.235 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0.15,0,0.35 -0.333,0.183,0.183,0,0.9,0,0,0.281,0.647,0.0724,0.562,0,0.149 -0.333,0.178,0.178,0,0.183,0.733,0,0.281,0.647,0.0759,0.839,0.394,0 -0.333,0.177,0.177,0,0,0,0.467,0.281,0.647,0.0845,0,0.794,0.112 -0.333,0.182,0.182,0,0,0,1,0.281,0.647,0.0888,0,0.22,0.112 -0.667,0.359,0.359,0,0,0,0.183,0.14,0.758,0.181,0,0.471,0.0372 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.375,0.0372 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0.471,0.0743 -0.667,0.683,0.683,0.267,0,0,0,0.14,0.849,0.366,0,0.564,0.0372 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0743 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.161 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.0937 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.355 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.166 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.6 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.233 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0.366 -0.667,0.307,0.307,0.267,0,0,0,0.14,0.732,0.233,0,0,0.0759 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.149 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0372 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.149 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.0372 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.149 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.296,0,0,0.0743 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.345,0,0,0.112 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.112 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.18 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0.258 -1,0.116,0.116,0.5,0,0,0,0.14,0.654,0.0301,0,0,0.429 -0.667,0.251,0.251,0.617,0,0,0,0.14,0.68,0.0473,0,0,0.0811 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.0372 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.355 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.167 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.0743 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.112 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0 -0.667,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.0372 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.112 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.0743 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.24 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0.55,0,0,0,0.281,0.647,0.0527,0,0,0.0743 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0743 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.223 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0372 -0.667,0.307,0.307,0.55,0,0,0,0.14,0.732,0.136,0,0,0.0372 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -1,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.223 -1,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0743 -1,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.112 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.112 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.0372 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.444,0.444,0.25,0,0,0,0,0.798,0.103,0,0,0.249 -0.667,0.33,0.33,0.0167,0,0,0,0.14,0.732,0.0895,0,0,0.118 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0743 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.112 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.186 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.252 -0.333,0.204,0.204,0.75,0,0,0,0.281,0.66,0.0982,0,0,0.177 -0.667,0.457,0.457,0.0833,0,0,0,0.14,0.797,0.224,0,0,0.208 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.223 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.399 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.295 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.26 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.161 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.256 -1,0.351,0.351,0,0,0,0,0,0.74,0.0747,0,0,0.126 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.162 -0.333,0.19,0.19,0.267,0,0,0,0.281,0.647,0.0527,0,0,0.168 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.299 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0.4,0,0,0.281,0.647,0.0759,0.551,0,0 -0.333,0.177,0.177,0,0.417,0,0,0.281,0.647,0.0845,0.549,0,0.0372 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0.653,0,0.0743 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0.555,0,0.129 -0.667,0.253,0.253,0.267,0,0,0,0.281,0.679,0.12,0,0,0.297 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.112 -1,1,1,0,0.15,0,0,0,0.993,0.541,0.415,0,0.223 -1,0.933,0.933,0,0.667,0,0,0,0.973,0.758,0.5,0,0 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.0372 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.297 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.172 -0.667,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.231 -0.667,0.313,0.313,0.267,0,0,0,0.14,0.719,0.074,0,0,0.0546 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.139 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.357 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.0743 -0.667,0.316,0.316,0,0.4,0,0,0.14,0.732,0.129,0.686,0,0 -0.667,0.307,0.307,0.5,0.417,0,0,0.14,0.732,0.136,0.224,0,0.0372 -0.667,0.305,0.305,0.617,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.0372 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.149 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0743 -1,0.869,0.869,0.75,0,0,0,0,0.973,0.402,0,0,0.0372 -1,1,1,0.367,0,0,0,0,0.993,0.541,0,0,0.112 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.158,0,0.0372 -0.667,0.504,0.504,0,0.533,0,0,0.14,0.81,0.629,0.807,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.33 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.294 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.142 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0743 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0.5,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0.05,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0372 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0743 -0.667,0.596,0.596,0,0.4,0,0,0.14,0.836,0.273,0.668,0,0.149 -0.667,0.683,0.683,0,0.417,0,0,0.14,0.849,0.366,0,0,0.297 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.0891,0,0.372 -0.667,0.504,0.504,0,0.817,0,0,0.14,0.81,0.629,0.814,0,0.112 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0.288,0,0.112 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0743 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0.307 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0832 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.147 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0473,0,0,0.139 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.325 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.272 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.298 -0.667,0.328,0.328,0,0.65,0,0,0.14,0.732,0.198,0.675,0,0.35 -0.667,0.316,0.316,0,0.167,0,0,0.14,0.732,0.217,0.636,0,0.14 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.226 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.102 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0.13,0,0 -0.667,0.359,0.359,0,0.9,0,0,0.14,0.758,0.343,0.475,0,0.112 -0.333,0.253,0.253,0.5,0.717,0,0,0.281,0.679,0.189,0.67,0,0.244 -1,0.869,0.869,0.05,0,0,0,0,0.973,0.549,0.536,0,0.223 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0.822,0,0.372 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0.158,0,0.112 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.112 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.149 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0931 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.203 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.199 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.138 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.316 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.382 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.151 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0372 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.0372 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.212,0,0.0372 -0.667,0.253,0.253,0,0.817,0,0,0.281,0.679,0.189,0.609,0,0 -1,0.596,0.596,0.833,0,0,0,0.14,0.836,0.372,0,0,0.339 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.344,0.344,0.25,0,0,0,0.281,0.699,0.296,0,0.0657,0.335 -0.333,0.277,0.277,0.3,0,0.733,0,0.281,0.686,0.345,0,0.731,0.258 -0.667,0.386,0.386,0,0,0,0.717,0.14,0.758,0.621,0,0.0917,0 -0.667,0.342,0.342,0,0,0,0.933,0.14,0.706,0.394,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.279 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.2 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.154 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.0967 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.213 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.286 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.195 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.351 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.429 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0.267,0.65,0,0,0.281,0.647,0.0845,0.744,0,0.0743 -0.333,0.182,0.182,0,0.433,0,0,0.281,0.647,0.0888,0.792,0,0.0743 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0372 -0.667,0.596,0.596,0.55,0,0,0,0.14,0.836,0.273,0,0,0.0372 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.149 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.149 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.112 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0743 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0743 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0372 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0836 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.367 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.455 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.273 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.375 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0743 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0743 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.112 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.223 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.112 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0513,0.0513,0.25,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0.0167,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.288 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.196 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.439 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.263 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0.132,0,0.344 -0.667,0.305,0.305,0,0.9,0,0,0.14,0.732,0.153,0.707,0.102,0.371 -0.667,0.314,0.314,0,0.183,0.233,0.217,0.14,0.732,0.162,0.479,0.635,0.198 -0.667,0.359,0.359,0,0,0,0.883,0.14,0.758,0.181,0,0.37,0.0743 -0.667,0.457,0.457,0.267,0,0,0,0.14,0.797,0.224,0,0.823,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.0917,0.569 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.532 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.115 -0.667,0.504,0.504,0.267,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.173 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.167 -1,0.15,0.15,0.5,0,0,0,0.281,0.621,0.0355,0,0,0.78 -1,0.444,0.444,0.05,0,0,0,0,0.798,0.103,0,0,0.264 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.435 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.112 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0372 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.223 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0372 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.283 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.405 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.234 -0.667,0.638,0.638,0,0.65,0,0,0.14,0.836,0.51,0.707,0,0.112 -0.667,0.504,0.504,0,0.433,0,0,0.14,0.81,0.629,0,0,0.149 -0.667,0.386,0.386,0,0,0.233,0,0.14,0.758,0.596,0,0.22,0.0372 -1,0.342,0.342,0,0.4,0,0.467,0.14,0.706,0.363,0.646,0.128,0.232 -1,0.183,0.183,0,0.683,0,1,0.14,0.667,0.16,0.503,0,0.0372 -1,0.099,0.099,0,0,0,0.183,0.14,0.654,0.0689,0.412,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0208,0,0,0.153 -1,0.0495,0.0495,0,0,0,0,0.14,0.654,0.0173,0,0,0.0811 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.125 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.193,0.193,0.833,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.136 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.265 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.253 -0.667,0.359,0.359,0,0.4,0,0,0.14,0.758,0.181,0.555,0,0.335 -0.667,0.457,0.457,0,0.683,0,0,0.14,0.797,0.224,0.288,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.335 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0743 -0.667,0.638,0.638,0,0,0.483,0,0.14,0.836,0.51,0,0.399,0.0372 -0.667,0.504,0.504,0,0,0,0.717,0.14,0.81,0.629,0,0,0.194 -0.667,0.218,0.218,0,0,0,0.667,0.281,0.66,0.306,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0899 -0.667,0.328,0.328,0.55,0,0,0,0.14,0.732,0.198,0,0,0.0829 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.329 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0.205 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.258 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.318 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.149 -0.333,0.253,0.253,0.267,0,0,0,0.281,0.679,0.189,0,0,0.186 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.149 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.228,0,0,0.0372 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.0372 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.0732 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.302 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0.267,0,0,0,0.281,0.647,0.0731,0,0,0.117 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.412 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.276 -1,0.449,0.449,0,0,0,0,0,0.818,0.317,0,0,0.112 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.162 -0.667,0.305,0.305,0.55,0,0,0,0.14,0.732,0.274,0,0,0.153 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.149 -0.333,0.204,0.204,0.5,0,0,0,0.281,0.66,0.18,0,0,0.26 -0.333,0.253,0.253,0.05,0,0,0,0.281,0.679,0.189,0,0,0.112 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.112 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0.16,0,0.186 -0.667,0.638,0.638,0,0.9,0,0,0.14,0.836,0.573,0.187,0,0.0372 -0.667,0.504,0.504,0,0.183,0,0,0.14,0.81,0.673,0,0,0.223 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.0372 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.109 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.0937 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.174 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.357 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.297 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0743 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.335 -1,0.359,0.359,0.267,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.186 -0.667,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.0372 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.26 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.223 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.186 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.333,0.15,0.15,0,0,0.233,0,0.281,0.621,0.0355,0,0.225,0.532 -0.333,0.181,0.181,0,0,0.25,0.217,0.281,0.64,0.0449,0,0.332,0 -0.667,0.19,0.19,0,0,0,1,0.281,0.647,0.0527,0,0.463,0.0797 -0.667,0.337,0.337,0,0,0,0.167,0.14,0.732,0.105,0,0.524,0.117 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0.524,0.328 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0.766,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0.635,0.149 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.223 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0743 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0372 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.149 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.638,0.638,0,0.4,0,0,0.14,0.836,0.51,0.494,0,0.112 -0.667,0.504,0.504,0,0.417,0,0,0.14,0.81,0.629,0.757,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0.2,0,0.0743 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.144 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.229 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0372 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.204,0.204,0.0167,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.22 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.373 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.336 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.25 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.543 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.173 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.301 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.132 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.595 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.183,0.183,0.25,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.178,0.178,0.3,0,0,0,0.281,0.647,0.0759,0,0,0.186 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.112 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.204,0.204,0.25,0,0.233,0,0.281,0.66,0.0982,0,0.122,0.149 -0.667,0.457,0.457,1,0,0.25,0.217,0.14,0.797,0.224,0,0.524,0.0372 -0.667,0.596,0.596,0.433,0,0,0.05,0.14,0.836,0.273,0,0.564,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.149 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.112 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.0372 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.186 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.206 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.229 -1,0.444,0.444,0.267,0,0,0,0,0.798,0.103,0,0,0.469 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.342 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.516 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.214 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.333,0.178,0.178,0.267,0,0,0,0.281,0.647,0.0759,0,0,0.112 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0743 -0.667,0.359,0.359,0,0,0.483,0,0.14,0.758,0.181,0,0.258,0.0372 -0.667,0.457,0.457,0,0,0,0.467,0.14,0.797,0.224,0,0.295,0.149 -0.667,0.596,0.596,0,0,0,0.35,0.14,0.836,0.273,0,0,0.112 -0.667,0.683,0.683,0,0.4,0,0,0.14,0.849,0.366,0.562,0,0 -0.667,0.638,0.638,0,0.683,0,0,0.14,0.836,0.51,0.603,0,0.0372 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0.724,0,0.223 -0.667,0.386,0.386,0.75,0,0,0,0.14,0.758,0.596,0,0,0.278 -1,0.342,0.342,0.367,0,0,0,0.14,0.706,0.363,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.214 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.15 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.131 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.27 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0337 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0372 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0743 -0.667,0.204,0.204,0.5,0,0,0,0.281,0.66,0.18,0,0,0.0372 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.36,0,0,0.186 -0.667,0.596,0.596,0.183,0,0,0,0.14,0.836,0.372,0,0,0.223 -1,1,1,0,0.533,0,0,0,0.993,0.647,0.77,0,0.0743 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.319 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.163 -0.667,0.386,0.386,0.25,0,0,0,0.14,0.758,0.621,0,0,0.0475 -1,0.488,0.488,0.0167,0,0,0,0,0.779,0.582,0,0,0.223 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.0372 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0372 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0.0767 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.0925 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.279 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.225 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.164 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.149 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.192 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.158 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.186 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.297 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.228,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.296,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.297 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.26 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.287 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.166 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.165 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.0743 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.149 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.112 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.479 -0.667,0.457,0.457,0.5,0,0,0,0.14,0.797,0.224,0,0,0.165 -0.667,0.596,0.596,0.05,0,0,0,0.14,0.836,0.273,0,0,0.0372 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0743 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.112 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0.26 -0.667,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.378 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.16 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv deleted file mode 100644 index 8d02f7bbe7..0000000000 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv +++ /dev/null @@ -1,8761 +0,0 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.258 -1,0.0833,0.0833,0.25,0,0,0,0.281,0.608,0.026,0,0,0.19 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.185 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.139 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.324 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.185 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.741 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.359,0.359,0.25,0,0,0,0.281,0.705,0.191,0,0,0.185 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.139 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.121 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.718 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.441 -1,0.117,0.117,0,0,0,0,0.14,0.654,0.0362,0,0,0.299 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.0926 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.231 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0463 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.509 -0.333,0.196,0.196,0.25,0,0,0,0.281,0.66,0.0982,0,0,0.139 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0.42,0,0 -1,0.991,0.991,0,0.667,0,0,0,0.973,0.758,0.37,0,0.278 -1,0.823,0.823,0.25,0,0.0638,0,0,0.934,0.936,0,0,0.183 -1,0.43,0.43,0,0,0.234,0.317,0.14,0.758,0.596,0,0.397,0.139 -1,0.0495,0.0495,0,0,0,0.5,0.421,0.562,0.0159,0,0.0467,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.146 -0.667,0.0495,0.0495,0,0,0.0638,0,0.421,0.562,0.0159,0,0,0.121 -0.667,0.183,0.183,0,0,0.553,0.0667,0.281,0.64,0.0449,0,0.168,0 -0.667,0.334,0.334,0,0,0,1,0.14,0.732,0.0895,0,0.197,0 -0.333,0.196,0.196,0,0,0,0.0167,0.281,0.647,0.0604,0,0,0.232 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.185 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0463 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.407 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0 -0.667,0.669,0.669,0,0,0.298,0,0.14,0.849,0.366,0,0,0.231 -0.667,0.677,0.677,0,0,0,0.817,0.14,0.836,0.51,0.447,0.504,0 -0.667,0.565,0.565,0,0.667,0,0,0.14,0.81,0.629,0.571,0,0 -0.667,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.139 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.509 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0463 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.127 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.0663 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.224 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.123 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.278 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.484 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.164 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.324 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.185 -0.667,0.299,0.299,0.517,0,0,0,0.281,0.699,0.145,0,0,0.0926 -1,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.139 -1,0.677,0.677,0,0.0833,0,0,0.14,0.836,0.51,0.598,0,0 -1,0.823,0.823,0,0.25,0,0,0,0.934,0.936,0.711,0,0.278 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0.11,0,0.0463 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0682 -1,0.117,0.117,0.117,0,0,0,0.14,0.654,0.0362,0,0,0.172 -1,0.253,0.253,0.65,0.0833,0,0,0.14,0.68,0.0551,0.65,0,0.103 -0.667,0.183,0.183,0,0.583,0,0,0.281,0.64,0.0449,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.278 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.139 -0.333,0.234,0.234,0.25,0,0,0,0.281,0.679,0.12,0,0,0.0926 -1,0.798,0.798,0,0,0.298,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,0,0,0,0.567,0,0.993,0.541,0,0.224,0.0463 -1,0.991,0.991,0,0,0,0.517,0,0.973,0.758,0,0.0816,0 -1,0.565,0.565,0.367,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.43,0.43,0.4,0,0,0,0.14,0.758,0.596,0,0,0.24 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0181,0,0,0.172 -1,0.343,0.343,0.0333,0,0,0,0.14,0.732,0.168,0,0,0.162 -0.667,0.334,0.334,0.217,0,0,0,0.14,0.732,0.198,0,0,0.0349 -0.667,0.322,0.322,0.25,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.231 -1,0.315,0.315,0,0,0.277,0,0.14,0.732,0.312,0,0,0 -1,0.343,0.343,0,0,0.0213,0.267,0.14,0.758,0.343,0,0.359,0.139 -1,0.418,0.418,0.25,0,0,0,0.14,0.797,0.36,0,0.111,0.278 -1,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.278 -1,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.185 -1,0.991,0.991,0,0.292,0,0,0,0.973,0.851,0.774,0,0.0926 -1,0.823,0.823,0,0.375,0,0,0,0.934,1,0,0,0.231 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.231 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.0463 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.433 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.508 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.236 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.481 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.424 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.0463 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.338 -0.667,0.418,0.418,0.25,0,0,0,0.14,0.797,0.36,0,0,0.139 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.139 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.0463 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0.156,0,0.0926 -0.667,0.565,0.565,0,0.604,0,0,0.14,0.81,0.673,0.826,0,0.0463 -1,0.621,0.621,0,0.0625,0,0,0,0.857,0.923,0.0808,0,0.373 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.287 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0902 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.117 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.247 -1,0.355,0.355,0.25,0,0,0,0,0.74,0.0747,0.465,0,0.13 -1,0.449,0.449,0,1,0,0,0,0.798,0.103,0.542,0,0.509 -1,0.477,0.477,0,0,0.298,0,0,0.818,0.126,0.474,0,0.427 -1,0.49,0.49,0,0,0,0.817,0,0.818,0.149,0,0.521,0.333 -0.667,0.334,0.334,0,0,0,0.267,0.14,0.732,0.117,0,0.352,0.272 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.495 -0.333,0.0495,0.0495,0,0,0.617,0,0.421,0.562,0.0159,0,0.116,0.0463 -0.333,0.18,0.18,0,0,0,0.817,0.281,0.647,0.0845,0,0.521,0.0463 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.393,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.263,0,0.641,0.324 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0.513,0 -1,0.798,0.798,0.25,0,0,0,0,0.973,0.402,0,0.145,0.0926 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.0463 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.185 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.0926 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.185 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0912 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.124 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.19 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.278 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.185 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0.617,0,0,0,0.281,0.66,0.0982,0,0,0.0463 -0.333,0.234,0.234,0.15,0,0,0,0.281,0.679,0.12,0,0,0.185 -1,0.798,0.798,0.117,0,0,0,0,0.973,0.402,0,0,0.0926 -1,0.979,0.979,0.4,0,0,0,0,0.993,0.541,0,0,0.231 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.185 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0926 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.158 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.163 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.243 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0899 -0.333,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.123 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.272 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.479 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.251 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0463 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.185 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.185 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.306 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.503 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.0644 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.139 -1,0.823,0.823,0.25,0.0833,0,0,0,0.934,0.936,0.512,0,0.231 -1,0.24,0.24,0,0.583,0,0,0.281,0.66,0.306,0.596,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0.754,0,0.0926 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.355 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.441 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.74 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0463 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.139 -0.333,0.181,0.181,0,0,0.0638,0,0.281,0.647,0.0759,0,0,0 -0.667,0.311,0.311,0,0,0.553,0.0667,0.14,0.732,0.153,0,0.378,0.0463 -0.667,0.315,0.315,0,0,0,1,0.14,0.732,0.162,0,0.861,0 -0.333,0.196,0.196,0,0,0,0.0167,0.281,0.66,0.0982,0,0.598,0.0926 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0.154,0 -0.333,0.299,0.299,0.25,0,0,0,0.281,0.699,0.145,0,0,0.0463 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.239 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.37 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0926 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.231 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.484 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.111 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0.702,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0.213,0.333,0.281,0.647,0.0664,0,0.607,0.185 -0.333,0.186,0.186,0,0,0,0.75,0.281,0.647,0.0724,0,0.619,0.417 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0.711,0.231 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.543,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.381,0.0463 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0.767,0,0,0,0.281,0.679,0.12,0,0,0.0463 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.185 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.231 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0463 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.268 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.131 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.336 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.322,0.322,0,0.292,0.617,0,0.14,0.732,0.217,0.715,0.102,0 -0.667,0.313,0.313,0,0.0417,0,0.733,0.14,0.732,0.233,0,0.78,0 -0.667,0.311,0.311,0,0,0,0.0833,0.14,0.732,0.274,0,0.325,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0.402,0.0463 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.45,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0.494,0.278 -1,0.798,0.798,0.25,0,0,0,0,0.973,0.549,0,0.68,0.231 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0.436,0.0463 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.291,0.231 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.436,0.535 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.466 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.286 -1,0.249,0.249,0,0,0,0,0,0.72,0.265,0,0,0.185 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.183,0.183,0.25,0,0,0,0.281,0.64,0.049,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.0463 -0.333,0.18,0.18,0,0,0.617,0,0.281,0.647,0.146,0,0.0861,0.0926 -0.667,0.315,0.315,0,0,0,0.733,0.14,0.732,0.312,0,0.0593,0.37 -0.667,0.343,0.343,0,0,0,0.35,0.14,0.758,0.343,0,0,0.0463 -0.667,0.418,0.418,0.25,0,0,0,0.14,0.797,0.36,0,0,0.18 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.727 -1,0.979,0.979,0,0,0.298,0.233,0,0.993,0.647,0,0.206,0.139 -1,0.991,0.991,0,0,0,0.85,0,0.973,0.851,0,0.38,0.0926 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0.829,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0.205,0.139 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0.508,0,0.278 -1,0.116,0.116,0,0.667,0,0,0.281,0.614,0.101,0.355,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0.142,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0594 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.612 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.168 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.327 -0.333,0.192,0.192,0.117,0,0,0,0.281,0.647,0.0664,0,0,0.231 -0.333,0.186,0.186,0.65,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0463 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0.145,0,0.502 -0.667,0.669,0.669,0,0.396,0,0,0.14,0.849,0.366,0.813,0,0.139 -1,0.991,0.991,0,0.271,0,0,0,0.973,0.758,0.0763,0,0.0926 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0926 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.19,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.399 -1,0.355,0.355,0.617,0,0,0,0,0.74,0.0747,0,0,0.289 -0.667,0.316,0.316,0.417,0,0.298,0.0667,0.14,0.719,0.074,0,0.0861,0 -0.667,0.334,0.334,0,0,0,1,0.14,0.732,0.0895,0,0.445,0 -0.667,0.343,0.343,0,0,0,0.0167,0.14,0.732,0.105,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.612 -0.333,0.186,0.186,0.517,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0926 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.185 -0.333,0.182,0.182,0.117,0,0,0,0.281,0.647,0.0888,0,0,0.139 -0.333,0.196,0.196,0.133,0,0,0,0.281,0.66,0.0982,0,0,0.185 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0.115,0,0 -1,0.798,0.798,0,0.396,0,0,0,0.973,0.402,0.853,0,0.0926 -0.667,0.669,0.669,0,0.271,0,0,0.14,0.849,0.366,0.695,0,0.18 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.0463 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.231 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.555 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.253,0.253,0.25,0,0,0,0.14,0.68,0.0551,0,0,0.523 -1,0.449,0.449,0,0,0,0,0,0.798,0.103,0,0,0.331 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.124 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.258 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0.117,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0.4,0,0,0,0.281,0.647,0.0888,0,0,0.37 -0.667,0.343,0.343,0.117,0,0,0,0.14,0.758,0.181,0,0,0.18 -0.667,0.418,0.418,0.133,0,0,0,0.14,0.797,0.224,0,0,0.0926 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.139 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.0926 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.246 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.103 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.287 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0943 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.212 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.259 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.134 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.194 -0.333,0.18,0.18,0.25,0,0,0,0.281,0.647,0.0845,0,0,0.139 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0463 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.278 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.0463 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.231 -0.333,0.359,0.359,0,0,0.617,0,0.281,0.705,0.191,0,0,0.139 -1,0.991,0.991,0.517,0,0,0.567,0,0.973,0.758,0,0.224,0.0463 -1,0.823,0.823,0,0,0,0.25,0,0.934,0.936,0,0,0.139 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.139 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.138 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.287 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.162 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.261 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.0896 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.263 -0.667,0.313,0.313,0,0,0.383,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0.532,0.0833,0.14,0.732,0.153,0,0.455,0.0463 -0.667,0.182,0.182,0.117,0,0,1,0.281,0.647,0.0888,0,0.616,0.0463 -0.667,0.196,0.196,0.4,0,0,0,0.281,0.66,0.0982,0,0.628,0.324 -1,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.461,0.0463 -1,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.139 -1,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0926 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.324 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.0463 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0463 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.333 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.252 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.0842 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.26 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.224 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.419 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0.303 -1,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.116 -1,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.787 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.696 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.384 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.281 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.231 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.647,0.118,0,0,0.218 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.139 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.37 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.189,0,0,0.139 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.0926 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.326 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.317 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.16 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0.529 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.136 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.407 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.216 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.271 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.343,0.343,0.25,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0.357,0,0.378 -1,0.979,0.979,0,0.667,0,0,0,0.993,0.541,0.618,0,1 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.151,0,0.0463 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.316 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.232 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.118 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.845 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.109 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0463 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.231 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.139 -0.667,0.359,0.359,0,0.0833,0,0,0.281,0.705,0.191,0.533,0,0.0463 -0.667,0.363,0.363,0,0.25,0,0,0.281,0.699,0.263,0.33,0,0.602 -0.667,0.307,0.307,0,0,0,0,0.281,0.686,0.322,0,0,0.139 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.417 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0949 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.531 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.196,0.196,0.367,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0.15,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0.0833,0,0,0.14,0.836,0.273,0.711,0,0.0926 -1,0.979,0.979,0,0.583,0,0,0,0.993,0.541,0.219,0,0 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.748 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.3 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.222 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.322 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.172 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0515 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.196,0.196,0.117,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.192,0.192,0.65,0,0,0,0.281,0.647,0.0664,0,0,0.0463 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.185 -0.333,0.18,0.18,0,0,0.702,0,0.281,0.647,0.0845,0,0,0.0463 -0.667,0.315,0.315,0,0,0.213,0.333,0.14,0.732,0.162,0,0.358,0 -0.333,0.196,0.196,0,0,0,0.75,0.281,0.66,0.0982,0,0.656,0.0463 -0.333,0.234,0.234,0.617,0,0,0,0.281,0.679,0.12,0,0.504,0.324 -0.667,0.548,0.548,0.417,0,0,0,0.14,0.836,0.273,0.145,0.272,0.231 -1,0.979,0.979,0,0.396,0,0,0,0.993,0.541,0.691,0.504,0.185 -1,0.991,0.991,0,0.271,0,0,0,0.973,0.758,0,0.171,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.403 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.377 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.37 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.117,0.117,0.367,0,0,0,0.14,0.654,0.0362,0,0,0 -0.667,0.151,0.151,0.667,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.316,0.316,0.25,0,0,0,0.14,0.719,0.074,0,0,0.251 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.185 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.139 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.647,0.0724,0,0,0.0926 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.139 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0.117,0.0833,0,0,0.281,0.66,0.0982,0.533,0,0 -0.333,0.234,0.234,0.4,0.25,0,0,0.281,0.679,0.12,0.864,0,0.0463 -1,0.798,0.798,0.367,0,0,0,0,0.973,0.402,0.601,0,0.231 -0.667,0.669,0.669,0.15,0,0,0,0.14,0.849,0.366,0,0,0.185 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.324 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.278 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.15 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.17 -1,0.334,0.334,0.783,0,0,0,0.14,0.732,0.128,0,0,0.528 -1,0.49,0.49,0.25,0,0,0,0,0.818,0.242,0,0,0.221 -0.667,0.334,0.334,0.25,0,0,0,0.14,0.732,0.198,0,0,0.294 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.0926 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0463 -0.667,0.311,0.311,0,0.292,0,0,0.14,0.732,0.274,0.601,0,0.185 -0.667,0.315,0.315,0,0.375,0,0,0.14,0.732,0.312,0.688,0,0.139 -0.667,0.343,0.343,0.283,0,0,0,0.14,0.758,0.343,0.691,0,0.37 -1,0.602,0.602,1,0,0,0,0,0.915,0.531,0,0,0.0926 -1,0.798,0.798,1,0,0,0,0,0.973,0.549,0,0,0.394 -1,0.979,0.979,1,0,0,0,0,0.993,0.647,0,0,0.0947 -1,0.991,0.991,1,0,0,0,0,0.973,0.851,0.469,0,0.463 -1,0.823,0.823,0.117,0.917,0,0,0,0.934,1,0.607,0,0 -1,0.621,0.621,0,0.0833,0,0,0,0.857,0.923,0.19,0,0.0463 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.0635 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.103 -0.667,0.192,0.192,0.25,0,0,0,0.281,0.647,0.108,0,0,0.15 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.0926 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.0926 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.0463 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.231 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.0463 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.317 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.202 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.0955 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.32,0,0,0.0926 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.366 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.306 -0.667,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.357 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.167 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.201 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.185 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.139 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0.117,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0.4,0,0,0,0.14,0.836,0.273,0,0,0.185 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0463 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.509 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.139 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0463 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.0463 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.448 -1,0.355,0.355,0,0,0,0,0,0.74,0.0747,0,0,0.167 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0463 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.278 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0.517,0,0,0,0.281,0.679,0.12,0.338,0,0 -0.333,0.299,0.299,0,0.667,0,0,0.281,0.699,0.145,0.61,0,0.0926 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0.702,0,0.463 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0.704,0,0.231 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.231 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.354 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0745 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.107 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.455 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.0156 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.185 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.37 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.185 -0.667,0.418,0.418,0,0.0833,0.915,0,0.14,0.797,0.224,0.693,0.171,0.278 -1,0.798,0.798,0,0.583,0,0.583,0,0.973,0.402,0.524,0.21,0.0463 -1,0.979,0.979,0.25,0,0,0.233,0,0.993,0.541,0.686,0.464,0.278 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0.652,0.519,0.0463 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.389,0.367 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.466,0.139 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0.0772,0.278 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.139 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0926 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0926 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.294 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.552 -0.667,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0.157 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0926 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.231 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0893 -1,0.053,0.053,0.317,0,0,0,0.14,0.658,0.0241,0,0,0.201 -1,0.116,0.116,0.45,0,0,0,0.14,0.658,0.036,0,0,0.104 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.193,0.193,0,0.312,0,0,0.281,0.649,0.0601,0.724,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0463 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.509 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.139 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0463 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.139 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0463 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.348 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0.0934 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.278 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.316,0.316,0.5,0,0,0,0.14,0.736,0.216,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0.185 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.231 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.0463 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.231 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.417 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.194,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.294,0,0,0.0926 -0.667,0.625,0.625,0,0.25,0,0,0.14,0.815,0.668,0.589,0,0.278 -0.667,0.501,0.501,0,0.396,0,0,0.14,0.762,0.617,0,0,0 -0.667,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.186 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.0463 -1,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.0463 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.37 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.419 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.083 -0.667,0.466,0.466,0.25,0,0,0,0.14,0.841,0.369,0,0,0.207 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.424 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.37 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.354 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.0353 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.151 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.0717 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.192 -1,0.0829,0.0829,0.5,0,0,0,0.281,0.61,0.0259,0,0,0.108 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.178 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0.255,0,0.139 -0.667,0.193,0.193,0,0.646,0,0,0.281,0.649,0.0601,0.58,0,0.185 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0.81,0,0.0926 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0.544,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0.542,0,0.0463 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0.797,0,0.0463 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0.485,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0.553,0,0 -0.667,0.367,0.367,0.5,0,0,0,0.14,0.802,0.222,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.324 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.421 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.21 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0896 -1,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.185 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0896 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.202 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.16 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.144 -1,0.15,0.15,0.0667,0,0,0,0.281,0.623,0.0353,0,0,0.442 -1,0.181,0.181,0.183,0,0,0,0.281,0.642,0.0447,0,0,0.177 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.447 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.0463 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0926 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.0926 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.185 -1,0.913,0.913,0,0,0.638,0,0,0.941,0.929,0,0,0.139 -1,0.727,0.727,0,0,0.319,0.25,0,0.863,0.88,0,0.672,0 -1,0.638,0.638,0,0,0,0.533,0,0.784,0.532,0,0.895,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0.393,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.143 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.335 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.451,0,0 -0.667,0.193,0.193,0,0.958,0,0,0.281,0.649,0.0601,0.242,0,0.0463 -0.333,0.0495,0.0495,0,0.0208,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.182 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0338 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0.0667,0,0,0,0.281,0.662,0.0976,0,0,0.0926 -0.667,0.367,0.367,0.183,0,0,0,0.14,0.802,0.222,0,0,0.179 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.406 -1,0.868,0.868,0,0.333,0,0,0,1,0.537,0.585,0,0.344 -1,0.98,0.98,0,0.333,0,0,0,0.98,0.752,0.74,0,0.554 -1,0.913,0.913,0,0.625,0,0,0,0.941,0.929,0.135,0,0.376 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.0463 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.0926 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0.427,0,0.0926 -0.333,0.189,0.189,0,0.646,0,0,0.281,0.649,0.066,0.126,0,0.185 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.278 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.278 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.139 -0.333,0.208,0.208,0.25,0,0,0,0.281,0.682,0.119,0,0,0.231 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0463 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0 -1,0.98,0.98,0,0.0208,0,0,0,0.98,0.752,0.517,0,0 -1,0.913,0.913,0,0.292,0,0,0,0.941,0.929,0.298,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0463 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.435 -1,0.313,0.313,0.5,0,0,0,0.14,0.723,0.0735,0,0,0.308 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.667,0.189,0.189,0.25,0,0,0,0.281,0.649,0.066,0,0,0.417 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.417 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.139 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0.324,0,0.0786 -1,0.98,0.98,0.25,0.312,0,0,0,0.98,0.752,0.71,0,0.159 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0.698,0,0.231 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0.0772,0,0.0463 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.127 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.288 -1,0.19,0.19,0.25,0,0,0,0.281,0.649,0.0727,0,0,0.0921 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.132 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.3 -1,0.449,0.449,0,0,0,0,0,0.824,0.315,0,0,0.475 -1,0.436,0.436,0.75,0,0,0,0,0.824,0.338,0,0,0.429 -0.667,0.305,0.305,0.0167,0,0,0,0.14,0.736,0.272,0,0,0.139 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0.139 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.0463 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.0926 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.231 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.231 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.324 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.103 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.298 -1,0.19,0.19,0.25,0,0,0,0.281,0.649,0.0727,0,0,0.138 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.392 -1,0.468,0.468,0,0,0.553,0,0,0.824,0.287,0.567,0,0.611 -1,0.449,0.449,0.25,0.646,0.0851,0.433,0,0.824,0.315,0.359,0.329,0.697 -1,0.307,0.307,0,0,0,0.617,0.14,0.736,0.231,0,0.614,0.272 -1,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0.493,0.0463 -1,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0.347,0.0463 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0.782,0.185 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0.564,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.392,0.139 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0.681,0.185 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.36 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.0463 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.121 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.262 -1,0.351,0.351,0.0667,0,0,0,0,0.745,0.0742,0,0,0.226 -1,0.444,0.444,0.183,0,0,0,0,0.804,0.102,0,0,0.237 -1,0.47,0.47,0,0,0,0,0,0.824,0.125,0,0,0.429 -1,0.481,0.481,0,0,0,0,0,0.824,0.148,0,0,0.463 -0.333,0.189,0.189,0.567,0,0,0,0.281,0.649,0.066,0,0,0.0463 -0.667,0.316,0.316,0.2,0,0,0,0.14,0.736,0.128,0,0,0.0463 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.231 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.185 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0.259,0,0.63 -1,0.868,0.868,0,0.646,0,0,0,1,0.537,0.248,0,0 -1,0.98,0.98,0,0.333,0,0,0,0.98,0.752,0,0,0.11 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.15,0.15,0.25,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.161 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.465 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.337 -0.333,0.178,0.178,0.0667,0,0,0,0.281,0.649,0.0754,0,0,0.243 -0.333,0.177,0.177,0.183,0,0,0,0.281,0.649,0.0839,0,0,0.185 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.185 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.0463 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0.251 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.231 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.419 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0463 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.116 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0773 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.279 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.198 -0.667,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.235 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.382 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.731 -0,0.0495,0.0495,0,0.333,0,0,0.421,0.562,0.0159,0.655,0,0.0926 -0,0.0495,0.0495,0,0.312,0,0,0.421,0.562,0.0159,0.153,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.334 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.355 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.306 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0591 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.208,0.208,0.25,0,0,0,0.281,0.682,0.119,0,0,0.285 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0463 -1,0.868,0.868,0,0,0,0,0,1,0.537,0.524,0,0.0463 -1,0.98,0.98,0,0.646,0,0,0,0.98,0.752,0.354,0,0.0463 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.139 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.295 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.158 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0946 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0582 -1,0.251,0.251,0,0,0.638,0,0.14,0.684,0.0548,0,0,0.312 -0.667,0.181,0.181,0,0,0,0.5,0.281,0.642,0.0447,0,0.257,0.38 -0.667,0.33,0.33,0,0,0,0.55,0.14,0.736,0.0889,0,0.453,0.257 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0.432,0.184 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0.372,0.285 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0.21,0.598,0.27 -0.667,0.307,0.307,0,0.646,0,0,0.14,0.736,0.135,0.606,0.214,0.459 -0.667,0.305,0.305,0,0.333,0,0,0.14,0.736,0.152,0.394,0,0.667 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0463 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0463 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0463 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.185 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.419 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.433 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.337 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.324 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0.5,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0 -1,0.868,0.868,0,0.312,0,0,0,1,0.537,0.51,0,0.37 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.724,0,0.278 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0.451,0,0.169 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.365 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.165 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -1,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.0926 -1,0.436,0.436,0,0,0,0,0,0.824,0.338,0,0,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.399,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.304 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.339 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.274 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.401 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.0463 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.294,0,0,0.0926 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.343,0,0,0.278 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.227 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.0463 -1,0.0743,0.0743,0,0.562,0,0,0.281,0.61,0.0496,0.864,0,0 -1,0.0578,0.0578,0,0.0833,0,0,0.281,0.61,0.0309,0.53,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0223,0.664,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0.691,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0,0,0.234,0,0.281,0.649,0.0727,0,0,0.38 -1,0.481,0.481,0,0.25,0.723,0,0,0.824,0.241,0.557,0.221,0.175 -1,0.468,0.468,0,0.396,0,0.933,0,0.824,0.287,0.885,0.381,0.135 -1,0.449,0.449,0,0,0,0.383,0,0.824,0.315,0.127,0.561,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0.372,0.185 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,1,0.139 -0.667,0.307,0.307,0.767,0,0,0,0.14,0.736,0.31,0,0.214,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.0463 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0.149,0,0.555 -0.667,0.67,0.67,0,0.562,0,0,0.14,0.841,0.569,0.792,0,0.37 -1,0.913,0.913,0,0.417,0,0,0,0.941,0.993,0.391,0,0.185 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.174 -1,0.442,0.442,0,0,0.319,0,0.14,0.71,0.392,0,0,0.324 -1,0.183,0.183,0,0,0,0.55,0.14,0.671,0.182,0.147,0.123,0 -1,0.0743,0.0743,0,0,0,0.0333,0.281,0.61,0.0421,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.417 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.633 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.119 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0.957,0,0.281,0.649,0.066,0.492,0.0341,0.0926 -0.333,0.183,0.183,0,0.646,0,0.5,0.281,0.649,0.072,0.28,0.454,0 -0.333,0.178,0.178,0,0,0,0.283,0.281,0.649,0.0754,0,0.359,0.0926 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.728,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.788,0.0463 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.329,0.0926 -0.333,0.208,0.208,0.567,0,0,0,0.281,0.682,0.119,0,0.801,0 -1,0.674,0.674,0.2,0,0,0,0,0.98,0.399,0,0.608,0.127 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0.503,0.278 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0.546,0.164 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.338 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.185 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0.2,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0.638,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0.5,0.281,0.649,0.072,0,0.227,0 -0.333,0.178,0.178,0,0,0,0.55,0.281,0.649,0.0754,0,0.501,0.185 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.524,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0463 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.139 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0.294,0,0.133 -0.667,0.466,0.466,0,0.312,0,0,0.14,0.841,0.271,0.388,0,0.0926 -1,0.868,0.868,0,0,0,0,0,1,0.537,0.691,0,0.0926 -1,0.98,0.98,0,0.0208,0,0,0,0.98,0.752,0.732,0,0.185 -1,0.913,0.913,0,0.625,0,0,0,0.941,0.929,0,0,0.24 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.244 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.205 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.207 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.402 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.31 -0.667,0.181,0.181,0.0667,0,0,0,0.281,0.642,0.0447,0,0,0.281 -0.667,0.33,0.33,0.7,0,0.319,0,0.14,0.736,0.0889,0,0,0.259 -0.667,0.337,0.337,0,0,0.638,0,0.14,0.736,0.104,0,0.323,0.256 -0.667,0.328,0.328,0,0,0,1,0.14,0.736,0.116,0,0.297,0.0926 -0.333,0.183,0.183,0,0,0,0.05,0.281,0.649,0.072,0,0.239,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.139 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.139 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.139 -1,0.868,0.868,0,0.333,0,0,0,1,0.537,0.822,0,0 -0.667,0.67,0.67,0,0.646,0,0,0.14,0.841,0.507,0.151,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.838 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.231 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.0463 -1,0.116,0.116,0,0,0.0638,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0.5,0.281,0.61,0.0421,0,0.248,0.0463 -1,0.0578,0.0578,0,0.0208,0,0.55,0.281,0.61,0.0259,0.503,0.307,0 -1,0.0495,0.0495,0,0.625,0,0,0.281,0.61,0.0183,0.759,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0.199,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.288 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.449 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.368 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.218 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0.25,0,0.185 -0.667,0.258,0.258,0,0.646,0,0,0.281,0.701,0.144,0.625,0,0 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0.77,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.343 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.22 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.226 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.185 -1,0.0495,0.0495,0,0,0.255,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.14 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0.447,0,0.126 -0.667,0.337,0.337,0,0.646,0,0,0.14,0.736,0.104,0.138,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0463 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.231 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.0926 -0.333,0.178,0.178,0.25,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.278 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.139 -0.667,0.466,0.466,0.25,0.0208,0,0,0.14,0.841,0.271,0.479,0,0 -1,0.868,0.868,0,0.292,0,0,0,1,0.537,0.363,0,0.0926 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0463 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.0463 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.185 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.094 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.191 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.573 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.133 -1,0.449,0.449,0,0,0,0,0,0.824,0.315,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.16 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0656 -0.667,0.258,0.258,0,0,0,0,0.281,0.701,0.194,0,0,0.37 -0.667,0.322,0.322,0.25,0,0,0,0.281,0.708,0.226,0,0,0 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.139 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.231 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.0463 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0811,0,0,0.0926 -1,0.066,0.066,0,0,0,0,0.14,0.658,0.0436,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.179 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.129 -1,0.468,0.468,0,0,0,0,0,0.824,0.287,0,0,0.12 -1,0.449,0.449,0.25,0,0.872,0,0,0.824,0.315,0,0,0.278 -0.667,0.307,0.307,1,0,0.0851,0.433,0.14,0.736,0.231,0,0.611,0.0926 -0.667,0.305,0.305,0.267,0,0,0.35,0.14,0.736,0.272,0,0,0.0926 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.185 -0.667,0.322,0.322,1,0,0,0,0.14,0.762,0.34,0,0,0 -0.667,0.367,0.367,0.0167,0,0,0,0.14,0.802,0.358,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.0463 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.139 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.139 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.157 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.264 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.103 -1,0.15,0.15,0,0,0.638,0,0.281,0.623,0.0353,0,0,0.257 -1,0.181,0.181,0,0,0,0.5,0.281,0.642,0.0447,0,0.145,0.129 -1,0.33,0.33,0,0,0,0.283,0.14,0.736,0.0889,0,0,0.181 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0926 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0926 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.509 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0463 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.0463 -0.333,0.258,0.258,0.5,0,0,0,0.281,0.701,0.144,0,0,0 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.231 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.231 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.344 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.284 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.142 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.442 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.114 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.231 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.278 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.278 -0.333,0.178,0.178,0,0,0.319,0,0.281,0.649,0.0882,0,0,0.425 -0.667,0.322,0.322,0,0,0.638,0,0.14,0.762,0.179,0,0.478,0.138 -0.667,0.367,0.367,0.567,0,0,1,0.14,0.802,0.222,0,0.0134,0.0463 -0.667,0.466,0.466,0.2,0,0,0.05,0.14,0.841,0.271,0.287,0,0.278 -0.333,0.322,0.322,0,0.646,0.319,0,0.281,0.708,0.19,0.384,0,0.139 -1,0.98,0.98,0,0.0208,0.319,0.25,0,0.98,0.752,0.643,0.409,0 -1,0.913,0.913,0,0.625,0,0.533,0,0.941,0.929,0,0,0.0463 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0463 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.153 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.327 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.308 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0463 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0463 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.139 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.0926 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.185 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.0463 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0463 -1,0.868,0.868,0.567,0,0,0,0,1,0.537,0,0,0.0926 -1,0.98,0.98,0.45,0,0,0,0,0.98,0.752,0,0,0.0463 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.139 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.109 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.134 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.422 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.134 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.148 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.298,0.298,0.117,0,0,0,0.14,0.642,0.153,0,0,0.0926 -1,0.464,0.464,0.6,0,0,0,0,0.728,0.277,0,0,0.278 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.417 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.231 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.329,0,0 -1,0.928,0.928,0,0.625,0,0,0,0.744,0.791,0.576,0,0.0463 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.677,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0.111,0,0.278 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.385 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0673 -0.667,0.114,0.114,0.117,0,0,0,0.14,0.559,0.0314,0,0,0.238 -0.667,0.245,0.245,0.117,0,0,0,0.14,0.58,0.0474,0,0,0.0161 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.471 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0926 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.324 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.139 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0.617,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.667,0.298,0.298,0.35,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0463 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.185 -1,0.736,0.736,0.233,0,0,0,0,0.79,0.457,0,0,0.185 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.11,0,0.139 -1,0.928,0.928,0,0.396,0,0,0,0.744,0.791,0.641,0,0.0463 -1,0.807,0.807,0,0.229,0,0,0,0.682,0.749,0.774,0,0.0463 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0.7,0,0.375 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0.612,0,0.132 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0.74,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0.759,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.386 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.286 -1,0.456,0.456,0,0,0,0,0,0.651,0.205,0,0,0.67 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.155 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.482 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.228 -0.667,0.289,0.289,0.717,0,0,0,0.14,0.621,0.233,0,0,0.0463 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.0463 -0.667,0.298,0.298,0,0,0.17,0,0.14,0.642,0.291,0,0,0.0926 -0.333,0.188,0.188,0,0,0.766,0,0.281,0.617,0.162,0,0.277,0.0926 -1,0.567,0.567,0,0,0,0.9,0,0.774,0.464,0,0.662,0.185 -1,0.736,0.736,0,0,0,0.133,0,0.79,0.547,0,0.706,0.0926 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0.312,0.185 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.266,0.139 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.107 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0.106,0,0.0926 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0.151 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.369 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.443,0.443,0,0,0.617,0,0,0.651,0.244,0,0,0 -1,0.426,0.426,0,0,0,0.65,0,0.651,0.268,0,0.55,0.0926 -0.333,0.171,0.171,0,0,0,0.383,0.281,0.591,0.108,0,0.381,0.0463 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0.494,0.278 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0.518,0.0926 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0.47,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0.0935,0.347 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.157 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.625 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.104 -1,0.928,0.928,0.233,0,0,0,0,0.744,0.845,0,0,0.221 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.0463 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.224 -0.333,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.16 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.185 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.185 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.139 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.302 -0.333,0.169,0.169,0,0,0.0638,0,0.281,0.591,0.073,0,0,0.0463 -0.333,0.17,0.17,0,0,0.553,0.0667,0.281,0.591,0.0767,0.145,0.246,0 -0.333,0.174,0.174,0,0.396,0,0.7,0.281,0.602,0.0846,0.571,0.154,0 -0.333,0.188,0.188,0.367,0.229,0,0,0.281,0.617,0.103,0.298,0,0.0463 -1,0.567,0.567,0.117,0.625,0,0,0,0.774,0.34,0.46,0,0.0463 -1,0.736,0.736,0,0.396,0,0,0,0.79,0.457,0.709,0,0.324 -1,0.895,0.895,0,0.562,0,0,0,0.774,0.64,0.652,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.278 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.139 -0.667,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.139 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0.0638,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0.872,0,0.421,0.562,0.0159,0,0.107,0 -0.667,0.245,0.245,0,0,0,0.817,0.14,0.58,0.0474,0,0.534,0.428 -0.667,0.305,0.305,0,0,0,0.483,0.14,0.611,0.0634,0,0,0.28 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.153 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.185 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0463 -0,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.169,0.169,0.117,0,0,0,0.281,0.591,0.073,0,0,0.185 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.185 -0.667,0.326,0.326,0.233,0,0,0,0.14,0.673,0.19,0,0,0.0463 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.0926 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0926 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.295 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.158 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.116 -0.667,0.185,0.185,0.233,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0463 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.278 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.667,0.298,0.298,0.233,0,0,0,0.14,0.642,0.153,0,0,0.231 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.281 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.166 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.337 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0926 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0463 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0.445,0,0.231 -1,0.5,0.5,0,0.625,0,0,0,0.62,0.453,0.268,0,0.291 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.231 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.669 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.137 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.335 -0.667,0.305,0.305,0.117,0,0,0,0.14,0.611,0.0634,0,0,0.0619 -0.667,0.318,0.318,0.367,0,0,0,0.14,0.621,0.0764,0,0,0.0463 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.417 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.139 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.278 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.185 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0926 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.366,0,0.555 -0.667,0.635,0.635,0,0.312,0,0,0.14,0.683,0.532,0.183,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.289 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.249 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.12 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0657 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0463 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.185 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0463 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0926 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.0463 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.231 -0.667,0.613,0.613,0,0,0.383,0,0.14,0.704,0.432,0,0,0.215 -1,0.928,0.928,0,0,0.553,0.0667,0,0.744,0.791,0,0.475,0.139 -1,0.555,0.555,0,0,0,0.7,0.14,0.642,0.505,0,0.326,0.0463 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.231 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.321 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.0463 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.0463 -1,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.139 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.366 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.395 -0.667,0.326,0.326,0.233,0,0,0,0.14,0.673,0.305,0,0,0.0926 -0.667,0.395,0.395,0,0,0.489,0,0.14,0.704,0.315,0,0,0.231 -1,0.736,0.736,0,0.188,0.447,0.15,0,0.79,0.547,0.483,0.202,0.417 -1,0.613,0.613,0,0.438,0,0.617,0.14,0.704,0.485,0,0,0.231 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.0926 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.0924 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.176 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.0926 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.0463 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.591,0.141,0,0,0.0463 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.213 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.37 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.139 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.165 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.0463 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.231 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.147,0.147,0.233,0,0,0,0.281,0.571,0.0316,0,0,0.509 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.462 -1,0.452,0.452,0,0,0,0,0,0.651,0.107,0,0,0.319 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0.139 -0.667,0.312,0.312,0,0,0.936,0,0.14,0.621,0.0997,0,0.0252,0.24 -0.333,0.175,0.175,0,0,0,0.567,0.281,0.591,0.0629,0.113,0.734,0.278 -0.333,0.171,0.171,0,0.312,0,0.467,0.281,0.591,0.0658,0.702,0.396,0.278 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0.539,0.635,0.139 -0.667,0.29,0.29,0.367,0,0,0,0.14,0.621,0.137,0.276,0.313,0 -1,0.422,0.422,0.117,0,0,0,0,0.682,0.222,0,0.638,0 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0.411,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0.616,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0.298,0,0,0.774,0.64,0,0,0.231 -1,0.928,0.928,0,0,0,0.567,0,0.744,0.791,0,0.464,0.0926 -1,0.807,0.807,0.233,0,0,0.2,0,0.682,0.749,0,0.0134,0.0926 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.267 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.177 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.286 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0.602 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0.324 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.278 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.139 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.333,0.174,0.174,0.367,0,0,0,0.281,0.602,0.0846,0,0,0.278 -1,0.464,0.464,0.35,0,0,0,0,0.728,0.277,0,0,0.278 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.139 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0926 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.278 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0463 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.14 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.254 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.195 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.218 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.144 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.139 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.185 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0463 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.555 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.213 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0463 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0.262,0,0.185 -1,0.736,0.736,0,0.708,0,0,0,0.79,0.457,0.58,0,0.584 -0.667,0.613,0.613,0,0.25,0,0,0.14,0.704,0.432,0,0,0.621 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.427 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0852 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0.483,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.278 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.491 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.278 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.231 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.418 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.376 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.231 -0.667,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.0463 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0783 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.231 -0.333,0.175,0.175,0.867,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0.35,0,0,0,0.281,0.591,0.0658,0,0,0.0926 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0926 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.667,0.298,0.298,0.367,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0.117,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.139 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.28 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.313 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.322 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.206 -1,0.177,0.177,0.7,0,0,0,0.281,0.586,0.0433,0,0,0.136 -1,0.318,0.318,0.267,0,0,0,0.14,0.621,0.109,0,0,0.56 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.175 -1,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.0463 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.0463 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.0926 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.0926 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.0926 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.0463 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.382 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.147 -0.667,0.507,0.507,0.2,0,0,0,0.14,0.714,0.371,0,0,0.324 -0.667,0.613,0.613,0.283,0,0,0,0.14,0.704,0.485,0,0,0.278 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.0463 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.496,0,0 -0.667,0.321,0.321,0,0.958,0.617,0,0.14,0.621,0.143,0.163,0,0 -0.667,0.312,0.312,0,0,0,0.65,0.14,0.621,0.169,0,0.464,0.134 -0.667,0.3,0.3,0,0,0,0.383,0.14,0.621,0.185,0,0.441,0.18 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0.218,0.0463 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.0463 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.194 -0.667,0.395,0.395,0.483,0,0,0,0.14,0.704,0.315,0,0,0.112 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.375 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.451 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.294,0,0,0.251 -0.333,0.302,0.302,0,0,0,0,0.281,0.602,0.272,0,0,0.204 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0495,0.0495,0,0,0.383,0,0.421,0.562,0.0159,0,0,0 -1,0.342,0.342,0,0,0.234,0.317,0,0.589,0.0632,0,0.39,0.328 -0.667,0.305,0.305,0,0,0,0.983,0.14,0.611,0.0634,0,0.631,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0.534,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0926 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.324 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0926 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0463 -0.333,0.188,0.188,0.233,0,0,0,0.281,0.617,0.103,0,0,0.139 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.12 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.124 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.393 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.591 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0463 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.36 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.286 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.118,0,0 -1,0.0816,0.0816,0,0.312,0,0,0.281,0.56,0.0236,0.799,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0.088,0,0.0824 -0.667,0.305,0.305,0,0.0833,0,0,0.14,0.611,0.0634,0.429,0,0.127 -0.333,0.184,0.184,0,0.229,0,0,0.281,0.591,0.0462,0,0,0.139 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.139 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0926 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.417 -0,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0.85,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0463 -0.667,0.326,0.326,0.117,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.567,0.567,0.117,0,0,0,0,0.774,0.34,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0.312,0,0 -1,0.895,0.895,0.367,0.312,0,0,0,0.774,0.64,0.623,0,0.0463 -1,0.928,0.928,0.117,0,0,0,0,0.744,0.791,0,0,0.0463 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.0463 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.234 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.484 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.185 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0926 -0.667,0.326,0.326,0.233,0,0,0,0.14,0.673,0.19,0,0,0.303 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0.431,0,0 -0.667,0.507,0.507,0,0.958,0,0,0.14,0.714,0.31,0.648,0,0.506 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.58,0,0.425 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.367 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.27 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0773 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.148 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.258 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.122 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.522 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0463 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.455 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.195 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.188,0.188,0,0.0833,0,0,0.281,0.617,0.103,0.54,0,0.0463 -1,0.567,0.567,0.117,0.542,0,0,0,0.774,0.34,0,0,0.312 -1,0.736,0.736,0.367,0,0,0,0,0.79,0.457,0,0,0.507 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.493 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.688 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.212 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0525,0.0525,0.117,0,0,0,0.14,0.559,0.0213,0,0,0.424 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.127 -0.333,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0.4,0,0 -0.667,0.318,0.318,0,0.625,0,0,0.14,0.621,0.0764,0.151,0,0.0926 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0.117,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0.367,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.0463 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.278 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.139 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0.417 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.0926 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.139 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0926 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0926 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.527 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.137 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.386 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0.483,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.185 -0.667,0.292,0.292,0.45,0,0,0,0.14,0.621,0.198,0,0,0 -0.667,0.289,0.289,0.267,0,0,0,0.14,0.621,0.233,0,0,0.0463 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.463 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.507 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.0463 -0.667,0.395,0.395,0.45,0,0,0,0.14,0.704,0.315,0,0,0.185 -1,0.736,0.736,1,0,0,0,0,0.79,0.547,0,0,0.139 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.0926 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.139 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.0463 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0 -1,0.185,0.185,0.233,0,0,0,0.281,0.591,0.0803,0,0,0.314 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.249 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.232 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.491 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.062 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0463 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.185 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.139 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.0926 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.139 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.245 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.082 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.441 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.262 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.24 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.113 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.277 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.26 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.146 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.304 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.186 -0.667,0.312,0.312,0,0,0.702,0,0.14,0.621,0.0997,0,0,0.737 -0.667,0.3,0.3,0,0,0.234,0.317,0.14,0.621,0.11,0,0.214,0.0463 -0.667,0.292,0.292,0,0,0,0.45,0.14,0.621,0.116,0,0.407,0.0463 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.521,0.0463 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.324 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.324 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.459 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0926 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.119 -1,0.305,0.305,0.367,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0.35,0,0,0,0.14,0.621,0.0764,0,0,0.141 -0.667,0.321,0.321,0,0,0.383,0,0.14,0.621,0.0895,0,0,0.108 -0.667,0.312,0.312,0,0,0.553,0.0667,0.14,0.621,0.0997,0,0.269,0.441 -0.667,0.3,0.3,0,0,0.0638,0.967,0.14,0.621,0.11,0,0,0.392 -0.667,0.292,0.292,0.483,0,0.234,0.317,0.14,0.621,0.116,0,0.295,0.19 -0.667,0.289,0.289,0,0,0,1,0.14,0.621,0.13,0,0.568,0.139 -0.667,0.29,0.29,0,0,0,0.233,0.14,0.621,0.137,0,0.252,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.139 -0.667,0.326,0.326,0.367,0,0,0,0.14,0.673,0.19,0,0,0 -0.333,0.222,0.222,0.117,0,0,0,0.281,0.633,0.124,0,0,0.139 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.185 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0926 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.139 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.215 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.16 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.137 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0924 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.165 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0.518 -0.333,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.244 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0.415,0,0.133 -0.333,0.181,0.181,0,0.312,0,0,0.281,0.591,0.0578,0,0,0.218 -0.333,0.175,0.175,0,0,0.298,0,0.281,0.591,0.0629,0,0,0 -0.333,0.171,0.171,0,0,0,0.817,0.281,0.591,0.0658,0,0.639,0 -0.333,0.169,0.169,0,0,0,0.483,0.281,0.591,0.073,0,0.0601,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0926 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0926 -0.667,0.326,0.326,0.233,0,0,0,0.14,0.673,0.19,0,0,0.0463 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0.363,0,0.602 -0.667,0.507,0.507,0,0.625,0,0,0.14,0.714,0.31,0.151,0,0.612 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.185 -1,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.0926 -1,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.0926 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.303 -0.333,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.209 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.312 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.245 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0463 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.466 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.509 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0632 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.323 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.0463 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.139 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0.172,0,0.139 -0.667,0.395,0.395,0.233,0.312,0,0,0.14,0.704,0.232,0.409,0,0.278 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.139 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0.266,0,0.478 -1,0.928,0.928,0,0.312,0,0,0,0.744,0.791,0.664,0,0.0463 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.177 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0971 -1,0.184,0.184,0.2,0,0,0,0.281,0.591,0.0636,0,0,0.0874 -1,0.321,0.321,0.283,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.292,0.292,0.233,0,0,0,0.14,0.621,0.198,0,0,0.305 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.352 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.349 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.185 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.185 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.0463 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.185 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.0926 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.25 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.392 -0.667,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.0926 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0.05,0,0,0,0.281,0.57,0.0297,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0.467,0,0,0,0.281,0.59,0.0641,0,0,0.0993 -1,0.424,0.424,0.233,0,0,0,0,0.648,0.206,0,0,0.0908 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.101 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.185 -0.333,0.159,0.159,0.233,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.185 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0.0355 -1,0.412,0.412,0.667,0,0,0,0,0.771,0.468,0,0,0.287 -0.333,0.194,0.194,1,0,0,0,0.281,0.637,0.196,0,0,0.0463 -0.667,0.429,0.429,1,0,0,0,0.14,0.701,0.489,0,0,0.139 -1,0.783,0.783,1,0,0.66,0,0,0.741,0.852,0,0,0.509 -1,0.88,0.88,0.333,0,0,0.583,0,0.679,0.786,0,0.537,0.278 -1,0.415,0.415,0,0,0,0.4,0.14,0.599,0.337,0,0.0208,0.128 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.143 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.145 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.425 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.131 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.279 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.863 -0.333,0.16,0.16,0.233,0,0,0,0.281,0.59,0.0662,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0926 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.631,0.125,0,0,0.324 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.0926 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.0463 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.19 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.224 -1,0.249,0.249,0,0,0,0,0,0.571,0.198,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.634 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0.367,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0.1,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.139 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.172 -1,0.538,0.538,0,0.0833,0,0,0.14,0.681,0.537,0.612,0,0.0463 -1,0.603,0.603,0,0.208,0,0,0.14,0.64,0.509,0,0,0.555 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.139 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.156 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.224 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.282 -1,0.295,0.295,0.367,0,0,0,0.14,0.609,0.0639,0,0,0.212 -0.667,0.301,0.301,0.1,0,0,0,0.14,0.619,0.077,0,0,0.128 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.139 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.0463 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.304 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.226 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.139 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.0926 -0.333,0.162,0.162,0.467,0,0,0,0.281,0.616,0.104,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.278 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.0926 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.0926 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -0.667,0.603,0.603,0,0,0.66,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0.533,0.14,0.599,0.31,0,0.193,0 -1,0.116,0.116,0,0,0,0.45,0.281,0.565,0.0765,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.173 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0463 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.37 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.185 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.231 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.231 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.369 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.419 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0926 -1,0.783,0.783,0,0,0.702,0,0,0.741,0.797,0,0,0.0463 -1,0.88,0.88,0,0,0.277,0.283,0,0.679,0.756,0,0.565,0.0463 -1,0.415,0.415,0,0,0,0.2,0.14,0.599,0.31,0,0.564,0.169 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.139 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0463 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.194,0.194,0,0,0.383,0,0.281,0.637,0.164,0,0,0.324 -0.667,0.429,0.429,0,0,0.277,0.283,0.14,0.701,0.436,0,0.145,0.324 -0.667,0.538,0.538,0,0,0,0.45,0.14,0.681,0.537,0,0,0.0463 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.231 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0.766,0,0.281,0.59,0.0641,0,0,0 -1,0.299,0.299,0,0,0.213,0.333,0.14,0.619,0.144,0,0.687,0 -1,0.291,0.291,0,0,0,0.9,0.14,0.619,0.17,0,0.607,0.0341 -1,0.394,0.394,0,0,0,0,0,0.648,0.27,0,0.417,0.306 -1,0.382,0.382,0,0,0,0,0,0.648,0.29,0,0.491,0.246 -1,0.378,0.378,0,0,0,0,0,0.648,0.343,0,0.454,0.2 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0.352 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.247 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.234 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.709 -1,0.484,0.484,0.233,0,0,0,0,0.787,0.551,0,0,0.363 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.585 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.216 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.411 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.37 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0.0883 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.191 -1,0.411,0.411,0,0,0.319,0.1,0,0.648,0.246,0,0.243,0.946 -1,0.394,0.394,0.467,0,0,0.883,0,0.648,0.27,0,0.591,0.256 -1,0.382,0.382,0,0,0,0,0,0.648,0.29,0,0,0.161 -1,0.269,0.269,0.233,0,0,0,0.14,0.619,0.234,0,0,0.278 -1,0.378,0.378,0,0,0,0,0,0.648,0.391,0,0,0.0463 -1,0.379,0.379,0,0,0,0,0,0.679,0.431,0,0,0.0806 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.473 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.492 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.531 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.102 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.452 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.272 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.634 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0663 -0.333,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.161 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.231 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.139 -1,0.339,0.339,0.467,0,0,0,0.14,0.712,0.313,0,0,0.0926 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.185 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.362 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.217 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.174 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.481 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.224 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0.679 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0.377 -1,0.411,0.411,0,0,0,0,0,0.648,0.143,0,0,0.611 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.0805 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.183 -0.333,0.159,0.159,0,0,0.66,0,0.281,0.59,0.0735,0,0,0.0463 -0.667,0.268,0.268,0,0,0,0.533,0.14,0.619,0.139,0,0.877,0 -0.333,0.159,0.159,0,0,0,0.2,0.281,0.601,0.0853,0,0.218,0.0846 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.278 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.0463 -0.667,0.339,0.339,0,0.0833,0,0,0.14,0.712,0.313,0.609,0,0.231 -0.667,0.429,0.429,0,0.208,0,0,0.14,0.701,0.436,0.111,0,0.404 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.749 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0.153,0,0.231 -1,0.597,0.597,0,0.396,0,0,0,0.617,0.457,0.402,0,0.358 -1,0.0495,0.0495,0,0.208,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.224 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.297 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.229 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.632 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.183 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.208 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.213 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.271 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.394 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.139 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0.367,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.291,0.291,0.567,0,0,0,0.14,0.701,0.234,0,0,0.185 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.0463 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.359,0,0.0926 -0.667,0.538,0.538,0,0.292,0,0,0.14,0.681,0.537,0.53,0,0.656 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0.259,0,0.0893 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.0638,0,0.421,0.562,0.0159,0,0,0.179 -1,0.0798,0.0798,0,0,0.915,0,0.281,0.56,0.0238,0,0.0935,0 -1,0.143,0.143,0,0,0,0.783,0.281,0.57,0.0318,0,0.745,0 -1,0.172,0.172,0,0,0,0.7,0.281,0.585,0.0399,0,0.758,0.0463 -1,0.301,0.301,0.367,0,0,0,0.14,0.619,0.077,0,0.693,0 -0.667,0.299,0.299,0.1,0,0,0,0.14,0.619,0.0902,0,0.435,0.185 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0.392,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0.407,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0.564,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0.816,0.231 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0.3,0.139 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.0463 -0.333,0.162,0.162,0.467,0,0,0,0.281,0.616,0.104,0,0,0.0463 -0.667,0.291,0.291,0,0,0.702,0,0.14,0.701,0.234,0,0,0.231 -0.667,0.339,0.339,0,0,0.277,0.283,0.14,0.712,0.313,0,0.389,0.291 -0.667,0.429,0.429,0,0,0,0.7,0.14,0.701,0.436,0,0.457,0.492 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.483 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.417 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.139 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0.276,0,0.0926 -0.333,0.172,0.172,0,0.708,0,0,0.281,0.585,0.0399,0.284,0,0.0926 -0.333,0.175,0.175,0,0.208,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.499 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0463 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.139 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.506 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.154 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.185 -0.667,0.291,0.291,0.233,0.0833,0,0,0.14,0.701,0.234,0.614,0,0 -0.667,0.339,0.339,0,0.208,0,0,0.14,0.712,0.313,0.53,0,0.0926 -1,0.619,0.619,0,0,0.979,0,0,0.771,0.646,0.233,0.147,0.139 -1,0.783,0.783,0,0,0,0.533,0,0.741,0.797,0,0.613,0.0463 -1,0.88,0.88,0,0,0,0.45,0,0.679,0.756,0,0.386,0.0463 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.322 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.0679 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.0926 -0.667,0.0495,0.0495,0.167,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.0667,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.231 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.035 -1,0.424,0.424,0,0,0,0,0,0.648,0.206,0,0,0.166 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.195 -1,0.394,0.394,0,0,0,0,0,0.648,0.27,0,0,0.3 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.115 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.0978 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.0926 -0.667,0.274,0.274,0.233,0,0,0,0.14,0.671,0.308,0,0,0.185 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.509 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.185 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.278 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.0839 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.407 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.268 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.245 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.441 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0412,0,0,0.376 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.069,0,0,0.171 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0.0962 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.25 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.139 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.0463 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.0463 -1,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.0463 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.0463 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.0463 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.0463 -1,0.484,0.484,0.417,0,0.766,0,0,0.787,0.551,0,0,0.0463 -1,0.619,0.619,0.05,0,0.213,0.333,0,0.771,0.725,0.241,0.457,0.231 -1,0.783,0.783,0,0.458,0,1,0,0.741,0.852,0.521,0.55,0.0463 -1,0.88,0.88,0,0.146,0,0.65,0,0.679,0.786,0,0.297,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0.488,0.324 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0.595,0.139 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0.095,0.364 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0827 -1,0.0798,0.0798,0.117,0,0,0,0.281,0.56,0.0238,0,0,0.253 -1,0.143,0.143,0.117,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0463 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.231 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.275 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0463 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.185 -0.333,0.162,0.162,0.233,0,0,0,0.281,0.616,0.104,0,0,0.0463 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.104 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.509 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.278 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.149,0,0.34 -0.667,0.603,0.603,0,0.292,0,0,0.14,0.64,0.509,0.671,0,0 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0.436,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.367,0,0,0,0.281,0.56,0.0238,0,0,0.351 -0.667,0.236,0.236,0.1,0,0,0,0.14,0.578,0.0478,0,0,0.421 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.157 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.114 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.417 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0926 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0.233,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.277 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.338 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.231 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.0463 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.311 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.107 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0,0,0.29 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.667,0.268,0.268,0.867,0,0,0,0.14,0.619,0.139,0,0,0.0852 -0.667,0.269,0.269,1,0,0,0,0.14,0.64,0.155,0,0,0 -0.333,0.162,0.162,0.0167,0,0,0,0.281,0.616,0.104,0,0,0.185 -0.333,0.17,0.17,0.367,0,0,0,0.281,0.631,0.125,0,0,0.278 -1,0.484,0.484,0.1,0,0,0,0,0.787,0.461,0,0,0.185 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.139 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.185 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.231 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.231 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.277 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.417 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.208 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.297 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.171 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.185 -0.333,0.164,0.164,0.367,0,0,0,0.281,0.59,0.0633,0,0,0.0926 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.269,0.269,0.05,0,0,0,0.14,0.619,0.131,0,0,0.139 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0463 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.324 -1,0.291,0.291,0.367,0,0,0,0.14,0.701,0.234,0,0,0.0463 -1,0.339,0.339,0.1,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.231 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.229 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.129 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.11,0.11,0,0.0833,0,0,0.14,0.557,0.0316,0.573,0,0.106 -0.667,0.236,0.236,0.233,0.521,0,0,0.14,0.578,0.0478,0,0,0.0465 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.139 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.258 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.185 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.185 -0.333,0.159,0.159,0.467,0,0,0,0.281,0.601,0.0853,0,0,0.0926 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.231 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.0463 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.0926 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.217 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.0463 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.0463 -1,0.597,0.597,0,0,0.383,0,0,0.617,0.457,0,0,0 -1,0.183,0.183,0,0,0.277,0.283,0.14,0.568,0.137,0,0.279,0.395 -1,0.0743,0.0743,0,0,0,0.4,0.281,0.56,0.0443,0,0.659,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0377 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0201,0,0,0.322 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0.093 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.12 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.42 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.215 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.233 -0.667,0.271,0.271,0.417,0,0,0,0.14,0.619,0.199,0,0,0.154 -0.667,0.269,0.269,0.05,0,0,0,0.14,0.619,0.234,0.355,0,0 -0.667,0.268,0.268,0,0.771,0,0,0.14,0.619,0.267,0.438,0,0.48 -0.667,0.269,0.269,0,0.146,0,0,0.14,0.64,0.293,0,0,0.244 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.37 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.281,0.631,0.254,0,0,0.139 -0.667,0.294,0.294,0.417,0,0,0,0.281,0.621,0.296,0,0,0.037 -0.667,0.603,0.603,0.05,0,0,0,0.14,0.64,0.53,0,0,0.307 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.0463 -0.667,0.116,0.116,0,0,0,0.05,0.281,0.565,0.0875,0,0,0.488 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0.0499 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0373 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.448 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.299,0.299,0.467,0,0,0,0.14,0.619,0.144,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0 -1,0.394,0.394,0,0,0,0,0,0.648,0.27,0,0,0.231 -0.667,0.271,0.271,0,0,0.128,0,0.14,0.619,0.199,0,0,0.0463 -0.667,0.269,0.269,0,0,0.851,0,0.14,0.619,0.234,0,0.547,0.278 -1,0.268,0.268,0,0,0,0.833,0.14,0.619,0.267,0,0.432,0.0926 -1,0.269,0.269,0,0,0,0.15,0.14,0.64,0.293,0,0.792,0.0926 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.0463 -0.667,0.291,0.291,0,0.146,0,0,0.14,0.701,0.318,0.582,0,0.139 -1,0.484,0.484,0,0.771,0,0,0,0.787,0.551,0,0,0.347 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.392 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.139 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.139 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.0499 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.0463 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.33,0.33,0,0,0,0,0,0.586,0.0637,0,0,0.271 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.236 -0.667,0.301,0.301,0.233,0,0,0,0.14,0.619,0.077,0,0,0.349 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.322 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.255,0,0.0926 -0.333,0.164,0.164,0,0.292,0,0,0.281,0.59,0.0633,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.185 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0.0833,0,0,0.281,0.601,0.0853,0.682,0,0.185 -0.333,0.162,0.162,0,0.521,0,0,0.281,0.616,0.104,0.788,0,0.536 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0.539,0,0.215 -1,0.484,0.484,0,0.292,0.383,0,0,0.787,0.461,0.566,0,0.0463 -0.333,0.239,0.239,0,0,0.596,0.0333,0.281,0.631,0.226,0,0.0475,0.0463 -0.667,0.538,0.538,0,0,0.383,0.7,0.14,0.681,0.537,0,0,0.0926 -1,0.88,0.88,0,0,0.596,0.0333,0,0.679,0.756,0,0.576,0.148 -1,0.597,0.597,0,0,0,0.95,0,0.617,0.457,0,0.423,0 -1,0.249,0.249,0,0,0,0,0,0.571,0.198,0,0.499,0.0463 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0.496,0.0463 -1,0.066,0.066,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0316,0.494,0,0.343 -1,0.33,0.33,0.233,0.604,0,0,0,0.586,0.0637,0.623,0,0.163 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0.519 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.26 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.331 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0463 -0,0.0495,0.0495,0,0,0.702,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0.277,0.283,0.281,0.59,0.0735,0,0.107,0.0463 -0.333,0.159,0.159,0,0,0,1,0.281,0.59,0.0772,0,0,0.139 -0.333,0.159,0.159,0,0,0,0.45,0.281,0.601,0.0853,0,0,0.0926 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,0.7,0,0,0,0.281,0.631,0.125,0,0,0.324 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0463 -1,0.619,0.619,0,0,0.66,0,0,0.771,0.646,0,0.0861,0.0926 -1,0.783,0.783,0,0,0,0.783,0,0.741,0.797,0,0.632,0.185 -1,0.88,0.88,0,0,0,0.2,0,0.679,0.756,0,0.767,0.466 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0.12,0.396 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.21 -1,0.295,0.295,0.233,0,0,0,0.14,0.609,0.0639,0,0,0.327 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.319 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.463 -0.333,0.164,0.164,0.117,0,0,0,0.281,0.59,0.0633,0,0,0.185 -0.333,0.16,0.16,0.35,0,0,0,0.281,0.59,0.0662,0,0,0.0463 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.139 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -1,0.412,0.412,0.233,0,0,0,0,0.771,0.343,0,0,0.225 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.231 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.0463 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.271 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.347 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.219 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.186 -1,0.236,0.236,0,0,0.979,0,0.14,0.578,0.0478,0,0.123,0.105 -0.667,0.172,0.172,0,0,0,0.483,0.281,0.585,0.0399,0,0,0.109 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.741 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0926 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.538 -0.333,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.185 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.231 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.266 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0.979,0,0.281,0.56,0.0172,0,0.145,0 -1,0.0495,0.0495,0,0,0,0.533,0.281,0.56,0.0157,0,0.791,0 -1,0.0495,0.0495,0,0,0,0.45,0.421,0.562,0.0159,0,0.123,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.373 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.457 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.433 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.0864 -0,0.0495,0.0495,0,0,0.383,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.17,0.17,0,0,0.277,0.283,0.281,0.59,0.0582,0,0.316,0 -0.333,0.164,0.164,0,0,0,0.2,0.281,0.59,0.0633,0,0.485,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0.414,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0.521,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0.427,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0.277,0.0463 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0.291,0.0463 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0.436,0.113 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0.57,0.581 -1,0.619,0.619,0.233,0.0833,0,0,0,0.771,0.646,0.598,0.472,0.0463 -1,0.783,0.783,0,0.208,0,0,0,0.741,0.797,0,0.645,0.0926 -1,0.88,0.88,0,0,0.66,0,0,0.679,0.756,0,0.623,0.231 -1,0.415,0.415,0,0,0,0.533,0.14,0.599,0.31,0,0.297,0.0926 -1,0.116,0.116,0,0,0,0.2,0.281,0.565,0.0765,0,0,0.124 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0.05,0,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.0343 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.313 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.683 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.645 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.501 -0.667,0.274,0.274,0.467,0,0,0,0.14,0.671,0.308,0,0,0.278 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0.452,0,0.417 -0.667,0.429,0.429,0,0.604,0,0,0.14,0.701,0.489,0.262,0,0.211 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.0463 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.0926 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.0332 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.191 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -1,0.279,0.279,0,0,0,0,0.14,0.619,0.186,0,0,0.0463 -1,0.382,0.382,0,0,0,0,0,0.648,0.29,0,0,0.0926 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.231 -0.667,0.268,0.268,0.167,0,0,0,0.14,0.619,0.267,0,0,0.463 -0.667,0.269,0.269,0.0667,0,0,0,0.14,0.64,0.293,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.126 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.264 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.188 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.0926 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.0926 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.139 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.417 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.207 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.133 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.243 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.164,0.164,0.467,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.227 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.318 -0.667,0.162,0.162,0.367,0,0,0,0.281,0.616,0.104,0,0,0.341 -0.667,0.291,0.291,0.333,0,0,0,0.14,0.701,0.234,0.25,0,0.324 -1,0.484,0.484,0,0.292,0,0,0,0.787,0.461,0.754,0,0.0926 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0.654,0,0.0926 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.61,0,0.0926 -1,0.88,0.88,0.117,0,0,0,0,0.679,0.756,0.542,0,0.231 -1,0.597,0.597,0.117,0,0,0,0,0.617,0.457,0.592,0,0.0926 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.157 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.0949 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.188 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.141 -0.333,0.164,0.164,0.233,0,0,0,0.281,0.591,0.0527,0,0,0.293 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0639 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0.717,0,0,0,0.281,0.617,0.103,0,0,0.37 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.185 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.324 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0463 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0926 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0534 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.441 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.212 -1,0.404,0.404,0,0,0,0,0,0.651,0.107,0,0,0.27 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.175 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.266 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.458 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.278 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.278 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.509 -0.667,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0.0926 -0.667,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0,0 -0.667,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.546 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.242 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.383,0,0.421,0.562,0.0159,0,0,0.19 -1,0.317,0.317,0,0,0.574,0.05,0,0.589,0.0632,0,0.507,0.203 -0.667,0.284,0.284,0,0,0,0.683,0.14,0.611,0.0634,0,0.451,0.323 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0.911,0.254 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0.491,0.231 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.273,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.675,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.236,0.0926 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.231 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.656 -0.667,0.252,0.252,0.117,0,0,0,0.14,0.673,0.19,0,0,0.295 -0.667,0.264,0.264,0.833,0,0,0,0.14,0.704,0.232,0,0,0.139 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0.312,0,0.388 -1,0.523,0.523,0.233,0.292,0,0,0,0.774,0.64,0.302,0,0.0926 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0463 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.285 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.386 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0.233,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.717,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.278 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.231 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.231 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0926 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.61 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.496 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.0463 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.0926 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.0463 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.139 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.231 -1,0.42,0.42,0,0.0833,0,0,0,0.79,0.547,0.657,0,0.0926 -1,0.523,0.523,0,0.604,0,0,0,0.774,0.719,0.704,0,0.0463 -1,0.671,0.671,0,0.208,0,0,0,0.744,0.845,0.189,0,0.0463 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.139 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.415 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.269 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -0.667,0.139,0.139,0,0,0.0638,0,0.281,0.571,0.0295,0,0,0 -0.667,0.167,0.167,0.367,0,0.574,0.05,0.281,0.586,0.0433,0,0.116,0.179 -1,0.404,0.404,0.1,0,0.383,0.683,0,0.651,0.155,0,0,0.0266 -0.667,0.278,0.278,0,0,0.574,0.05,0.14,0.621,0.143,0,0.264,0.463 -0.667,0.27,0.27,0,0,0,0.683,0.14,0.621,0.169,0,0.602,0.0463 -0.667,0.259,0.259,0.233,0,0,0,0.14,0.621,0.185,0,0.445,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.139 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.185 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.231 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.0926 -0.667,0.252,0.252,0.617,0,0,0,0.14,0.673,0.305,0.479,0,0 -1,0.371,0.371,0.333,0.604,0,0,0,0.774,0.464,0.327,0,0.417 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.139 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.463 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.0996 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.218 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.259 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.364 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0927 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.368 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.278 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0463 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0463 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.157,0.157,0.583,0,0,0,0.281,0.633,0.124,0,0,0.139 -1,0.42,0.42,0.6,0,0,0,0,0.79,0.457,0,0,0.278 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0463 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.174 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.0566 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.1 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.169 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.183 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.126 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.414 -0.333,0.154,0.154,0.233,0,0,0,0.281,0.591,0.0629,0,0,0.193 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0.383,0,0.281,0.591,0.0767,0,0,0.0926 -0.667,0.249,0.249,0,0,0.574,0.05,0.14,0.642,0.153,0,0.298,0 -0.667,0.252,0.252,0,0,0,1,0.14,0.673,0.19,0,0.646,0.139 -1,0.371,0.371,0.717,0,0,0.183,0,0.774,0.34,0,0.201,0.185 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.231 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.305 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0926 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.509 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.238 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.224 -1,0.228,0.228,0.467,0,0,0,0.14,0.58,0.0474,0,0,0.244 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0.433,0,0 -0.667,0.16,0.16,0,0.604,0,0,0.281,0.591,0.0578,0.56,0,0.744 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.249 -1,0.252,0.252,0.233,0,0,0,0.14,0.673,0.19,0,0,0.236 -1,0.264,0.264,0.367,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.296,0.296,0.1,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0463 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.139 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.0463 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.137 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.207 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.156 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.231 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.463 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0926 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.0463 -1,0.371,0.371,0.233,0,0,0,0,0.774,0.34,0,0,0.0463 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0463 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0463 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.35,0,0,0,0.281,0.571,0.0316,0,0,0.14 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0926 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.139 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.0926 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.139 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.185 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.37 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.414 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0.334 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0.232 -1,0.167,0.167,0.233,0,0,0,0.281,0.586,0.0433,0,0,0.214 -1,0.404,0.404,0,0,0.957,0,0,0.651,0.155,0,0.0846,0.103 -0.667,0.278,0.278,0,0,0,0.55,0.14,0.621,0.143,0,0.542,0.139 -0.333,0.16,0.16,0.233,0,0,0.433,0.281,0.591,0.0934,0,0.428,0.0463 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0.409,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0.586,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.2,0.185 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0.347,0.0463 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0.329,0.602 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.5,0.0926 -1,0.371,0.371,0.117,0,0,0,0,0.774,0.464,0,0.595,0.449 -1,0.42,0.42,0.35,0,0,0,0,0.79,0.547,0,0.0223,0.185 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.139 -1,0.671,0.671,0,0,0.638,0,0,0.744,0.845,0,0.151,0.281 -1,0.799,0.799,0,0,0,0.8,0,0.682,0.78,0,0.199,0.0463 -1,0.582,0.582,0,0,0,0.933,0,0.62,0.492,0,0,0.607 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.14 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0.537 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0743 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.253 -1,0.392,0.392,0,0,0,0,0,0.651,0.205,0,0,0.0862 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0 -0.667,0.259,0.259,0.717,0,0,0,0.14,0.621,0.185,0,0,0.463 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.0463 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.185 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.0926 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.167,0,0,0.0926 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.231 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.238 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0.151,0,0.0926 -1,0.799,0.799,0,0.292,0,0,0,0.682,0.78,0.425,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.175 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.236 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.396 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.165 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.0734 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.139 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.231 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.185 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0463 -0.667,0.249,0.249,0.233,0,0,0,0.14,0.642,0.153,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.139 -1,0.42,0.42,0,0,0.0638,0,0,0.79,0.457,0,0,0.0463 -0.667,0.365,0.365,0,0,0.255,0.3,0.14,0.704,0.432,0,0.325,0.139 -0.667,0.464,0.464,0,0,0,0.433,0.14,0.683,0.532,0,0.476,0.0926 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.616,0.185 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.0861,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.323 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.0937 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.564 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.11 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.185 -0.667,0.164,0.164,0.367,0,0,0,0.281,0.591,0.0527,0,0,0.185 -0.333,0.16,0.16,0.833,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0926 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.139 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.0463 -0.667,0.252,0.252,0.367,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.1,0,0,0,0.14,0.704,0.232,0,0,0.185 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0.182 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0926 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.299,0.299,0.233,0,0,0,0.281,0.602,0.26,0,0,0.0926 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0.617,0,0,0,0.281,0.56,0.0236,0.14,0,0.173 -1,0.317,0.317,0.333,0.396,0,0,0,0.589,0.0632,0.627,0,0.277 -1,0.402,0.402,0,0.208,0,0,0,0.635,0.0871,0,0,0.555 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.329 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0926 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0926 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.0463 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.231 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.37 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.185 -1,0.371,0.371,0,0.0833,0,0,0,0.774,0.34,0.399,0,0.324 -1,0.42,0.42,0,0.521,0,0,0,0.79,0.457,0.469,0,0 -1,0.523,0.523,0,0.604,0.383,0,0,0.774,0.64,0.33,0,0.185 -1,0.671,0.671,0,0,0.574,0.05,0,0.744,0.791,0,0.441,0.285 -1,0.549,0.549,0,0,0,0.933,0.14,0.642,0.505,0,0.727,0.231 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.291,0.136 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.268 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.351 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.101 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.106 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.149,0.149,0,0,0.0638,0,0.281,0.591,0.073,0,0,0.139 -0.667,0.149,0.149,0,0,0.574,0.05,0.281,0.591,0.0767,0,0.184,0 -0.667,0.249,0.249,0,0,0,0.683,0.14,0.642,0.153,0,0.534,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.552,0 -0.333,0.157,0.157,0.233,0,0,0,0.281,0.633,0.124,0,0.745,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0.577,0.417 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0.368,0.0926 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0.175,0.703 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0868 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.111 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.37 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.151,0.151,0.117,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.157,0.157,0.117,0,0,0,0.281,0.633,0.124,0,0,0.139 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0968 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.0926 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.213 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.399 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.394 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0.116 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.405 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.624 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.256 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.0926 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.0926 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.247 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.37 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.314 -0.667,0.249,0.249,0.367,0,0,0,0.14,0.642,0.291,0,0,0.412 -0.667,0.252,0.252,0.1,0,0,0,0.14,0.673,0.305,0,0,0.331 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.238 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0824 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.483 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.205 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.39 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.203 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.139 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.262 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.139,0.139,0,0.0833,0,0,0.281,0.571,0.0295,0.436,0,0 -1,0.167,0.167,0,0.521,0,0,0.281,0.586,0.0433,0,0,0.332 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.262 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0.456,0,0.11 -1,0.27,0.27,0,0.604,0,0,0.14,0.621,0.169,0.591,0,0.824 -1,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0.871,0,0.29 -1,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0.652,0,0.27 -1,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0.623,0,0.278 -1,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0.622,0,0.0463 -1,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0.813,0,0.0926 -1,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0.586,0,0.0926 -0.667,0.157,0.157,0,0,0,0,0.281,0.633,0.167,0.587,0,0.525 -1,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0.332,0,0.366 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -1,0.257,0.257,0,0,0,0,0.281,0.622,0.294,0,0,0.0463 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.231 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.145 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.217 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.192 -0.333,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.195 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.139 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.278 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.149,0.149,0.35,0,0,0,0.281,0.602,0.0846,0,0,0.139 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0.26,0,0.0463 -1,0.671,0.671,0,0.604,0,0,0,0.744,0.791,0.422,0,0.0926 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0926 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.129 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.377 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0926 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.139 -0.333,0.149,0.149,0.367,0,0,0,0.281,0.602,0.0846,0,0,0.231 -0.667,0.252,0.252,0.333,0,0,0,0.14,0.673,0.19,0,0,0.324 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.0926 -1,0.42,0.42,0,0.0833,0,0,0,0.79,0.457,0.596,0,0.0924 -1,0.523,0.523,0,0.521,0.702,0,0,0.774,0.64,0,0,0.139 -1,0.671,0.671,0,0,0.255,0.3,0,0.744,0.791,0,0.0772,0.651 -1,0.549,0.549,0,0,0,0.683,0.14,0.642,0.505,0,0,0.44 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0.957,0,0.421,0.562,0.0159,0,0.12,0 -0.333,0.168,0.168,0,0,0,0.55,0.281,0.591,0.0462,0,0.737,0.231 -0.333,0.164,0.164,0,0,0,0.433,0.281,0.591,0.0527,0,0.513,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0.611,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.261,0.0463 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0.658,0.213 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0.597,0.375 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0.537,0.113 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.154,0.231 -0.333,0.151,0.151,0.233,0,0,0,0.281,0.617,0.103,0,0,0.139 -0.667,0.264,0.264,0.367,0,0,0,0.14,0.704,0.232,0,0,0.109 -1,0.42,0.42,0.583,0,0,0,0,0.79,0.457,0,0,0.324 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.0926 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.228 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.42,0,0.0463 -1,0.405,0.405,0,0.292,0,0,0.14,0.6,0.307,0.759,0,0.0926 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0.804,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0.519,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.21 -1,0.0781,0.0781,0.233,0,0,0,0.281,0.56,0.0236,0,0,0.163 -1,0.317,0.317,0,0,0,0,0,0.589,0.0632,0,0,0.295 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.285 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.37 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0926 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0.224,0,0 -0.667,0.264,0.264,0,0.604,0,0,0.14,0.704,0.232,0.208,0,0.0463 -1,0.42,0.42,0,0.0833,0,0,0,0.79,0.457,0.614,0,0.278 -1,0.523,0.523,0,0.208,0,0,0,0.774,0.64,0,0,0.278 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.449 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.196 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.218 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.252,0.252,0.35,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.138 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.283 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.231 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.37 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0.105 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0.26 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.253 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.157 -1,0.392,0.392,0.233,0,0,0,0,0.651,0.205,0,0,0.191 -1,0.381,0.381,0,0,0,0,0,0.651,0.244,0,0,0.239 -1,0.364,0.364,0,0,0,0,0,0.651,0.268,0,0,0.153 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.454 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.415 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.304 -0.667,0.249,0.249,0,0,0.957,0,0.14,0.642,0.291,0,0.0935,0.0374 -1,0.353,0.353,0,0,0,0.55,0,0.728,0.449,0,0.343,0.37 -1,0.371,0.371,0,0,0,0.183,0,0.774,0.464,0.487,0.358,0.324 -1,0.42,0.42,0,0.896,0,0,0,0.79,0.547,0.569,0,0.0463 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0.871,0,0.384 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.13 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.236 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.155 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.139 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.333,0.16,0.16,0.467,0,0,0,0.281,0.591,0.0934,0,0,0.0463 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.707 -1,0.352,0.352,0,0,0,0,0,0.651,0.288,0,0,0.151 -1,0.349,0.349,0.717,0,0,0,0,0.651,0.34,0,0,0.37 -1,0.348,0.348,0.117,0,0,0,0,0.651,0.388,0,0,0 -1,0.349,0.349,0.117,0,0,0,0,0.682,0.427,0,0,0.37 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.324 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0926 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.37 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.32 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.279 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.118 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.102 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0503 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.256 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.362 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.231 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0926 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.231 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0926 -0.667,0.264,0.264,0.117,0,0,0,0.14,0.704,0.232,0,0,0.0463 -1,0.42,0.42,0.35,0.0833,0,0,0,0.79,0.457,0.458,0,0.139 -1,0.523,0.523,0,0.208,0,0,0,0.774,0.64,0.185,0,0.246 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.136 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -0.667,0.228,0.228,0.467,0,0,0,0.14,0.58,0.0474,0,0,0.382 -0.333,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.0463 -0.667,0.259,0.259,0.233,0,0,0,0.14,0.621,0.11,0,0,0.185 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.284 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.202 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.169 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0463 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.139 -1,0.371,0.371,0,0.0833,0,0,0,0.774,0.34,0.585,0,0.0463 -1,0.42,0.42,0,0.208,0,0,0,0.79,0.457,0.627,0,0.139 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0.294,0,0.0926 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0463 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.276,0,0.231 -1,0.582,0.582,0,0.604,0,0,0,0.62,0.453,0.181,0,0.224 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.247 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.639 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.408 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0534 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.538 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,0.117,0,0,0,0.14,0.704,0.232,0,0,0 -1,0.42,0.42,1,0.0833,0,0,0,0.79,0.457,0.639,0,0.431 -1,0.523,0.523,0.317,0.521,0,0,0,0.774,0.64,0.244,0,0.947 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.423 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.276 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0.233,0,0,0,0.281,0.586,0.0396,0,0,0.113 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0463 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.278 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.139 -0.333,0.157,0.157,0.867,0,0,0,0.281,0.633,0.124,0,0,0.324 -1,0.296,0.296,0.567,0,0,0,0.14,0.714,0.31,0,0,0.0463 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0463 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.509 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.867,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0.317,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.285 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.131 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.833 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0.44,0,0.0463 -0.333,0.153,0.153,0,0.583,0,0,0.421,0.555,0.0593,0.4,0,0.0926 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0463 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0.367,0,0,0,0.421,0.564,0.0871,0,0,0.185 -1,0.332,0.332,0.1,0,0,0,0.421,0.606,0.286,0,0,0.231 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0.397,0,0.0463 -1,0.384,0.384,0,0.583,0,0,0.912,0.658,0.473,0.592,0,0.324 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.508,0,0.139 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0.402,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.149 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.11 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0.326 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.288 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0.305 -0.667,0.245,0.245,0,0,0.383,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0.574,0.05,0.421,0.548,0.204,0,0.243,0.36 -0.667,0.235,0.235,0,0,0,0.917,0.421,0.548,0.24,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.0926 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.0463 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.278 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.0463 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.185 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0463 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.185 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0.301 -1,0.222,0.222,0.1,0,0,0,0.807,0.514,0.0421,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0.32,0,0 -0.667,0.263,0.263,0,0.292,0,0,0.421,0.548,0.147,0.61,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0.709,0,0.0926 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0.567,0,0.509 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0.463,0,0.0463 -0.667,0.235,0.235,0,0,0.383,0,0.421,0.548,0.24,0,0,0.0926 -0.667,0.235,0.235,0,0,0.255,0.3,0.421,0.548,0.273,0,0.372,0.139 -1,0.328,0.328,0,0,0,0.417,0.421,0.568,0.441,0,0.329,0.139 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0.941,0.363 -1,0.345,0.345,0.467,0,0,0,0.421,0.645,0.479,0,0.0979,0.268 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.231 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0.135,0,0.408 -1,0.595,0.595,0,0.292,0,0,1,0.619,0.873,0.731,0,0.178 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0463 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.179 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.144 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.245 -1,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.602 -0.667,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0926 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.278 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0463 -0.667,0.238,0.238,0.117,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0.117,0.0833,0,0,0.421,0.617,0.239,0.58,0,0.231 -1,0.384,0.384,0.233,0.5,0,0,0.912,0.658,0.473,0.548,0,0.37 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0.262,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.139 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.555 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.12 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0468 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.135 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.306 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.278 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0926 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.139 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.363 -0.667,0.238,0.238,0.367,0,0,0,0.421,0.591,0.196,0,0,0.371 -0.667,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.273,0.273,0.4,0.0833,0,0,0.749,0.626,0.32,0.576,0,0.185 -1,0.467,0.467,0.117,0.5,0,0,1,0.645,0.662,0.634,0,0.139 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0.776,0,0.0926 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0.465,0,0.0692 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.155 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.272 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.156 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.185 -0.333,0.142,0.142,0.117,0,0,0,0.421,0.555,0.0751,0,0,0.231 -0.333,0.142,0.142,0.117,0,0,0,0.421,0.555,0.0789,0,0,0.278 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0463 -0.667,0.238,0.238,0.6,0,0,0,0.421,0.591,0.196,0,0,0.417 -0.333,0.148,0.148,0.1,0,0,0,0.421,0.589,0.128,0,0,0.278 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.0926 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.258 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.117 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0463 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.368 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.342 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.092 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0.406,0,0 -0.667,0.277,0.277,0,0.583,0,0,0.421,0.54,0.0653,0.136,0,0 -0.667,0.274,0.274,0.367,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0.1,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.356 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.487 -0.667,0.237,0.237,0.367,0,0,0,0.421,0.548,0.119,0,0,0.241 -0.667,0.235,0.235,0.1,0,0,0,0.421,0.548,0.134,0,0,0.0463 -0.667,0.235,0.235,0,0,0.383,0,0.421,0.548,0.142,0.25,0,0.351 -1,0.328,0.328,0,0.292,0.574,0.05,0.421,0.568,0.23,0.724,0.329,0.237 -1,0.332,0.332,0,0,0,0.667,0.421,0.606,0.286,0,0,0.231 -0.667,0.247,0.247,0.233,0,0,0,0.421,0.617,0.239,0,0,0.0926 -0.667,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.0926 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.303 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.306 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.119 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0.367,0,0,0,0.807,0.514,0.0488,0,0,0.493 -1,0.277,0.277,0.333,0,0,0,0.421,0.54,0.0653,0,0,0.172 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.0993 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.274 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.139 -0.333,0.147,0.147,0.233,0,0,0,0.421,0.555,0.0646,0,0,0.0926 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.23,0,0,0.278 -1,0.332,0.332,0.233,0,0,0,0.421,0.606,0.286,0,0,0.263 -1,0.345,0.345,0.117,0,0,0,0.421,0.645,0.351,0,0,0 -0.667,0.273,0.273,0.117,0,0,0,0.749,0.626,0.32,0,0,0.185 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.444 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.0926 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.0926 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.116 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.0666 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.139 -1,0.263,0.263,0,0.0833,0,0,0.421,0.548,0.147,0.795,0,0 -1,0.359,0.359,0,0.208,0,0,0.421,0.542,0.252,0.169,0,0.139 -0.667,0.245,0.245,0,0,0.638,0,0.421,0.548,0.191,0,0.19,0 -0.667,0.237,0.237,0,0,0,0.8,0.421,0.548,0.204,0,0.703,0 -0.667,0.235,0.235,0,0,0,0.167,0.421,0.548,0.24,0,0.585,0.0463 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0.588,0.33 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0.454,0.272 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0.383,0.156 -1,0.345,0.345,0.233,0,0,0,0.421,0.645,0.479,0,0.323,0.265 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0.214,0.547 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.323 -1,0.595,0.595,0,0,0.957,0,1,0.619,0.873,0,0.132,0.308 -1,0.726,0.726,0,0,0,0.233,1,0.568,0.806,0,0.717,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.066,0.066,0,0,0,0,0.807,0.497,0.0391,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.807,0.497,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.807,0.497,0.018,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.162,0.162,0,0,0.702,0,0.421,0.555,0.0654,0,0,0.439 -1,0.263,0.263,0.867,0,0.255,0.3,0.421,0.548,0.147,0,0.81,0.199 -1,0.359,0.359,1,0,0,0.667,0.421,0.542,0.252,0,0.402,0.0871 -1,0.343,0.343,0.25,0,0,0,0.421,0.542,0.277,0,0.599,0.223 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0.288,0.33 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.139 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.401,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0,0.185 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.231 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.274 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.346 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.0463 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.0926 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.315 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.155 -0.667,0.163,0.163,0.7,0,0,0,0.421,0.551,0.0406,0,0,0.109 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.278 -0.333,0.142,0.142,0.7,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.268 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.278 -0.333,0.144,0.144,0.233,0,0,0,0.421,0.576,0.106,0,0,0.0463 -1,0.345,0.345,0.467,0,0,0,0.421,0.645,0.351,0.445,0,0.139 -1,0.384,0.384,0,0.875,0,0,0.912,0.658,0.473,0.657,0,0.324 -1,0.467,0.467,0,0.583,0,0,1,0.645,0.662,0.53,0,0.0463 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.473 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.4 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.348 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0.143 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.186 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.083 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.231 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.144,0.144,0.367,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.148,0.148,0.567,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.413,0.413,0.233,0,0,0,0.807,0.6,0.55,0.517,0,0.139 -1,0.501,0.501,0,0.292,0,0,0.807,0.566,0.521,0.293,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.139 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.268 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.378 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.146 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.139 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0926 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.238,0.238,0.117,0,0,0,0.421,0.591,0.196,0,0,0.231 -0.333,0.148,0.148,0.35,0,0,0,0.421,0.589,0.128,0.427,0,0.0463 -0.667,0.273,0.273,0,0.292,0,0,0.749,0.626,0.32,0.551,0,0.316 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.185 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.126 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.292 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.184 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,0,0.151 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.109 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.156,0.156,0.233,0,0,0,0.421,0.555,0.0541,0,0,0.139 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.0463 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.311 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.288 -0.667,0.273,0.273,0.233,0,0,0,0.749,0.626,0.32,0,0,0.221 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0463 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.0926 -0.667,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.0926 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.278 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.126 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.209 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.167 -0.333,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.163,0.163,0.567,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.278 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.417 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0.117,0,0,0,0.421,0.576,0.106,0,0,0.0758 -0.333,0.148,0.148,0.35,0,0,0,0.421,0.589,0.128,0,0,0 -1,0.384,0.384,0.233,0,0,0,0.912,0.658,0.473,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0 -0.667,0.231,0.231,0,0,0,0,0.614,0.581,0.283,0,0,0.0926 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.648 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.241 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.157 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0.108 -1,0.162,0.162,0,0,0.638,0,0.421,0.555,0.0654,0,0,0.0619 -1,0.263,0.263,0,0,0,0.55,0.421,0.548,0.147,0,0.539,0.12 -0.667,0.153,0.153,0,0,0,0.167,0.421,0.555,0.0961,0,0.0816,0.139 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.231 -0.667,0.235,0.235,0,0,0.702,0,0.421,0.548,0.24,0,0,0.417 -0.667,0.142,0.142,0,0,0.255,0.3,0.421,0.555,0.146,0,0.457,0.37 -0.667,0.142,0.142,0,0,0,0.667,0.421,0.564,0.159,0,0.605,0.0463 -0.667,0.144,0.144,0.233,0,0,0,0.421,0.576,0.167,0,0.614,0.0463 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.139 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.0463 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.37 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.0926 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.156 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0.176,0,0 -1,0.0743,0.0743,0,0.583,0,0,0.614,0.529,0.0451,0.756,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0.433,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0.1,0,0,0,0.421,0.551,0.0444,0,0,0.231 -1,0.162,0.162,0,0.0833,0,0,0.421,0.555,0.0654,0.625,0,0 -1,0.156,0.156,0,0.5,0,0,0.421,0.555,0.0826,0.472,0,0 -1,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0.0557,0,0.231 -0.667,0.147,0.147,0.233,0,0,0,0.421,0.555,0.104,0,0,0.185 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0.425 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.0463 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.139 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0.246,0,0.184 -0.667,0.328,0.328,0,0.292,0,0,0.807,0.617,0.501,0.515,0,0.0926 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.368 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.137 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.0751 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0.384,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.191 -0.667,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.154 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.156,0.156,0.817,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.324 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0926 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0926 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0.233,0,0,0,0.421,0.617,0.239,0,0,0.0926 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.37 -0.333,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0.0926 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.278 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.37 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.387 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0463 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0926 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0463 -0.667,0.142,0.142,0,0,0.638,0,0.421,0.564,0.0871,0,0.185,0.0926 -0.667,0.144,0.144,0,0,0,0.8,0.421,0.576,0.106,0,0.526,0.0463 -1,0.247,0.247,0,0,0,0.167,0.421,0.617,0.239,0,0.424,0.37 -1,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0.32,0.278 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0.49,0.0926 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0.347,0.278 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0.439,0.0463 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0.128,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.104,0.104,0,0,0,0,0.807,0.497,0.0323,0,0,0.284 -1,0.222,0.222,0,0,0.383,0,0.807,0.514,0.0488,0,0,0.0789 -0.667,0.277,0.277,0,0,0.255,0.3,0.421,0.54,0.0653,0,0.616,0.16 -0.667,0.274,0.274,0,0,0,0.417,0.421,0.548,0.0788,0,0.829,0.0814 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.622,0.231 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.68,0.0463 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.3,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.359,0.231 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.42,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0.915,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.599,0.139 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0.101,0.454,0.0463 -1,0.247,0.247,0.233,0.396,0,0,0.421,0.617,0.239,0.551,0.496,0.0463 -1,0.384,0.384,0,0.479,0,0,0.912,0.658,0.473,0,0,0.0463 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.139 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0926 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0463 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.377 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.211 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0926 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.329 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.13 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.188 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.185 -0.333,0.144,0.144,0.233,0,0,0,0.421,0.576,0.106,0,0,0.0926 -0.333,0.148,0.148,0,0.0833,0,0,0.421,0.589,0.128,0.671,0,0.0463 -0.333,0.161,0.161,0,0.208,0,0,0.585,0.594,0.168,0.49,0,0.0463 -0.333,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0,0.41 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.297 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.269 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.533 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.488 -0.667,0.274,0.274,0,0,0.702,0,0.421,0.548,0.0788,0,0,0.129 -0.667,0.263,0.263,0,0,0.255,0.3,0.421,0.548,0.0923,0,0.372,0.0764 -0.667,0.256,0.256,0,0,0,0.667,0.421,0.548,0.103,0,0.318,0.746 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0.455,0.185 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0.47,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0.491,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0.117,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0.583,0,0,0,0.421,0.617,0.239,0.399,0,0.231 -0.667,0.273,0.273,0,0.292,0,0,0.749,0.626,0.32,0.571,0,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.504,0,0.231 -1,0.595,0.595,0,0,0.638,0,1,0.619,0.817,0,0.154,0.0463 -1,0.501,0.501,0,0,0,0.717,0.807,0.566,0.521,0,0.466,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0.402,0.185 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.703 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.143 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0.19 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0.0833,0,0,0.421,0.562,0.0181,0.604,0,0.231 -0.667,0.156,0.156,0.367,0.208,0,0,0.421,0.555,0.0826,0.243,0,0.832 -0.667,0.256,0.256,0.333,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.351,0,0,0.0463 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.231 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.139 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.233 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.0926 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.0463 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.723 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0463 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -1,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0.0463 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.139 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.324 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0 -1,0.384,0.384,0.617,0,0,0,0.912,0.658,0.565,0,0,0.417 -0.667,0.328,0.328,0.0833,0,0,0,0.807,0.617,0.501,0,0,0.0926 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0926 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.248 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.126 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.486 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0.233,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.187 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.179 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0.0638,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0.574,0.05,0.421,0.562,0.0159,0,0.294,0.0463 -0.667,0.235,0.235,0,0,0,1,0.421,0.548,0.134,0,0.418,0 -0.667,0.235,0.235,0,0,0,0.4,0.421,0.548,0.142,0,0.571,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.739,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0.384,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0.729,0.0926 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.677,0.0463 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0.543,0.185 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.518,0.0926 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0.28,0.636,0.305 -1,0.388,0.388,0,0.292,0,0,0.807,0.531,0.317,0.251,0,0.185 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.222,0.222,0.233,0,0,0,0.807,0.514,0.0488,0,0,0.093 -0.667,0.163,0.163,0.117,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.162,0.162,0.817,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.227 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.308 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.453 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0926 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0926 -0.333,0.144,0.144,0.467,0,0,0,0.421,0.576,0.106,0,0,0.0463 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0463 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.294 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0926 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.0926 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0463 -1,0.388,0.388,0,0,0.957,0,0.807,0.531,0.317,0,0.0208,0.677 -1,0.183,0.183,0,0,0,0.55,0.807,0.505,0.14,0,0.267,0.0926 -1,0.099,0.099,0,0,0,0.167,0.807,0.497,0.0608,0,0.501,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0.469,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0.534,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.572 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.089 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.0531 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.176 -0.667,0.245,0.245,0.467,0,0,0,0.421,0.548,0.113,0,0,0.108 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.305 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.472 -0.333,0.142,0.142,0.117,0,0,0,0.421,0.555,0.0789,0,0,0.0926 -0,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0.3,0,0.629 -1,0.384,0.384,0,0.292,0,0,0.912,0.658,0.473,0.273,0,0.321 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.453 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.365 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.185 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.486 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0824 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.258 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.247 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.182 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.583 -1,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.413 -1,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.493 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0926 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.278 -0.667,0.238,0.238,0.117,0,0,0,0.421,0.591,0.196,0,0,0 -0,0.0495,0.0495,0.35,0,0,0,0.421,0.562,0.0159,0,0,0.189 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.328,0.328,0.617,0,0.383,0,0.807,0.617,0.446,0,0,0 -1,0.595,0.595,0.0833,0.0833,0.255,0.3,1,0.619,0.817,0.68,0.407,0.0926 -1,0.726,0.726,0,0.5,0,0.417,1,0.568,0.774,0.77,0.315,0.0463 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.602 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0.233,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.443 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.246 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.202 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.123 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0463 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.185 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.667,0.273,0.273,0,0,0.957,0,0.749,0.626,0.32,0,0.0935,0.231 -0.667,0.328,0.328,0,0,0,0.55,0.807,0.617,0.446,0,0.7,0.139 -1,0.413,0.413,0,0,0,0.417,0.807,0.6,0.55,0,0.816,0.0463 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.595,0.0463 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0.389,0.137 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.358 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0181,0,0,0.625 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.126 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.0855 -0.667,0.245,0.245,0,0.0833,0,0,0.421,0.548,0.191,0.696,0,0.243 -0.667,0.237,0.237,0,0.208,0,0,0.421,0.548,0.204,0.656,0,0.183 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,1,0,0.278 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0.39,0,0.509 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.185 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.0463 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.509 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0926 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.185 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0734 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.243 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.179 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0.56,0,0.348 -0.667,0.24,0.24,0.233,0.562,0,0,0.421,0.546,0.191,0.434,0,0.197 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0463 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.0926 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.0463 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.679 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.324 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.278 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0946 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.186 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.16,0.16,0,0.0833,0,0,0.421,0.554,0.0475,0.612,0,0 -0.667,0.258,0.258,0,0.188,0,0,0.421,0.546,0.0926,0.278,0,0.139 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.231 -0.333,0.145,0.145,0.233,0,0,0,0.421,0.554,0.0648,0,0,0 -1,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.0463 -1,0.14,0.14,0,0,0.383,0,0.421,0.554,0.0753,0,0,0 -1,0.14,0.14,0,0,0.277,0.283,0.421,0.554,0.0791,0,0.389,0.176 -1,0.23,0.23,0,0,0,0.4,0.421,0.563,0.159,0,0,0.344 -1,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.278 -0.667,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.185 -0.667,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0.476,0,0.0926 -0.333,0.187,0.187,0,0.854,0,0,0.614,0.588,0.232,0.711,0,0.0926 -0.667,0.41,0.41,0,0.271,0,0,0.807,0.597,0.552,0.576,0,0.185 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.348,0,0.219 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.203 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.35,0,0,0,0.421,0.562,0.0159,0,0,0.168 -1,0.22,0.22,0.233,0,0,0,0.807,0.512,0.0489,0,0,0.665 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.21 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.107 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.361 -0.333,0.15,0.15,0,0,0.0638,0,0.421,0.554,0.0595,0,0,0.185 -0.333,0.145,0.145,0,0,0.255,0.3,0.421,0.554,0.0648,0,0.303,0.0463 -0,0.0495,0.0495,0,0,0,0.85,0.421,0.562,0.0159,0,0.233,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.139 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0463 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0789 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.387 -0.333,0.159,0.159,0.233,0,0,0,0.585,0.592,0.169,0,0,0.455 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0926 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0463 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.185 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.412 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0.404 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0924 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.193 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.106 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.244 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.278 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.324 -0.333,0.145,0.145,0.367,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0.1,0,0,0,0.421,0.554,0.0678,0,0,0.231 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.14,0.14,0,0.0833,0,0,0.421,0.562,0.0873,0.645,0,0.0463 -1,0.324,0.324,0,0.479,0,0,0.421,0.602,0.287,0.172,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -0.667,0.324,0.324,0,0,0.66,0,0.807,0.614,0.448,0,0,0.0926 -1,0.59,0.59,0,0,0,0.533,1,0.615,0.82,0,0.254,0.148 -1,0.496,0.496,0,0,0,0.383,0.807,0.563,0.523,0,0,0.139 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0463 -0.333,0.145,0.145,0.367,0,0,0,0.421,0.554,0.0648,0,0,0.324 -0.333,0.141,0.141,0.1,0,0,0,0.421,0.554,0.0678,0,0,0.139 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.139 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.255 -1,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0.296,0,0.185 -1,0.377,0.377,0,0.271,0.66,0,0.912,0.653,0.474,0.761,0,0.231 -1,0.461,0.461,0,0,0,0.533,1,0.64,0.664,0.558,0.277,0 -1,0.59,0.59,0,0,0,0.15,1,0.615,0.82,0.747,0.614,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.33,0.829,0 -1,0.386,0.386,0,0.708,0,0,0.807,0.529,0.318,0.291,0.0341,0.231 -0.667,0.0495,0.0495,0,0.146,0,0,0.421,0.562,0.0159,0,0,0.185 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.202 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0908 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.509 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.164 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.416 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.289 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.185 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.231 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.386 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.417 -0.667,0.268,0.268,0.467,0,0,0,0.749,0.623,0.321,0.192,0,0.139 -1,0.461,0.461,0,0.271,0,0,1,0.64,0.664,0.632,0,0.324 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0463 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.0463 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.107 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.22,0.22,0,0.188,0,0,0.807,0.512,0.0422,0.675,0,0 -1,0.274,0.274,0,0.667,0,0,0.421,0.537,0.0708,0,0,0.0463 -1,0.16,0.16,0.233,0,0,0,0.421,0.554,0.0655,0,0,0.0926 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.293 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.155 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.0463 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0463 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.278 -0.667,0.233,0.233,0.45,0,0,0,0.421,0.588,0.316,0,0,0.139 -0.333,0.146,0.146,0.0167,0,0,0,0.421,0.588,0.172,0,0,0.0463 -0.667,0.159,0.159,0,0,0.489,0,0.585,0.592,0.201,0,0,0.0463 -1,0.461,0.461,0,0,0.17,0.367,1,0.64,0.745,0,0.574,0.0926 -1,0.59,0.59,0,0,0,0.55,1,0.615,0.876,0.321,0,0.139 -1,0.72,0.72,0,0.812,0,0,1,0.563,0.808,0.303,0,0.333 -1,0.554,0.554,0,0.0417,0,0,1,0.512,0.51,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0.37 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.23 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.167 -1,0.154,0.154,0,0,0.489,0,0.421,0.554,0.0828,0,0,0 -0.667,0.25,0.25,0,0,0.511,0.1,0.421,0.546,0.175,0,0.214,0 -0.667,0.24,0.24,0.233,0,0,0.583,0.421,0.546,0.191,0,0.141,0.612 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0463 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.231 -0.333,0.14,0.14,0.233,0,0,0,0.421,0.562,0.16,0,0,0.0926 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.278 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.169 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.131 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.139 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.0926 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.199 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.231 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.354,0,0 -0.333,0.162,0.162,0,0.271,0.383,0,0.421,0.549,0.0407,0.255,0,0 -0.333,0.16,0.16,0,0,0.617,0.0167,0.421,0.554,0.0475,0,0.318,0 -0.333,0.154,0.154,0,0,0,0.433,0.421,0.554,0.0542,0,0.343,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0.697,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0.45,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.475,0.37 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.568,0.231 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.43,0.0463 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.231 -0.667,0.141,0.141,0,0,0.383,0,0.421,0.575,0.106,0,0,0.223 -1,0.242,0.242,0.467,0,0.277,0.283,0.421,0.614,0.24,0,0.409,0.185 -1,0.377,0.377,0,0,0,0.633,0.912,0.653,0.474,0,0.488,0.324 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.359,0.51 -1,0.59,0.59,0,0,0.0638,0,1,0.615,0.82,0,0.0519,0.136 -1,0.72,0.72,0,0,0.936,0,1,0.563,0.777,0,0.157,0.245 -1,0.554,0.554,0,0,0,0.767,1,0.512,0.47,0,0,0.0638 -1,0.0495,0.0495,0,0,0,0.15,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.278 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.339 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.38 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.234 -1,0.324,0.324,0.233,0,0,0,0.421,0.602,0.287,0,0,0.132 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.0926 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0.271,0,0.139 -1,0.461,0.461,0,0.271,0,0,1,0.64,0.664,0.646,0,0.185 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.165,0,0.0463 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0463 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.144 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.248 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0463 -0.333,0.15,0.15,0,0,0.0638,0,0.421,0.554,0.0595,0,0,0.365 -0.333,0.145,0.145,0,0,0.936,0,0.421,0.554,0.0648,0,0.352,0 -0.333,0.141,0.141,0,0,0,0.683,0.421,0.554,0.0678,0,0.374,0.231 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0.389,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.551,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.691,0.0926 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0.334,0.0463 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.27,0.423 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.191 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.139 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0926 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.246 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.158 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.133 -1,0.386,0.386,0,0,0,0,0.421,0.525,0.0903,0.278,0,0.35 -0.333,0.16,0.16,0,0.271,0,0,0.421,0.554,0.0475,0.257,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.417 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.0463 -0.667,0.24,0.24,0.117,0,0,0,0.421,0.546,0.114,0,0,0.0463 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0.0463 -0.333,0.14,0.14,0.283,0,0,0,0.421,0.554,0.0753,0,0,0.139 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0.367,0,0,0,0.421,0.575,0.106,0,0,0.0463 -0.667,0.242,0.242,0.333,0,0,0,0.421,0.614,0.24,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.231 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.278 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.582 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.157 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0.233,0,0,0,0.807,0.512,0.0489,0,0,0.383 -1,0.386,0.386,0,0,0,0,0.421,0.525,0.0903,0,0,0.0924 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.469 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.233 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0.111,0,0.125 -0.667,0.24,0.24,0,0.396,0,0,0.421,0.546,0.114,0.828,0,0.139 -0.333,0.141,0.141,0,0.167,0,0,0.421,0.554,0.0678,0.07,0,0.185 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.134 -0.667,0.268,0.268,0.867,0,0,0,0.749,0.623,0.321,0,0,0 -1,0.461,0.461,0.65,0,0,0,1,0.64,0.664,0,0,0 -1,0.59,0.59,0.35,0,0,0,1,0.615,0.82,0,0,0.37 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0926 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.231 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.285 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.0525 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.292 -1,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.142 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.282 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -0,0.0495,0.0495,0,0,0.66,0,0.421,0.562,0.0181,0,0.0341,0.367 -0.333,0.14,0.14,0,0,0,0.867,0.421,0.554,0.129,0,0.7,0.347 -0.667,0.23,0.23,0,0,0,0.75,0.421,0.546,0.274,0,0,0.125 -0.667,0.23,0.23,0.233,0,0,0,0.421,0.563,0.301,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.0463 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.231 -0.333,0.159,0.159,0,0.188,0,0,0.585,0.592,0.201,0.576,0,0.139 -0.333,0.187,0.187,0,0.375,0,0,0.614,0.588,0.26,0,0,0 -0.333,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.284 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.185 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.0463 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.12 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.0737 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.0463 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.0926 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.233,0.233,0.7,0,0,0,0.421,0.588,0.316,0.14,0,0 -0.667,0.242,0.242,0,0.5,0,0,0.421,0.614,0.327,0.664,0,0.0926 -0.667,0.268,0.268,0,0.0625,0,0,0.749,0.623,0.384,0.693,0,0.0463 -0.667,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0.0646,0,0.463 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.0463 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.231 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.185 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0.0463 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.261 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.411 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.0495,0.0495,0,0,1,0,0.421,0.562,0.0159,0,0.188,0 -0.333,0.154,0.154,0,0,0,0.517,0.421,0.554,0.0542,0,0.615,0 -0.333,0.15,0.15,0,0,0,0.4,0.421,0.554,0.0595,0,0.136,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.231 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0463 -0.333,0.14,0.14,0.367,0,0,0,0.421,0.554,0.0791,0,0,0.0926 -0.333,0.14,0.14,0.1,0,0,0,0.421,0.562,0.0873,0,0,0.0926 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.231 -1,0.338,0.338,0,0.0833,0.383,0,0.421,0.64,0.352,0.522,0,0 -1,0.377,0.377,0,0.188,0.277,0.283,0.912,0.653,0.474,0.354,0.491,0 -1,0.461,0.461,0,0,0,0.633,1,0.64,0.664,0,0.227,0.185 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.535 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.278 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0,0,0.324 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.29 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0896 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.139 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0463 -0.333,0.145,0.145,0.233,0,0,0,0.421,0.554,0.0648,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.346 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.116 -0.667,0.23,0.23,0,0,0.383,0,0.421,0.546,0.142,0,0,0.12 -0.667,0.23,0.23,0,0,0.277,0.283,0.421,0.563,0.159,0,0.282,0.0463 -1,0.324,0.324,0,0,0,0.633,0.421,0.602,0.287,0.375,0.714,0 -1,0.338,0.338,0,0.708,0,0,0.421,0.64,0.352,0.501,0.316,0.0926 -0.667,0.268,0.268,0,0.146,0,0,0.749,0.623,0.321,0,0,0.0463 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.139 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.231 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.185 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.198 -0.667,0.274,0.274,0,0,0.383,0,0.421,0.537,0.0655,0,0,0.212 -0.667,0.27,0.27,0,0,0.617,0.0167,0.421,0.546,0.079,0,0.448,0.314 -0.667,0.258,0.258,0,0,0,0.9,0.421,0.546,0.0926,0,0.769,0.591 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0.453,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0.457,0.0463 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0.573,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0.509,0.231 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0.786,0.37 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0.409,0.0463 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0.53,0.0463 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.139 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.339 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0463 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0,0,0.0897 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.423 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.108 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.185 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0.617,0,0,0,0.421,0.575,0.106,0,0,0.395 -1,0.338,0.338,0.0833,0,0,0,0.421,0.64,0.352,0,0,0.257 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.163 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.245 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.185 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.163 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.231 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.407 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0504,0.0504,0.1,0,0,0,0.807,0.495,0.0218,0,0,0 -0.667,0.0763,0.0763,0.367,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.22,0.22,0.333,0,0,0,0.807,0.512,0.0489,0,0,0.362 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.0846 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.37 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0463 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0463 -0.667,0.141,0.141,0.617,0,0,0,0.421,0.575,0.106,0,0,0 -1,0.242,0.242,0.0833,0,0,0,0.421,0.614,0.24,0,0,0.231 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.35,0,0.139 -1,0.59,0.59,0,0.562,0,0,1,0.615,0.82,0.391,0,0.139 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.278 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.407 -0.333,0.141,0.141,0,0,0.66,0,0.421,0.554,0.111,0,0,0.303 -0.667,0.23,0.23,0,0,0,0.617,0.421,0.546,0.241,0,0.895,0.358 -0.667,0.23,0.23,0,0,0,0.533,0.421,0.546,0.274,0,0.0816,0.233 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.233 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.0926 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.231 -0.667,0.268,0.268,0.467,0,0,0,0.749,0.623,0.384,0,0,0.463 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.37 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.0463 -1,0.72,0.72,0,0,0.66,0,1,0.563,0.808,0,0.144,0.139 -1,0.554,0.554,0,0,0,0.867,1,0.512,0.51,0,0.776,0.0926 -1,0.183,0.183,0,0,0,0.05,0.807,0.503,0.161,0,0.605,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,0,0,0.489,0,0.421,0.554,0.0655,0,0,0.0534 -0.667,0.154,0.154,0,0,0.511,0.1,0.421,0.554,0.0828,0,0.49,0.0463 -0.667,0.15,0.15,0,0,0,0.817,0.421,0.554,0.0964,0,0.813,0.0926 -0.667,0.145,0.145,0.45,0,0,0,0.421,0.554,0.105,0,0.536,0.0926 -0.667,0.232,0.232,0.95,0,0,0,0.421,0.546,0.205,0,0.457,0.0926 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0.819,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0.491,0.185 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.443,0,0.522,0 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0.553,0.0463 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0.522,0.0463 -0.667,0.268,0.268,0,0.188,0,0,0.749,0.623,0.384,0.662,0.714,0 -1,0.461,0.461,0,0.667,0,0,1,0.64,0.745,0,0.168,0.37 -1,0.59,0.59,0.467,0,0,0,1,0.615,0.876,0.104,0,0.139 -1,0.72,0.72,0,0.271,0,0,1,0.563,0.808,0.479,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0.578,0,0.0463 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0.0252,0.282 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.0969,0,0 -1,0.0499,0.0499,0.233,0.396,0,0,0.614,0.528,0.0189,0.637,0,0.282 -1,0.0763,0.0763,0,0.167,0,0,0.614,0.528,0.0241,0,0,0.107 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.592 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0463 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.278 -0.333,0.141,0.141,0.233,0,0,0,0.421,0.554,0.0678,0,0,0.19 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0.367,0,0,0,0.421,0.575,0.106,0,0,0.222 -1,0.338,0.338,0.1,0,0,0,0.421,0.64,0.352,0,0,0.0463 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.0463 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.139 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.231 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0926 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.641 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0.318,0,0 -1,0.305,0.305,0,0.562,0,0,1,0.487,0.0655,0.366,0,0.179 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.105 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.435 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.278 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.139 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.333,0.14,0.14,0.367,0.0833,0,0,0.421,0.562,0.0873,0.641,0,0 -1,0.324,0.324,0.1,0.562,0,0,0.421,0.602,0.287,0.761,0,0 -0.667,0.242,0.242,0,0.188,0,0,0.421,0.614,0.24,0.266,0,0.0926 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.37 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.0463 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.25,0,0.139 -1,0.72,0.72,0,0.271,0,0,1,0.563,0.777,0.221,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.304 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0984 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.162 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.125 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.417 -0.667,0.162,0.162,0,0,0.383,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0.277,0.283,0.421,0.554,0.0475,0,0.377,0.231 -0.667,0.154,0.154,0,0,0,0.4,0.421,0.554,0.0542,0,0.703,0.333 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0.3,0.266 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.493,0.455 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.45,0.0644 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.488,0.0569 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.337,0.322 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.466,0.232 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.138 -1,0.338,0.338,0,0,0.66,0,0.421,0.64,0.352,0,0,0.24 -1,0.268,0.268,0,0,0,0.533,0.749,0.623,0.321,0,0.542,0.402 -1,0.324,0.324,0,0,0,0.15,0.807,0.614,0.448,0,0.662,0.26 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.107,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.273 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.164 -1,0.305,0.305,0,0,0,0,1,0.487,0.0655,0,0,0.342 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.656 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.327 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0463 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.231 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.185 -0.333,0.141,0.141,0.233,0,0,0,0.421,0.554,0.0678,0,0,0.0926 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.0463 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0463 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0463 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.333,0.159,0.159,0.233,0.0833,0,0,0.585,0.592,0.169,0.607,0,0.0463 -1,0.461,0.461,0,0.771,0,0,1,0.64,0.664,0.115,0,0.37 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.198 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.183 -0.333,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.426 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.411 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.14,0.14,0.1,0,0,0,0.421,0.554,0.0753,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0.33,0,0 -0.667,0.242,0.242,0,0.562,0,0,0.421,0.614,0.24,0,0,0.324 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.139 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.37 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.509 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.334 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0763,0.0763,0.233,0,0,0,0.614,0.528,0.0226,0,0,0.0811 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0422,0,0,0.0741 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0.148 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.231 -0.667,0.258,0.258,0.2,0,0,0,0.421,0.546,0.148,0,0,0.0926 -0.667,0.25,0.25,0.0333,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.278 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.0463 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.667,0.23,0.23,0,0,0.489,0,0.421,0.546,0.274,0,0,0.357 -1,0.321,0.321,0,0,0.17,0.367,0.421,0.563,0.443,0,0.38,0.11 -1,0.324,0.324,0.233,0,0,0.317,0.421,0.602,0.465,0,0.537,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0.543,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0.866,0.231 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.0926 -0.667,0.41,0.41,0,0.188,0,0,0.807,0.597,0.59,0.833,0,0.0463 -0.667,0.496,0.496,0,0.375,0,0,0.807,0.563,0.545,0.0862,0,0.0463 -0.667,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.156 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.154,0.154,0,0,0.66,0,0.421,0.554,0.0828,0,0.0208,0 -0.667,0.25,0.25,0,0,0,0.683,0.421,0.546,0.175,0,0.309,0 -0.667,0.24,0.24,0.7,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.185 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.0463 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.342 -1,0.321,0.321,0,0,0.489,0,0.421,0.563,0.443,0,0,0.0463 -1,0.233,0.233,0.233,0,0.511,0.1,0.421,0.588,0.316,0,0.639,0.417 -1,0.242,0.242,0,0,0,0.583,0.421,0.614,0.327,0,0.424,0.231 -1,0.268,0.268,0.2,0,0,0,0.749,0.623,0.384,0,0.447,0.0463 -0.667,0.187,0.187,1,0,0,0,0.614,0.588,0.26,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.614,0.579,0.304,0,0,0.0463 -0.667,0.273,0.273,1,0,0,0,0.614,0.562,0.282,0,0,0.185 -0.667,0.218,0.218,0.783,0,0,0,0.614,0.545,0.182,0,0,0.278 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.266 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0377 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0324,0,0,0 -0.667,0.22,0.22,0,0,0.0638,0,0.807,0.512,0.0489,0,0,0.305 -0.667,0.274,0.274,0,0,0.596,0.0333,0.421,0.537,0.0655,0,0.136,0.264 -0.333,0.16,0.16,0,0,0,1,0.421,0.554,0.0475,0,0.26,0.278 -0.333,0.154,0.154,0,0,0,0.35,0.421,0.554,0.0542,0,0.402,0.0463 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0.504,0.0926 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0.503,0.231 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0.626,0.139 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0.457,0.0926 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.571,0.0926 -0.667,0.23,0.23,0.117,0,0,0,0.421,0.563,0.159,0,0.795,0.0463 -0.667,0.233,0.233,0.117,0,0,0,0.421,0.588,0.196,0,0,0.0463 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.231 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.491 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.37 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0.0833,0,0,0.421,0.554,0.0753,0.573,0,0 -0.333,0.14,0.14,0,0.188,0,0,0.421,0.554,0.0791,0,0,0.278 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0.124,0,0.0926 -1,0.324,0.324,0.467,0.271,0.0638,0,0.421,0.602,0.287,0.533,0,0.556 -1,0.338,0.338,0,0,0.596,0.0333,0.421,0.64,0.352,0,0.2,0.278 -1,0.268,0.268,0,0,0,1,0.749,0.623,0.321,0,0.129,0.324 -1,0.461,0.461,0,0,0,0.117,1,0.64,0.664,0,0,0.545 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.231 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0926 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.222 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.231 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.139 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.509 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.575 -1,0.462,0.462,0,0,0.702,0,0.807,0.597,0.532,0,0,0.214 -1,0.542,0.542,0,0,0.255,0.3,0.807,0.563,0.504,0,0.343,0.0463 -1,0.0495,0.0495,0,0,0,0.367,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.17 -1,0.104,0.104,0.117,0,0,0,0.807,0.495,0.0314,0,0,0.139 -0.667,0.222,0.222,0.117,0,0,0,0.807,0.512,0.0474,0,0,0.0525 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.592 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.324 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.231 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0926 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.139 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.554,0.0657,0,0,0.231 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.139 -0.667,0.235,0.235,0,0,0.383,0,0.421,0.546,0.137,0,0,0 -1,0.329,0.329,0.117,0,0.574,0.05,0.421,0.563,0.222,0,0.107,0 -0.667,0.239,0.239,0.117,0,0,0.617,0.421,0.588,0.19,0,0,0.185 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.139 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.139 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0463 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0463 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.0926 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.05,0.05,0.117,0,0,0,0.614,0.528,0.0186,0,0,0.225 -1,0.0768,0.0768,1,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0.317,0,0,0,0.614,0.537,0.0316,0,0,0.24 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.537 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0.226,0,0.535 -0.667,0.235,0.235,0,0.271,0,0,0.421,0.546,0.13,0.497,0,0.362 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.321 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.235 -1,0.334,0.334,0.233,0,0,0,0.421,0.602,0.276,0,0,0.446 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.139 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0.451,0,0.0463 -1,0.518,0.518,0,0.562,0,0,1,0.64,0.64,0.549,0,0.185 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0926 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0.13 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0.278 -0.667,0.162,0.162,0.1,0,0,0,0.421,0.554,0.0636,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.127 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.133 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.139 -0.333,0.142,0.142,0.233,0,0,0,0.421,0.554,0.125,0,0,0.0463 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.188 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.439 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.389 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.0915 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.321 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.139 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.49 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.121 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.142,0.142,0,0,0.383,0,0.421,0.554,0.125,0,0,0.126 -0.667,0.235,0.235,0,0,0.574,0.05,0.421,0.546,0.264,0,0.188,0.153 -0.667,0.236,0.236,0,0,0,1,0.421,0.563,0.29,0,0.501,0.292 -0.667,0.239,0.239,0.467,0,0,0.0667,0.421,0.588,0.305,0,0,0.254 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.277 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.509 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.0926 -0.667,0.462,0.462,0.233,0,0,0,0.807,0.597,0.569,0,0,0.185 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0.307,0,0.231 -1,0.571,0.571,0,0.562,0,0,1,0.512,0.492,0.592,0,0.139 -1,0.249,0.249,0,0,0,0,1,0.474,0.224,0,0,0.0463 -1,0.124,0.124,0,0,0,0,1,0.461,0.0805,0,0,0 -1,0.066,0.066,0,0,0,0,0.807,0.495,0.0314,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0472 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.196 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0926 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.139 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0926 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -1,0.353,0.353,0,0,0.638,0,0.421,0.64,0.339,0,0.184,0.278 -1,0.408,0.408,0.233,0,0,0.667,0.912,0.653,0.457,0,0,0.231 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.185 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.139 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.324 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.0768,0.0768,0.233,0,0,0,0.614,0.528,0.0236,0,0,0.33 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.198 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.222 -0.333,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.156,0.156,0.1,0,0,0,0.421,0.554,0.0526,0,0,0.0926 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.231 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0463 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0463 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.0926 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,0.233,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0.284,0,0.0926 -1,0.518,0.518,0,0.562,0,0,1,0.64,0.64,0.546,0,0.0463 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.278 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0849 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.209 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.13 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.204 -0.667,0.162,0.162,0.467,0,0,0,0.421,0.554,0.0461,0,0,0.163 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.133 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.185 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0463 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.278 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0926 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.185 -0.333,0.143,0.143,0,0,0.0638,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0.233,0,0.574,0.05,0.421,0.575,0.103,0,0.266,0.0926 -0.667,0.252,0.252,0,0,0,0.617,0.421,0.614,0.232,0,0.415,0.185 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.61,0.139 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.139 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.272 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.457 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.179 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.148 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0.311 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0536 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.0926 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.417 -0.333,0.153,0.153,0,0,0.0638,0,0.421,0.554,0.0577,0,0,0.389 -0.333,0.147,0.147,0,0,0.894,0,0.421,0.554,0.0628,0,0.239,0.139 -0.333,0.143,0.143,0,0,0,0.8,0.421,0.554,0.0657,0,0.243,0 -0.667,0.142,0.142,0,0,0,0.1,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.37 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.139 -0.667,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -1,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.139 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.278 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.592 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.31 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.139 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.231 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.139 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.0926 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0.367,0,0,0,0.421,0.588,0.19,0,0,0.0926 -1,0.353,0.353,0.833,0,0,0,0.421,0.64,0.339,0.241,0,0.0463 -1,0.408,0.408,0,0.271,0.638,0,0.912,0.653,0.457,0.785,0.0994,0.0463 -1,0.518,0.518,0,0,0,0.667,1,0.64,0.64,0.684,0.773,0.463 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0.592,0.527,0.324 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0.372,0.185 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0.0934 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.227 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0.555 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.349 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0.344 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.0971 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.139 -0.333,0.143,0.143,0.467,0,0,0,0.421,0.562,0.154,0,0,0.417 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.139 -0.667,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.139 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.185 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0.188 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.266 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.0463 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0.131 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.162,0.162,0.233,0.0833,0,0,0.421,0.554,0.0636,0.598,0,0 -1,0.263,0.263,0.233,0.479,0.319,0,0.421,0.546,0.142,0.582,0,0 -1,0.256,0.256,0,0,0,0.55,0.421,0.546,0.169,0.106,0.469,0 -1,0.343,0.343,0,0,0,0.35,0.421,0.538,0.268,0,0.636,0.0463 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.287,0,0.15,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.339,0,0,0.088 -1,0.327,0.327,0,0,0,0,0.421,0.538,0.387,0,0,0.0463 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.0463 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.0852 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.219 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.415 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.395 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.122 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.362 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.417 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.112 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0463 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0463 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.278 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0463 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.139 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.139 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.324 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.231 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.231 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0926 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.179 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.198 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.477 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0463 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.231 -0.333,0.142,0.142,0.367,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0.583,0,0,0,0.421,0.562,0.0846,0,0,0.0463 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.185 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.139 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.37 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.185 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.132 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.115 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.261 -0.333,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.06 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.128 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.321 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.508 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0.638,0,0.421,0.562,0.0159,0,0.0519,0 -0.333,0.143,0.143,0,0,0,0.8,0.421,0.562,0.0846,0,0.577,0 -1,0.334,0.334,0,0,0,0.1,0.421,0.602,0.276,0,0.341,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0.138,0,0 -0.333,0.169,0.169,0.233,0.396,0,0,0.585,0.592,0.163,0.671,0,0 -0.667,0.362,0.362,0,0.167,0,0,0.807,0.614,0.432,0.445,0,0.539 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.212 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.139 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.361 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.667,0.162,0.162,0.367,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0.35,0,0,0,0.421,0.554,0.0526,0,0,0.417 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.185 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0.117,0,0,0,0.421,0.563,0.153,0,0,0.0463 -0.667,0.144,0.144,0.35,0,0,0,0.421,0.575,0.103,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.0463 -1,0.408,0.408,0.367,0,0,0,0.912,0.653,0.457,0,0,0.0926 -1,0.518,0.518,0.1,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0926 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.748 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.118 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.274,0.274,0.583,0,0,0,0.421,0.546,0.0764,0,0,0.328 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.141 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.16 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.389 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.303 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.379 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.481 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.258 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.557 -0.667,0.252,0.252,0.233,0,0,0,0.421,0.614,0.232,0,0,0.209 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.278 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0926 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.231 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.139 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.128 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0.169 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.737 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0,0 -0.667,0.235,0.235,0,0,0.702,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0.255,0.3,0.421,0.546,0.264,0,0.39,0.185 -1,0.329,0.329,0,0,0,0.15,0.421,0.563,0.427,0,0.426,0.463 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0.72,0.0463 -1,0.353,0.353,0.233,0,0,0,0.421,0.64,0.464,0,0.294,0.288 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0.941,0.433 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0.427,0.316 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0.601,0.144 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0.422,0.222 -1,0.571,0.571,0.233,0,0,0,1,0.512,0.492,0,0.827,0.12 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0.372,0.336 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.184,0,0,0.471 -0.667,0.143,0.143,0.467,0,0,0,0.421,0.554,0.108,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.667,0.142,0.142,0,0,0.638,0,0.421,0.554,0.141,0,0.162,0.231 -1,0.236,0.236,0.367,0,0,0.667,0.421,0.563,0.29,0,0.562,0.37 -1,0.334,0.334,0.1,0,0,0,0.421,0.602,0.448,0,0,0.315 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.457 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.364 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.348 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.819 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.216 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.179 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.124 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.221 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.133 -0.667,0.163,0.163,0.233,0,0,0,0.421,0.549,0.0396,0,0,0.143 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.426 -0.333,0.153,0.153,0,0,0.957,0,0.421,0.554,0.0577,0,0.16,0.0463 -0.333,0.147,0.147,0,0,0,0.55,0.421,0.554,0.0628,0,0.623,0.0463 -0.333,0.143,0.143,0,0,0,0.35,0.421,0.554,0.0657,0,0.62,0.0926 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0.53,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0926 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.185 -0.667,0.239,0.239,0.467,0,0,0,0.421,0.588,0.19,0,0,0.0463 -1,0.353,0.353,0.233,0,0,0,0.421,0.64,0.339,0,0,0.278 -1,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.278 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.139 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.139 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.337 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.108 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.658 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0.241,0,0.273 -0.667,0.256,0.256,0,0.562,0.702,0,0.421,0.546,0.0996,0.583,0,0.278 -0.667,0.245,0.245,0,0,0.255,0.3,0.421,0.546,0.11,0,0.714,0.0926 -0.667,0.237,0.237,0.367,0,0,0.367,0.421,0.546,0.116,0,0.766,0.0926 -0.667,0.235,0.235,0.1,0,0,0,0.421,0.546,0.13,0,0.286,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.227,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.611,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.625,0.139 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0.0463 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.0926 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.185 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0463 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.475 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.696 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.201 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.216 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.581 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.518 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.231 -0.333,0.143,0.143,0.467,0,0,0,0.421,0.554,0.0657,0,0,0.139 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.139 -0.333,0.151,0.151,0.117,0,0,0,0.421,0.588,0.124,0,0,0 -0.333,0.169,0.169,0.117,0,0,0,0.585,0.592,0.163,0,0,0.231 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0 -1,0.668,0.668,0,0,0.957,0,1,0.615,0.79,0,0.0653,0.0926 -1,0.788,0.788,0,0,0,0.55,1,0.563,0.749,0,0.0549,0.385 -1,0.223,0.223,0,0,0,0.35,0.614,0.545,0.161,0,0,0.253 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.126 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.273 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.417 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.142,0.142,0.317,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.231 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.37 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.179 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0.14 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0.105 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.124 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0776 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.186 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.226 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.165 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.291 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.277 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.231 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.142,0.142,0.367,0,0,0,0.421,0.554,0.0766,0,0,0.139 -0.667,0.236,0.236,0.1,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.278 -0.667,0.252,0.252,0.367,0,0,0,0.421,0.614,0.232,0,0,0.0463 -1,0.408,0.408,0.1,0,0,0,0.912,0.653,0.457,0,0,0.0463 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.434 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.079 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.274,0.274,0.367,0,0,0,0.421,0.546,0.109,0,0,0.219 -1,0.37,0.37,0.1,0,0,0,0.421,0.538,0.205,0,0,0.112 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.244,0,0,0.322 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0.156,0,0.262 -0.667,0.237,0.237,0,0.271,0,0,0.421,0.546,0.198,0.522,0,0.0926 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0.231 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.0463 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.0926 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.0926 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.0463 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.324 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.185 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.0926 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.0926 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0.186 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0.0463 -1,0.066,0.066,0,0,0,0,0.807,0.495,0.038,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.277,0.277,0.35,0,0,0,0.421,0.537,0.0684,0.519,0,0 -1,0.387,0.387,0,0.562,0,0,0.421,0.538,0.155,0.355,0,0.249 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.142,0,0,0.307 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.32 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.315 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.398 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.203 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.562,0.154,0,0,0.37 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.337 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.139 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0.289,0,0 -1,0.518,0.518,0,0.562,0,0,1,0.64,0.718,0.671,0,0.0463 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0.582,0,0.448 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.469 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.0463 -1,0.183,0.183,0,0.0833,0,0,0.807,0.503,0.155,0.583,0,0 -1,0.0743,0.0743,0,0.188,0,0,0.614,0.528,0.0374,0.122,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.42 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.191 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.153 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0764 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.66 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.28 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.199 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.083 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.139 -0.333,0.143,0.143,0,0,0.0638,0,0.421,0.562,0.0846,0,0,0.185 -0.667,0.239,0.239,0.117,0,0.894,0,0.421,0.588,0.19,0,0.297,0 -0.667,0.252,0.252,0.117,0,0,0.667,0.421,0.614,0.232,0,0.435,0.0926 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.435,0.0463 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0.654,0.231 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0.292,0.0926 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0.14,0.0463 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.219 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0.233,0,0,0,0.614,0.528,0.0236,0,0,0.12 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.255 -1,0.39,0.39,0.617,0,0,0,0.421,0.525,0.087,0,0,0.134 -0.667,0.274,0.274,0.333,0,0,0,0.421,0.546,0.0764,0,0,0.37 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.139 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0926 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0926 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.185 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0463 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.0463 -0.333,0.143,0.143,0.117,0,0.702,0,0.421,0.562,0.0846,0,0,0.185 -0.667,0.239,0.239,0.6,0,0.255,0.3,0.421,0.588,0.19,0,0.466,0.0926 -1,0.353,0.353,0,0,0,0.15,0.421,0.64,0.339,0,0,0.0463 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.0926 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.509 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.241 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.0173 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.55 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.658 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.37 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.247 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.0372 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0.367,0,0,0,0.421,0.562,0.0846,0,0,0.0926 -0.667,0.239,0.239,0.35,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.185 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.247 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0463 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.185 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.0926 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.305 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.26 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.157 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.268 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.267 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.107 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.262 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0.117,0,0,0,0.421,0.588,0.19,0,0,0 -1,0.353,0.353,0.117,0,0,0,0.421,0.64,0.339,0,0,0 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.278 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0926 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0463 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.175 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.112 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.412 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.105 -0.333,0.156,0.156,0.233,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0463 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.37 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.231 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.185 -0.333,0.151,0.151,0.467,0,0,0,0.421,0.588,0.124,0,0,0.0463 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.0463 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.278 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.578 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.231 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.364 -1,0.0743,0.0743,0.2,0,0,0,0.614,0.529,0.0451,0,0,0.0962 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0.319,0,0.421,0.562,0.0181,0,0.0134,0 -1,0.139,0.139,0,0,0,0.917,0.614,0.538,0.0301,0,0.418,0.139 -1,0.167,0.167,0.483,0,0,0,0.421,0.551,0.0444,0,0.499,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0.427,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0.472,0 -1,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0.907,0.0463 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.277,0,0.496,0.0926 -0.667,0.251,0.251,0.283,0,0,0,0.421,0.548,0.204,0,0.602,0.0463 -0.667,0.249,0.249,0.2,0,0,0,0.421,0.548,0.24,0,0.0601,0.0463 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.185 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.0926 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.417 -1,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0.607,0,0.324 -0.667,0.454,0.454,0,0.583,0.915,0,0.807,0.617,0.501,0,0.0475,0.0926 -0.667,0.554,0.554,0,0,0.0426,0.45,0.807,0.6,0.588,0,0.172,0.406 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.0463 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.437 -1,0.183,0.183,0.0333,0,0,0,0.807,0.505,0.161,0,0,0.0846 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.249 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.387 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0959 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0.12,0,0 -1,0.381,0.381,0,0.583,0,0,0.421,0.542,0.252,0.813,0,0.556 -1,0.364,0.364,0,0,0.319,0,0.421,0.542,0.277,0.233,0,0.0463 -1,0.352,0.352,0,0,0,0.683,0.421,0.542,0.297,0,0.512,0.139 -1,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0.746,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.717,0.0926 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.389,0.0463 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.576,0.167,0,0.699,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.231 -0.667,0.351,0.351,0,0,0.277,0,0.749,0.626,0.383,0,0,0.0463 -0.667,0.454,0.454,0,0,0.0426,0.467,0.807,0.617,0.501,0,0.316,0.139 -0.667,0.554,0.554,0.233,0,0,0.45,0.807,0.6,0.588,0,0.218,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.162 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0893 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.225 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.0635 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.225 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.328 -0.667,0.286,0.286,0.483,0,0,0,0.421,0.617,0.239,0,0,0.405 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.139 -0.667,0.454,0.454,0,0.0833,0,0,0.807,0.617,0.446,0.533,0,0 -1,0.806,0.806,0,0.208,0,0,1,0.619,0.817,0.144,0,0.329 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.409 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.26 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.341 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.301 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.151 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.14 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.139 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0463 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.246 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.271 -0,0.0495,0.0495,0,0,0.383,0,0.421,0.562,0.0159,0,0,0.343 -0,0.0495,0.0495,0,0,0.255,0.3,0.421,0.562,0.0159,0,0.45,0.139 -0.667,0.286,0.286,0,0,0,0.85,0.421,0.617,0.239,0,0.383,0.231 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.62,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.475,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0.53,0.185 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.445,0.214 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0.723,0.138 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0.401,0.185 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0.699,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0.81,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0.636,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0.705,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.22 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0.201,0,0 -0.333,0.16,0.16,0,0.292,0,0,0.421,0.555,0.0593,0.413,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.185 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.139 -0.333,0.15,0.15,0.117,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0.117,0,0,0,0.421,0.576,0.106,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0.0754,0,0.231 -1,0.501,0.501,0,0.396,0.0638,0,0.912,0.658,0.473,0.381,0,0.37 -1,0.656,0.656,0,0.188,0.255,0.3,1,0.645,0.662,0,0.197,0.139 -0.667,0.554,0.554,0,0,0,0.383,0.807,0.6,0.55,0.133,0.0979,0.491 -1,0.584,0.584,0,0.292,0,0,0.807,0.566,0.521,0.727,0,0.184 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0.761,0,0.231 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0.0905,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.179 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.0926 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.139 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.185 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0463 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.0463 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.278 -0.333,0.168,0.168,0.117,0,0,0,0.421,0.589,0.128,0,0,0.754 -0.667,0.351,0.351,0.367,0,0,0,0.749,0.626,0.32,0,0,0.0463 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.278 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.209 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.506 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0764 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.112 -1,0.317,0.317,0,0,0,0,1,0.49,0.0653,0,0,0.635 -1,0.402,0.402,0,0,0.702,0,0.421,0.529,0.09,0,0,0.137 -0.667,0.286,0.286,0,0,0.255,0.3,0.421,0.548,0.0788,0.589,0.555,0 -0.333,0.164,0.164,0,0.875,0,0.617,0.421,0.555,0.0541,0.666,0,0.0463 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.555 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0463 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.185 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.189 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.278 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0.215,0,0.139 -0.667,0.286,0.286,0,0.396,0,0,0.421,0.617,0.239,0.522,0,0.0463 -0.667,0.351,0.351,0,0.479,0,0,0.749,0.626,0.32,0.627,0,0.439 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.111,0,0.231 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.313 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0463 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.259,0.259,0,0,0.638,0,0.421,0.548,0.191,0,0.214,0.185 -0.667,0.251,0.251,0,0,0,0.45,0.421,0.548,0.204,0,0.454,0.324 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0.463,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0.54,0.185 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0.326,0.267 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.558,0.231 -0.333,0.168,0.168,0.233,0,0,0,0.421,0.589,0.172,0,0.51,0.324 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0.184,0.0463 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0.0926 -1,0.584,0.584,0,0,0.277,0,0.807,0.566,0.543,0,0,0.503 -1,0.391,0.391,0,0,0.362,0.217,0.807,0.531,0.345,0,0.353,0.0463 -1,0.116,0.116,0,0,0,0.467,0.614,0.533,0.0894,0,0.234,0.231 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0.0564,0.139 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.283,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0.433,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.154,0.154,0.233,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.139 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.0926 -1,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.417 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.139 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0,0,0.185 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.47 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.424 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.251 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0.357 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0.123,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0849 -1,0.0511,0.0511,0.233,0,0,0,0.807,0.497,0.0218,0,0,0.188 -1,0.107,0.107,0.117,0,0,0,0.807,0.497,0.0323,0,0,0.224 -0.667,0.139,0.139,1,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0.0463 -0.333,0.0495,0.0495,0.983,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.185 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0926 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0926 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.0463 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.139 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.231 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.0926 -1,0.501,0.501,0.233,0,0,0,0.912,0.658,0.473,0,0,0.139 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.0926 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0.135,0,0.0463 -1,0.584,0.584,0,0.396,0,0,0.807,0.566,0.521,0.512,0,0.266 -1,0.391,0.391,0,0.188,0,0,0.807,0.531,0.317,0,0,0.202 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0.233,0,0,0,0.614,0.529,0.0241,0,0,0.177 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.224 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.325 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.105 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0943 -1,0.404,0.404,0,0,0.0638,0,0.421,0.645,0.351,0.145,0,0 -0.667,0.351,0.351,0,0.583,0.255,0.3,0.749,0.626,0.32,0,0.372,0 -0.667,0.454,0.454,0,0,0,0.15,0.807,0.617,0.446,0,0.455,0 -0.667,0.554,0.554,0.867,0,0,0,0.807,0.6,0.55,0,0.553,0.139 -1,0.584,0.584,0.333,0,0,0,0.807,0.566,0.521,0,0.102,0.458 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.442 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.25 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0993 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.187 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.705 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.0922 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.0926 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.126 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.16 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.194 -0.667,0.351,0.351,0.367,0,0,0,0.749,0.626,0.32,0,0,0.0463 -0.667,0.454,0.454,0.35,0,0,0,0.807,0.617,0.446,0,0,0.0926 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.278 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.139 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.328 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.164 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.114 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.562 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.202 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.39 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0926 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.509 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.139 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.445 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.0926 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.143 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.117 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.113 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.231 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.184 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.178 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0.152,0,0 -0.333,0.15,0.15,0,0.292,0,0,0.421,0.555,0.0676,0.431,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0926 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.185 -0.667,0.251,0.251,0.233,0,0,0,0.421,0.566,0.158,0,0,0.0926 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0463 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.139 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.0926 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.322 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0946 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.206 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.167,0.167,0.283,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.284 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.172 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0.117,0,0.268 -0.667,0.249,0.249,0,0.604,0,0,0.421,0.548,0.24,0.7,0,0.0463 -0.667,0.249,0.249,0,0.271,0.277,0,0.421,0.548,0.273,0,0,0.0463 -0.667,0.251,0.251,0,0,0.362,0.217,0.421,0.566,0.3,0.226,0.347,0.0463 -1,0.363,0.363,0,0.292,0,0.7,0.421,0.606,0.464,0.607,0.372,0.0463 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.479,0.576,0,0.367 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.0463 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.139 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0.0463 -1,0.391,0.391,0,0,0.915,0,0.807,0.531,0.345,0,0.0208,0.274 -1,0.116,0.116,0,0,0.0426,0.05,0.614,0.533,0.0894,0,0,0.0814 -1,0.0495,0.0495,0,0,0,0.217,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.311 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.105 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.257 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.284 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.0463 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.186 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0.551,0,0.278 -0.667,0.351,0.351,0,0.583,0,0,0.749,0.626,0.383,0.785,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0.542,0,0.0926 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0.557,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0.65,0,0.0463 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0.594,0,0.185 -1,0.249,0.249,0,0,0,0.417,1,0.477,0.232,0,0,0.157 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.109 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.139 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.182 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.3 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.491 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.475 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0926 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.205,0,0,0.0463 -0.667,0.251,0.251,0.117,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.117,0,0,0,0.421,0.591,0.196,0,0,0 -1,0.404,0.404,0.117,0,0,0,0.421,0.645,0.351,0,0,0.435 -1,0.501,0.501,0.117,0,0,0,0.912,0.658,0.473,0,0,0.36 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.297 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.231 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.504 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.133 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.259,0.259,0.483,0,0.319,0.05,0.421,0.591,0.196,0,0.0208,0.139 -1,0.404,0.404,0,0,0,0.867,0.421,0.645,0.351,0,0.84,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.499,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0.168,0.417 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.324 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.185 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.066,0.066,0,0,0,0,0.807,0.497,0.0323,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0.957,0,0.614,0.529,0.0241,0,0.0341,0 -1,0.228,0.228,0,0,0,0.55,0.807,0.514,0.0488,0,0.455,0.139 -1,0.284,0.284,0,0,0,0.133,0.421,0.54,0.0653,0,0.226,0.0842 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.467 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.314 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.197 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.324 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.231 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0463 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.286,0.286,0.233,0,0,0,0.421,0.617,0.239,0,0,0.0463 -0.667,0.351,0.351,0,0.0833,0,0,0.749,0.626,0.32,0.627,0,0.648 -1,0.656,0.656,0,0.5,0,0,1,0.645,0.662,0.442,0,0.193 -1,0.806,0.806,0,0.292,0,0,1,0.619,0.817,0.223,0,0.152 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.372 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0952 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.36 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.139 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0463 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.231 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0463 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.185 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.154,0.154,0.717,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.0926 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0.4,0,0.0926 -1,0.656,0.656,0,0.583,0,0,1,0.645,0.662,0.118,0,0.0926 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.139 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.295 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.114 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.284,0.284,0.367,0,0,0,0.421,0.54,0.0653,0,0,0 -0.333,0.168,0.168,0.35,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0463 -0.333,0.149,0.149,0,0,0.0638,0,0.421,0.555,0.0751,0,0,0.0926 -0.333,0.149,0.149,0,0,0.574,0.05,0.421,0.555,0.0789,0,0.214,0.139 -0.667,0.251,0.251,0,0,0,0.867,0.421,0.566,0.158,0,0.543,0.0926 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0.549,0.139 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0.496,0.0926 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0.291,0.384,0.0926 -0.667,0.454,0.454,0,0.583,0,0,0.807,0.617,0.446,0.348,0.0504,0 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0463 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.0926 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.444 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.185 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.199 -1,0.167,0.167,0.783,0,0,0,0.421,0.551,0.0444,0.472,0,0.124 -1,0.286,0.286,0.667,0.583,0,0,0.421,0.548,0.113,0.348,0,0.132 -1,0.392,0.392,0.0333,0,0,0,0.421,0.542,0.212,0,0,0 -0.667,0.27,0.27,0.2,0,0,0,0.421,0.548,0.174,0,0,0 -1,0.364,0.364,0.233,0,0,0,0.421,0.542,0.277,0,0,0.139 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.297,0,0,0 -1,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -1,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -1,0.351,0.351,0.283,0,0,0,0.421,0.568,0.441,0,0,0.0926 -1,0.363,0.363,0.433,0,0,0,0.421,0.606,0.464,0,0,0.139 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.139 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.139 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.0463 -1,0.806,0.806,0,0,0.638,0,1,0.619,0.873,0,0.2,0.0926 -1,0.851,0.851,0,0,0,0.917,1,0.568,0.806,0,0.531,0.278 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0.675,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0.227,0.118 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.083 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.139 -0.333,0.16,0.16,0.0333,0,0,0,0.421,0.555,0.0961,0,0,0.324 -0.333,0.154,0.154,0.933,0,0,0,0.421,0.555,0.104,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.667,0.249,0.249,0,0,0.957,0,0.421,0.548,0.24,0,0.223,0 -1,0.349,0.349,0,0,0,0.717,0.421,0.542,0.401,0,0.26,0 -1,0.351,0.351,0,0,0,0.2,0.421,0.568,0.441,0,0,0.0463 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.324 -0.667,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.185 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.139 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.26,0,0,0.0463 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0.139 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.281,0,0,0.139 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.626 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.101 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.506 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0.21 -1,0.228,0.228,0.233,0,0,0,0.807,0.514,0.0488,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.168,0.168,0.233,0,0,0,0.421,0.555,0.0473,0,0,0.0926 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.139 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.0463 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0463 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0.142,0,0.0463 -0.333,0.149,0.149,0,0.292,0,0,0.421,0.555,0.0789,0.75,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0.367,0,0,0,0.421,0.591,0.196,0,0,0.139 -0.667,0.286,0.286,0.117,0,0,0,0.421,0.617,0.239,0,0,0.702 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.225 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.102 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.0463 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.231 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0924 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.0956 -0.667,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.219 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.149,0.149,0.233,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0.483,0.0833,0,0,0.421,0.576,0.106,0.641,0,0.0926 -0.667,0.286,0.286,0,0.5,0,0,0.421,0.617,0.239,0,0,0.185 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.185 -1,0.656,0.656,0.717,0,0,0,1,0.645,0.662,0,0,0.0463 -1,0.806,0.806,0,0,0.638,0,1,0.619,0.817,0,0,0.17 -1,0.851,0.851,0,0,0,0.55,1,0.568,0.774,0,0.671,0.139 -1,0.391,0.391,0,0,0,0.133,0.807,0.531,0.317,0,0.111,0.213 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.378 -1,0.228,0.228,0.117,0,0,0,0.807,0.514,0.0488,0,0,0.155 -0.667,0.167,0.167,0.117,0,0,0,0.421,0.551,0.0406,0,0,0.153 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.139 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0463 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.106,0,0,0.0463 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.37 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.417 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.139 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.324 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0503,0.0503,0.85,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.113 -0.667,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.306 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.466 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.149,0.149,0.233,0,0.638,0,0.421,0.555,0.0789,0,0.154,0 -0.667,0.251,0.251,0.117,0,0,0.683,0.421,0.566,0.158,0,0.0467,0 -1,0.363,0.363,0.117,0,0,0,0.421,0.606,0.286,0,0,0 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.185 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.0463 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0926 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0926 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.146 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0676 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.112 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0.181,0,0.227 -1,0.139,0.139,0,0.396,0.638,0,0.614,0.538,0.0323,0.619,0,0.115 -0.667,0.284,0.284,0.233,0.188,0,0.55,0.421,0.54,0.0653,0.153,0.393,0.0463 -0.333,0.168,0.168,0,0.292,0,0.133,0.421,0.555,0.0473,0.673,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.463 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0926 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0926 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.669 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.278 -0.667,0.249,0.249,0.233,0,0,0,0.421,0.548,0.142,0,0,0.0926 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.353 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.157 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.517 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.0463 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.515 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.26 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.397,0,0.102 -1,0.168,0.168,0,0.292,0,0,0.421,0.555,0.0654,0.118,0,0.142 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.0926 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.351,0,0,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.401,0,0,0.616 -1,0.351,0.351,0.233,0,0,0,0.421,0.568,0.441,0,0,0.447 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.139 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.0926 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.185 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.139 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.303,0,0,0.278 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.139 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.378 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0.717,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.0926 -0.667,0.259,0.259,0.283,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.15,0.15,0.917,0,0,0,0.421,0.555,0.111,0,0,0.278 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.231 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.278 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.328 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0.331 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0.573,0,0.0926 -1,0.656,0.656,0,0.292,0,0,1,0.645,0.743,0.113,0,0.252 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.348 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.0463 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.367,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0.133,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.169 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.659 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.0926 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.139 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.37 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.12 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.38 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.375 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.161 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.399 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0932 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.316 -0.667,0.172,0.172,0.25,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,0.367,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.655,0.655,0.383,0,0,0,0,0.788,0.413,0,0,0.185 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.231 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0926 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.185 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.34 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.134 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.225 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.157 -1,0.427,0.427,0,0,0,0,0,0.649,0.0963,0,0,0.376 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0463 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.428 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.484 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.486 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0463 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0.124,0,0.0926 -1,0.655,0.655,0,0.396,0,0,0,0.788,0.413,0.68,0,0.324 -1,0.829,0.829,0,0.208,0,0,0,0.772,0.578,0,0,0.0463 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.463 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.222 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0.883,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0.389 -1,0.295,0.295,0.133,0,0,0,0.14,0.609,0.0577,0,0,0.114 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.105 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.284 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.123 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.27 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.183 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0926 -0.667,0.35,0.35,0.25,0,0,0,0.14,0.702,0.21,0,0,0.0926 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.0463 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.0463 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.463 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.0463 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.0594 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.199 -0.667,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.267 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.088 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.324 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0926 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.417 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.294,0.294,0.25,0,0,0,0.14,0.671,0.172,0,0,0.0463 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.278 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0926 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.185 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0463 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.129 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.301,0.301,0.133,0,0,0,0.14,0.62,0.0991,0,0,0.27 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.188 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.139 -1,0.378,0.378,0,0,0,0,0,0.649,0.307,0,0,0.278 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.0463 -0.667,0.274,0.274,0.367,0,0,0,0.14,0.64,0.263,0,0,0.231 -1,0.417,0.417,0.133,0,0,0,0,0.726,0.405,0,0,0.0463 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.185 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.0463 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.463 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.231 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0.143 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.261 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.0943 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.32 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.187 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.555 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.185 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.139 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.0463 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0.366,0,0.224 -1,0.655,0.655,0,0.917,0,0,0,0.788,0.493,0.129,0,0.354 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.468 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.4 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.0926 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.474 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.258 -1,0.0798,0.0798,0.25,0,0,0,0.281,0.56,0.0224,0,0,0.129 -1,0.33,0.33,0,0,0,0,0,0.587,0.057,0,0,0.184 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.347 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.526 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.694 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0926 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0.332,0,0 -0.333,0.2,0.2,0.25,0.604,0,0,0.281,0.632,0.113,0.321,0,0 -0.667,0.453,0.453,0,0,0.0638,0,0.14,0.712,0.28,0,0,0 -0.667,0.569,0.569,0,0,0.532,0.0833,0.14,0.702,0.39,0,0.3,0.231 -1,0.905,0.905,0,0,0,0.617,0,0.741,0.713,0,0.652,0.0463 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.561 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.38 -1,0.249,0.249,0,0,0,0,0,0.571,0.177,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -1,0.295,0.295,0.367,0,0,0,0.14,0.609,0.0577,0,0,0.459 -0.667,0.301,0.301,0.383,0,0,0,0.14,0.62,0.0695,0,0,0.412 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0926 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.139 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.441 -0.667,0.294,0.294,0.617,0,0,0,0.14,0.671,0.172,0,0,0.163 -1,0.501,0.501,0.133,0,0,0,0,0.772,0.307,0,0,0.271 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.305,0,0 -0.667,0.569,0.569,0,0.292,0,0,0.14,0.702,0.39,0.257,0,0.185 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.417 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.145 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.319 -0.667,0.172,0.172,0.367,0,0,0,0.281,0.585,0.0368,0,0,0.136 -0.667,0.301,0.301,0.133,0,0,0,0.14,0.62,0.0695,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0463 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0926 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.0463 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0463 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.0463 -0.667,0.2,0.2,0,0,0.298,0.0667,0.281,0.632,0.113,0,0.111,0.0463 -1,0.453,0.453,0,0,0,1,0.14,0.712,0.28,0,0.493,0 -1,0.569,0.569,0,0,0,0.117,0.14,0.702,0.39,0,0.539,0.648 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0.107,0.785 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.396 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.208 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.179 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0.478,0,0 -0.667,0.301,0.301,0,0.292,0,0,0.14,0.62,0.0695,0.598,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.602 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.139 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.37 -0.667,0.2,0.2,0.117,0,0,0,0.281,0.632,0.113,0,0,0.0463 -0.667,0.251,0.251,0.383,0,0,0,0.281,0.637,0.148,0,0,0.0463 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.192 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.452 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.139 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.486 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.109 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.413 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.362 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.138 -0.333,0.172,0.172,0.25,0,0,0,0.281,0.616,0.0938,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.278 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.324 -1,0.829,0.829,0,0,0.894,0,0,0.772,0.578,0,0.0475,0.185 -1,0.62,0.62,0,0,0,0.6,0.14,0.681,0.481,0,0.479,0.0463 -1,0.564,0.564,0,0,0,0.35,0.14,0.64,0.456,0,0,0.185 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.322 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.136 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.181 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.293 -1,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.158 -1,0.279,0.279,0.367,0,0,0,0.14,0.62,0.167,0,0,0.0698 -1,0.271,0.271,0.25,0,0,0,0.14,0.62,0.179,0,0,0.213 -0.667,0.159,0.159,0.133,0,0,0,0.281,0.591,0.114,0,0,0.185 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.139 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.06 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0.287 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.417 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0.324 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.231 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.397 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.139 -1,0.356,0.356,0.5,0,0,0,0.14,0.599,0.302,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0637,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.558,0.0349,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.558,0.0218,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.558,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.189 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.418 -0.667,0.291,0.291,0,0,0.596,0,0.14,0.62,0.153,0,0.102,0 -0.667,0.164,0.164,0,0,0,0.833,0.281,0.591,0.0927,0,0.742,0 -0.667,0.16,0.16,0,0,0,1,0.281,0.591,0.0986,0,0.601,0.0463 -0.667,0.159,0.159,0.25,0,0,0.0667,0.281,0.591,0.114,0,0.00445,0.0926 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.185 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.139 -0.667,0.172,0.172,0,0,0.0638,0,0.281,0.616,0.147,0,0,0 -0.667,0.2,0.2,0,0,0.532,0.0833,0.281,0.632,0.152,0,0.5,0 -0.667,0.453,0.453,0,0,0,0.617,0.14,0.712,0.335,0,0.444,0.463 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0.576,0.139 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.402,0.228 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.577,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0.675,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0.507,0.0314 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0.111,0.244 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.351 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.259 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0541 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0761 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.163 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0.367,0,0,0,0.14,0.702,0.21,0,0,0 -1,0.655,0.655,0.383,0,0,0,0,0.788,0.413,0,0,0.231 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.231 -1,0.905,0.905,0,0.0833,0,0,0,0.741,0.713,0.506,0,0.0463 -1,0.821,0.821,0,0.208,0,0,0,0.679,0.676,0.794,0,0.0463 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.253,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0902 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.117,0,0,0,0.281,0.56,0.0224,0,0,0.633 -1,0.236,0.236,0.133,0,0,0,0.14,0.578,0.0433,0,0,0 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.278 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0985 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.072 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0463 -0.333,0.172,0.172,0.117,0,0,0,0.281,0.616,0.0938,0,0,0.0926 -0.667,0.35,0.35,0.383,0,0,0,0.14,0.702,0.21,0,0,0.0926 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.417 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.375 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.163 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.176,0,0.4 -1,0.203,0.203,0,0.292,0,0,0.281,0.58,0.147,0.761,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0.101,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.345 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.071 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.469 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.376 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.135 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.255 -0.667,0.271,0.271,0,0,0.0638,0,0.14,0.62,0.105,0,0,0.25 -0.667,0.269,0.269,0,0,0.532,0.0833,0.14,0.62,0.118,0,0.454,0.189 -0.667,0.269,0.269,0,0,0,1,0.14,0.62,0.125,0,0.562,0.137 -1,0.387,0.387,0.617,0,0,0.1,0,0.679,0.2,0,0.461,0.0926 -0.667,0.294,0.294,0.133,0,0,0,0.14,0.671,0.172,0,0,0.0926 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0.196,0,0.417 -1,0.829,0.829,0,0.396,0,0,0,0.772,0.578,0.851,0,0.139 -1,0.905,0.905,0,0.521,0,0,0,0.741,0.713,0.541,0,0.0463 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.0727,0,0.244 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.159 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0.33 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.231 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.349 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0463 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0926 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.224 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.287 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.274,0.274,0.367,0,0,0,0.14,0.64,0.139,0,0,0.0926 -0.333,0.172,0.172,0.133,0,0,0,0.281,0.616,0.0938,0,0,0.139 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.278 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.712 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0926 -0.667,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.324 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.207 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.401 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.262 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.342 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.271 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.923 -0.333,0.164,0.164,0,0,0.894,0,0.281,0.591,0.0577,0,0.12,0.447 -0.333,0.16,0.16,0.75,0,0,0.6,0.281,0.591,0.0604,0,0.424,0 -0.667,0.269,0.269,0,0,0,0.35,0.14,0.62,0.118,0,0.671,0.0926 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0.596,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0.531,0.0463 -1,0.417,0.417,0.25,0,0,0,0,0.726,0.25,0,0.568,0.0463 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0.455,0.0463 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0.309,0.231 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0926 -1,0.564,0.564,0,0.0833,0,0,0.14,0.64,0.456,0.654,0,0.324 -1,0.203,0.203,0,0.833,0,0,0.281,0.58,0.147,0,0,0.102 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.43 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0.0638,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.25,0,0.83,0,0.421,0.562,0.0181,0,0.26,0 -1,0.382,0.382,0.25,0,0,0.7,0,0.649,0.259,0,0.337,0 -1,0.378,0.378,0,0,0,0,0,0.649,0.307,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.274,0.274,0.117,0,0,0,0.14,0.64,0.263,0,0,0.231 -0.667,0.294,0.294,0.133,0,0,0,0.14,0.671,0.276,0,0,0.0926 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.324 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.231 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.0926 -0.667,0.62,0.62,0.25,0,0,0,0.14,0.681,0.514,0,0,0.185 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.0463 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0.417 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0624,0,0,0.566 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.204 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.463 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.0463 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.0926 -0.667,0.269,0.269,0.25,0,0,0,0.14,0.62,0.21,0,0,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0,0.278 -1,0.387,0.387,0,0,0,0,0,0.679,0.385,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.405,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0.122,0,0.0463 -1,0.655,0.655,0,0.396,0,0,0,0.788,0.493,0.366,0,0.231 -1,0.829,0.829,0,0.521,0,0,0,0.772,0.649,0,0,0.0463 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.0463 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.231 -1,0.51,0.51,0,0,0,0,0,0.618,0.444,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.0974 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.317 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.196 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.155 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0827 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0463 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.139 -1,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.231 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0926 -1,0.564,0.564,0,0,0.298,0.0667,0.14,0.64,0.456,0,0.0861,0.35 -1,0.203,0.203,0,0,0,0.633,0.281,0.58,0.147,0,0.338,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.465 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0.133,0,0,0,0.281,0.57,0.0296,0,0,0.0726 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0.25,0,0,0,0.281,0.591,0.0532,0,0,0.278 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.0463 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.463 -0.333,0.162,0.162,0.25,0,0,0,0.281,0.601,0.0774,0,0,0.0463 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0463 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.231 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.47 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.139 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.139 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.477 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.192 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.219 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.223 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0.75,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0.291,0,0 -1,0.569,0.569,0,0.708,0,0,0.14,0.702,0.39,0.307,0,0 -1,0.335,0.335,0,0.208,0,0,0.281,0.621,0.248,0,0,0.417 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.266 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.509 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.271 -1,0.417,0.417,0.5,0,0,0,0,0.633,0.0786,0.443,0,0.314 -1,0.427,0.427,0,0.604,0,0,0,0.649,0.0963,0.101,0,0.325 -0.667,0.299,0.299,0.117,0,0,0,0.14,0.62,0.0813,0,0,0.727 -0.667,0.291,0.291,0.133,0,0,0,0.14,0.62,0.0905,0,0,0.443 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.116 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0.117,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0.133,0,0,0,0.281,0.616,0.0938,0,0,0.185 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.0926 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.139 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.139 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0463 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.251 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.152 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.624 -0.667,0.236,0.236,0.25,0,0,0,0.14,0.578,0.0433,0,0,0.223 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.291 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.231 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.278 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.278 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.294,0.294,0.75,0,0,0,0.14,0.671,0.172,0,0,0.138 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.139 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.234 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.243 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.519 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0.0638,0,0.281,0.585,0.0403,0,0,0 -1,0.175,0.175,0.867,0,0.532,0.0833,0.281,0.591,0.0586,0,0.205,0 -1,0.424,0.424,0.383,0,0,0.383,0,0.649,0.185,0,0.423,0.283 -1,0.411,0.411,0,0,0,0,0,0.649,0.22,0,0.705,0.121 -1,0.394,0.394,0,0,0,0,0,0.649,0.242,0,0.102,0.0463 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.0926 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.35,0,0,0 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.139 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0.397,0,0.278 -0.667,0.453,0.453,0.117,0.604,0,0,0.14,0.712,0.335,0.72,0,0.278 -0.667,0.569,0.569,0.883,0,0,0,0.14,0.702,0.438,0.673,0,0.185 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0.524,0,0.406 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0.689,0,0.185 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0.618,0,0.0463 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0.634,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.358 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0.344 -1,0.411,0.411,0,0,0,0,0,0.649,0.22,0,0,0.136 -1,0.394,0.394,0,0,0,0,0,0.649,0.242,0,0,0.127 -1,0.382,0.382,0,0,0,0,0,0.649,0.259,0,0,0.32 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.0463 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.0463 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.37 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.139 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.231 -0.667,0.453,0.453,0.25,0,0,0,0.14,0.712,0.335,0.172,0,0.278 -1,0.829,0.829,0,0.292,0,0,0,0.772,0.649,0.746,0,0.185 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0.383,0,0.185 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0.515,0,0.231 -1,0.51,0.51,0,0.604,0,0,0,0.618,0.444,0.662,0,0.139 -1,0.249,0.249,0,0,0,0,0,0.571,0.202,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0.335 -1,0.236,0.236,0.25,0,0,0,0.14,0.578,0.0433,0,0,0.228 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.2,0.2,0.867,0,0.0638,0,0.281,0.632,0.113,0,0,0.278 -1,0.655,0.655,0.133,0,0.83,0,0,0.788,0.413,0,0.214,0.0926 -1,0.829,0.829,0,0,0,0.85,0,0.772,0.578,0,0.252,0.0926 -1,0.62,0.62,0,0,0,1,0.14,0.681,0.481,0,0,0 -1,0.307,0.307,0,0,0,0.05,0.281,0.601,0.236,0,0,0.231 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.0758 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.194 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.43 -1,0.295,0.295,0.367,0,0,0,0.14,0.609,0.0577,0,0,0.19 -0.667,0.301,0.301,0.133,0,0,0,0.14,0.62,0.0695,0,0,0.454 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.383 -0.667,0.291,0.291,0.25,0,0,0,0.14,0.62,0.0905,0,0,0.281 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.231 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0463 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0.413,0,0.0926 -1,0.501,0.501,0,0.604,0,0,0,0.772,0.307,0.0969,0,0.139 -1,0.655,0.655,0.5,0,0,0,0,0.788,0.413,0,0,0.0463 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.231 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0463 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.24 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.462 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.3 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.139 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0926 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0926 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.371 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.677 -0.667,0.35,0.35,0,0,0.298,0.0667,0.14,0.702,0.21,0,0.0223,0.321 -1,0.655,0.655,0,0,0,0.883,0,0.788,0.413,0,0.255,0.231 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0.608,0.417 -0.667,0.62,0.62,0.367,0,0,0,0.14,0.681,0.481,0,0.461,0.0463 -1,0.821,0.821,0.633,0,0,0,0,0.679,0.676,0,0.239,0.0463 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0.532,0,0.281,0.559,0.0223,0,0,0.123 -0.667,0.147,0.147,0,0,0.0638,0.45,0.281,0.569,0.0294,0,0.591,0.174 -0.333,0.177,0.177,0.233,0,0,0.583,0.281,0.585,0.0366,0,0.102,0.0926 -0.333,0.184,0.184,0.0333,0,0,0,0.281,0.59,0.0424,0,0,0.0463 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.139 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0463 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0463 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0926 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.587 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.392 -0.667,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0.18 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.304 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.54 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0.267,0,0,0,0.281,0.569,0.0294,0,0,0.0704 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0463 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.231 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0.817,0,0,0,0.281,0.616,0.0931,0,0,0.139 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.231 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.0463 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.37 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0926 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.243 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0171 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.139 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -0.667,0.185,0.185,0,0,0.383,0,0.281,0.59,0.0732,0,0,0 -0.667,0.312,0.312,0,0,0.213,0.333,0.14,0.618,0.152,0,0.411,0 -0.333,0.175,0.175,0.117,0,0,0.95,0.281,0.59,0.092,0,0.32,0.185 -0.333,0.171,0.171,0.15,0,0,0,0.281,0.59,0.0979,0,0.436,0.139 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0.453,0.0463 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0.577,0.0463 -0.667,0.338,0.338,0.367,0,0,0,0.14,0.639,0.261,0,0.426,0.231 -0.667,0.425,0.425,0.167,0,0,0,0.14,0.67,0.274,0,0.132,0.0463 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.189 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.493 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.0463 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0.224,0,0 -1,0.345,0.345,0,0.646,0,0,0.14,0.598,0.3,0.341,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.817,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0.402,0,0.102 -1,0.321,0.321,0,0.646,0,0,0.14,0.618,0.128,0.255,0,0.108 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.346 -1,0.426,0.426,0.267,0,0,0,0,0.647,0.24,0,0,0.208 -1,0.413,0.413,0,0,0,0,0,0.647,0.257,0,0,0.652 -1,0.409,0.409,0,0,0,0,0,0.647,0.304,0,0,0.244 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.417 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -1,0.612,0.612,0.267,0,0,0,0,0.724,0.402,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.37 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.224 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.0926 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.0463 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.134 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0,0,0.139 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.187 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.24 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.381 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.0186 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0463 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.139 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.16 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.689 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.422 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.203 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0463 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0896 -1,0.245,0.245,0.483,0,0,0,0.14,0.577,0.043,0,0,0.0726 -1,0.305,0.305,0.05,0,0,0,0.14,0.608,0.0573,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0.05,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0463 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.324 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.231 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.185 -1,0.747,0.747,0,0,0.298,0,0,0.739,0.708,0,0,0.45 -1,0.566,0.566,0,0,0,0.683,0,0.677,0.671,0,0.593,0.185 -1,0.0495,0.0495,0,0,0,0.0833,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.109 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.203 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.176 -0.333,0.147,0.147,0.267,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0.145,0,0.185 -0,0.0495,0.0495,0,0.542,0,0,0.421,0.562,0.0159,0.729,0,0 -0.333,0.171,0.171,0,0.104,0,0,0.281,0.59,0.06,0,0,0.0463 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0463 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0463 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.278 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.231 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0926 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.401 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.308 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.213,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0.383,0.2,0.281,0.559,0.0223,0,0.269,0.0949 -0.667,0.245,0.245,0,0,0,0.833,0.14,0.577,0.043,0,0.129,0.166 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0531 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.185 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.416 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.362 -1,0.804,0.804,0,0,0.894,0,0,0.77,0.304,0,0.316,0.0926 -0.667,0.647,0.647,0,0,0,0.717,0.14,0.711,0.278,0,0.893,0.278 -1,0.919,0.919,0,0,0,0.317,0,0.77,0.573,0,0.647,0.139 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0.414,0.463 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.305 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.116 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0.345,0,0 -0.333,0.185,0.185,0,0.646,0,0,0.281,0.59,0.0483,0.399,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.139 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.278 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0463 -0.333,0.173,0.173,0.533,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0.533,0,0,0,0.14,0.639,0.138,0,0,0.0926 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.0463 -1,0.553,0.553,0.233,0,0,0,0.14,0.7,0.208,0,0,0.154 -1,0.946,0.946,0.0333,0.229,0.851,0,0,0.785,0.409,0.436,0,0.28 -1,0.919,0.919,0,0.417,0.0426,0.467,0,0.77,0.573,0,0.251,0.194 -1,0.515,0.515,0,0,0,0.567,0.14,0.68,0.477,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.509 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.175,0.175,0.367,0,0,0,0.281,0.59,0.092,0,0,0.0463 -0.333,0.171,0.171,0.167,0,0,0,0.281,0.59,0.0979,0,0,0.0463 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.139 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.185 -1,0.612,0.612,0,0,0,0,0,0.724,0.402,0,0,0.0463 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.139 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.417 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.0463 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.264,0,0,0.384 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0,0,0.278 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.44 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.253 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.0463 -0.333,0.169,0.169,0,0,0.0638,0,0.281,0.59,0.113,0,0,0.0926 -0.667,0.297,0.297,0,0,0.83,0,0.14,0.618,0.237,0,0.141,0.0463 -0.667,0.338,0.338,0.533,0,0,0.25,0.14,0.639,0.261,0,0.466,0.0463 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0.527,0.324 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0.141,0.37 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.0463 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.19 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.242 -0.667,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.149 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.505 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0349 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0978 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0931 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.617 -0.333,0.184,0.184,0.733,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0.35,0,0,0,0.281,0.59,0.0483,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0.533,0,0.213,0,0.14,0.67,0.17,0,0,0 -1,0.804,0.804,0,0,0.383,0.2,0,0.77,0.304,0,0.239,0.0926 -1,0.946,0.946,0,0,0,0.567,0,0.785,0.409,0,0,0.278 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0.591,0,0.185 -1,0.747,0.747,0,0.646,0,0,0,0.739,0.708,0,0,0.293 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.539 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.151 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.369 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.212 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0815 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.406 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.39 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0.259,0,0.101 -0.333,0.169,0.169,0,0.646,0,0,0.281,0.59,0.0665,0.706,0,0.173 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.154 -0.333,0.194,0.194,0.85,0,0,0,0.281,0.6,0.0769,0,0,0.285 -0.333,0.237,0.237,0.267,0,0,0,0.281,0.616,0.0931,0,0,0.0463 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.0926 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.185 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.185 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.0463 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.417 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.141 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.099 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.101 -1,0.245,0.245,0.267,0,0,0,0.14,0.577,0.043,0,0,0.149 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.173 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.567 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.211 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.164 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.392 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0.533,0,0,0,0.281,0.6,0.0769,0,0,0.0926 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.0463 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.0926 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.231 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.0463 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.242 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0852 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.284 -0.667,0.321,0.321,0,0,0.213,0,0.14,0.618,0.0807,0,0,0.186 -0.667,0.312,0.312,0,0,0.681,0,0.14,0.618,0.0898,0,0.329,0.228 -0.667,0.3,0.3,0,0,0,0.967,0.14,0.618,0.0989,0,0.368,0 -0.667,0.292,0.292,0,0,0,0.317,0.14,0.618,0.104,0,0.53,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.57,0.278 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.539,0.0463 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0.479,0.0463 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.488,0.139 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0.636,0.387 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.696,0.421 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0.76,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0.504,0.0926 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0.748,0.0926 -0.333,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0.573,0.139 -0.667,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.504,0.0463 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0.27,0.391 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.693 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0.172 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.114 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.395 -1,0.245,0.245,0.817,0,0,0,0.14,0.577,0.043,0,0,0.423 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.493 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.378 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.112 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0.353,0,0.324 -0.333,0.175,0.175,0,0.312,0,0,0.281,0.59,0.0574,0.724,0,0.324 -0.333,0.171,0.171,0.233,0,0,0,0.281,0.59,0.06,0.37,0,0.0463 -0.333,0.169,0.169,0.0333,0,0,0,0.281,0.59,0.0665,0,0,0.0926 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.185 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.0463 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.804,0.804,0,0,0.894,0,0,0.77,0.304,0,0.102,0.21 -0.667,0.647,0.647,0,0,0,0.517,0.14,0.711,0.278,0,0.366,0.237 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0.847,0.607 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0.509,0.325 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0.675,0.203 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.277,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0.877,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0.577,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.257 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0183 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.169 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.108 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.382 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.0926 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.139 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.185 -0.333,0.237,0.237,0.267,0,0,0,0.281,0.616,0.146,0,0,0.0926 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.15,0,0,0.185 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.185 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0.422,0,0.324 -0.667,0.515,0.515,0,0.646,0,0,0.14,0.68,0.51,0.86,0,0.0943 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0.646,0,0.118 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0.553,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0.321,0.171,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0.679,0,0.185 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0.521,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0.366,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0173,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.0495,0.0495,0,0,0.0638,0,0.421,0.562,0.0181,0,0,0.185 -1,0.147,0.147,0,0,0.532,0.0833,0.281,0.569,0.0277,0,0.402,0 -1,0.177,0.177,0,0,0,0.95,0.281,0.585,0.04,0,0.184,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0.377,0 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.3 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.273 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.225 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0.442,0,0.768 -0.333,0.169,0.169,0,0.979,0,0,0.281,0.59,0.113,0.305,0,0.0751 -1,0.421,0.421,0,0,0,0,0,0.647,0.347,0,0,0.188 -1,0.482,0.482,0.267,0,0,0,0,0.677,0.382,0,0,0.186 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.251 -1,0.804,0.804,0,0,0,0,0,0.77,0.415,0,0,0.0463 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.582 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.521 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.139 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.231 -1,0.493,0.493,0,0.0833,0,0,0,0.616,0.441,0.546,0,0 -1,0.183,0.183,0,0.229,0,0,0.14,0.567,0.14,0.582,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0974 -1,0.0525,0.0525,0,0,0,0,0.14,0.557,0.0196,0,0,0.332 -0.667,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.113 -0.667,0.245,0.245,0,0,0.532,0,0.14,0.577,0.043,0,0,0.207 -0.667,0.305,0.305,0,0,0.0638,0.45,0.14,0.608,0.0573,0,0.0979,0 -0.333,0.184,0.184,0,0,0,0.317,0.281,0.59,0.0424,0,0,0.0463 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.169,0.169,0,0,0.596,0,0.281,0.59,0.0665,0,0.0979,0 -0.333,0.173,0.173,0,0,0,0.95,0.281,0.59,0.0697,0,0.476,0 -0.333,0.194,0.194,0,0,0.213,0.0833,0.281,0.6,0.0769,0,0.5,0 -0.333,0.237,0.237,0,0,0.681,0,0.281,0.616,0.0931,0,0.0861,0.0463 -1,0.804,0.804,0,0,0,0.767,0,0.77,0.304,0,0.227,0.315 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.324 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.139 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.159 -1,0.566,0.566,0.267,0,0,0,0,0.677,0.671,0,0,0.414 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.102 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.103 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0.311,0,0.63 -0.667,0.305,0.305,0.983,0.312,0,0,0.14,0.608,0.0573,0.795,0,0 -0.667,0.318,0.318,0.1,0,0,0,0.14,0.618,0.069,0.682,0,0.0926 -0.333,0.185,0.185,0.733,0,0,0,0.281,0.59,0.0483,0.197,0,0.139 -0.333,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0.0926 -0.333,0.175,0.175,0.183,0,0,0,0.281,0.59,0.0574,0,0,0.0463 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0.483,0,0,0,0.281,0.6,0.0769,0,0,0.0463 -0.667,0.425,0.425,0.333,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0.183,0,0 -1,0.946,0.946,0,0.312,0,0,0,0.785,0.409,0.727,0,0.324 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0926 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.0926 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0.189,0,0.432 -1,0.345,0.345,0,0.312,0,0,0.14,0.598,0.276,0.68,0,0.357 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0.106 -1,0.051,0.051,0.3,0,0,0,0.281,0.559,0.0177,0,0,0.0354 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.181 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.175 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.341 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.504 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.312 -0.333,0.181,0.181,0.267,0,0,0,0.281,0.59,0.0528,0,0,0.0809 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0926 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.139 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0463 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.139 -0.667,0.425,0.425,0.483,0,0,0,0.14,0.67,0.17,0,0,0.139 -0.667,0.553,0.553,0.333,0,0,0,0.14,0.7,0.208,0,0,0.0926 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.0463 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.185 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.387 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.157 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.261 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.19 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.366 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0.346,0,0.385 -0.667,0.177,0.177,0,0.312,0,0,0.281,0.585,0.0366,0.359,0,0.159 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.401 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.187 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.387 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.418 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.172 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.139 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.194,0.194,0.483,0,0,0,0.281,0.6,0.0769,0,0,0.139 -0.667,0.425,0.425,0.05,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.278 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0.147,0,0.147 -1,0.919,0.919,0,0.312,0,0,0,0.77,0.573,0.443,0,0.339 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0463 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0817 -1,0.0495,0.0495,0.267,0,0,0,0.281,0.559,0.0151,0,0,0.0926 -1,0.0525,0.0525,0,0,0,0,0.14,0.557,0.0196,0,0,0 -1,0.146,0.146,0,0,0,0,0,0.554,0.0351,0.366,0,0 -0.667,0.245,0.245,0,0.646,0,0,0.14,0.577,0.043,0.18,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.426 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0463 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.231 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.139 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0463 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.23 -0.667,0.425,0.425,0.483,0,0,0,0.14,0.67,0.17,0,0,0.426 -0.667,0.553,0.553,0.05,0,0,0,0.14,0.7,0.208,0,0,0.553 -0.667,0.647,0.647,0.233,0,0,0,0.14,0.711,0.278,0,0,0.0463 -0.333,0.339,0.339,0.3,0,0,0,0.281,0.631,0.202,0,0,0.0463 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.154 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.143 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.176 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.0463 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0926 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0 -0.667,0.425,0.425,0.267,0,0,0,0.14,0.67,0.274,0,0,0.346 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.0978 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.139 -0.667,0.339,0.339,0,0,0,0,0.281,0.631,0.227,0,0,0.278 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.278 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.0463 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.231 -0.667,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0926 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0874 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0.409,0,0.518 -0.667,0.3,0.3,0,0.646,0,0,0.14,0.618,0.166,0.522,0,0.0808 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0.526,0,0.338 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.197 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.135 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.0463 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.278 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.15,0,0,0.417 -1,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.139 -1,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0.147,0,0.0463 -1,0.747,0.747,0,0.312,0,0,0,0.739,0.756,0.553,0,0.139 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0.583,0,0 -1,0.493,0.493,0,0,0,0,0,0.616,0.441,0.598,0,0 -1,0.249,0.249,0,0,0,0,0,0.57,0.201,0.303,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0534,0.585,0,0.0463 -1,0.066,0.066,0,0,0,0,0.14,0.557,0.0287,0.637,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0.704,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.164 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0.619,0,0 -0.667,0.318,0.318,0,0.312,0,0,0.14,0.618,0.069,0.381,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.185 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.139 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.185 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.0463 -0.333,0.173,0.173,0.533,0,0,0,0.281,0.59,0.0697,0,0,0.185 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.0926 -0.333,0.301,0.301,0.533,0,0,0,0.281,0.631,0.112,0,0,0.141 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.0463 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0463 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0926 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.117,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.222 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.0406 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.0463 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.37 -0.333,0.173,0.173,0,0,0.532,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0.362,0.217,0.281,0.6,0.0769,0,0.393,0.324 -0.667,0.425,0.425,0,0,0,0.817,0.14,0.67,0.17,0,0.577,0.139 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.844,0.0463 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.668,0.231 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0.368,0.0463 -1,0.747,0.747,0,0,0.596,0,0,0.739,0.708,0,0,0.401 -1,0.566,0.566,0,0,0,0.517,0,0.677,0.671,0,0.522,0.338 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0.708,0.194 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0751 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0.118 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.477 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.127 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.494 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.185 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.374 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0463 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0463 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.278 -0.667,0.553,0.553,0.267,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.185 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.0926 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.0926 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0.404,0,0.139 -1,0.197,0.197,0,0.646,0,0,0.281,0.58,0.146,0.332,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.114,0.114,0,0,0,0,0.14,0.557,0.0287,0,0,0.0714 -0.667,0.147,0.147,0.533,0,0,0,0.281,0.569,0.0294,0,0,0.0987 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.129 -0.667,0.318,0.318,0,0,0.532,0,0.14,0.618,0.069,0,0,0.545 -0.667,0.321,0.321,0,0,0.362,0.217,0.14,0.618,0.0807,0,0.561,0.254 -0.667,0.312,0.312,0,0,0,0.55,0.14,0.618,0.0898,0,0.364,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0.466,0.0463 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0.289,0.0463 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.185 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.185 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0.391,0,0.0463 -0.667,0.553,0.553,0,0.312,0,0,0.14,0.7,0.208,0.273,0,0.231 -0.333,0.348,0.348,0.267,0,0,0,0.281,0.636,0.147,0,0,0.405 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.465 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.242 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.083 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.184,0.184,0.267,0,0,0,0.281,0.59,0.0424,0,0,0.0463 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0926 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0.251,0,0 -0.667,0.425,0.425,0,0.312,0,0,0.14,0.67,0.17,0.596,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.185 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.231 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.332 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.201 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.204 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.185 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.0926 -0.667,0.314,0.314,0.367,0,0,0,0.14,0.732,0.312,0,0,0.0463 -1,0.513,0.513,0.183,0,0,0,0,0.857,0.505,0,0,0.139 -1,0.661,0.661,0,0,0,0,0,0.915,0.531,0,0,0.128 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.662 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.444 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0.417 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.185 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.0926 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.203 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.105 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0.55,0,0,0,0.281,0.621,0.0327,0,0,0.115 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0.154,0,0 -1,0.337,0.337,0,0.333,0,0,0.14,0.732,0.168,0.557,0,0.106 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0.619,0,0.278 -1,0.316,0.316,0,0,0.383,0,0.14,0.732,0.217,0.425,0,0.516 -1,0.307,0.307,0,0,0.234,0.317,0.14,0.732,0.233,0,0.312,0.202 -0.667,0.305,0.305,0,0,0,0.5,0.14,0.732,0.274,0,0.613,0.139 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0.703,0.139 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0.124,0.693,0 -0.667,0.457,0.457,0,0.333,0,0,0.14,0.797,0.36,0.402,0.402,0.324 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0.408,0.231 -0.333,0.366,0.366,0.117,0,0,0,0.281,0.705,0.228,0,0.457,0.37 -0.333,0.344,0.344,0.433,0,0,0,0.281,0.699,0.296,0,0,0.0926 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.0926 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.0926 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0.404,0,0.174 -1,0.183,0.183,0,0.667,0,0,0.14,0.667,0.183,0.706,0,0.112 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0.522,0,0.185 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0.142 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.089 -0.667,0.251,0.251,0.467,0,0,0,0.14,0.68,0.0551,0,0,0.381 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.23 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0927 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0849 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.128 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.146 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0 -0.333,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0.0926 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.247 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.509 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.226 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.143 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.323 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.186 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.608 -0.333,0.178,0.178,0.55,0,0,0,0.281,0.647,0.0759,0,0,0.0926 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0926 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0463 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.255 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0.25,0,0.269 -1,0.869,0.869,0.117,0.667,0,0,0,0.973,0.402,0.619,0,0.342 -1,1,1,0.717,0.667,0,0,0,0.993,0.541,0.492,0,0.503 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0.205,0,0.228 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0679 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0926 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0.267,0,0,0,0.281,0.64,0.0449,0,0,0.243 -0.667,0.33,0.33,0,0.0833,0,0,0.14,0.732,0.0895,0.6,0,0.214 -0.667,0.337,0.337,0,0.25,0,0,0.14,0.732,0.105,0.56,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0.779,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0.269,0,0.231 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.185 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0463 -0.667,0.596,0.596,0.267,0,0,0,0.14,0.836,0.273,0,0,0.116 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.0463 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.102,0,0.417 -1,0.554,0.554,0.117,0.333,0.617,0,0,0.857,0.887,0.294,0.196,0.3 -1,0.488,0.488,0.433,0,0,0.817,0,0.779,0.536,0,0,0.0463 -1,0.183,0.183,0,0,0,0.283,0.14,0.667,0.16,0,0,0.0463 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.256 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.181 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.497 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.139 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.403 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.0993 -1,1,1,0.55,0,0,0,0,0.993,0.541,0,0,0.258 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.307 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0926 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.0463 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.24 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0846 -1,0.251,0.251,0.467,0,0,0,0.14,0.68,0.0551,0,0,0.128 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.284 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.196 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.394 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.33 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.201 -0.333,0.177,0.177,0.267,0,0,0,0.281,0.647,0.0845,0,0,0.1 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.387 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.287 -0.667,0.253,0.253,0.117,0.0833,0,0,0.281,0.679,0.12,0.618,0,0.144 -1,0.596,0.596,0.15,0.583,0,0,0.14,0.836,0.273,0.767,0,0.253 -1,1,1,0,0,0,0,0,0.993,0.541,0.732,0,0.463 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0.185,0,0.277 -1,0.732,0.732,0,0,0.383,0,0,0.934,0.936,0,0,0.0463 -1,0.554,0.554,0,0,0.234,0.317,0,0.857,0.887,0,0.0475,0 -1,0.342,0.342,0,0,0,0.5,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.115 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.139 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.356 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.375 -1,0.661,0.661,0.117,0.0833,0,0,0,0.915,0.531,0.6,0,0.0926 -1,0.596,0.596,0.15,0.25,0,0,0.14,0.836,0.372,0.47,0,0.0463 -1,1,1,0,0.333,0,0,0,0.993,0.647,0.655,0,0.231 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.185 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.0926 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.501 -1,0.342,0.342,0.267,0,0,0,0.14,0.706,0.394,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.33,0.33,0.467,0,0,0,0.14,0.732,0.128,0,0,0.104 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -0.667,0.307,0.307,0,0,0.617,0,0.14,0.732,0.233,0,0.184,0 -0.667,0.305,0.305,0,0,0,0.817,0.14,0.732,0.274,0,0.76,0.324 -0.667,0.314,0.314,0.55,0,0,0,0.14,0.732,0.312,0,0.415,0.0463 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0.2,0.139 -0.333,0.253,0.253,0.117,0,0,0,0.281,0.679,0.189,0,0,0.185 -0.667,0.596,0.596,0.417,0,0,0,0.14,0.836,0.372,0,0,0.278 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.185 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.0926 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.501 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.151 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.169 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.634 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.345 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.267,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.258 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0926 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.185 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.278 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0926 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.185 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.139 -0.667,0.457,0.457,0.55,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0.285,0,0.0926 -0.667,0.683,0.683,0,0.333,0,0,0.14,0.849,0.366,0.546,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.777,0,0.278 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0926 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.231 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.476 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.147,0,0.104 -1,0.251,0.251,0,0.396,0,0,0.14,0.68,0.0551,0.765,0,0.505 -0.667,0.181,0.181,0,0.271,0,0,0.281,0.64,0.0449,0.637,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0.275,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0926 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.231 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.139 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.231 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0926 -0.333,0.323,0.323,0,0.0833,0,0,0.281,0.699,0.145,0.689,0,0.324 -1,1,1,0,0.583,0,0,0,0.993,0.541,0.698,0,0.139 -1,0.933,0.933,0.117,0,0,0,0,0.973,0.758,0.472,0,0.324 -1,0.732,0.732,0.15,0,0,0,0,0.934,0.936,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.196 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.32 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.514 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.457 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.193 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.87 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.518 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.374 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0463 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.457,0.457,0.117,0,0,0,0.14,0.797,0.224,0,0,0.231 -0.667,0.596,0.596,0.15,0,0,0,0.14,0.836,0.273,0,0,0.207 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0463 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.231 -1,0.732,0.732,0,0,0.936,0,0,0.934,0.936,0,0.107,0 -1,0.554,0.554,0,0,0,0.567,0,0.857,0.887,0,0.318,0.0926 -1,0.196,0.196,0,0,0,0.25,0.281,0.634,0.189,0,0,0.0926 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.506 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.141 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.538 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.196 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0852 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.187 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.278 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.324 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0926 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0926 -0.667,0.638,0.638,0.267,0,0,0,0.14,0.836,0.51,0.397,0,0.231 -1,0.732,0.732,0,0.333,0,0,0,0.934,0.936,0.718,0,0.398 -1,0.554,0.554,0,0.708,0,0,0,0.857,0.887,0.343,0,0.53 -1,0.0495,0.0495,0,0.312,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.494 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.401 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.0805 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.139 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0926 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0463 -0.333,0.178,0.178,0.367,0,0,0,0.281,0.647,0.0759,0,0,0.0463 -0.333,0.177,0.177,1,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.182,0.182,0.0333,0,0,0,0.281,0.647,0.0888,0,0,0.0463 -0.667,0.359,0.359,0.867,0,0,0,0.14,0.758,0.181,0.433,0,0.0463 -0.667,0.457,0.457,0.25,0.667,0,0,0.14,0.797,0.224,0.639,0,0.231 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0.682,0,0.417 -1,1,1,0,0,0,0,0,0.993,0.541,0.492,0,0.509 -1,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0.779,0,0.494 -1,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0301,0,0,0.207 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.185 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0.129 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.345 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.2 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.0463 -0.667,0.314,0.314,0,0.0833,0,0,0.14,0.732,0.312,0.417,0,0.185 -0.667,0.359,0.359,0,0.25,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.185 -1,1,1,0,0,0,0,0,0.993,0.647,0.316,0,0.231 -1,0.933,0.933,0,0.333,0,0,0,0.973,0.851,0.0898,0,0.185 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.324 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.185 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.0463 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.278 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0984 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0.278 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0463 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.494 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.116 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -1,0.869,0.869,0.867,0,0,0,0,0.973,0.549,0,0,0 -1,1,1,0.533,0,0,0,0,0.993,0.647,0,0,0.0926 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.479 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.296 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.337 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0.267,0,0,0,0.281,0.608,0.026,0,0,0.546 -0.667,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.187 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.321 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.272 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.336 -0.333,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.183,0.183,0.467,0,0,0,0.281,0.647,0.0724,0,0,0 -1,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.278 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.139 -0.667,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0.418,0,0.231 -1,1,1,0,0.667,0,0,0,0.993,0.541,0.575,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0.643,0,0.324 -1,0.732,0.732,0.367,0,0,0,0,0.934,0.936,0.809,0,0.185 -1,0.386,0.386,0.183,0,0,0,0.14,0.758,0.596,0,0,0.227 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.111 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.421 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.128 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0,0,0.702,0,0.281,0.647,0.0527,0,0,0 -0.667,0.193,0.193,0,0,0.234,0.317,0.281,0.647,0.0604,0,0.522,0.278 -0.667,0.189,0.189,0,0,0,0.5,0.281,0.647,0.0664,0,0.62,0.185 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0.444,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0.656,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0.552,0.139 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.282,0.194 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.218,0.232 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.381,0.463 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0.595,0.0926 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0.448,0 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0.647,0.417 -0.667,0.277,0.277,0,0,0,0,0.281,0.686,0.322,0,0.473,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.264,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.143 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.147 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.116 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0.183,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.237 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.247 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.0938 -1,0.47,0.47,0,0,0.702,0,0,0.818,0.126,0,0,0.484 -0.667,0.337,0.337,0,0,0.234,0.317,0.14,0.732,0.105,0,0.681,0.385 -0.667,0.328,0.328,0,0,0,0.5,0.14,0.732,0.117,0,0.496,0.0648 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.398,0.0463 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.0926 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.314,0.314,0,0.0833,0,0,0.14,0.732,0.162,0.636,0,0.0463 -0.667,0.359,0.359,0,0.25,0,0,0.14,0.758,0.181,0.244,0,0 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0,0.544 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.139 -1,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.4 -0.667,0.344,0.344,0.867,0,0,0,0.281,0.699,0.263,0,0,0.139 -1,0.277,0.277,0.25,0,0,0,0.281,0.686,0.322,0,0,0.0926 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.251,0.251,0,0.0833,0,0,0.14,0.68,0.0551,0.496,0,0.306 -0.667,0.181,0.181,0,0.938,0,0,0.281,0.64,0.0449,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.185 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0463 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0463 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0.366,0,0.139 -0.667,0.457,0.457,0,0.667,0,0,0.14,0.797,0.224,0.576,0,0.278 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0.239,0,0.0463 -0.667,0.683,0.683,0,0.667,0,0,0.14,0.849,0.366,0.329,0,0.0463 -0.667,0.638,0.638,0,0,0.298,0.0667,0.14,0.836,0.51,0,0.089,0.0463 -1,0.732,0.732,0,0,0,0.75,0,0.934,0.936,0,0.561,0.0463 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0.479,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.257 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.172 -1,0.251,0.251,0.367,0,0,0,0.14,0.68,0.0551,0,0,0.27 -0.667,0.181,0.181,0.183,0,0,0,0.281,0.64,0.0449,0,0,0.169 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.333,0.193,0.193,0,0,0.298,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0.567,0.281,0.647,0.0664,0,0.488,0.0463 -0.333,0.183,0.183,0,0,0,0.533,0.281,0.647,0.0724,0,0.145,0.324 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.185 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0926 -0.667,0.314,0.314,0,0,0.617,0,0.14,0.732,0.162,0,0,0.0926 -0.667,0.359,0.359,0,0,0,0.567,0.14,0.758,0.181,0,0.659,0 -0.667,0.457,0.457,0.267,0,0,0.817,0.14,0.797,0.224,0,0.329,0.139 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0.642,0.0463 -1,1,1,0,0,0,0,0,0.993,0.541,0,0.0861,0.763 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.0751 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.488 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0.442,0,0.541 -1,0.342,0.342,0,0.333,0,0,0.14,0.706,0.363,0.144,0,0.278 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.101 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.139 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0926 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.185 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.231 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.0926 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.413 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0.111,0,0.185 -0.667,0.504,0.504,0,0.396,0,0,0.14,0.81,0.673,0.451,0,0.231 -0.667,0.386,0.386,0,0.271,0,0,0.14,0.758,0.621,0,0,0.449 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.219 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.137 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -1,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.332 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.584 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.0463 -0.667,0.457,0.457,0.867,0,0,0,0.14,0.797,0.36,0,0,0.0926 -1,0.869,0.869,0.25,0,0,0,0,0.973,0.549,0,0,0.231 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.231 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.0463 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.378 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.138 -1,0.351,0.351,0.267,0,0,0,0,0.74,0.0747,0,0,0.956 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.338 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.393 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.153 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.395 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.324 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.169 -0.667,0.366,0.366,0.367,0,0,0,0.281,0.705,0.191,0,0,0.0748 -1,0.638,0.638,0.467,0,0,0,0.14,0.836,0.51,0,0,0.402 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.0463 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.37 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.278 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0.267,0,0,0,0.281,0.608,0.02,0,0,0.322 -1,0.15,0.15,0,0,0,0,0,0.701,0.0464,0.133,0,0 -1,0.351,0.351,0,0.333,0,0,0,0.74,0.0747,0.494,0,0.129 -0.667,0.313,0.313,0,0,0.298,0.0667,0.14,0.719,0.074,0.402,0.107,0 -0.333,0.19,0.19,0,0,0,0.75,0.281,0.647,0.0527,0,0.559,0.0926 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.0463 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0463 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.278 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0926 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0.255,0,0.0463 -1,0.661,0.661,0,0.333,0,0,0,0.915,0.327,0.167,0,0 -1,0.869,0.869,0.267,0,0,0,0,0.973,0.402,0,0,0.0926 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.139 -1,0.933,0.933,0.55,0,0,0,0,0.973,0.758,0,0,0.185 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.128 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.139 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0463 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0824 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.361 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.0463 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.139 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.185 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.278 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.139 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0926 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.157 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.366,0.366,0.867,0,0,0,0.281,0.705,0.191,0,0,0 -0.667,0.638,0.638,0.25,0,0,0,0.14,0.836,0.51,0,0,0.37 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.139 -0.333,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.288 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.25 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.34 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0.117,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.351,0.351,0.433,0,0,0,0,0.74,0.0747,0,0,0.317 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.109 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.134 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.324 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.324 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.0463 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.341 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.463 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.173 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.103 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.345 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.602 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0463 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0.185,0,0.0926 -0.333,0.182,0.182,0,0.396,0,0,0.281,0.647,0.0888,0.408,0,0.0463 -0.333,0.204,0.204,0,0.271,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0.367,0,0,0,0.281,0.679,0.12,0,0,0.0463 -0.333,0.323,0.323,0.183,0,0,0,0.281,0.699,0.145,0,0,0.0463 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.231 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.0926 -0.667,0.504,0.504,0,0.0833,0,0,0.14,0.81,0.629,0.601,0,0.185 -1,0.218,0.218,0,0.583,0,0,0.281,0.66,0.306,0,0,0.18 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.808 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0463 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.179 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.108 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.867,0,0,0,0.421,0.562,0.0181,0,0,0.0463 -1,0.307,0.307,0.533,0,0,0,0.14,0.732,0.233,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.0924 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0.312,0,0.231 -0.667,0.457,0.457,0,0.667,0,0,0.14,0.797,0.36,0.7,0,0.231 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.278 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.0926 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.0463 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.463 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.231 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.156 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0.157 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0.454,0,0.0802 -0.667,0.19,0.19,0.267,0.667,0,0,0.281,0.647,0.0731,0.212,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.417 -1,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.818,0.34,0,0,0.159 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.0463 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.0926 -1,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -1,0.457,0.457,0.367,0,0,0,0.14,0.797,0.36,0,0,0.0926 -1,0.869,0.869,0.467,0,0.936,0,0,0.973,0.549,0,0.142,0.324 -1,1,1,0,0,0,0.567,0,0.993,0.647,0,0.663,0.0926 -0.667,0.638,0.638,0,0,0,0.533,0.14,0.836,0.573,0,0.43,0.139 -0.667,0.504,0.504,0,0.0833,0,0,0.14,0.81,0.673,0.363,0.433,0 -0.667,0.386,0.386,0,0.583,0,0,0.14,0.758,0.621,0,0.0608,0.37 -0.667,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.0926 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0926 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.0949 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.253 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.193,0.193,0.75,0,0,0,0.281,0.647,0.0604,0,0,0.0463 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.185 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.139 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0926 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.139 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.139 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0926 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.278 -1,1,1,0,0,0,0,0,0.993,0.541,0.28,0,0.231 -1,0.933,0.933,0,0.667,0,0,0,0.973,0.758,0.415,0,0.251 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.375 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.439 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.142 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv deleted file mode 100644 index 30ee5183e5..0000000000 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv +++ /dev/null @@ -1,8761 +0,0 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.257 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.123 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.0907 -0.667,0.322,0.322,0,0.25,0,0,0.14,0.732,0.129,0.15,0,0.136 -0.667,0.313,0.313,0,0.55,0,0,0.14,0.732,0.136,0.591,0,0.227 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0.568,0,0.0453 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0.566,0,0.0907 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.175 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.188 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.449 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.272 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.0453 -0.667,0.565,0.565,0.0167,0.75,0,0,0.14,0.81,0.629,0.497,0,0.181 -0.667,0.43,0.43,1,0.05,0,0,0.14,0.758,0.596,0,0,0.229 -1,0.536,0.536,0.267,0,0,0,0,0.779,0.536,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.18 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.132 -1,0.253,0.253,0.0167,0,0,0,0.14,0.68,0.0551,0,0,0.2 -1,0.316,0.316,0.75,0,0,0,0.14,0.719,0.074,0,0,0.35 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0926 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.205 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.283 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.181 -0.333,0.181,0.181,0,0.8,0,0,0.281,0.647,0.0759,0.894,0,0.0907 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0.599,0,0.0907 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0.211,0,0.0453 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.453 -0.667,0.548,0.548,0.267,0,0,0,0.14,0.836,0.273,0,0,0.181 -0.333,0.359,0.359,0.5,0,0,0,0.281,0.705,0.191,0,0,0.0907 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.136 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.181 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0936 -0.667,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.181 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0.25,0,0,0.421,0.562,0.0159,0.141,0,0 -1,0.183,0.183,0,0.283,0,0,0.281,0.64,0.0449,0.404,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.136 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.0907 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0907 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.136 -0.667,0.548,0.548,0.767,0,0,0,0.14,0.836,0.273,0,0,0.181 -0.333,0.359,0.359,0.25,0,0,0,0.281,0.705,0.191,0,0,0.136 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.0907 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.151 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.263 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.251 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.12 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.272 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.227 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.0453 -0.667,0.182,0.182,0.0167,0,0,0,0.281,0.647,0.0888,0,0,0.272 -0.667,0.196,0.196,0.5,0,0,0,0.281,0.66,0.0982,0,0,0.0907 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.318 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0752 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.193 -1,0.823,0.823,0,0.533,0,0,0,0.934,0.936,0.498,0,0.0907 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0.535,0,0.136 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.272 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0453 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.334,0.334,0.767,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.0907 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.227 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.0453 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.801 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.174 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.571 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.152 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.57 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.183,0.183,0.517,0,0.483,0.833,0.281,0.64,0.049,0,0.181,0 -1,0.334,0.334,0,0,0,0.25,0.14,0.732,0.128,0,0.315,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.363 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.0453 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.0453 -0.333,0.18,0.18,0.25,0,0,0,0.281,0.647,0.146,0,0,0.0453 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.0907 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.0453 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.0907 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.272 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.149 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.181 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.187 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.272 -1,0.151,0.151,0.433,0,0,0,0.281,0.621,0.0327,0,0,0.227 -0.667,0.183,0.183,0.0833,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.181 -1,0.49,0.49,0,0,0,0,0,0.818,0.242,0,0,0.122 -0.667,0.334,0.334,0,0.8,0,0,0.14,0.732,0.198,0.587,0,0.288 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0.153,0,0.111 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.0907 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.322 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.166 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.0453 -0.333,0.234,0.234,0,0.417,0.483,0.583,0.281,0.679,0.189,0.272,0.108,0 -0.667,0.548,0.548,0.183,0.117,0,0.233,0.14,0.836,0.372,0.659,0.421,0.136 -1,0.979,0.979,0.0667,0,0,0,0,0.993,0.647,0.848,0,0.453 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0.186,0,0.129 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.353 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0614 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.155 -1,0.477,0.477,0.233,0,0,0,0,0.818,0.126,0,0,0.108 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.363 -0.667,0.311,0.311,0.517,0,0,0,0.14,0.732,0.153,0,0,0.0453 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.0453 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.408 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.136 -0.667,0.548,0.548,0,0.533,0.483,0.417,0.14,0.836,0.273,0.415,0.0669,0.179 -0.667,0.669,0.669,0,0,0,1,0.14,0.849,0.366,0,0.359,0.311 -1,0.991,0.991,0,0,0,0.483,0,0.973,0.758,0,0.277,0.0907 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.718,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.0453 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.143 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.174 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.652 -0.333,0.186,0.186,0.25,0,0,0,0.281,0.647,0.0724,0,0,0.536 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.0697 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.263,0,0,0.136 -1,0.602,0.602,0,0.5,0,0,0,0.915,0.327,0.26,0,0.0907 -0.667,0.548,0.548,0.25,1,0,0,0.14,0.836,0.273,0.314,0,0.181 -1,0.979,0.979,0,0.117,0,0,0,0.993,0.541,0,0,0.272 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.0907 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.181 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.377 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,0.0167,0,0,0,0.281,0.608,0.026,0,0,0.112 -1,0.355,0.355,0.233,0,0,0,0,0.74,0.0747,0,0,0.146 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.271 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.365 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.545 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.333 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.156 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.116 -0.333,0.18,0.18,0.0167,0,0,0,0.281,0.647,0.0845,0,0,0.157 -0.667,0.315,0.315,1,0.25,0,0,0.14,0.732,0.162,0.106,0,0 -0.333,0.196,0.196,1,0.283,0,0,0.281,0.66,0.0982,0.674,0,0.0453 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0.685,0,0 -0.667,0.548,0.548,1,0,0,0,0.14,0.836,0.273,0.676,0,0.0907 -0.333,0.359,0.359,0.65,0,0,0,0.281,0.705,0.191,0.686,0,0.181 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0.699,0,0.0907 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0.378,0,0.249 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.136 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.0907 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.181 -0.667,0.313,0.313,0.25,0,0,0,0.14,0.732,0.136,0,0,0.227 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.0453 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.317 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.227 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.136 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0,0.272 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.259 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.15 -1,0.823,0.823,0.0167,0,0,0,0,0.934,0.936,0,0,0.0907 -1,0.621,0.621,0.233,0,0,0,0,0.857,0.887,0,0,0.127 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0907 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.325 -1,0.316,0.316,0.767,0,0,0,0.14,0.719,0.074,0,0,0.327 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.238 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.0453 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.181 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0453 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.0453 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.0907 -0.667,0.315,0.315,0,0,0.483,0.667,0.14,0.732,0.162,0,0.207,0.0453 -0.667,0.343,0.343,0,0,0,0.417,0.14,0.758,0.181,0,0.205,0.181 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.457,0 -0.667,0.548,0.548,0.517,0,0,0,0.14,0.836,0.273,0,0.286,0.0453 -0.667,0.669,0.669,0.25,0,0,0,0.14,0.849,0.366,0,0.356,0.0907 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.0907 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.227 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -0.667,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.227 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.136 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0,0,0.183,0.0833,0.281,0.608,0.0241,0,0,0.128 -1,0.151,0.151,0,0,0.3,0.183,0.281,0.621,0.0327,0,0.667,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0.479,0.181 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0.241,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,0.25,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.181 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.0907 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.189,0,0,0.0453 -0.667,0.548,0.548,0,0.533,0,0,0.14,0.836,0.372,0.502,0,0.0453 -0.333,0.359,0.359,0,0.167,0,0,0.281,0.705,0.228,0.34,0,0 -1,0.991,0.991,0,0.633,0,0,0,0.973,0.851,0.509,0,0.832 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.392 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.0936 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0.333,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.185 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.408 -1,0.334,0.334,0,0.533,0,0,0.14,0.732,0.128,0.645,0,0.084 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0.552,0,0.107 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0.543,0,0.0453 -0.333,0.186,0.186,0.933,0,0.433,0.267,0.281,0.647,0.118,0.658,0,0.272 -0.667,0.313,0.313,1,0,0.05,0,0.14,0.732,0.233,0.164,0.537,0.196 -0.333,0.18,0.18,0.133,0,0,0,0.281,0.647,0.146,0,0.293,0.382 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0.0463,0.0453 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.189,0,0,0.227 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.228,0,0,0.0453 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.0453 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.673,0,0,0.0672 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.181 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.225 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.115 -1,0.449,0.449,0.75,0,0,0,0,0.798,0.103,0,0,0.113 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0,0.373 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.136 -0.667,0.322,0.322,0.517,0,0,0,0.14,0.732,0.129,0,0,0.136 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.227 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.136 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0453 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.0907 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.317 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.193 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.191 -0.667,0.565,0.565,0.0167,0,0,0,0.14,0.81,0.629,0,0,0 -0.667,0.43,0.43,0.5,0,0,0,0.14,0.758,0.596,0,0,0.0453 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0981 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.119 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.133 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0.25,0,0,0,0.281,0.647,0.0604,0,0,0.298 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.168 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.181 -0.667,0.313,0.313,0.267,0,0,0,0.14,0.732,0.136,0,0,0.0907 -0.667,0.311,0.311,0.5,0,0,0,0.14,0.732,0.153,0,0,0.227 -1,0.448,0.448,0,0,0,0,0,0.818,0.235,0,0,0.227 -1,0.49,0.49,0,0,0,0,0,0.857,0.263,0,0,0.0907 -1,0.602,0.602,0.25,0.5,0,0,0,0.915,0.327,0.213,0,0.0907 -1,0.798,0.798,0,0.0333,0,0,0,0.973,0.402,0.382,0,0.181 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.168 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.212 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.0907 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0921 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.261 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0.267,0.167,0.281,0.647,0.0527,0,0,0 -0.667,0.196,0.196,0,0,0.217,0.65,0.281,0.647,0.0604,0,0.402,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0.292,0.0453 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0.353,0.25 -1,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0.27,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0.624,0.136 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.477,0.136 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.411,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0.383,0.136 -0.667,0.548,0.548,0.25,0,0,0,0.14,0.836,0.273,0,0.442,0.0453 -0.333,0.359,0.359,0.517,0,0,0,0.281,0.705,0.191,0,0.0412,0.181 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.181 -0.667,0.565,0.565,0,0,0.267,0.167,0.14,0.81,0.629,0,0,0.317 -1,0.621,0.621,0,0,0.217,0.367,0,0.857,0.887,0,0.288,0.5 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0.615,0.248 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0.315,0.162 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.352 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.254 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0983 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.384 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.578 -0.667,0.334,0.334,0,0,0.717,0.433,0.14,0.732,0.117,0,0.282,0.0453 -0.667,0.322,0.322,0,0,0,0.383,0.14,0.732,0.129,0,0.44,0.227 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0.494,0.363 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.36,0.181 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.498,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.414,0.0907 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.552,0.181 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.32,0.181 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.0907 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.317 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.136 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.126 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.0966 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0.0515,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.183,0.183,0.5,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.0616 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.137 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0644 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0.139 -0.667,0.311,0.311,0.25,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.0453 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.136 -1,0.418,0.418,0.25,0,0,0,0.14,0.797,0.224,0,0,0.136 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.136 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.408 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.411 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0907 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.188 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.227 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.0453 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.0453 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.227 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0.181 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.312,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.136 -1,0.602,0.602,0,0,0,0,0,0.915,0.531,0,0,0.181 -1,0.798,0.798,0.683,0,0,0,0,0.973,0.549,0,0,0.419 -0.667,0.669,0.669,0.35,0,0,0,0.14,0.849,0.437,0,0,0.263 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.573,0,0,0.172 -1,0.823,0.823,0,0.533,0,0,0,0.934,1,0.646,0,0.378 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0.155,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0.191 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0.121 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.169 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.136 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.667,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.272 -0.667,0.186,0.186,0.183,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,0.0667,0,0,0,0.281,0.647,0.125,0,0,0.181 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0,0.272 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0.272 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.372,0,0,0.0907 -0.667,0.669,0.669,0.767,0,0,0,0.14,0.849,0.437,0,0,0.272 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.0453 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.136 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.173 -1,0.183,0.183,0.517,0,0,0,0.281,0.64,0.0449,0,0,0.0134 -0.333,0.192,0.192,0.25,0,0.517,0,0.281,0.647,0.0527,0,0.0483,0 -0.333,0.196,0.196,0,0,0.683,0.267,0.281,0.647,0.0604,0,0.375,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0.351,0.181 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0.589,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0.278,0.184 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.0453 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.181 -0.667,0.343,0.343,0,0,0.267,0.167,0.14,0.758,0.181,0,0,0.317 -0.333,0.234,0.234,0,0,0.217,0.1,0.281,0.679,0.12,0,0.525,0 -0.333,0.299,0.299,0,0,0,0,0.281,0.699,0.145,0,0.317,0.227 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0.461,0.317 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0.466,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0.532,0.0453 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0.144,0.188 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0.36 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0.045 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.0674 -1,0.343,0.343,0.767,0,0,0,0.14,0.732,0.105,0,0,0.147 -1,0.477,0.477,0.233,0,0.233,0.267,0,0.818,0.168,0,0.0444,0 -1,0.458,0.458,0,0,0,0,0,0.818,0.186,0,0.593,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0.269,0.0453 -1,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.64,0.0907 -1,0.448,0.448,0,0,0,0,0,0.818,0.235,0,0.416,0.0453 -1,0.49,0.49,0,0,0.0167,0,0,0.857,0.263,0,0.216,0.265 -1,0.602,0.602,0,0,0.467,0.533,0,0.915,0.327,0,0.126,0.136 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.317 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.317 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.363 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.0907 -0.667,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.0907 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0.136 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0988 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.169 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.0252 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -0.667,0.334,0.334,0,0,0.483,0.267,0.14,0.732,0.117,0,0.113,0.0453 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0.763,0.363 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0.377,0.136 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.808,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.326,0.136 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.308,0 -0.667,0.418,0.418,0.767,0,0,0,0.14,0.797,0.224,0,0.472,0.0453 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.391,0 -0.667,0.669,0.669,0.0167,0,0,0,0.14,0.849,0.366,0,0.228,0.408 -1,0.991,0.991,0.75,0,0,0,0,0.973,0.758,0,0,0.317 -1,0.823,0.823,0,0.533,0,0,0,0.934,0.936,0.692,0,0.0907 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0.084 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.483,0.267,0.421,0.562,0.0159,0,0.133,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0.312,0 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.308 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.332 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.152 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.101 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.0453 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.41 -0.667,0.196,0.196,0.0167,0,0,0,0.281,0.66,0.0982,0,0,0 -0.667,0.418,0.418,0.233,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.0907 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.0453 -0.333,0.363,0.363,0,0,0,0,0.281,0.699,0.263,0,0,0.478 -1,0.823,0.823,0.0167,0,0,0,0,0.934,0.936,0,0,0.372 -1,0.621,0.621,0.233,0,0,0,0,0.857,0.887,0,0,0.136 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.137 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.316,0.316,0,0,0.0167,0,0.14,0.719,0.074,0,0,0.106 -0.667,0.334,0.334,0,0,0.467,0.533,0.14,0.732,0.0895,0,0.152,0.0586 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0.844,0 -0.667,0.334,0.334,0.517,0,0,0,0.14,0.732,0.117,0,0.282,0.0907 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.317 -0.333,0.181,0.181,0.517,0,0,0,0.281,0.647,0.0759,0,0,0.272 -0.667,0.311,0.311,0,0.5,0,0,0.14,0.732,0.153,0.345,0,0.227 -0.667,0.315,0.315,0,0.283,0,0,0.14,0.732,0.162,0.359,0,0 -0.667,0.343,0.343,0.0167,0.55,0,0,0.14,0.758,0.181,0.76,0,0.0453 -0.667,0.418,0.418,0.5,0,0,0,0.14,0.797,0.224,0,0,0.122 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.0453 -0.667,0.669,0.669,0.0167,0,0,0,0.14,0.849,0.366,0,0,0.0453 -0.667,0.677,0.677,0.233,0,0,0,0.14,0.836,0.51,0,0,0.447 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.401 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.248 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.0714 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.449 -1,0.477,0.477,0,0,0.483,0.267,0,0.818,0.183,0,0.00772,0.0453 -1,0.49,0.49,0,0,0,0,0,0.818,0.242,0,0.423,0.227 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0.369,0.0453 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0.622,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0.329,0.227 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0.31,0 -0.667,0.315,0.315,0,0.8,0,0,0.14,0.732,0.312,0.595,0.363,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0.724,0.248,0.0453 -0.667,0.418,0.418,0.183,0,0,0,0.14,0.797,0.36,0.531,0.377,0.0907 -1,0.798,0.798,0.0667,0.167,0,0,0,0.973,0.549,0.15,0.638,0.136 -1,0.979,0.979,0,0.633,0,0,0,0.993,0.647,0.345,0.467,0.171 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0.252,0.0453 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.403 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.306 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0833,0.0833,0.183,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.151,0.151,0.0667,0,0,0,0.281,0.621,0.0327,0,0,0.321 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.0799,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.846 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0.328 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -0.667,0.322,0.322,0.183,0,0,0,0.14,0.732,0.217,0,0,0.0742 -0.667,0.313,0.313,0.583,0,0,0,0.14,0.732,0.233,0,0,0.272 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0.433,0.333,0.281,0.647,0.165,0,0,0.181 -0.667,0.343,0.343,0,0,0.05,0.75,0.14,0.758,0.343,0,0.633,0.272 -0.667,0.418,0.418,0.25,0,0,0,0.14,0.797,0.36,0,0.282,0.0453 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.0907 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.136 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.0506 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.431 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.183,0.183,0.0167,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.334,0.334,0.75,0.533,0.267,0.167,0.14,0.732,0.0895,0.641,0,0 -0.667,0.343,0.343,0,0,0.217,0.917,0.14,0.732,0.105,0.0889,0.364,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0.269,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0.464,0.101 -0.667,0.313,0.313,0.517,0,0,0,0.14,0.732,0.136,0,0.207,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.234,0 -0.667,0.315,0.315,0,0,0.267,0.167,0.14,0.732,0.162,0,0.212,0.0453 -0.667,0.343,0.343,0,0,0.217,0.1,0.14,0.758,0.181,0,0.414,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.453,0.544 -0.667,0.548,0.548,0.0167,0,0,0,0.14,0.836,0.273,0,0.275,0.136 -0.667,0.669,0.669,0.233,0,0,0,0.14,0.849,0.366,0,0,0.0907 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.181 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0453 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.363 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.166 -1,0.151,0.151,0.25,0,0,0,0.281,0.621,0.0355,0,0,0.107 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.244 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.374 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.0729 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.0453 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.17 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.326 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0453 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0,0,0.308 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.196 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.298 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.393 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.393 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.305 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.367 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.101 -1,0.477,0.477,0.517,0,0.0167,0,0,0.818,0.126,0,0,0 -0.667,0.343,0.343,0.25,0,0.7,0.683,0.14,0.732,0.105,0,0.234,0 -0.667,0.334,0.334,0,0,0,0.667,0.14,0.732,0.117,0,0.352,0.227 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0.485,0.272 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0.404,0.136 -1,0.441,0.441,0,0,0,0,0,0.818,0.222,0,0.283,0.0907 -1,0.448,0.448,0,0,0,0,0,0.818,0.235,0,0.298,0.0907 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0.539,0 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0.413,0.0453 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0.455,0.317 -0.667,0.669,0.669,0.0167,0,0,0,0.14,0.849,0.366,0,0.598,0 -1,0.991,0.991,1,0,0,0,0,0.973,0.758,0,0.47,0.0453 -1,0.823,0.823,0.0167,0,0,0,0,0.934,0.936,0,0.112,0.277 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.108 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.313,0.313,0,0.517,0,0,0.14,0.723,0.0735,0.753,0,0.131 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0.155,0,0.146 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0453 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.136 -0.667,0.177,0.177,0,0.2,0,0,0.281,0.649,0.0839,0.127,0,0 -0.667,0.307,0.307,0,0.783,0,0,0.14,0.736,0.161,0.578,0,0.227 -0.667,0.322,0.322,0,0.583,0,0,0.14,0.762,0.179,0.521,0,0 -0.667,0.367,0.367,0.25,0,0,0,0.14,0.802,0.222,0.737,0,0.0453 -0.667,0.466,0.466,0.25,0,0,0,0.14,0.841,0.271,0,0,0.0453 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.16 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.0907 -0.667,0.625,0.625,0,0,0.25,0.783,0.14,0.815,0.625,0,0.178,0.363 -0.667,0.501,0.501,0.5,0,0,0,0.14,0.762,0.592,0,0.185,0.181 -0.667,0.442,0.442,0,0,0.75,0.25,0.14,0.71,0.36,0,0.17,0.453 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0.126,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,1,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0.187 -0.667,0.337,0.337,0.0833,0,0,0,0.14,0.736,0.104,0,0,0.0936 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.0453 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0907 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.363 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.181 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0 -0.333,0.258,0.258,0,0.7,0,0,0.281,0.701,0.144,0.385,0,0.544 -0.333,0.322,0.322,0,0.0833,0,0,0.281,0.708,0.19,0.171,0,0.317 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.0453 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.181 -0.667,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.18 -1,0.249,0.249,0,0,0,0,0,0.725,0.23,0,0,0.148 -1,0.124,0.124,0,0,0,0,0,0.706,0.113,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.162 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0.0875 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0.122 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0.414 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.361 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.136 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0907 -0.333,0.183,0.183,0.15,0,0,0,0.281,0.649,0.117,0,0,0.363 -0.333,0.178,0.178,0.1,0,0,0,0.281,0.649,0.125,0,0,0.0453 -0.667,0.305,0.305,0,0.133,0,0,0.14,0.736,0.272,0.0775,0,0 -0.667,0.307,0.307,0,0.65,0,0,0.14,0.736,0.31,0.762,0,0.363 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.0907 -0.667,0.367,0.367,0,0,0.5,0.25,0.14,0.802,0.358,0,0.197,0.227 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0.351,0.136 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.0453 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.119 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0 -1,0.501,0.501,0.15,0,0,0,0.14,0.762,0.617,0,0,0.293 -1,0.442,0.442,0.35,0,0,0,0.14,0.71,0.392,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.349 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -0.667,0.19,0.19,0.65,0,0,0,0.281,0.649,0.0727,0,0,0.235 -0.667,0.193,0.193,0.117,0,0,0,0.281,0.649,0.0923,0,0,0.38 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0.0453 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0 -1,0.458,0.458,0,0,0,0,0,0.863,0.502,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.272 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.227 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.181 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.0453 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.118 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.136 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0.204 -1,0.313,0.313,0.0333,0,0,0,0.14,0.723,0.0735,0,0,0.155 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.0737 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.0825 -0.667,0.328,0.328,0.25,0,0,0,0.14,0.736,0.116,0,0,0.506 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.165 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.466 -0.333,0.177,0.177,0,0,0.217,0.1,0.281,0.649,0.0839,0,0,0.163 -0.667,0.307,0.307,0,0,0.283,0.417,0.14,0.736,0.161,0,0.4,0.136 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.498,0 -0.333,0.208,0.208,0,0.7,0,0,0.281,0.682,0.119,0.415,0.187,0 -0.333,0.258,0.258,0.467,0.0833,0,0,0.281,0.701,0.144,0.0889,0,0.0453 -0.333,0.322,0.322,0.0333,0,0,0,0.281,0.708,0.19,0,0,0.363 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.261,0,0,0.227 -0.333,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0,0,0.227 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.227 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.3,0,0,0,0.281,0.623,0.0353,0,0,0.108 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.372 -1,0.47,0.47,0,0,0,0,0,0.824,0.125,0,0,0.114 -1,0.481,0.481,0,0,0,0,0,0.824,0.148,0,0,0.327 -1,0.468,0.468,0,0,0,0,0,0.824,0.166,0,0,0.218 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.317 -0.667,0.307,0.307,0.25,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.227 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.0907 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.136 -0.667,0.466,0.466,0,0.2,0,0,0.14,0.841,0.271,0.157,0,0.0453 -0.667,0.595,0.595,0,0.583,0,0,0.14,0.854,0.364,0.638,0,0.408 -0.667,0.67,0.67,0.25,0,0,0,0.14,0.841,0.507,0.728,0,0.0921 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.138 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.181 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.0664 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.129 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.044 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.138 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.182 -1,0.313,0.313,0.467,0,0,0,0.14,0.723,0.0735,0,0,0.0139 -1,0.47,0.47,0.0333,0,0,0,0,0.824,0.125,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.0453 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.0453 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0907 -0.667,0.307,0.307,0,0.45,0,0,0.14,0.736,0.135,0.315,0,0.181 -0.667,0.305,0.305,0,0.333,0.5,0.25,0.14,0.736,0.152,0.599,0.489,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0.282,0.136 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0.368,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.653,0.181 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0.611,0.388 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0.438,0.413 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0.268,0.453 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0.252,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0848 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.316 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.0453 -1,0.099,0.099,0,0,0,0,0.14,0.658,0.0684,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.181,0.181,0,0,0.467,0.25,0.281,0.642,0.0447,0,0,0 -1,0.33,0.33,0,0,0.0333,0,0.14,0.736,0.0889,0,0.38,0 -1,0.481,0.481,0.25,0,0,0,0,0.824,0.148,0,0.462,0.132 -1,0.468,0.468,0,0,0,0,0,0.824,0.166,0,0.615,0.151 -1,0.449,0.449,0,0,0,0,0,0.824,0.184,0,0.367,0.35 -1,0.436,0.436,0.25,0,0,0,0,0.824,0.194,0,0,0.164 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.227 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.0453 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0453 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.227 -0.333,0.322,0.322,0.25,0,0,0,0.281,0.708,0.19,0,0,0.223 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.317 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.136 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0453 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.363 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.0453 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.0907 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0907 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.181 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.317 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.0907 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.136 -0.333,0.258,0.258,0.467,0,0,0,0.281,0.701,0.144,0,0,0.0907 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.317 -1,0.98,0.98,0.833,0,0,0,0,0.98,0.752,0,0,0.0913 -1,0.913,0.913,0,0.517,0.467,0.35,0,0.941,0.929,0.409,0,0.181 -1,0.727,0.727,0,0,0.0333,0.167,0,0.863,0.88,0.389,0.447,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0.525,0.0907 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0.342,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0765 -1,0.0495,0.0495,0.15,0,0,0,0.281,0.61,0.0223,0,0,0 -1,0.0495,0.0495,0.867,0,0,0,0.281,0.61,0.0189,0,0,0.218 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0.12 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0.204 -1,0.351,0.351,0,0,0,0,0,0.745,0.0614,0,0,0.777 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0794,0,0,0.491 -1,0.47,0.47,0,0,0,0,0,0.824,0.182,0,0,0.335 -1,0.481,0.481,0,0,0,0,0,0.824,0.241,0,0,0.497 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0453 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.0453 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.305,0.305,0.25,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.0453 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0453 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.227 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.317 -0.667,0.67,0.67,0,0,0,0,0.14,0.841,0.569,0,0,0.299 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.218 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.227 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0.135,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0276 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0692 -1,0.0495,0.0495,0.15,0,0,0,0.421,0.562,0.0181,0,0,0.166 -1,0.313,0.313,0.617,0,0,0,0.14,0.723,0.0794,0,0,0.109 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.135 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.139 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.231,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.227 -0.667,0.307,0.307,0,0,0.4,0.283,0.14,0.736,0.31,0,0,0 -0.667,0.322,0.322,0,0,0.1,0.767,0.14,0.762,0.34,0,0.156,0.0453 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.181 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.272 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.0453 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.272 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.272 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.25 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0825 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.181,0.181,0.25,0,0,0,0.281,0.642,0.0447,0,0,0.0707 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0.25,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0453 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.0453 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.181 -0.333,0.186,0.186,0.467,0,0,0,0.281,0.662,0.0976,0,0,0.272 -0.667,0.367,0.367,0.3,0.7,0,0,0.14,0.802,0.222,0.382,0,0.216 -1,0.674,0.674,0,0.0833,0,0,0,0.98,0.399,0.406,0,0.0453 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.136 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.136 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.136 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0907 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.385 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0996 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.0599 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.204 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.186 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.0907 -0.333,0.183,0.183,0,0.2,0,0,0.281,0.649,0.072,0.167,0,0.0907 -0.333,0.178,0.178,0,0.583,0,0,0.281,0.649,0.0754,0.718,0,0.0453 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0.115,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.272 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.215 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.126 -0.667,0.466,0.466,0.467,0,0,0,0.14,0.841,0.271,0,0,0.272 -0.667,0.595,0.595,0.0333,0,0,0,0.14,0.854,0.364,0,0,0.272 -0.667,0.67,0.67,0.767,0,0,0,0.14,0.841,0.507,0,0,0.0453 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.0453 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.272 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0453 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.119 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.263 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.107 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.0868 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.263 -0.667,0.328,0.328,0,0,0.467,0.35,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0.0333,0.7,0.14,0.736,0.128,0,0.43,0.136 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0.219,0.272 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0.512,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0.412,0.0907 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.34,0.181 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0.577,0.0453 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0.647,0.0453 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0.412,0.181 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0.296,0.136 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0.668,0.0453 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0.278,0.0453 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0.23,0.105 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0921 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.0674 -0.667,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.149 -0.333,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.0453 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.227 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0453 -0.667,0.307,0.307,0,0,0.25,0.783,0.14,0.736,0.135,0,0.0257,0.0907 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0.541,0.181 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0.331,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.257,0.0907 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.475,0.262 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.498,0.536 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0.586,0.159 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0.248,0.136 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0.557,0.0453 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0.45,0.181 -1,0.442,0.442,0,0.45,0,0,0.14,0.71,0.36,0.256,0.533,0 -1,0.183,0.183,0,0.333,0,0,0.14,0.671,0.159,0.474,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.257 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.116 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.15,0.15,0.25,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.326 -1,0.47,0.47,0,0,0,0,0,0.824,0.125,0,0,0.411 -1,0.481,0.481,0,0,0.217,0.1,0,0.824,0.148,0,0,0.396 -1,0.468,0.468,0,0,0.283,0.417,0,0.824,0.166,0,0.304,0.129 -1,0.449,0.449,0,0,0,0,0,0.824,0.184,0,0.597,0.58 -1,0.436,0.436,0,0,0,0,0,0.824,0.194,0,0.459,0.25 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0.264,0.0453 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0.122,0 -0.667,0.322,0.322,0,0.2,0,0,0.14,0.762,0.179,0.0819,0,0 -0.667,0.367,0.367,0,0.583,0,0,0.14,0.802,0.222,0.786,0,0.0453 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0.744,0,0.0907 -1,0.868,0.868,0,0,0,0,0,1,0.537,0.641,0,0.453 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0.78,0,0.309 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0.631,0,0.0685 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0.202,0,0.227 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.21 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.275 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.16 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.0133 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0.9,0,0,0,0.281,0.649,0.125,0,0,0.181 -0.333,0.177,0.177,0.883,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.136 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.0453 -0.667,0.367,0.367,0,0.383,0,0,0.14,0.802,0.358,0.338,0,0.181 -0.667,0.466,0.466,0.65,0.4,0,0,0.14,0.841,0.369,0.519,0,0.0907 -1,0.868,0.868,1,0,0.15,0.0333,0,1,0.642,0.681,0,0.363 -1,0.98,0.98,0.9,0.133,0.35,1,0,0.98,0.845,0.074,0.274,0 -1,0.913,0.913,0,0.65,0,0.283,0,0.941,0.993,0.583,0.592,0.0453 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0.788,0.448,0.0453 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0.0653,0,0.408 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.265 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.25 -1,0.481,0.481,0,0,0,0,0,0.824,0.241,0,0,0.15 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.344 -0.667,0.316,0.316,0.15,0,0,0,0.14,0.736,0.216,0,0,0.181 -0.667,0.307,0.307,0.1,0,0,0,0.14,0.736,0.231,0,0,0.0453 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.31,0,0,0.181 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.0453 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.0907 -1,0.674,0.674,0.25,0,0,0,0,0.98,0.545,0,0,0.136 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.227 -1,0.98,0.98,0,0.517,0,0,0,0.98,0.845,0.549,0,0.0453 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0.397,0,0.265 -1,0.727,0.727,0,0.783,0,0,0,0.863,0.916,0.657,0,0.272 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.115 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.0122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.135 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.464 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.136 -1,0.468,0.468,0,0,0,0,0,0.824,0.166,0,0,0.409 -1,0.449,0.449,0,0,0,0,0,0.824,0.184,0,0,0 -0.667,0.307,0.307,0.5,0,0,0,0.14,0.736,0.135,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.0453 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.0453 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.287 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.272 -0.667,0.595,0.595,0.25,0,0,0,0.14,0.854,0.364,0,0,0.453 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.0453 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.181 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0747 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.444,0.444,0.767,0.783,0,0,0,0.804,0.102,0.57,0,0 -0.667,0.33,0.33,0.967,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0.05,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.0907 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.181 -0.333,0.178,0.178,0.25,0,0,0,0.281,0.649,0.0754,0,0,0.0907 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.0453 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.0453 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.181 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.136 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0453 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.0453 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.262 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.435 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.123 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0772 -1,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.143 -1,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.089 -1,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.317 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.0907 -0.667,0.466,0.466,0,0.783,0,0,0.14,0.841,0.271,0.765,0,0.317 -0.667,0.595,0.595,0.5,0,0,0,0.14,0.854,0.364,0.73,0,0.499 -0.667,0.67,0.67,0,0.517,0,0,0.14,0.841,0.507,0.622,0,0.0907 -0.667,0.337,0.337,0,0,0,0,0.281,0.688,0.32,0.139,0,0.453 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.0907 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.227 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.218 -1,0.053,0.053,0,0,0,0,0.14,0.658,0.0241,0,0,0.333 -1,0.116,0.116,0,0,0,0,0.14,0.658,0.036,0,0,0.091 -1,0.251,0.251,0,0,0,0,0.14,0.684,0.0548,0,0,0.173 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0.178 -1,0.47,0.47,0,0,0,0,0,0.824,0.125,0,0,0.181 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.0453 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.136 -1,0.449,0.449,0,0,0,0,0,0.824,0.184,0,0,0.188 -1,0.436,0.436,0,0,0,0,0,0.824,0.194,0,0,0.0988 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.0453 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.408 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -0.333,0.258,0.258,0,0,0,0,0.281,0.701,0.144,0,0,0.518 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.0907 -0.667,0.67,0.67,0.467,0,0,0,0.14,0.841,0.507,0,0,0 -0.667,0.625,0.625,1,0,0,0,0.14,0.815,0.625,0,0,0.0453 -1,0.727,0.727,0.583,0,0,0,0,0.863,0.88,0,0,0.365 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.148 -1,0.15,0.15,0.217,0,0,0,0.281,0.623,0.0353,0,0,0.0639 -1,0.181,0.181,0.55,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.227 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.136 -0.333,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.227 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.0453 -0.667,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.0453 -0.667,0.466,0.466,0.467,0,0,0,0.14,0.841,0.271,0,0,0.301 -0.667,0.595,0.595,1,0.45,0,0,0.14,0.854,0.364,0.249,0,0.227 -0.667,0.67,0.67,0.583,0.0667,0,0,0.14,0.841,0.507,0.476,0,0.136 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0.557,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.184 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.0757 -1,0.249,0.249,0,0,0,0,0,0.725,0.23,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.551 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0.368 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0794,0,0,0.125 -1,0.47,0.47,0,0,0,0,0,0.824,0.182,0,0,0.301 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.174 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.649 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.216,0,0,0.0907 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.0453 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.0915 -0.333,0.258,0.258,0.5,0,0,0,0.281,0.701,0.194,0,0,0.108 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.225 -1,0.98,0.98,0,0,0.5,0.25,0,0.98,0.845,0,0.1,0.0453 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0.341,0.472 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0.251,0.11 -0.667,0.246,0.246,0,0,0,0,0.281,0.636,0.205,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.15,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0.1,0,0,0,0.281,0.642,0.0488,0,0,0.0596 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.155 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.389 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.0918 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.836 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.272 -0.333,0.177,0.177,0,0.633,0,0,0.281,0.649,0.145,0.463,0,0.0907 -0.333,0.178,0.178,0,0.15,0,0,0.281,0.649,0.164,0.223,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.301 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.556 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.457 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.0586 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0.467,0,0,0,0.281,0.623,0.0353,0,0,0.0694 -0.667,0.313,0.313,0.55,0,0,0,0.14,0.723,0.0735,0,0,0.0755 -0.667,0.33,0.33,0.717,0,0,0,0.14,0.736,0.0889,0,0,0.312 -1,0.481,0.481,1,0,0,0,0,0.824,0.148,0,0,0.28 -1,0.468,0.468,0.0667,0,0,0,0,0.824,0.166,0,0,0.0907 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.0453 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.363 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.272 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.667,0.322,0.322,0.767,0,0,0,0.14,0.762,0.179,0,0,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.136 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.0453 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.272 -1,0.98,0.98,0,0.517,0,0,0,0.98,0.752,0.418,0,0.136 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0.216,0,0.0907 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0.106 -1,0.481,0.481,0,0,0,0,0,0.824,0.148,0,0,0.255 -1,0.468,0.468,0,0,0,0,0,0.824,0.166,0,0,0.303 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.587 -1,0.436,0.436,0,0,0,0,0,0.824,0.194,0,0,0.146 -1,0.432,0.432,0,0,0,0,0,0.824,0.22,0,0,0.0453 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.363 -0.333,0.322,0.322,0,0,0,0,0.281,0.708,0.19,0,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.0907 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.0453 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.144 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -1,0.33,0.33,0.25,0,0,0,0.14,0.736,0.0889,0,0,0.0986 -0.667,0.193,0.193,0,0,0.217,0,0.281,0.649,0.0601,0,0,0.174 -0.667,0.328,0.328,0.217,0,0.533,0.85,0.14,0.736,0.116,0,0.4,0.406 -0.667,0.316,0.316,0.0333,0,0,0.2,0.14,0.736,0.128,0,0.508,0.0907 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0.274,0 -1,0.432,0.432,0,0,0,0,0,0.824,0.22,0,0.255,0.272 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0.43,0.0453 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0.615,0 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0.404,0.136 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0.367,0.227 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0.598,0.136 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0.282,0.408 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0.375,0.0907 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0.0746,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.113 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.123 -1,0.147,0.147,0.233,0,0,0,0.281,0.571,0.0316,0,0,0.133 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.171 -1,0.318,0.318,0.483,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0.0453 -0.667,0.3,0.3,0,0,0.233,0.25,0.14,0.621,0.11,0,0,0.136 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.467,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.402,0.136 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0.414,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0.45,0.0453 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.505,0.181 -0.333,0.222,0.222,0.267,0,0,0,0.281,0.633,0.124,0,0.187,0.0907 -0.667,0.507,0.507,0.45,0,0,0,0.14,0.714,0.31,0,0.477,0.0453 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0.317,0.227 -1,0.928,0.928,0.233,0.5,0,0,0,0.744,0.791,0.287,0.104,0.272 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.167,0,0.216 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.135 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0948 -1,0.147,0.147,0.517,0,0,0,0.281,0.571,0.0316,0,0,0.109 -1,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0.166 -0.667,0.184,0.184,0.433,0,0.0167,0,0.281,0.591,0.0462,0,0,0.0812 -0.667,0.185,0.185,0,0,0.717,0.667,0.281,0.591,0.0527,0,0.327,0.273 -0.667,0.312,0.312,0,0,0,1,0.14,0.621,0.0997,0,0.263,0.227 -1,0.3,0.3,0.0167,0,0,0.15,0.14,0.621,0.11,0,0.436,0.136 -1,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0.303,0.136 -0.333,0.169,0.169,1,0,0,0,0.281,0.591,0.073,0,0.449,0.0453 -0.667,0.29,0.29,1,0,0,0,0.14,0.621,0.137,0,0.367,0 -0.667,0.298,0.298,1,0,0,0,0.14,0.642,0.153,0,0.495,0.0453 -1,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0.508,0 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0.479,0.0453 -0.667,0.507,0.507,0.567,0,0,0,0.14,0.714,0.31,0,0.302,0.0907 -0.667,0.613,0.613,0.0167,0,0,0,0.14,0.704,0.432,0,0.422,0 -1,0.928,0.928,0.467,0,0,0,0,0.744,0.791,0,0.272,0.0453 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.525,0.272 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0.352,0.0453 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0.177,0.079 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.0699,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0.233,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.181 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.41 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.444 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.136 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.0453 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.0907 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.227 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.363 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.181 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.136 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.0878 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0807 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.275 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.132 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.202 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.114 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.0907 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.363 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.453 -0.333,0.171,0.171,0.1,0,0,0,0.281,0.591,0.108,0,0,0.0453 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.233,0,0,0 -0.667,0.29,0.29,0.35,0,0,0,0.14,0.621,0.265,0,0,0 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.136 -1,0.395,0.395,0.233,0,0,0,0.14,0.704,0.315,0,0,0.363 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.391 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.174 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.181 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.282 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0.152 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0578 -1,0.147,0.147,0.233,0,0,0,0.281,0.571,0.0316,0,0,0.192 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.466 -1,0.318,0.318,0.233,0,0,0,0.14,0.621,0.0764,0,0,0.0936 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0.13 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0.294 -0.667,0.3,0.3,0.483,0,0,0,0.14,0.621,0.11,0,0,0.317 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.227 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.338 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.317 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.181 -1,0.464,0.464,0,0,0,0,0,0.728,0.277,0,0,0 -0.667,0.395,0.395,0,0.5,0,0,0.14,0.704,0.232,0.294,0,0.0907 -1,0.736,0.736,0,0.267,0,0,0,0.79,0.457,0.197,0,0.0453 -1,0.895,0.895,0.267,0.5,0,0,0,0.774,0.64,0.629,0,0.203 -1,0.928,0.928,0.217,0,0,0,0,0.744,0.791,0.57,0,0.257 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0.634,0,0.204 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0.422,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.147,0.147,0.717,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.329 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.363 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.0907 -0.667,0.292,0.292,0.233,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.136 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.227 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.0453 -1,0.736,0.736,0.0167,0,0,0,0,0.79,0.457,0,0,0.181 -1,0.895,0.895,0.467,0,0,0,0,0.774,0.64,0,0,0.408 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.363 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0453 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0936 -1,0.433,0.433,0,0.5,0,0,0,0.635,0.0871,0.38,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0.258,0,0.241 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0.0295 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0907 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.46 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.227 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.225 -0.667,0.29,0.29,0.233,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.227 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.317 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.136 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.24 -0.667,0.613,0.613,0,0.767,0.233,0.917,0.14,0.704,0.432,0.544,0.108,0.182 -0.667,0.635,0.635,0,0,0,0.383,0.14,0.683,0.532,0.136,0.475,0.0907 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0.422,0.0453 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0.32,0 -1,0.116,0.116,0,0.5,0,0,0.281,0.565,0.0759,0.643,0.16,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0.667,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.167,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.254 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.11 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.113 -1,0.452,0.452,0.767,0,0,0,0,0.651,0.107,0,0,0.324 -0.667,0.321,0.321,1,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.0997,0,0,0.0453 -0.667,0.3,0.3,1,0,0,0,0.14,0.621,0.11,0,0,0.0453 -0.667,0.292,0.292,0.617,0,0,0,0.14,0.621,0.116,0,0,0.408 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0453 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.188,0.188,0.233,0,0,0,0.281,0.617,0.103,0,0,0.0907 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.272 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.0907 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.224,0,0,0.453 -0.667,0.635,0.635,0.233,0,0,0,0.14,0.683,0.532,0,0,0.272 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.149 -0.667,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.142 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.21 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.0843 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.272 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.181 -0.667,0.3,0.3,0.267,0,0,0,0.14,0.621,0.11,0,0,0.146 -0.667,0.292,0.292,0.45,0,0,0,0.14,0.621,0.116,0,0,0.146 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.136 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.0453 -0,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.333,0.278,0.278,1,0,0,0,0.281,0.638,0.163,0,0,0.621 -0.667,0.613,0.613,0.2,0,0,0,0.14,0.704,0.432,0,0,0.227 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.0453 -0.667,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0.134 -1,0.305,0.305,0.617,0,0,0,0.14,0.611,0.0685,0,0,0.086 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0723 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.115 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.0907 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0907 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.0453 -0.667,0.395,0.395,0.1,0,0,0,0.14,0.704,0.315,0,0,0.136 -0.667,0.507,0.507,0.617,0,0,0,0.14,0.714,0.371,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.028 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.22 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.315 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.111 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.0875 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.0953 -1,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0.134 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0.323 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.389 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.104 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.136 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.0453 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.181 -1,0.567,0.567,0.233,0,0,0,0,0.774,0.464,0,0,0.409 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0 -1,0.895,0.895,0.233,0,0,0,0,0.774,0.719,0,0,0.371 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.0907 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0,0,0.317 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0797 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.114 -0.667,0.184,0.184,0.0167,0,0,0,0.281,0.591,0.0462,0,0,0.0933 -1,0.321,0.321,0.467,0,0,0,0.14,0.621,0.0895,0,0,0.204 -1,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.18 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.363 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0453 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.272 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.0907 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.272 -1,0.464,0.464,0.233,0,0,0,0,0.728,0.277,0,0,0.181 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.181 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.0907 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0453 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.281,0.602,0.26,0,0,0.363 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0734 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0958 -1,0.305,0.305,0,0.5,0,0,0.14,0.611,0.0634,0.237,0,0 -0.667,0.184,0.184,0,0,0.0167,0,0.281,0.591,0.0462,0.571,0,0 -0.667,0.321,0.321,0,0,0.467,0.25,0.14,0.621,0.0895,0.359,0.167,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0.482,0.0907 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0.512,0.161 -0.667,0.292,0.292,0.717,0,0,0,0.14,0.621,0.116,0,0.541,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.4,0.0453 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0.426,0.136 -0.667,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.181 -0.667,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.181 -0.667,0.222,0.222,0.233,0,0,0,0.281,0.633,0.124,0,0,0.181 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.224,0,0,0.181 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.227 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0907 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.134 -0.667,0.177,0.177,0.267,0,0,0,0.281,0.586,0.0396,0,0,0.084 -1,0.452,0.452,0.7,0,0,0,0,0.651,0.107,0,0,0.0873 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.0943 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.528 -0.667,0.292,0.292,0.483,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.0453 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.211 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.287 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.0453 -0,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.272 -0.667,0.613,0.613,0.467,0,0,0,0.14,0.704,0.432,0,0,0.443 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.371 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.154 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.102 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.311 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.487 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.317 -0.667,0.321,0.321,0.233,0,0.0167,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0.467,0.25,0.14,0.621,0.0997,0,0.425,0.0907 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.399,0.0453 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.145,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.272 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0453 -0.667,0.395,0.395,0.233,0,0,0,0.14,0.704,0.232,0,0,0.0907 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.227 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.0453 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.181 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.0907 -1,0.35,0.35,0,0.767,0.483,0.667,0.14,0.6,0.307,0.552,0.22,0.136 -1,0.183,0.183,0,0,0,0.1,0.14,0.569,0.136,0,0.579,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.104 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0983 -1,0.245,0.245,0.767,0,0,0,0.14,0.58,0.0474,0,0,0.117 -1,0.305,0.305,0.933,0,0,0,0.14,0.611,0.0634,0,0,0.353 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.0142 -0.333,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0907 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.136 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.227 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0453 -0.333,0.188,0.188,0.233,0,0,0,0.281,0.617,0.103,0,0,0.227 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.181 -0.667,0.507,0.507,0,0.5,0,0,0.14,0.714,0.31,0.585,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.425,0,0.0907 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.181 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0907 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.495 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.0468 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0.191 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0181,0,0,0.181 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.227 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.317 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.272 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.136 -1,0.895,0.895,0,0,0.483,0.75,0,0.774,0.719,0,0.156,0.181 -1,0.928,0.928,0,0,0.1,0.0167,0,0.744,0.845,0,0.615,0 -1,0.302,0.302,0,0,0.383,0.767,0.281,0.602,0.272,0,0.342,0.227 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0.297,0.071 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.0385 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.136 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.557 -1,0.409,0.409,0.483,0,0,0,0,0.651,0.34,0,0,0.0453 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.0907 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0.227 -0.667,0.326,0.326,0.6,0,0,0,0.14,0.673,0.305,0,0,0.227 -0.667,0.395,0.395,0.117,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.227 -1,0.895,0.895,0,0.0833,0,0,0,0.774,0.719,0,0,0.0453 -1,0.928,0.928,0,0.417,0,0,0,0.744,0.845,0.436,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.136 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -1,0.147,0.147,0.233,0,0,0,0.281,0.571,0.0316,0,0,0.265 -1,0.433,0.433,0,0,0,0,0,0.635,0.0871,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.0453 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0907 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.227 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.181 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.136 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.181 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.181 -0.667,0.395,0.395,0.0167,0,0,0,0.14,0.704,0.232,0,0,0.181 -1,0.736,0.736,0.467,0,0,0,0,0.79,0.457,0,0,0.408 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0907 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.164 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.115 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.0943 -1,0.249,0.249,0,0,0,0,0,0.573,0.196,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0.5,0,0,0.281,0.56,0.0236,0.667,0,0 -1,0.147,0.147,0,0,0.483,0.417,0.281,0.571,0.0316,0.129,0.0631,0 -1,0.305,0.305,0,0,0,0.883,0.14,0.611,0.0634,0,0.605,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0.36,0.181 -0.667,0.185,0.185,0,0,0.483,0.25,0.281,0.591,0.0527,0,0.273,0.166 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0.448,0.136 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0.333,0.468 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0.363,0.129 -1,0.409,0.409,0,0.5,0,0,0,0.651,0.187,0.211,0.713,0.181 -0.667,0.29,0.29,0.483,0,0,0,0.14,0.621,0.137,0.368,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0453 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0453 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.0907 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.269 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.179 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.223 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.198 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0.767,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,0.2,0,0,0,0.281,0.586,0.0396,0,0,0.077 -1,0.452,0.452,0,0.5,0,0,0,0.651,0.107,0.618,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.136 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.181 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0907 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0453 -1,0.41,0.41,0,0,0,0,0,0.651,0.198,0,0,0.227 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0453 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0453 -0.333,0.222,0.222,0.767,0,0,0,0.281,0.633,0.124,0,0,0.181 -0.333,0.278,0.278,0.2,0,0,0,0.281,0.638,0.163,0,0,0.577 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.181 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.136 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.169 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.182 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.111 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.207 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.251 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.248 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0.179 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.229 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.317 -0.667,0.326,0.326,0,0.5,0,0,0.14,0.673,0.19,0.533,0,0.0453 -0.667,0.395,0.395,0.233,0,0,0,0.14,0.704,0.232,0.103,0,0.136 -0.333,0.278,0.278,0,0,0,0,0.281,0.638,0.163,0,0,0.0453 -0.333,0.331,0.331,0,0.767,0,0,0.281,0.633,0.224,0.563,0,0.272 -0.333,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.178 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.136 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.119 -1,0.114,0.114,0,0,0,0,0.14,0.559,0.0314,0,0,0.0845 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.14 -1,0.305,0.305,0.717,0,0.233,0.667,0.14,0.611,0.0634,0,0.0566,0.129 -1,0.318,0.318,0,0,0,1,0.14,0.621,0.0764,0,0.324,0.302 -1,0.456,0.456,0,0,0,0.15,0,0.651,0.126,0,0,0.194 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0.902 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0.181 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.272 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.136 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.0453 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.0453 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.181 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.136 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.136 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0453 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0907 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.0907 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.438 -1,0.147,0.147,0.1,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.177,0.177,0.383,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.687 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.3,0.3,0.1,0,0,0,0.14,0.621,0.185,0,0,0.0453 -0.333,0.171,0.171,0.867,0,0,0,0.281,0.591,0.108,0,0,0.363 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.0453 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0453 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.0453 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.0453 -0.667,0.395,0.395,0.6,0,0,0,0.14,0.704,0.315,0,0,0.227 -1,0.736,0.736,0.117,0,0,0,0,0.79,0.547,0,0,0.0453 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.344 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.0453 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.0907 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0.1,0,0,0,0.281,0.571,0.0295,0,0,0.329 -1,0.305,0.305,0.617,0,0,0,0.14,0.611,0.0685,0,0,0 -0.667,0.318,0.318,0.1,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.321,0.321,0.133,0.5,0,0,0.14,0.621,0.143,0.617,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0.657,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0.138,0,0.0453 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.0453 -0.333,0.169,0.169,0.1,0,0,0,0.281,0.591,0.125,0,0,0.181 -0.333,0.17,0.17,0.133,0,0,0,0.281,0.591,0.141,0,0,0.0453 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.136 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.136 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.453 -0.667,0.507,0.507,0,0,0.85,0,0.14,0.714,0.371,0,0.329,0.0453 -1,0.895,0.895,0,0,0.383,0.25,0,0.774,0.719,0,0.49,0.181 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0.263,0.0738 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.188 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.0561 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.246 -1,0.318,0.318,0,0,0.267,0.167,0.14,0.621,0.0764,0,0,0.126 -1,0.456,0.456,0,0,0.217,0.35,0,0.651,0.126,0,0.243,0.138 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0.242 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0.169 -1,0.413,0.413,0.0167,0,0,0,0,0.651,0.166,0,0,0.169 -1,0.409,0.409,0.217,0,0,0,0,0.651,0.187,0,0,0.0907 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.181 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.0907 -0.667,0.395,0.395,0.517,0,0,0,0.14,0.704,0.232,0,0,0.136 -1,0.736,0.736,0.2,0,0,0,0,0.79,0.457,0,0,0.0453 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.136 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.136 -1,0.807,0.807,0,0.767,0,0,0,0.682,0.749,0.834,0,0.485 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0.852,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.086 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.132 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.0907 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.0907 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.0907 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.272 -0.333,0.222,0.222,0.233,0,0,0,0.281,0.633,0.124,0,0,0.146 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.136 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.453 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.0907 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0755 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.213 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0.22 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.184 -0.333,0.175,0.175,0,0.767,0,0,0.281,0.591,0.0629,0.603,0,0.227 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0.47,0,0.227 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0.72,0,0 -1,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0.814,0,0.0453 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0.183,0,0.181 -0.333,0.188,0.188,0.717,0,0,0,0.281,0.617,0.103,0,0,0.136 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.0453 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.0453 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.0453 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.161 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.307 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0453 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.332 -1,0.318,0.318,0.433,0,0,0,0.14,0.621,0.0764,0,0,0.106 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.137 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.136 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.499 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.0453 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.317 -0.667,0.326,0.326,0,0,0.267,0.167,0.14,0.673,0.19,0,0,0 -0.333,0.222,0.222,0,0.5,0.217,0.6,0.281,0.633,0.124,0.237,0.296,0 -0.333,0.278,0.278,0,0.267,0,0,0.281,0.638,0.163,0.552,0,0.326 -0.333,0.331,0.331,0,0,0,0,0.281,0.633,0.224,0.213,0,0.725 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.487 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0453 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.213 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.494 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.467 -1,0.321,0.321,0,0,0.0167,0,0.14,0.621,0.0895,0,0,0.748 -1,0.443,0.443,0,0,0.467,0.517,0,0.651,0.142,0,0.158,0.181 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0.384,0.136 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0.468,0.0907 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.456,0.0453 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0.1,0.0907 -0.333,0.174,0.174,0.233,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.395,0.395,0.267,0,0,0,0.14,0.704,0.232,0,0,0 -0.333,0.278,0.278,0.95,0,0,0,0.281,0.638,0.163,0,0,0.136 -0.333,0.331,0.331,0.233,0,0,0,0.281,0.633,0.224,0,0,0.227 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.0907 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.136 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.0907 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.136 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.235 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.208 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.0453 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.0907 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.0907 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.0453 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0453 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.0453 -0.333,0.188,0.188,0,0,0.483,0.25,0.281,0.617,0.162,0,0.256,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0.452,0.0907 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0.905,0.0453 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0.175,0 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.0907 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.256 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0.0956 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.133 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.069,0,0,0.121 -1,0.427,0.427,0,0,0,0,0,0.648,0.156,0,0,0.288 -1,0.424,0.424,0,0,0,0,0,0.648,0.206,0,0,0.582 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.494 -0.667,0.279,0.279,0.233,0,0,0,0.14,0.619,0.186,0,0,0.181 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.0453 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0.136 -1,0.484,0.484,0.233,0.483,0,0,0,0.787,0.551,0.472,0,0.136 -1,0.619,0.619,0,0,0.767,0.433,0,0.771,0.725,0.373,0.219,0.181 -1,0.783,0.783,0,0,0,0.05,0,0.741,0.852,0,0.656,0.0453 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.176 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.237 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.142 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0541 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0907 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.134 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.253 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.453 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.181 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.181 -0.667,0.291,0.291,0.0167,0,0,0,0.14,0.701,0.234,0,0,0 -1,0.484,0.484,0.45,0,0,0,0,0.787,0.461,0,0,0.246 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.118 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0907 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.227 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.289 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.14,0.557,0.0155,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.0495,0.0495,0,0,0.0167,0,0.421,0.562,0.0159,0,0,0.156 -0.667,0.301,0.301,0,0,0.5,0.483,0.14,0.619,0.077,0,0.144,0.154 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0.341,0.18 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.302 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.333,0.159,0.159,0.267,0,0,0,0.281,0.59,0.0735,0,0,0.0907 -1,0.268,0.268,0.2,0,0,0,0.14,0.619,0.139,0,0,0.136 -0.667,0.269,0.269,0,0,0.267,0.133,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0.25,0.85,0.14,0.671,0.191,0,0.351,0.0907 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0.433,0.136 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0.319,0.0453 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0.347,0.227 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0.495,0.0654 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0.466,0.499 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0.316,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0.322,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0.518,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0.369,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.179,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -1,0.301,0.301,0,0,0.767,0.383,0.14,0.619,0.077,0,0.138,0.269 -1,0.424,0.424,0,0,0,1,0,0.648,0.127,0,0.477,0.0297 -0.333,0.17,0.17,0,0,0,1,0.281,0.59,0.0582,0,0.596,0 -0.333,0.164,0.164,0,0,0,1,0.281,0.59,0.0633,0,0.233,0 -0.333,0.16,0.16,0,0,0,1,0.281,0.59,0.0662,0,0.329,0 -0.333,0.159,0.159,0,0,0,0.0833,0.281,0.59,0.0735,0,0.753,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0.264,0.0453 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0.378,0 -0.667,0.274,0.274,0,0.483,0,0,0.14,0.671,0.191,0.645,0.456,0.136 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0.611,0.0453 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0.449,0.317 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0453 -1,0.783,0.783,0,0.733,0,0,0,0.741,0.797,0.631,0,0.227 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0.577,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0.131,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.366 -0.667,0.175,0.175,0.233,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.0453 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.453 -0.333,0.16,0.16,0.233,0,0,0,0.281,0.59,0.0662,0,0,0.136 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.268,0.268,0.233,0.733,0,0,0.14,0.619,0.139,0.76,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0.145,0,0.227 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0907 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.288 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.408 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0,0.317 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.202 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.303 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.1 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.261 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.32 -1,0.066,0.066,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0558 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -1,0.301,0.301,0.267,0,0,0,0.14,0.619,0.077,0,0,0 -1,0.299,0.299,0.2,0,0,0,0.14,0.619,0.0902,0,0,0 -1,0.291,0.291,0,0.483,0,0,0.14,0.619,0.1,0.254,0,0 -1,0.279,0.279,0.0167,0,0.517,0.633,0.14,0.619,0.111,0.505,0.284,0.182 -1,0.382,0.382,0.217,0,0,0.35,0,0.648,0.167,0,0.591,0.174 -1,0.378,0.378,0,0,0,0,0,0.648,0.189,0,0.667,0.168 -1,0.378,0.378,0,0,0,0,0,0.648,0.2,0,0,0.0453 -0.667,0.269,0.269,0,0,0.517,0.383,0.14,0.64,0.155,0,0.0708,0.181 -0.667,0.162,0.162,0,0,0,1,0.281,0.616,0.104,0,0.34,0 -0.667,0.291,0.291,0,0,0,1,0.14,0.701,0.234,0,0.208,0.227 -0.667,0.339,0.339,0,0,0,0.35,0.14,0.712,0.313,0,0,0.507 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.5 -0.667,0.538,0.538,0,0.483,0,0,0.14,0.681,0.537,0.692,0,0.0453 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0.129,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.172,0.172,0.7,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0.143 -0.667,0.279,0.279,0.3,0,0,0,0.14,0.619,0.186,0,0,0.166 -0.667,0.271,0.271,0.4,0,0,0,0.14,0.619,0.199,0,0,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.0453 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.136 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.499 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.499 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.105 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.235 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.309 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.0951 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0209,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.114 -1,0.0518,0.0518,0,0,0,0,0.14,0.557,0.0222,0,0,0.287 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0265,0,0,0.117 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.08 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.14 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.0907 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.272 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.272 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.136 -1,0.88,0.88,0,0.05,0,0,0,0.679,0.786,0,0,1 -1,0.415,0.415,0,0.683,0,0,0.14,0.599,0.337,0.767,0,0.402 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0.11,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.12 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0634 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0 -1,0.295,0.295,0,0.483,0,0,0.14,0.609,0.0639,0.298,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0.519,0,0.199 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.0453 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.667,0.269,0.269,0.767,0,0,0,0.14,0.619,0.131,0,0,0.181 -1,0.378,0.378,1,0,0,0,0,0.648,0.2,0,0,0.544 -1,0.379,0.379,1,0,0,0,0,0.679,0.224,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.191,0,0,0.0907 -0.667,0.291,0.291,0.483,0,0,0,0.14,0.701,0.234,0,0,0.0907 -0.667,0.339,0.339,0.0167,0,0,0,0.14,0.712,0.313,0,0,0.272 -1,0.619,0.619,0.217,0,0,0,0,0.771,0.646,0,0,0.181 -1,0.783,0.783,0,0.5,0,0,0,0.741,0.797,0.235,0,0 -1,0.88,0.88,0,0.233,0,0,0,0.679,0.756,0.348,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.131 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.091 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.115 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0868 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.121 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.0961 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.0907 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.272 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.227 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0453 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.136 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0453 -1,0.88,0.88,0.233,0,0,0,0,0.679,0.756,0,0,0.227 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.227 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.227 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.0907 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.255 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0.41 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.136 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.227 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.269,0.269,0.467,0,0,0,0.14,0.64,0.155,0,0,0.0453 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.136 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.136 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.406 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.181 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.317 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.181 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.309 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0432 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.333,0.17,0.17,0.233,0,0,0,0.281,0.59,0.0582,0,0,0.363 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.181 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.269,0.269,0.767,0,0,0,0.14,0.64,0.155,0,0,0.227 -0.667,0.274,0.274,1,0,0,0,0.14,0.671,0.191,0,0,0.0907 -1,0.412,0.412,0.117,0,0,0,0,0.771,0.343,0,0,0.0453 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0907 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.0453 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.188 -1,0.88,0.88,0.7,0,0,0,0,0.679,0.756,0,0,0.147 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.229 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.0865 -0.667,0.172,0.172,0.233,0,0,0,0.281,0.585,0.0399,0,0,0.104 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.204 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0 -0.667,0.271,0.271,0.767,0,0,0,0.14,0.619,0.117,0,0,0 -0.333,0.159,0.159,0.4,0,0,0,0.281,0.59,0.0735,0,0,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0453 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0907 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.0453 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.499 -1,0.484,0.484,0.267,0,0,0,0,0.787,0.461,0,0,0.0907 -1,0.619,0.619,0.2,0,0,0,0,0.771,0.646,0,0,0.0453 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.227 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.0453 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.159 -1,0.249,0.249,0,0,0,0,0,0.571,0.198,0,0,0.0453 -1,0.099,0.099,0,0.55,0,0,0.14,0.557,0.0705,0.382,0,0 -1,0.0578,0.0578,0,0.183,0,0,0.281,0.56,0.0282,0.606,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0209,0.821,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.0871,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.174,0.174,0,0,0.517,0.433,0.281,0.59,0.0809,0,0.134,0 -0.667,0.0495,0.0495,0,0,0,0.55,0.421,0.562,0.0181,0,0.427,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.135 -0.667,0.271,0.271,0,0,0.25,0.95,0.14,0.619,0.199,0,0.0862,0.181 -0.667,0.269,0.269,0,0,0,0.0333,0.14,0.619,0.234,0,0.525,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.166 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.227 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.363 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.181 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.317 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.346 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.192 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.222 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.408 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0621 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.308 -1,0.427,0.427,0,0.05,0,0,0,0.648,0.156,0,0,0.201 -1,0.424,0.424,0,0.433,0,0,0,0.648,0.206,0.681,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.17,0.744,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0.814,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0.658,0,0.181 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0.276,0,0.181 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0.0772 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.385 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.409 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.119 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.391 -0.667,0.429,0.429,0.317,0,0,0,0.14,0.701,0.489,0,0,0.136 -1,0.783,0.783,0.85,0,0,0,0,0.741,0.852,0,0,0.136 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.544 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.299,0.299,0,0,0.517,0.383,0.14,0.619,0.0902,0,0.0515,0 -0.667,0.291,0.291,0,0,0,0.35,0.14,0.619,0.1,0,0.378,0.0907 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.313 -0.333,0.16,0.16,0,0.5,0,0,0.281,0.59,0.0662,0.298,0,0.108 -0.667,0.269,0.269,0,0.233,0,0,0.14,0.619,0.131,0.571,0,0.415 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.423 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.0415 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.134 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.308 -0.667,0.339,0.339,0,0.5,0,0,0.14,0.712,0.313,0.249,0,0.272 -0.667,0.429,0.429,0,0.233,0,0,0.14,0.701,0.436,0.23,0,0.136 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.181 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.272 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.139 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0 -0.667,0.291,0.291,0,0.733,0.517,0.233,0.14,0.619,0.1,0.427,0.142,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0.613,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0.297,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0.468,0.0453 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0.471,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0.412,0.0453 -0.667,0.274,0.274,0.0167,0,0,0,0.14,0.671,0.191,0,0.468,0.408 -0.667,0.291,0.291,0.45,0,0,0,0.14,0.701,0.234,0,0.181,0 -0.333,0.194,0.194,0.233,0,0,0,0.281,0.637,0.164,0,0,0.181 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.0907 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.136 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.181 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0943 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.344 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.138 -0.667,0.174,0.174,0.767,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.291,0.291,0.883,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.303 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.455 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.227 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.987 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.208 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.453 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0907 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.272 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.227 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.149 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.265 -1,0.427,0.427,0.517,0,0,0,0,0.648,0.108,0,0,0.167 -1,0.424,0.424,0.183,0,0,0,0,0.648,0.127,0,0,0.169 -1,0.411,0.411,0,0,0,0,0,0.648,0.143,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.227 -0.667,0.271,0.271,0,0.25,0,0,0.14,0.619,0.117,0.164,0,0.136 -0.667,0.269,0.269,0,0.483,0,0,0.14,0.619,0.131,0.49,0,0.181 -0.667,0.268,0.268,0.233,0,0.517,0.633,0.14,0.619,0.139,0,0.0978,0.0453 -0.667,0.269,0.269,0,0,0,0.6,0.14,0.64,0.155,0,0.409,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0.407,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0907 -0.667,0.429,0.429,0,0.25,0,0,0.14,0.701,0.436,0.188,0,0.121 -1,0.783,0.783,0,0.483,0,0,0,0.741,0.797,0,0,0.677 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.272 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0.233,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0,0.25,0,0,0.14,0.619,0.111,0.15,0,0 -0.667,0.271,0.271,0,0.233,0,0,0.14,0.619,0.117,0.653,0,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0.589,0,0.0907 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.136 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.0907 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0453 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.227 -0.667,0.194,0.194,0,0,0,0,0.281,0.637,0.164,0,0,0.293 -1,0.619,0.619,0,0.483,0,0,0,0.771,0.646,0.498,0,0.0907 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0.551,0,0.136 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.136 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.398 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.15 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.118 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0201,0,0,0.293 -1,0.11,0.11,0,0,0,0,0.14,0.557,0.0265,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.13 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.423 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.363 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.136 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -0.667,0.339,0.339,0,0.483,0,0,0.14,0.712,0.374,0.383,0,0.0907 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.132,0,0.136 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.181 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.363 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.118 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -1,0.424,0.424,0.317,0,0,0,0,0.648,0.206,0,0,0 -0.333,0.17,0.17,0.15,0,0,0,0.281,0.59,0.0941,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.181 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.181 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.181 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0949 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.272 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.168,0,0,0 -1,0.484,0.484,0.7,0,0,0,0,0.787,0.551,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.499 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.136 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.0907 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0694 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.0536 -1,0.427,0.427,0,0,0,0,0,0.648,0.108,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.0704 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.136 -0.667,0.279,0.279,0,0,0.517,0.633,0.14,0.619,0.111,0,0.233,0.181 -0.333,0.16,0.16,0,0,0,0.6,0.281,0.59,0.0662,0,0,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.0907 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.181 -0.667,0.274,0.274,0,0.25,0,0,0.14,0.671,0.191,0.145,0,0.136 -0.667,0.291,0.291,0,0.483,0,0,0.14,0.701,0.234,0.524,0,0.0453 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0.699,0,0.181 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0.653,0,0.136 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0.657,0,0.103 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.272 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.475 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.238 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0 -1,0.066,0.066,0,0,0,0,0.14,0.557,0.0316,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0941 -0.667,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.292 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.21 -1,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.233 -1,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -1,0.394,0.394,0,0,0,0,0,0.648,0.158,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.0907 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.0907 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.0694 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.207 -0.667,0.274,0.274,0.233,0,0,0,0.14,0.671,0.191,0,0,0.136 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.0907 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.0453 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0453 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.144 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.44 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.182 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0.0644 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.0966 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.272 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.0907 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.165 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.207 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.111 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.181 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.0453 -0.667,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.136 -0.667,0.194,0.194,0,0.25,0,0,0.281,0.637,0.164,0.122,0,0.136 -0.667,0.239,0.239,0,0.483,0.517,0.383,0.281,0.631,0.226,0.746,0.0541,0.272 -1,0.538,0.538,0,0,0,0.6,0.14,0.681,0.537,0.74,0.188,0.136 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.0895 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.256 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.127 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -1,0.172,0.172,0.267,0,0,0,0.281,0.585,0.0399,0,0,0.0785 -1,0.301,0.301,0.2,0,0,0,0.14,0.619,0.077,0,0,0.176 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.918 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.348 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.0453 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.0907 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.136 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.136 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.0907 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.0453 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.136 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0843 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -1,0.427,0.427,0.7,0,0.267,0.133,0,0.648,0.108,0,0,0 -0.667,0.299,0.299,0,0,0.25,0.1,0.14,0.619,0.0902,0,0.361,0 -0.667,0.291,0.291,0.7,0.5,0,0,0.14,0.619,0.1,0.279,0.486,0 -1,0.394,0.394,0,0.233,0,0,0,0.648,0.158,0.362,0.412,0.0664 -1,0.382,0.382,0,0,0,0,0,0.648,0.167,0,0.704,0.243 -1,0.378,0.378,0,0,0,0,0,0.648,0.189,0,0.342,0.17 -1,0.378,0.378,0,0,0,0,0,0.648,0.2,0,0.396,0.227 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0.458,0.136 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.0907 -0.667,0.291,0.291,0,0.483,0.267,0.133,0.14,0.701,0.234,0.772,0,0.181 -0.667,0.339,0.339,0,0,0.25,0.6,0.14,0.712,0.313,0,0.288,0.227 -0.333,0.239,0.239,0,0,0,0,0.281,0.631,0.226,0,0.357,0.272 -0.667,0.538,0.538,0.467,0,0,0,0.14,0.681,0.537,0,0.359,0.227 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0.176,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0.119 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.0735 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.295,0.295,0.233,0.483,0,0,0.14,0.609,0.069,0.456,0,0.167 -1,0.427,0.427,0,0,0,0,0,0.648,0.156,0.401,0,0.238 -1,0.424,0.424,0,0,0,0,0,0.648,0.206,0,0,0 -1,0.411,0.411,0,0,0,0,0,0.648,0.246,0,0,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.0907 -0.333,0.16,0.16,0,0,0.317,0.183,0.281,0.59,0.109,0,0,0 -0.333,0.159,0.159,0,0,0.2,0.05,0.281,0.59,0.126,0,0.443,0.0453 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0.373,0.0907 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0.378,0.0907 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0.426,0.0907 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0.7,0.227 -1,0.484,0.484,0,0.483,0,0,0,0.787,0.551,0.378,0.149,0.0453 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0.141,0,0.0907 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.0453 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.0907 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.133 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.236,0.236,0.7,0,0,0,0.14,0.578,0.0412,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.0907 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.227 -0.333,0.16,0.16,0,0.3,0,0,0.281,0.59,0.109,0.129,0,0.136 -0.667,0.269,0.269,0,0.433,0,0,0.14,0.619,0.234,0.883,0,0.0453 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0.27,0,0.342 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.0907 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0.0453 -0.667,0.291,0.291,0,0.05,0,0,0.14,0.701,0.318,0,0,0.136 -1,0.484,0.484,0.817,0.683,0,0,0,0.787,0.551,0.601,0,0.136 -1,0.619,0.619,0.35,0,0,0,0,0.771,0.725,0.77,0,0 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0.172,0,0.218 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.136 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.126 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.114 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.078 -1,0.427,0.427,0,0,0.267,0.133,0,0.648,0.108,0,0,0.0732 -0.667,0.299,0.299,0,0,0.25,1,0.14,0.619,0.0902,0,0.404,0.0907 -0.333,0.17,0.17,0,0,0,0.1,0.281,0.59,0.0582,0,0.409,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0.439,0.0907 -0.667,0.271,0.271,0.233,0,0,0,0.14,0.619,0.117,0,0.656,0.227 -0.667,0.269,0.269,0,0.483,0,0,0.14,0.619,0.131,0.272,0.78,0.0907 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0.397,0,0.357 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.186 -0.333,0.162,0.162,0.267,0,0,0,0.281,0.616,0.104,0,0,0 -0.333,0.17,0.17,1,0,0,0,0.281,0.631,0.125,0,0,0.181 -0.667,0.339,0.339,0.633,0,0,0,0.14,0.712,0.313,0,0,0.0907 -0.333,0.239,0.239,0.683,0,0,0,0.281,0.631,0.226,0,0,0.181 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.136 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -0.667,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.137 -1,0.284,0.284,0.267,0,0,0,0.14,0.611,0.0634,0,0,0.316 -1,0.404,0.404,0.683,0,0,0,0,0.651,0.107,0,0,0.0895 -1,0.392,0.392,0,0,0,0,0,0.651,0.126,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.151 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.334 -0.333,0.15,0.15,0.517,0,0,0,0.281,0.591,0.0658,0,0,0.247 -0.333,0.149,0.149,0.2,0,0,0,0.281,0.591,0.073,0,0,0.0907 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0907 -1,0.349,0.349,0,0,0,0,0,0.682,0.222,0,0,0.0907 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.0453 -0.333,0.173,0.173,0.467,0.25,0,0,0.281,0.638,0.163,0.0871,0,0.0453 -0.333,0.207,0.207,0.233,0.233,0.267,0.15,0.281,0.633,0.224,0.418,0,0.0453 -0.667,0.464,0.464,0,0,0.233,0.833,0.14,0.683,0.532,0,0.246,0.0453 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0.876,0.0907 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.223,0.317 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0.249,0.261 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.228,0.228,0.767,0,0,0,0.14,0.58,0.0474,0,0,0 -1,0.284,0.284,0.917,0,0,0,0.14,0.611,0.0634,0,0,0.11 -1,0.404,0.404,0,0,0,0,0,0.651,0.107,0,0,0.0453 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0453 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.181 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.249,0.249,0,0.717,0,0,0.14,0.621,0.13,0.516,0,0.181 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0.216,0,0.0453 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0453 -0.667,0.151,0.151,0.767,0,0,0,0.281,0.617,0.103,0,0,0.0907 -0.667,0.157,0.157,1,0,0,0,0.281,0.633,0.124,0,0,0.363 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.181 -0.667,0.365,0.365,1,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.671,0.671,1,0.5,0,0,0,0.744,0.791,0.232,0,0.0453 -1,0.799,0.799,0.533,0.217,0,0,0,0.682,0.749,0.556,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.231 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0 -0.667,0.259,0.259,0,0.717,0.517,0.15,0.14,0.621,0.11,0.57,0.0116,0.0453 -0.667,0.251,0.251,0,0,0.233,0.333,0.14,0.621,0.116,0,0.208,0.181 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0.529,0.0453 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.122,0.181 -0.333,0.149,0.149,0.233,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,0.267,0,0,0,0.281,0.617,0.103,0,0,0.181 -0.667,0.264,0.264,0.45,0.483,0,0,0.14,0.704,0.232,0.232,0,0.0907 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0453 -0.667,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.227 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.135 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.15 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.45,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.102 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.263 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.27,0.27,0,0.483,0,0,0.14,0.621,0.0997,0.568,0,0 -0.667,0.259,0.259,0.0167,0,0,0,0.14,0.621,0.11,0.713,0,0.0907 -0.667,0.251,0.251,0.217,0,0,0,0.14,0.621,0.116,0,0,0.179 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.0907 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.19 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.159 -0.667,0.252,0.252,0.267,0,0,0,0.14,0.673,0.19,0,0,0.272 -0.667,0.264,0.264,0.45,0,0,0,0.14,0.704,0.232,0,0,0.181 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.317 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.0453 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.136 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.181 -1,0.405,0.405,0,0,0.75,0.4,0.14,0.6,0.307,0,0.124,0.0797 -1,0.116,0.116,0,0,0,0.583,0.281,0.565,0.0759,0,0.547,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.408 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.257 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.186 -0,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0181,0,0,0.227 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.333,0.173,0.173,0,0,0,0,0.281,0.638,0.194,0,0,0 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.607 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0.115,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.278,0.278,0.45,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0 -1,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.0453 -0.667,0.149,0.149,0,0.25,0,0,0.281,0.591,0.141,0.174,0,0.0453 -0.667,0.149,0.149,0,0.233,0,0,0.281,0.602,0.154,0.65,0,0.0907 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0.606,0,0.0907 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0.819,0,0.388 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0.643,0,0.545 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0.664,0,0.105 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0.413,0,0.0907 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.0453 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -1,0.284,0.284,0,0.25,0,0,0.14,0.611,0.0634,0.138,0,0 -1,0.404,0.404,0.767,0.467,0,0,0,0.651,0.107,0.662,0,0.387 -1,0.392,0.392,0.433,0,0,0,0,0.651,0.126,0.818,0,0.0875 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0.741,0,0.136 -1,0.364,0.364,0.767,0,0,0,0,0.651,0.157,0,0,0.079 -1,0.352,0.352,0.667,0,0,0,0,0.651,0.166,0,0,0.575 -1,0.349,0.349,0,0,0,0,0,0.651,0.187,0,0,0.135 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.333,0.157,0.157,0.45,0,0,0,0.281,0.633,0.124,0,0,0.0907 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0 -0.667,0.365,0.365,0.267,0,0,0,0.14,0.704,0.432,0,0,0 -1,0.671,0.671,0.683,0,0,0,0,0.744,0.791,0,0,0.0907 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.0907 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.366 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.164,0.164,0.233,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0.0167,0.15,0.14,0.621,0.11,0,0,0.0907 -0.667,0.251,0.251,0.267,0,0.233,1,0.14,0.621,0.116,0,0.193,0.0453 -0.667,0.249,0.249,0.45,0,0,1,0.14,0.621,0.13,0,0.606,0.0907 -0.667,0.249,0.249,0,0,0,0.0667,0.14,0.621,0.137,0,0.362,0.363 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0.684,0.363 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.209,0.0907 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0.43,0.0453 -0.667,0.296,0.296,0,0.483,0,0,0.14,0.714,0.31,0.258,0.292,0.136 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0.463,0.523,0.0453 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0.0296,0.136 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.272 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0418 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.423 -1,0.284,0.284,0.267,0,0,0,0.14,0.611,0.0634,0,0,0.115 -0.667,0.168,0.168,0.683,0,0,0,0.281,0.591,0.0462,0,0,0.0907 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.363 -0.667,0.27,0.27,0.767,0,0,0,0.14,0.621,0.0997,0,0,0.0453 -0.667,0.259,0.259,0.183,0,0,0,0.14,0.621,0.11,0,0,0.0453 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.227 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.136 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.0453 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.296,0.296,0.717,0.25,0,0,0.14,0.714,0.31,0.129,0,0.181 -0.667,0.365,0.365,0,0.233,0,0,0.14,0.704,0.432,0.671,0,0.319 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0453 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.0907 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.106 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.129 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.262 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.498 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.0143 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.0453 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.181 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.667,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.363 -0.667,0.296,0.296,0.233,0,0,0,0.14,0.714,0.31,0,0,0.136 -1,0.523,0.523,0,0,0.0167,0,0,0.774,0.64,0,0,0 -1,0.671,0.671,0,0,0.483,0.9,0,0.744,0.791,0,0.277,0.136 -1,0.549,0.549,0,0,0,0.0833,0.14,0.642,0.505,0,0,0.281 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.186 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.574 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.085 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0679 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.224 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0614 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0.239 -1,0.364,0.364,0,0,0,0,0,0.651,0.157,0,0,0.187 -1,0.352,0.352,0.767,0,0,0,0,0.651,0.166,0,0,0.227 -1,0.349,0.349,0.183,0,0,0,0,0.651,0.187,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.0907 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.0453 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.136 -0.667,0.296,0.296,0.717,0.483,0,0,0.14,0.714,0.31,0.545,0,0.0453 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0453 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.591 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.136 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.228 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0179,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.667,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0.258 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.251,0.251,0,0,0.5,0.483,0.14,0.621,0.198,0,0.149,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0.586,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0.447,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.434,0.0907 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.24 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.272 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.365,0.365,0.233,0,0,0,0.14,0.704,0.485,0,0,0.136 -1,0.671,0.671,0,0,0.5,0.483,0,0.744,0.845,0,0.121,0.0907 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0.462,0.544 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.327 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.139,0.139,0.267,0.25,0,0,0.281,0.571,0.0295,0.164,0,0 -1,0.402,0.402,0.45,0.467,0,0,0,0.635,0.0937,0.61,0,0.0948 -1,0.404,0.404,0,0,0,0,0,0.651,0.155,0.8,0,0.307 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0.125,0,0.181 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.072 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.271 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.0958 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.363 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0.0453 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.0453 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0907 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.227 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.243 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.0453 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.186 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.266 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.181 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.0556 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.0907 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.0907 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.0453 -0.667,0.149,0.149,0,0,0.5,0.4,0.281,0.602,0.0846,0,0.0541,0.136 -0.667,0.151,0.151,0,0,0,1,0.281,0.617,0.103,0,0.263,0.0453 -0.667,0.264,0.264,0,0,0,0.333,0.14,0.704,0.232,0,0.234,0.544 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0.44,0.0907 -0.667,0.365,0.365,0.233,0,0,0,0.14,0.704,0.432,0,0.362,0.272 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0.467,0.0907 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.393,0.224 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.319,0.357 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0.561,0.136 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0.47,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0.458,0.0453 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0.448,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0.615,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0.0837,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.413 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.273 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.176 -1,0.392,0.392,0,0,0,0,0,0.651,0.126,0,0,0.0907 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.136 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.0453 -1,0.352,0.352,0,0,0,0,0,0.651,0.166,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.181 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.0453 -0.667,0.296,0.296,0.233,0,0,0,0.14,0.714,0.31,0,0,0.0453 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0453 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.544 -1,0.799,0.799,0.233,0,0,0,0,0.682,0.749,0,0,0.0907 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0873 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0687 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.103 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.333,0.154,0.154,0,0.5,0,0,0.281,0.591,0.0629,0.254,0,0 -0.667,0.15,0.15,0,0.217,0,0,0.281,0.591,0.0658,0.286,0,0.0453 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.0453 -0.667,0.252,0.252,0,0,0.5,0.4,0.14,0.673,0.19,0,0.0669,0.136 -0.667,0.264,0.264,0.267,0,0,0.333,0.14,0.704,0.232,0,0.642,0.131 -0.667,0.296,0.296,0.683,0,0,0,0.14,0.714,0.31,0,0.559,0.0907 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0.551,0.317 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0.498,0.347 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.402,0.317 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0.456,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0.408,0.322 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.0722 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.177 -1,0.0781,0.0781,0.717,0,0,0,0.281,0.56,0.0236,0,0,0.0148 -1,0.317,0.317,0.267,0,0,0,0,0.589,0.0632,0,0,0.0639 -1,0.402,0.402,1,0,0,0,0,0.635,0.0871,0,0,0.199 -0.667,0.286,0.286,0.167,0,0,0,0.14,0.621,0.0764,0,0,0.361 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0453 -0.667,0.27,0.27,0.233,0,0.25,0.4,0.14,0.621,0.0997,0,0,0.0453 -0.667,0.259,0.259,0,0,0,0.583,0.14,0.621,0.11,0,0.714,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.488,0.136 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0.188,0.0907 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0.27,0.181 -0.667,0.249,0.249,0.717,0,0,0,0.14,0.642,0.153,0,0.546,0.272 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.346,0.0907 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0.198,0.0907 -0.667,0.296,0.296,0.717,0,0,0,0.14,0.714,0.31,0,0,0.0453 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.136 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.0907 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.272 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.217,0.483,0,0,0.281,0.571,0.0316,0.531,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.135 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.164,0.164,0.717,0,0,0,0.281,0.591,0.0527,0,0,0.0907 -0.667,0.27,0.27,0,0,0.5,0.4,0.14,0.621,0.0997,0,0.0541,0.0453 -0.667,0.259,0.259,0,0,0,0.0833,0.14,0.621,0.11,0,0.306,0.272 -1,0.352,0.352,0.717,0,0,0,0,0.651,0.166,0,0.53,0 -1,0.349,0.349,0.233,0,0,0,0,0.651,0.187,0,0.318,0.0907 -1,0.348,0.348,0,0,0,0,0,0.651,0.198,0,0,0 -1,0.349,0.349,0,0,0,0,0,0.682,0.222,0,0,0.0453 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.0453 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.0453 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.272 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.0907 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.312 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.299 -1,0.405,0.405,0.717,0.483,0,0,0.14,0.6,0.307,0.242,0,0.0907 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0.747,0,0.114 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.374 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0.0938 -1,0.139,0.139,0.267,0,0,0,0.281,0.571,0.0295,0,0,0.437 -1,0.284,0.284,0.683,0,0,0,0.14,0.611,0.0685,0,0,0.15 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.175 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.272 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.0907 -0.667,0.249,0.249,0,0.483,0,0,0.14,0.621,0.265,0.634,0,0.272 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0 -1,0.353,0.353,0,0,0,0,0,0.728,0.449,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0,0.272 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0907 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0,0.317 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.0907 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.49,0,0.138 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.129 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.169 -1,0.168,0.168,0.233,0,0,0,0.281,0.591,0.0636,0,0,0.114 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.0933 -0.667,0.27,0.27,0.467,0,0,0,0.14,0.621,0.169,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.185,0,0,0.136 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.317 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.355 -0.667,0.151,0.151,0.0167,0,0,0,0.281,0.617,0.162,0,0,0.0907 -1,0.371,0.371,0.45,0,0,0,0,0.774,0.464,0,0,0.363 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.0907 -1,0.523,0.523,0,0.717,0,0,0,0.774,0.719,0.564,0,0.283 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0.636,0,0.2 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0.209,0,0.0453 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0976 -1,0.284,0.284,0.2,0,0,0,0.14,0.611,0.0634,0,0,0.305 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.123 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.453 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.181 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0.717,0,0,0,0.14,0.673,0.19,0,0,0.272 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.0453 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0907 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.363 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.0453 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0453 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.0893 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.0453 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.0907 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.0453 -0.333,0.16,0.16,0,0,0.5,0.233,0.281,0.591,0.0578,0,0.0611,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.68,0.136 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.315,0.0907 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0.384,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0.474,0 -1,0.349,0.349,0,0,0,0,0,0.682,0.222,0,0.308,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.456,0.317 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0.664,0.0453 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0.465,0.0453 -0.667,0.365,0.365,0.233,0,0,0,0.14,0.704,0.432,0,0.399,0.294 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0.417,0.0907 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.526,0.0907 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.296,0.312 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.116 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.249,0.249,0,0,0.0167,0,0.14,0.621,0.13,0,0,0.0907 -0.667,0.249,0.249,0,0,0.733,0.233,0.14,0.621,0.137,0,0.319,0.0907 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.409,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.793,0.181 -0.333,0.157,0.157,0.267,0,0,0,0.281,0.633,0.124,0,0,0.499 -0.333,0.173,0.173,1,0.25,0,0,0.281,0.638,0.163,0.15,0,0.578 -0.667,0.365,0.365,0.65,0.233,0.5,0.4,0.14,0.704,0.432,0.544,0.018,0.246 -1,0.671,0.671,0,0,0,0.833,0,0.744,0.791,0.793,0.462,0.0453 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0.569,0.0453 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0.315,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.251,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.129 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.175 -1,0.404,0.404,0,0.483,0,0,0,0.651,0.107,0.495,0,0.14 -1,0.392,0.392,0,0,0,0,0,0.651,0.126,0,0,0.1 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.777 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.131 -1,0.352,0.352,0,0,0,0,0,0.651,0.166,0,0,0.544 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.181 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.136 -0.333,0.149,0.149,0,0.483,0.767,0.133,0.281,0.602,0.0846,0.591,0.214,0.0453 -0.667,0.151,0.151,0,0,0.25,0.1,0.281,0.617,0.103,0,0.645,0 -0.667,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0.423,0.544 -0.667,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0.382,0.0907 -0.667,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0.549,0 -0.667,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.426 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.197 -0.667,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.301 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0948 -1,0.228,0.228,0.267,0,0,0,0.14,0.58,0.0474,0,0,0.0528 -0.667,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0.097 -0.333,0.168,0.168,0.417,0,0,0,0.281,0.591,0.0462,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.136 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.181 -0.667,0.251,0.251,0,0.483,0,0,0.14,0.621,0.116,0.657,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0.127,0,0.227 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.272 -0.333,0.149,0.149,0,0,0.5,0.4,0.281,0.602,0.0846,0,0.0746,0.0453 -0.667,0.252,0.252,0,0,0,0.0833,0.14,0.673,0.19,0,0.587,0.181 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0.556,0.181 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0.411,0.0453 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0.375,0.317 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0.356,0.0453 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.279,0.0907 -0.667,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.259,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0961 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0.184 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.0606 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.272 -0.333,0.149,0.149,0,0,0.267,0.15,0.281,0.591,0.125,0,0,0.136 -0.667,0.249,0.249,0,0,0.233,0.333,0.14,0.621,0.265,0,0.366,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0.69,0.0453 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0.337,0.136 -1,0.371,0.371,0,0,0,0,0,0.774,0.464,0,0.374,0.136 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.531,0.363 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.193,0.317 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.181 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.124 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.404,0.404,0.267,0,0,0,0,0.651,0.155,0,0,0.125 -1,0.392,0.392,0.2,0,0,0,0,0.651,0.205,0,0,0.0951 -1,0.381,0.381,0.267,0,0,0,0,0.651,0.244,0,0,0 -0.667,0.259,0.259,0.45,0,0,0,0.14,0.621,0.185,0,0,0.181 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.198,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.233,0,0,0.0453 -1,0.249,0.249,0.267,0,0,0,0.14,0.621,0.265,0,0,0.317 -1,0.249,0.249,0.683,0,0,0,0.14,0.642,0.291,0,0,0.0453 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.136 -0.667,0.157,0.157,0.267,0,0,0,0.281,0.633,0.167,0,0,0.0453 -0.667,0.173,0.173,1,0,0,0,0.281,0.638,0.194,0,0,0.181 -1,0.365,0.365,0.65,0.483,0,0,0.14,0.704,0.485,0.254,0,0.573 -1,0.671,0.671,0.267,0,0.517,0.15,0,0.744,0.845,0.666,0.0463,0.0453 -1,0.799,0.799,0.45,0,0.233,0.333,0,0.682,0.78,0,0.358,0.295 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.227 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.158 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.286,0.286,0.767,0,0,0,0.14,0.621,0.0764,0,0,0.131 -1,0.392,0.392,0.917,0,0,0,0,0.651,0.126,0,0,0.0722 -1,0.381,0.381,0,0,0,0,0,0.651,0.142,0,0,0.457 -1,0.364,0.364,0,0,0,0,0,0.651,0.157,0,0,0.0453 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.136 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.0907 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.136 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.136 -0.333,0.157,0.157,0.233,0,0,0,0.281,0.633,0.124,0,0,0.136 -0.667,0.296,0.296,0.267,0,0,0,0.14,0.714,0.31,0,0,0.356 -0.667,0.365,0.365,0.2,0,0,0,0.14,0.704,0.432,0,0,0.106 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.117 -1,0.799,0.799,0,0.25,0,0,0,0.682,0.749,0.131,0,0 -1,0.582,0.582,0,0.233,0,0,0,0.62,0.453,0.716,0,0.317 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0.627,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.386 -1,0.404,0.404,0,0,0,0,0,0.651,0.107,0,0,0.136 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.136 -0.333,0.16,0.16,0,0.483,0,0,0.281,0.591,0.0578,0.258,0,0.272 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0.763,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0.761,0,0.272 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0.533,0,0.0453 -0.667,0.149,0.149,0.2,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0907 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.181 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.333,0.257,0.257,0,0,0,0,0.281,0.622,0.274,0,0,0.227 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0.767,0,0.0167,0,0.281,0.571,0.0316,0,0,0 -1,0.284,0.284,0.183,0,0.733,0.233,0.14,0.611,0.0634,0,0.212,0.535 -0.667,0.286,0.286,0.0167,0,0,0,0.14,0.621,0.0764,0,0.395,0 -0.667,0.278,0.278,0.7,0,0,0,0.14,0.621,0.0895,0,0.518,0.0453 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0.662,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0.227,0.181 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.136 -0.333,0.149,0.149,0.233,0,0,0,0.281,0.591,0.073,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.136 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.0453 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.227 -0.333,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0,0.0453 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.0453 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.0453 -1,0.671,0.671,0,0.483,0,0,0,0.744,0.791,0.605,0,0.287 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0.176,0,0.449 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0,0.307 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.0533 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.284,0.284,0.717,0,0.267,0.15,0.14,0.611,0.0634,0,0,0.136 -0.667,0.168,0.168,0,0,0.233,0.583,0.281,0.591,0.0462,0,0.42,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0.749,0.155 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0.592,0.161 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.459,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0.551,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0.445,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.21,0.136 -0.333,0.149,0.149,0.467,0,0,0,0.281,0.602,0.0846,0,0,0.0907 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.0453 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.273 -1,0.42,0.42,0.267,0,0.0167,0,0,0.79,0.457,0,0,0.418 -1,0.523,0.523,0.2,0,0.483,0.233,0,0.774,0.64,0,0.225,0.0453 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0.454,0.181 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.342,0.136 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.281,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0.296,0.11 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0.318,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0576 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.24 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.102 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.157 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.113 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.553 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.136 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0907 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.333,0.148,0.148,0.0167,0,0,0,0.421,0.589,0.128,0,0,0.0907 -0.333,0.161,0.161,0.217,0,0,0,0.585,0.594,0.168,0,0,0.181 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.227 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.227 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.136 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.0907 -1,0.249,0.249,0,0,0,0,1,0.477,0.203,0,0,0.219 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.242 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.134 -0.667,0.245,0.245,0,0,0.267,0.15,0.421,0.548,0.191,0,0,0.115 -0.667,0.237,0.237,0,0,0.233,0.0833,0.421,0.548,0.204,0,0.36,0.104 -0.667,0.235,0.235,0.0167,0,0,0,0.421,0.548,0.24,0,0.579,0.0907 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0.317 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.227 -0.333,0.148,0.148,0,0,0.75,0.4,0.421,0.589,0.172,0,0.197,0.272 -1,0.384,0.384,0,0,0,0.567,0.912,0.658,0.565,0,0.315,0.0453 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0.29,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0.518,0.136 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.282 -1,0.136,0.136,0.267,0,0,0,0.614,0.538,0.0301,0,0,0.0553 -1,0.277,0.277,0.2,0,0,0,0.421,0.54,0.0706,0,0,0.312 -0.667,0.274,0.274,0.267,0,0,0,0.421,0.548,0.113,0,0,0.145 -0.667,0.263,0.263,0.2,0,0,0,0.421,0.548,0.147,0,0,0.27 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.272 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.227 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.136 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.0907 -0.667,0.238,0.238,0.467,0,0,0,0.421,0.591,0.315,0,0,0.263 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.227 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.272 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.331 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.343 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0453 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.317 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0453 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.0893 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.237,0.237,0.233,0,0,0,0.421,0.548,0.119,0,0,0.272 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.181 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0.25,0,0,0.421,0.617,0.239,0.127,0,0.181 -0.667,0.273,0.273,0,0.217,0,0,0.749,0.626,0.32,0.634,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.284 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.179 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.56 -1,0.163,0.163,0.233,0,0,0,0.421,0.551,0.0406,0,0,0.0619 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.305 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0907 -0.333,0.147,0.147,0.0167,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0.45,0,0,0,0.421,0.555,0.0676,0,0,0.272 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.0453 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.272 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.0453 -0.333,0.148,0.148,0.267,0,0,0,0.421,0.589,0.128,0,0,0.136 -1,0.384,0.384,0.2,0,0,0,0.912,0.658,0.473,0,0,0.136 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.0453 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.207 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.207 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.0907 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.14 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0453 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0453 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.227 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.222 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.227 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.501,0.501,0,0,0.5,0.233,0.807,0.566,0.521,0,0.0598,0.264 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0.401,0.0886 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0.548,0.227 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0.663,0.0453 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0.62,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0.31,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.162 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.237,0.237,0.233,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0.7,0,0,0.421,0.548,0.134,0.718,0,0 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.205,0.218,0,0.181 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.272 -0.333,0.144,0.144,0,0,0.267,0.15,0.421,0.576,0.106,0,0,0.0907 -0.333,0.148,0.148,0,0,0.233,1,0.421,0.589,0.128,0,0.349,0.29 -0.667,0.273,0.273,0,0,0,0.05,0.749,0.626,0.32,0,0.244,0.227 -0.333,0.189,0.189,0,0,0,0,0.614,0.589,0.231,0,0.438,0.216 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.421,0.373 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0.618,0.165 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0.54,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0.64,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0.282,0.0609 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.224 -1,0.39,0.39,0,0,0.0167,0,0.421,0.529,0.09,0,0,0.197 -0.667,0.274,0.274,0,0,0.483,0.9,0.421,0.548,0.0788,0,0.308,0 -0.667,0.263,0.263,0.517,0,0,0.0667,0.421,0.548,0.0923,0,0.172,0.363 -0.667,0.256,0.256,0.417,0,0,0,0.421,0.548,0.103,0,0,0.0453 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.136 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0722 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.298 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0602 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0.233,0.717,0,0,0.421,0.617,0.239,0.638,0,0.0907 -0.667,0.273,0.273,0,0.217,0,0,0.749,0.626,0.32,0.714,0,0.227 -0.667,0.328,0.328,0,0.467,0.267,0.15,0.807,0.617,0.446,0.69,0,0.227 -1,0.595,0.595,0,0,0.233,0.0833,1,0.619,0.817,0,0.501,0.0907 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.431,0.297 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0.445,0.136 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0.217,0.0453 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0.516,0.181 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0.1,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0.076 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.169 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.15 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.235,0.235,0.517,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.238,0.238,1,0,0.5,0.65,0.421,0.591,0.315,0,0.138,0 -0.667,0.247,0.247,1,0,0,0.317,0.421,0.617,0.326,0,0.394,0.227 -0.667,0.273,0.273,1,0,0,0,0.749,0.626,0.383,0,0.0927,0.0907 -1,0.467,0.467,1,0,0,0,1,0.645,0.743,0,0,0.256 -1,0.595,0.595,0.683,0,0,0,1,0.619,0.873,0,0,0.395 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.213 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0.107,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.111 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.415 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.255 -1,0.387,0.387,0.233,0,0,0,0.421,0.542,0.16,0,0,0.16 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.181 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.0453 -0.333,0.142,0.142,0,0.25,0,0,0.421,0.564,0.159,0.118,0,0.0907 -0.333,0.144,0.144,0,0.217,0.5,0.4,0.421,0.576,0.167,0.725,0.0335,0.0946 -0.667,0.247,0.247,0,0,0,0.0833,0.421,0.617,0.326,0,0.465,0.323 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0.68,0.0453 -1,0.467,0.467,0,0.25,0,0,1,0.645,0.743,0.139,0.36,0.272 -1,0.595,0.595,0,0.45,0,0,1,0.619,0.873,0.547,0.371,0.181 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0.805,0.793,0.274 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0.252,0.511,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0.181,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0.481,0.232 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.39,0.39,0.233,0,0,0,0.421,0.529,0.09,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.0907 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.317 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.136 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.317 -0.333,0.142,0.142,0,0,0.5,0.4,0.421,0.564,0.0871,0,0.0463,0.499 -0.333,0.144,0.144,0,0,0,0.567,0.421,0.576,0.106,0,0.497,0.0907 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0.378,0.0453 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0.456,0.136 -0.667,0.328,0.328,0.233,0,0,0,0.807,0.617,0.446,0,0.476,0.0453 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0.721,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0.625,0.0453 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0.197,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.138 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.223 -1,0.163,0.163,0.517,0,0,0,0.421,0.551,0.0406,0,0,0.24 -0.667,0.274,0.274,0.417,0,0,0,0.421,0.548,0.0788,0,0,0.0409 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.0453 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.117 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.0453 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.0907 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0907 -1,0.332,0.332,0.233,0,0,0,0.421,0.606,0.286,0,0,0.0907 -1,0.345,0.345,0.233,0.25,0,0,0.421,0.645,0.351,0.105,0,0.453 -1,0.384,0.384,0.233,0.217,0,0,0.912,0.658,0.473,0.634,0,0.317 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.753,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.24,0,0.0453 -1,0.726,0.726,0,0.7,0,0,1,0.568,0.774,0.509,0,0.123 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0.557,0,0.254 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.132 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.1 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0843 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.227 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.131,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.146,0,0,0.516 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.235,0.235,0,0,0.0167,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,1,0.133,0.421,0.548,0.142,0,0.363,0.0907 -0.667,0.235,0.235,0,0.467,0.25,0.583,0.421,0.566,0.158,0.348,0.655,0.0453 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0.34,0.633,0.136 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.113,0.408 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.0907 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.576 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.211 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.227 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.19 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.139 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.401 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0,0.497 -1,0.37,0.37,0.7,0,0,0,0.421,0.542,0.131,0,0,0.136 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.136 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0907 -0.333,0.143,0.143,0,0,0.0167,0,0.421,0.555,0.0676,0,0,0 -0.333,0.142,0.142,0,0,0.483,0.233,0.421,0.555,0.0751,0,0.0309,0.136 -0.667,0.235,0.235,0.233,0,0,0,0.421,0.548,0.142,0,0,0.181 -1,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0453 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.286,0,0,0.0907 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.363 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.136 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.198 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.227 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.196 -1,0.136,0.136,0.267,0,0,0,0.614,0.538,0.0323,0,0,0.084 -1,0.277,0.277,0.433,0,0,0,0.421,0.54,0.0653,0,0,0.452 -1,0.387,0.387,0.233,0,0,0,0.421,0.542,0.11,0,0,0.0578 -0.667,0.263,0.263,0,0.7,0,0,0.421,0.548,0.0923,0.503,0,0.0907 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.0907 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.0907 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.363 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.136 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.136 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.0907 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.136 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.181 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.17 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.181 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0453 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0.2,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0768,0.0768,0.7,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.163,0.163,0.7,0,0,0,0.421,0.551,0.0444,0,0,0.0453 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.558 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.091 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.226 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.143,0.143,0.233,0.7,0,0,0.421,0.555,0.111,0.592,0,0.181 -0.667,0.235,0.235,0,0,0.5,0.65,0.421,0.548,0.24,0.279,0.184,0.0453 -1,0.327,0.327,0,0,0,0.0667,0.421,0.542,0.401,0,0.444,0 -1,0.328,0.328,0,0,0,0,0.421,0.568,0.441,0,0.438,0.363 -1,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0.403,0.227 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0.408,0.136 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0.381,0 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0.435,0.227 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.21 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.285 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0566 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.115 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0.253 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.329 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.178 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0.47 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.181 -0,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.235,0.235,0.417,0,0,0,0.421,0.548,0.24,0,0,0.0453 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.136 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.0453 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.499 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.227 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.227 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.0521 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.418 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.4 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.131,0,0,0.169 -0.667,0.256,0.256,0.267,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0.667,0,0,0,0.421,0.548,0.113,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.136 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.227 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.272 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0.0907 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.0907 -0.667,0.161,0.161,0.267,0,0,0,0.585,0.594,0.168,0,0,0.0939 -0.667,0.328,0.328,0.2,0,0,0,0.807,0.617,0.446,0,0,0.0453 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.227 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0453 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.147,0.147,0,0.467,0,0,0.421,0.555,0.0646,0.46,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0.645,0,0 -0.333,0.142,0.142,0,0,0.0167,0,0.421,0.555,0.0751,0.117,0,0.0907 -0.667,0.235,0.235,0,0,0.483,0.483,0.421,0.548,0.142,0,0.198,0.33 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0.466,0.338 -0.667,0.238,0.238,0.233,0,0,0,0.421,0.591,0.196,0,0,0.187 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.128 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.387 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.408 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.227 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.363 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.235 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.182 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.171 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0907 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.224 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.131 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.2 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.136 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.0453 -0.667,0.247,0.247,0.233,0,0,0,0.421,0.617,0.239,0,0,0.317 -1,0.384,0.384,0,0.7,0,0,0.912,0.658,0.473,0.605,0,0.227 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.261,0,0.0453 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.0453 -1,0.726,0.726,0,0.7,0,0,1,0.568,0.774,0.563,0,0.176 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0.279,0,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0835 -1,0.277,0.277,0.233,0,0,0,0.421,0.54,0.0653,0,0,0.0923 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.11,0,0,0.225 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.131,0,0,0.154 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.0907 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.227 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.171,0,0,0.261 -1,0.328,0.328,0,0,0,0,0.421,0.542,0.194,0,0,0.228 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.205,0,0,0 -1,0.328,0.328,0.0167,0,0,0,0.421,0.568,0.23,0,0,0.0907 -1,0.332,0.332,1,0,0,0,0.421,0.606,0.286,0,0,0.181 -0.667,0.247,0.247,0.867,0,0,0,0.421,0.617,0.239,0,0,0.162 -0.667,0.273,0.273,0.0167,0,0,0,0.749,0.626,0.32,0,0,0.0453 -1,0.328,0.328,0.683,0,0,0,0.807,0.617,0.446,0,0,0.317 -1,0.595,0.595,0,0,0.5,0.4,1,0.619,0.817,0,0.0444,0.0907 -1,0.726,0.726,0,0,0,1,1,0.568,0.774,0,0.558,0.153 -1,0.557,0.557,0,0,0,1,1,0.516,0.468,0,0.0463,0.0453 -1,0.116,0.116,0,0,0,1,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0.883,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.0875 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.263,0.263,0,0,0.0167,0,0.421,0.548,0.0923,0,0,0.0907 -0.667,0.256,0.256,0,0,0.733,0.65,0.421,0.548,0.103,0,0.287,0.0453 -0.667,0.245,0.245,0,0,0,0.8,0.421,0.548,0.113,0,0.45,0.181 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.194,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.532,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.349,0.453 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0.266,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.371,0.192 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.589,0.365 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0.474,0.357 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0.326,0.149 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0.229,0.141 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.0907 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.0907 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.234 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0.0883 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.2 -1,0.39,0.39,0.467,0,0,0,0.421,0.529,0.0968,0,0,0.254 -1,0.387,0.387,0,0,0,0,0.421,0.542,0.16,0,0,0.17 -1,0.37,0.37,0,0,0,0,0.421,0.542,0.212,0,0,0.17 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.539 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0453 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.136 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.0453 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.181 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.227 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.317 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.227 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.156 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0.267,0,0,0,0.614,0.538,0.0301,0,0,0.169 -1,0.39,0.39,0.433,0,0,0,0.421,0.529,0.0968,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.143 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.992 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.136 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.333,0.142,0.142,0,0.25,0,0,0.421,0.555,0.146,0.174,0,0.317 -0.333,0.142,0.142,0,0.217,0,0,0.421,0.564,0.159,0.38,0,0 -0.333,0.144,0.144,0.517,0,0,0,0.421,0.576,0.167,0,0,0 -0.333,0.148,0.148,0.183,0,0,0,0.421,0.589,0.172,0,0,0.181 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.796 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.0146 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.181 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0948 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.0724 -1,0.274,0.274,0.233,0,0,0,0.421,0.548,0.0788,0,0,0.129 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.341 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.181 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.136 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.181 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.0453 -0.667,0.238,0.238,0.7,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.0453 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.0907 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.181 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.227 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.0453 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.272 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.294 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.517,0,0.5,0.4,0.421,0.562,0.0159,0,0.0772,0.0907 -1,0.235,0.235,0.183,0.467,0,0.317,0.421,0.548,0.134,0.246,0.367,0.181 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.205,0.242,0.474,0 -0.667,0.235,0.235,0,0.467,0,0,0.421,0.566,0.158,0.676,0.615,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0.833,0.39,0.0453 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0.425,0.417,0.317 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.619,0.136 -0.667,0.328,0.328,0.517,0,0,0,0.807,0.617,0.446,0,0.0927,0.0453 -1,0.595,0.595,0.183,0,0,0,1,0.619,0.817,0,0,0.0453 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0453 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.227 -1,0.249,0.249,0,0,0,0,1,0.477,0.203,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0907 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.221 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.254 -0.667,0.163,0.163,0,0,0.517,0.15,0.421,0.551,0.0406,0,0.0425,0.123 -1,0.274,0.274,0,0,0.233,1,0.421,0.548,0.0788,0,0.561,0 -0.667,0.263,0.263,0,0,0,1,0.421,0.548,0.0923,0,0.482,0 -0.667,0.256,0.256,0,0,0,0.0167,0.421,0.548,0.103,0,0.598,0.0907 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.23,0.0907 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.0453 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.0907 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0.136 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.136 -0.667,0.144,0.144,0.267,0,0,0,0.421,0.576,0.106,0,0,0.0907 -0.667,0.247,0.247,0.2,0,0,0,0.421,0.617,0.239,0,0,0.272 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.177 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.435 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.181 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.134 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.361 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.198 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.106 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.0453 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.667,0.237,0.237,0.233,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.272 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.0453 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0453 -0.667,0.238,0.238,0.267,0,0,0,0.421,0.591,0.196,0,0,0.453 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.351,0,0,0.181 -0.667,0.273,0.273,0.15,0.7,0,0,0.749,0.626,0.32,0.601,0,0.363 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.615,0,0.0453 -1,0.595,0.595,0,0.467,0,0,1,0.619,0.817,0.681,0,0 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0.742,0,0 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.177 -1,0.249,0.249,0,0,0,0,1,0.477,0.203,0,0,0 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.321 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.0907 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.227 -0.333,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.263,0.263,0.233,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.0453 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.0907 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.0453 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.0453 -0.667,0.238,0.238,0.767,0,0,0,0.421,0.591,0.196,0,0,0.181 -0.667,0.247,0.247,0.167,0,0,0,0.421,0.617,0.239,0,0,0.0453 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.227 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.0907 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.227 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0907 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.0907 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.408 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0825 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.175 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.119 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.101 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.185 -0.333,0.153,0.153,0.233,0,0,0,0.421,0.555,0.0961,0,0,0.202 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.136 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.0904 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.116 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.3,0,0,0.0453 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.315,0,0,0.136 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.326,0,0,0.227 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.301 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.201 -1,0.413,0.413,0,0.5,0,0,0.807,0.6,0.588,0.254,0,0.168 -1,0.501,0.501,0,1,0,0,0.807,0.566,0.543,0.51,0,0.0453 -1,0.388,0.388,0,0.15,0,0,0.807,0.531,0.345,0.343,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.121 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0.0724 -1,0.103,0.103,0,0,0,0,0.807,0.495,0.0271,0,0,0.109 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.0453 -0.667,0.162,0.162,0.35,0,0,0,0.421,0.549,0.0444,0,0,0.0287 -0.667,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0.35 -0.667,0.154,0.154,0.283,0,0,0,0.421,0.554,0.0828,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.272 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.15 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.263 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.0453 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.136 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.181 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.26,0,0,0.0907 -0.333,0.23,0.23,0,0,0,0,0.614,0.579,0.304,0,0,0.173 -0.333,0.273,0.273,0,0,0,0,0.614,0.562,0.282,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0936 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.274,0.274,0.7,0,0,0,0.421,0.537,0.0655,0,0,0 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0453 -0.667,0.25,0.25,0.233,0,0,0,0.421,0.546,0.103,0,0,0.145 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.136 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.363 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.272 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.23,0.23,0.267,0,0,0,0.421,0.563,0.159,0,0,0.317 -0.667,0.233,0.233,0.2,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.242,0.242,0.267,0,0,0,0.421,0.614,0.24,0,0,0.0907 -1,0.377,0.377,0.433,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.301 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.333 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.242 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.256 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0853 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.194 -0.667,0.27,0.27,0.0167,0,0,0,0.421,0.546,0.079,0,0,0.191 -1,0.362,0.362,0.683,0.25,0,0,0.421,0.538,0.131,0.204,0,0.15 -1,0.351,0.351,0,0.433,0,0,0.421,0.538,0.147,0.774,0,0.0895 -0.667,0.24,0.24,0.233,0,0,0,0.421,0.546,0.114,0.618,0,0.421 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.116 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0.307 -1,0.324,0.324,0.0167,0,0,0,0.421,0.602,0.287,0,0,0.21 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.265 -0.667,0.268,0.268,0.617,0,0,0,0.749,0.623,0.321,0,0,0.1 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.23 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.227 -1,0.72,0.72,0,0.25,0,0,1,0.563,0.777,0.164,0,0.181 -1,0.554,0.554,0,0.433,0,0,1,0.512,0.47,0.667,0,0.0928 -1,0.116,0.116,0.233,0,0,0,0.614,0.532,0.0783,0.469,0,0.272 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.136 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0763,0.0763,0,0,0.0167,0,0.614,0.528,0.0241,0,0,0.292 -1,0.22,0.22,0,0,0.5,0.883,0.807,0.512,0.0489,0,0.223,0.193 -1,0.274,0.274,0.233,0,0,0.0333,0.421,0.537,0.0655,0,0.408,0 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0.298 -1,0.362,0.362,0,0,0,0,0.421,0.538,0.131,0,0,0.0548 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.147,0,0,0.078 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.163,0,0,0.361 -1,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.136 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.194,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.0453 -1,0.321,0.321,0,0,0,0,0.421,0.563,0.23,0,0,0.0453 -0.667,0.233,0.233,0.233,0,0,0,0.421,0.588,0.196,0,0,0.082 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0907 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.227 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0453 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.337 -1,0.72,0.72,0,0,0.0167,0,1,0.563,0.777,0,0,0.227 -1,0.554,0.554,0,0,0.5,0.883,1,0.512,0.47,0,0.25,0 -1,0.183,0.183,0,0,0,0.0333,0.807,0.503,0.141,0,0.687,0 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0.476,0 -1,0.066,0.066,0,0,0,0,0.807,0.495,0.0324,0,0.229,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.0453 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.317 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.276 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.317 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0.517,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0.183,0,0,0,0.421,0.588,0.196,0,0,0.0453 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0907 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.136 -0.667,0.324,0.324,0.767,0,0,0,0.807,0.614,0.448,0,0,0.0453 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.319 -1,0.72,0.72,0.1,0,0,0,1,0.563,0.777,0,0,0.363 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.107 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.105 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0.0727 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0.0888 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -0.667,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.164 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.13 -0.667,0.135,0.135,0.267,0.25,0,0,0.614,0.537,0.0324,0.124,0,0.227 -1,0.386,0.386,0.9,0.2,0,0,0.421,0.525,0.0903,0.648,0,0.11 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.0453 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.136 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0907 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.0453 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.136 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.136 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.577 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.164 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.208 -1,0.338,0.338,0.467,0,0,0,0.421,0.64,0.352,0,0,0.0928 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.136 -1,0.461,0.461,0,0.45,0,0,1,0.64,0.664,0.253,0,0.0453 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.507,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.0938 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0262 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0.207 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.148 -1,0.362,0.362,0.85,0,0,0,0.421,0.538,0.212,0,0,0 -0.667,0.25,0.25,1,0,0,0,0.421,0.546,0.175,0,0,0 -0.667,0.24,0.24,0.0167,0,0,0,0.421,0.546,0.191,0,0,0.0907 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.0453 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.181 -1,0.338,0.338,0.6,0,0,0,0.421,0.64,0.481,0,0,0.181 -1,0.377,0.377,0.567,0,0,0,0.912,0.653,0.567,0,0,0.0907 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.136 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.236 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.221 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.381,0.381,0.233,0,0.1,0,0.421,0.538,0.16,0,0,0 -0.667,0.258,0.258,0,0,0.417,0.683,0.421,0.546,0.148,0,0.225,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0.508,0.0453 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0.223,0.0453 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.303 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.16 -0.333,0.14,0.14,0.233,0,0,0,0.421,0.562,0.16,0,0,0.185 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.465,0,0,0.168 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.227 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.0907 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.558 -1,0.59,0.59,0,0.333,0,0,1,0.615,0.876,0.204,0,0.123 -1,0.273,0.273,0,0.35,0,0,0.614,0.562,0.282,0.459,0,0.136 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0.468,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.0634 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.224 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.205 -0.667,0.258,0.258,0.233,0,0,0,0.421,0.546,0.0926,0,0,0.248 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.272 -0.667,0.24,0.24,0.233,0,0,0,0.421,0.546,0.114,0,0,0.317 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.181 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.0453 -0.667,0.23,0.23,0.233,0,0,0,0.421,0.546,0.142,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.181 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0453 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.136 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.227 -1,0.72,0.72,0,0,0.517,0.217,1,0.563,0.777,0,0.0405,0.213 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0,0.582,0.181 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0953 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0.267,0,0,0,0.421,0.554,0.0595,0,0,0.0907 -0.667,0.24,0.24,0.2,0,0,0,0.421,0.546,0.114,0,0,0.227 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.136 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.0453 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.221 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.414 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.389 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.176 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.279 -1,0.554,0.554,0,0,0.517,0.383,1,0.512,0.47,0,0.0631,0.257 -1,0.116,0.116,0,0,0,0.3,0.614,0.532,0.0783,0,0,0.101 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0.175 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0903 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.117 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.207 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.317 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0.18 -1,0.362,0.362,0,0,0,0,0.421,0.538,0.131,0,0,0.263 -1,0.351,0.351,0.467,0,0,0,0.421,0.538,0.147,0,0,0.416 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.163,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.227 -0.667,0.23,0.23,0.233,0,0,0,0.421,0.546,0.142,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.227 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.181 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.136 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.0907 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.121 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.162 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.0709 -1,0.249,0.249,0,0,0,0,1,0.474,0.203,0,0,0.115 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0453 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0.233,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.16,0.16,0.233,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.0907 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.227 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.0453 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.408 -0.667,0.233,0.233,0.267,0,0,0,0.421,0.588,0.196,0,0,0.127 -1,0.338,0.338,0.2,0,0,0,0.421,0.64,0.352,0,0,0.192 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.159 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.181 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.0453 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.261 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0973 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0907 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.227 -0.333,0.141,0.141,0,0,0.517,0.383,0.421,0.554,0.0678,0,0.0425,0.227 -0.667,0.23,0.23,0,0,0,0.0667,0.421,0.546,0.135,0,0.198,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.0907 -0.667,0.233,0.233,0,0,0.767,0.367,0.421,0.588,0.196,0,0.056,0.0907 -0.667,0.242,0.242,0,0,0.0167,0.783,0.421,0.614,0.24,0,0.459,0.201 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.136 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.0907 -0.667,0.41,0.41,0,0,0.0167,0,0.807,0.597,0.552,0,0,0.136 -0.667,0.496,0.496,0,0,0.5,0.883,0.807,0.563,0.523,0,0.256,0.0907 -1,0.218,0.218,0,0,0,0.267,0.614,0.545,0.167,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.081 -0.667,0.154,0.154,0.35,0,0,0,0.421,0.554,0.0828,0,0,0.174 -0.667,0.25,0.25,0.117,0,0,0,0.421,0.546,0.175,0,0,0.0724 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.372 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.136 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.146,0.146,0.6,0,0,0,0.421,0.588,0.172,0,0,0.072 -0.333,0.159,0.159,0,0,0,0,0.585,0.592,0.201,0,0,0.172 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.414 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.0907 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.136 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0.233,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.162,0.162,0.1,0,0,0,0.421,0.549,0.0444,0,0,0.0988 -1,0.27,0.27,0.133,0,0,0,0.421,0.546,0.113,0,0,0.297 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.0453 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.363 -0.667,0.24,0.24,0.35,0,0,0,0.421,0.546,0.191,0,0,0.363 -0.333,0.141,0.141,0.35,0,0,0,0.421,0.554,0.111,0,0,0.232 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.257 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.181 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.121 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.405 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.253 -1,0.22,0.22,0,0,0.0167,0,0.807,0.512,0.0489,0,0,0.0609 -1,0.386,0.386,0,0,0.5,0.883,0.421,0.525,0.0903,0,0.297,0 -1,0.381,0.381,0,0,0,0.267,0.421,0.538,0.111,0,0.447,0 -1,0.362,0.362,0,0,0,0,0.421,0.538,0.131,0,0.386,0.2 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.147,0,0.208,0.371 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.371,0.317 -0.333,0.141,0.141,0.233,0,0,0,0.421,0.554,0.0678,0,0,0.272 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.317 -0.667,0.23,0.23,0,0.45,0,0,0.421,0.546,0.142,0.312,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0.551,0,0 -0.667,0.233,0.233,0,0.25,0,0,0.421,0.588,0.196,0.72,0,0.0907 -0.667,0.242,0.242,0,0.433,0,0,0.421,0.614,0.24,0.418,0,0.0453 -0.667,0.268,0.268,0.0167,0,0,0,0.749,0.623,0.321,0.632,0,0.0453 -1,0.461,0.461,0.217,0,0,0,1,0.64,0.664,0.516,0,0.0907 -1,0.59,0.59,0.0167,0,0,0,1,0.615,0.82,0.742,0,0 -1,0.72,0.72,0.217,0,0,0,1,0.563,0.777,0,0,0.0453 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0,0,0.0453 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.131 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.0729 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.15 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.0993 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.12 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.272 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.0689 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0.252 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0753,0,0,0.467 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.136 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.317 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.227 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.317 -1,0.59,0.59,0.233,0,0,0,1,0.615,0.82,0,0,0.317 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.335 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.0724 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0.45,0,0,0.421,0.549,0.0407,0.291,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0.357,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.181 -0.667,0.25,0.25,0,0,0.267,0.133,0.421,0.546,0.103,0,0,0.0907 -0.667,0.24,0.24,0.767,0,0.25,0.55,0.421,0.546,0.114,0,0.303,0 -0.667,0.232,0.232,0.867,0,0,0,0.421,0.546,0.12,0,0.255,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.646,0.0907 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.565,0.272 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.367,0.163 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.441,0.151 -0.667,0.242,0.242,0.0167,0,0,0,0.421,0.614,0.24,0,0.187,0.22 -1,0.377,0.377,0.217,0,0,0,0.912,0.653,0.474,0,0.463,0.181 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0.521,0 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.0444,0.0907 -1,0.72,0.72,0,0.5,0,0,1,0.563,0.777,0.296,0,0.265 -1,0.554,0.554,0.517,1,0.0167,0,1,0.512,0.47,0.683,0,0.227 -0.667,0.183,0.183,1,0.1,0.5,0.883,0.807,0.503,0.141,0.753,0.239,0.0907 -0.667,0.0743,0.0743,0.117,0,0,0.267,0.614,0.528,0.0384,0,0.154,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0868 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.179 -1,0.362,0.362,0,0,0,0,0.421,0.538,0.131,0,0,0.109 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.147,0,0,0.0453 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.163,0,0,0 -1,0.324,0.324,0.767,0,0,0,0.421,0.538,0.172,0,0,0 -1,0.32,0.32,1,0,0.267,0.133,0.421,0.538,0.194,0,0,0.118 -1,0.32,0.32,1,0,0.25,0.783,0.421,0.538,0.205,0,0.407,0.0684 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.159,0,0.644,0.136 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0.453,0.0907 -0.333,0.146,0.146,0.383,0,0,0,0.421,0.588,0.128,0,0.293,0.22 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0.368,0.15 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0.56,0.0453 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0.367,0.277 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0453 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0453 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.212 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.0674 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.158 -0.333,0.14,0.14,0,0,0.267,0.133,0.421,0.554,0.0753,0,0,0.223 -0.667,0.23,0.23,0,0,0.25,0.0833,0.421,0.546,0.142,0,0.329,0.091 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.227,0 -0.667,0.233,0.233,0.233,0,0,0,0.421,0.588,0.196,0,0.189,0.0453 -0.667,0.242,0.242,0,0,0.267,0.133,0.421,0.614,0.24,0,0,0.0907 -1,0.377,0.377,0,0.45,0.25,0.55,0.912,0.653,0.474,0.7,0.443,0.0907 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.744,0.629,0.499 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0.831,0.385,0.317 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0.557,0.448,0.102 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0.42,0.593,0.385 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.0772,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.269 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0.124 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.0297 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.118 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.703 -0.667,0.25,0.25,0,0,0.1,0,0.421,0.546,0.175,0,0,0.136 -0.333,0.145,0.145,0,0,0.417,0.917,0.421,0.554,0.105,0,0.264,0.317 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0.414,0.227 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0.335,0.317 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0.229,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0.266,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0.399,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0.246,0 -0.667,0.268,0.268,0,0.683,0,0,0.749,0.623,0.384,0.591,0.498,0.0453 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0.528,0 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0.347,0.317 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.535 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.229 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.227 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0.85,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.162,0.162,0.0833,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.381,0.381,0.233,0,0,0,0.421,0.538,0.16,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.181 -0.667,0.25,0.25,0.233,0,0,0,0.421,0.546,0.175,0,0,0.0453 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0.227 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.0907 -1,0.32,0.32,0,0,0,0,0.421,0.538,0.352,0,0,0.272 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.453 -0.667,0.233,0.233,0.35,0,0,0,0.421,0.588,0.316,0,0,0.369 -1,0.338,0.338,0.467,0,0,0,0.421,0.64,0.481,0,0,0.457 -1,0.377,0.377,0.583,0,0,0,0.912,0.653,0.567,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0 -1,0.59,0.59,0,0.333,0,0,1,0.615,0.876,0.265,0,0.103 -1,0.72,0.72,0,0.35,0,0,1,0.563,0.808,0.686,0,0.127 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.13 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.0629 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.181 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.0453 -0.333,0.14,0.14,0,0,0.517,0.217,0.421,0.554,0.0753,0,0.0772,0.0907 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.432,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.286,0.0907 -0.667,0.233,0.233,0.233,0,0,0,0.421,0.588,0.196,0,0.162,0.0907 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0453 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.363 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.136 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.317 -1,0.273,0.273,0,0,0,0,0.614,0.562,0.269,0,0,0.532 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.109 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.244 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.456 -1,0.274,0.274,0.233,0,0.0167,0,0.421,0.537,0.0655,0,0,0.164 -0.667,0.27,0.27,0.233,0,0.5,0.883,0.421,0.546,0.079,0,0.133,0 -0.667,0.258,0.258,0,0,0,0.0333,0.421,0.546,0.0926,0,0.208,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.0453 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.136 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.181 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.0907 -0.667,0.233,0.233,0.0167,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.242,0.242,0.45,0,0,0,0.421,0.614,0.24,0,0,0.32 -0.667,0.268,0.268,0,0.25,0,0,0.749,0.623,0.321,0.284,0,0.0907 -1,0.461,0.461,0,0.433,0,0,1,0.64,0.664,0.524,0,0.0907 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0.564,0,0.0453 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0.742,0,0.136 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.228 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.145,0.145,0.767,0,0,0,0.421,0.554,0.0648,0,0,0.227 -0.667,0.141,0.141,0.4,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.14,0.14,0,0.45,0,0,0.421,0.554,0.0753,0.606,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.111,0,0.0907 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.317 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.136 -0.667,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.585,0.592,0.169,0,0,0.181 -0.667,0.187,0.187,0.767,0,0,0,0.614,0.588,0.232,0,0,0.166 -0.667,0.23,0.23,0.167,0,0,0,0.614,0.579,0.284,0,0,0.276 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0453 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.0167,0.15,0.421,0.562,0.0159,0,0,0.0878 -1,0.22,0.22,0,0,0.233,0.0667,0.807,0.512,0.0489,0,0.211,0.167 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0.293,0.0562 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0.359,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0.494,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0.32,0.35 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.153 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.168 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.0907 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.317 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.0453 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.181 -0.667,0.41,0.41,0.233,0,0,0,0.807,0.597,0.552,0,0,0.0907 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.0453 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.091 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.176 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.163 -1,0.351,0.351,0.0167,0,0,0,0.421,0.538,0.147,0,0,0.238 -1,0.335,0.335,0.917,0,0,0,0.421,0.538,0.163,0,0,0.0907 -0.667,0.232,0.232,0.233,0,0,0,0.421,0.546,0.12,0,0,0.0907 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.317 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.0453 -0.667,0.233,0.233,0.767,0,0,0,0.421,0.588,0.196,0,0,0.136 -0.667,0.242,0.242,1,0.25,0,0,0.421,0.614,0.24,0.171,0,0.227 -0.667,0.268,0.268,0.567,0.2,0,0,0.749,0.623,0.321,0.561,0,0.59 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.136 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.184 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0.0995 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.141 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0.102 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.478 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.0907 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0907 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.136 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.0453 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.0453 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.0907 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.212 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.276 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.272 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.0274 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0708,0,0,0.0822 -1,0.27,0.27,0.233,0,0,0,0.421,0.546,0.113,0,0,0.221 -1,0.362,0.362,0,0,0,0,0.421,0.538,0.212,0,0,0.433 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.227 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.181 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.274,0,0,0.0453 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.0907 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.0696 -1,0.338,0.338,0,0,0.517,0.45,0.421,0.64,0.481,0,0.166,0.451 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0.399,0.472 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0.695,0.259 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0.29,0.0907 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0.52,0.0825 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.17 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.275 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,0.233,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.323 -1,0.15,0.15,0.467,0,0,0,0.421,0.554,0.0595,0,0,0.271 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.308 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.0907 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.363 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.181 -0.667,0.23,0.23,0,0.45,0,0,0.421,0.563,0.159,0.495,0,0.0988 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.0907 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.272 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.0453 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.0453 -1,0.496,0.496,0.233,0,0,0,0.807,0.563,0.523,0,0,0.0907 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0755 -1,0.386,0.386,0.467,0,0,0,0.421,0.525,0.0903,0,0,0.206 -1,0.381,0.381,0,0,0,0,0.421,0.538,0.111,0,0,0.136 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0.267,0,0,0,0.421,0.546,0.103,0,0,0.134 -0.667,0.24,0.24,0.667,0,0,0,0.421,0.546,0.114,0,0,0.317 -0.333,0.141,0.141,0,0,0.517,0.633,0.421,0.554,0.0678,0,0.25,0 -0.667,0.23,0.23,0,0,0,0.283,0.421,0.546,0.135,0,0.284,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.583,0.181 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.465,0.227 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0.428,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0.616,0.317 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0.568,0.136 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0.642,0.181 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0.493,0.0907 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0.145,0.291 -1,0.554,0.554,0,0,0,0,1,0.512,0.47,0,0,0.0907 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0.0907 -1,0.0743,0.0743,0.467,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -1,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.183 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.157,0,0,0.0807 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.562,0.0846,0,0,0.136 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.272 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.136 -0.667,0.289,0.289,0.233,0.45,0,0,0.749,0.623,0.31,0.24,0,0.0907 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0.591,0,0.317 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.151 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.136 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.164 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0883 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.0838 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0907 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.317 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0.45,0,0,0.421,0.614,0.232,0.204,0,0.171 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0.455,0,0.737 -0.667,0.362,0.362,0.517,0,0,0,0.807,0.614,0.432,0,0,0.185 -0.667,0.462,0.462,0.2,0.45,0,0,0.807,0.597,0.532,0.305,0,0.793 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.674,0,0.136 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0.523,0,0.272 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.276 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.333,0.156,0.156,0.0167,0,0,0,0.421,0.554,0.0526,0,0,0 -0.667,0.256,0.256,0.217,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.136 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0453 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.136 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.136 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0453 -1,0.353,0.353,0.0167,0,0,0,0.421,0.64,0.339,0,0,0.118 -0.667,0.289,0.289,0.7,0,0,0,0.749,0.623,0.31,0,0,0.391 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.181 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.105 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.0591 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.533 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0.717,0,0,0,0.614,0.537,0.0295,0,0,0 -1,0.277,0.277,0.483,0.25,0,0,0.421,0.537,0.0684,0.136,0,0 -1,0.274,0.274,0.217,0.2,0,0,0.421,0.546,0.109,0.228,0,0.118 -1,0.37,0.37,0,0,0,0,0.421,0.538,0.205,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.244,0,0,0.0453 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0.211 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.287,0,0,0.0827 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.232,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.181 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.425 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.0907 -0.333,0.151,0.151,0.0167,0,0,0,0.421,0.588,0.167,0,0,0.0907 -0.667,0.289,0.289,0.217,0,0,0,0.749,0.623,0.37,0,0,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.136 -1,0.462,0.462,0.233,0,0,0,0.807,0.597,0.569,0,0,0.272 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0.271 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0.211 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.152 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0295,0,0,0 -0.667,0.163,0.163,0.767,0,0,0,0.421,0.549,0.0433,0,0,0 -0.667,0.274,0.274,0.917,0,0.5,0.4,0.421,0.546,0.109,0,0.0669,0 -0.667,0.263,0.263,0,0,0,0.267,0.421,0.546,0.142,0,0.288,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.169,0,0.23,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.181 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.227 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.317 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.26 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.109 -1,0.408,0.408,0,0,0.0167,0,0.912,0.653,0.546,0,0,0.181 -1,0.518,0.518,0,0,0.483,0.45,1,0.64,0.718,0,0.359,0.136 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0.281,0.0907 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.213 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.082 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.244 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.0548 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -1,0.263,0.263,0,0.45,0,0,0.421,0.546,0.0894,1,0,0.0907 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0.493,0,0.499 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0.439,0,0 -0.667,0.237,0.237,0.467,0,0,0,0.421,0.546,0.116,0,0,0.181 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0907 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0907 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.227 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.0453 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0453 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.227 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0.5,0.217,0.421,0.562,0.0159,0,0.0373,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0.315,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.49,0 -0.667,0.256,0.256,0.0167,0,0,0,0.421,0.546,0.0996,0,0.104,0 -0.667,0.245,0.245,1,0,0,0,0.421,0.546,0.11,0,0,0 -0.333,0.143,0.143,0.183,0,0,0,0.421,0.554,0.0657,0,0,0.453 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.181 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.0907 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.227 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0453 -1,0.353,0.353,0,0.683,0,0,0.421,0.64,0.339,0.676,0,0.417 -0.667,0.289,0.289,0,0.683,0,0,0.749,0.623,0.31,0.72,0,0.363 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.727,0,0.363 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0.383,0,0.0879 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.278 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.133 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.105 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0815 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.235 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.311 -0.667,0.156,0.156,0,0,0.5,0.4,0.421,0.554,0.0526,0,0.0541,0.227 -0.667,0.153,0.153,0,0,0,0.267,0.421,0.554,0.0577,0,0.559,0.363 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0.152,0.0907 -0.667,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.144,0.144,0.0167,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.151,0.151,0.45,0,0,0,0.421,0.588,0.124,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.136 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.0907 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.313 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.258 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.104 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.503 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.69 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.181 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0 -0.333,0.142,0.142,0.0167,0,0,0,0.421,0.554,0.0766,0,0,0.136 -0.667,0.236,0.236,0.45,0,0,0,0.421,0.563,0.153,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.136 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0907 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.189 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0453 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.227 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.298 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0.18 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.228 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.0981 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.181 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0907 -0.667,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.453 -0.667,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.272 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.342 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.18 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.091 -1,0.542,0.542,0,0,0.5,0.45,0.807,0.563,0.504,0,0.0772,0.161 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0.266,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.319 -0.667,0.099,0.099,0,0,0,0,0.807,0.495,0.0699,0,0,0.0907 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.383 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -0.667,0.274,0.274,0,0,0.25,0.4,0.421,0.546,0.109,0,0,0 -0.333,0.156,0.156,0,0,0,0.05,0.421,0.554,0.0803,0,0.356,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0.237,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.136 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.0907 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -1,0.236,0.236,0.233,0,0,0,0.421,0.563,0.29,0,0,0.0453 -1,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.0907 -1,0.151,0.151,0,0,0,0,0.421,0.588,0.167,0,0,0.0907 -1,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.0907 -1,0.362,0.362,0,0,0,0,0.807,0.614,0.485,0,0,0.136 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.136 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.0907 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0.45,0,0,0.421,0.549,0.0433,0.477,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0.131,0,0 -0.667,0.156,0.156,0.233,0,0,0,0.421,0.554,0.0803,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.0453 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,0.767,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0.433,0,0,0,0.421,0.554,0.125,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.0453 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.227 -1,0.353,0.353,0.0167,0,0,0,0.421,0.64,0.464,0,0,0.181 -1,0.408,0.408,0.7,0,0,0,0.912,0.653,0.546,0,0,0.0907 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.0907 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.317 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.492,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0488 -1,0.39,0.39,0.45,0,0,0,0.421,0.525,0.087,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.181 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.136 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.544 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.364 -0.667,0.462,0.462,0.267,0.683,0,0,0.807,0.597,0.532,0.535,0,0.189 -1,0.788,0.788,0.2,0,0,0,1,0.563,0.749,0.758,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0883 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.113 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.394 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0.169 -1,0.37,0.37,0,0,0,0,0.421,0.538,0.126,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.141,0,0,0.0907 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.157,0,0,0.317 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.165,0,0,0 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.187,0,0,0.136 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.0907 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.136 -0.667,0.239,0.239,0.233,0,0,0,0.421,0.588,0.19,0,0,0.0907 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.0907 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.136 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.136 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0907 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.499 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0.267,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0.683,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.144 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.238 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0.274 -1,0.37,0.37,0,0,0,0,0.421,0.538,0.126,0,0,0.136 -0.667,0.256,0.256,0,0,0.5,0.4,0.421,0.546,0.0996,0,0.0425,0.519 -0.667,0.245,0.245,0,0,0.0167,0.267,0.421,0.546,0.11,0,0.277,0.322 -0.667,0.237,0.237,0,0,0.483,0.9,0.421,0.546,0.116,0,0.263,0.0149 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0.389,0.136 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.7,0.181 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.5,0.363 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.0219,0.227 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.0907 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0453 -1,0.668,0.668,0,0.5,0,0,1,0.615,0.79,0.3,0,0.0453 -1,0.788,0.788,0,0.183,0,0,1,0.563,0.749,0.833,0,0 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.109 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.236 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.196 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.364 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0907 -0.667,0.245,0.245,0,0.25,0,0,0.421,0.546,0.11,0.103,0,0 -0.333,0.143,0.143,0,0.2,0,0,0.421,0.554,0.0657,0.709,0,0.316 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.187,0,0,0.144 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.398 -0.333,0.143,0.143,0,0,0.0167,0,0.421,0.562,0.0846,0,0,0.0819 -0.667,0.239,0.239,0.0167,0,0.483,0.667,0.421,0.588,0.19,0,0.421,0.227 -0.667,0.252,0.252,0.7,0,0,0,0.421,0.614,0.232,0,0.685,0.136 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.0721,0.181 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.272 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0.467,0,0,0,1,0.563,0.749,0,0,0.0907 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.19 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.139 -0.667,0.136,0.136,0.233,0,0,0,0.614,0.537,0.0316,0,0,0.109 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.127 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.263,0.263,0.767,0,0,0,0.421,0.546,0.0894,0,0,0.317 -0.667,0.256,0.256,1,0,0,0,0.421,0.546,0.0996,0,0,0.136 -0.667,0.245,0.245,1,0,0.5,0.65,0.421,0.546,0.11,0,0.122,0.0453 -0.667,0.237,0.237,1,0,0,0.467,0.421,0.546,0.116,0,0.459,0.0907 -0.667,0.235,0.235,0.567,0,0,0,0.421,0.546,0.13,0,0,0.0453 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.0453 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.562,0.0846,0,0,0.136 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0453 -0.667,0.252,0.252,0.0167,0,0,0,0.421,0.614,0.232,0,0,0 -1,0.408,0.408,0.217,0,0,0,0.912,0.653,0.457,0,0,0.136 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.136 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.0907 -0.667,0.542,0.542,0,0.45,0.267,0.15,0.807,0.563,0.504,0.483,0,0.254 -1,0.571,0.571,0,0,0.233,0.517,1,0.512,0.453,0.12,0.368,0.194 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0.266,0.185 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0181,0,0,0.0727 -1,0.222,0.222,0.217,0,0,0,0.807,0.512,0.0409,0,0,0.133 -1,0.277,0.277,0.233,0,0,0,0.421,0.537,0.0684,0,0,0.213 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.109,0,0,0.0785 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.211 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.291 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.268,0,0,0.416 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.287,0,0,0.0907 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.0453 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.0453 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.136 -0.667,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.272 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.37,0,0,0.0453 -1,0.518,0.518,0,0,0.5,0.65,1,0.64,0.718,0,0.149,0.0453 -1,0.462,0.462,0,0,0,0.0167,0.807,0.597,0.569,0,0.0708,0.0907 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.317 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0684,0,0,0 -0.667,0.274,0.274,0.467,0,0,0,0.421,0.546,0.109,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.0453 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.419 -0.667,0.235,0.235,0.233,0,0,0,0.421,0.546,0.232,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0,0,0.253 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.0907 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.227 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0,0.209 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.174 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.136 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.272,0,0,0.138 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0.528 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0.767,0,0,0,0.614,0.528,0.0236,0,0,0.0787 -1,0.136,0.136,0.667,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.124 -1,0.387,0.387,0.0167,0,0,0,0.421,0.538,0.107,0,0,0.33 -1,0.37,0.37,0.7,0,0.0167,0,0.421,0.538,0.126,0,0,0.343 -1,0.359,0.359,0,0,0.483,0.9,0.421,0.538,0.141,0,0.16,0.389 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.157,0,0.562,0.0453 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.385,0.317 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0.418,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.425,0.0907 -0.667,0.236,0.236,0.233,0,0,0,0.421,0.563,0.153,0,0.525,0.0453 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.322,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.0553,0.142 -0.667,0.289,0.289,0,0.45,0,0,0.749,0.623,0.31,0.357,0,0.57 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0.235,0,0 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.0907 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.227 -0.667,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.243 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.542 -1,0.163,0.163,0.0167,0,0,0,0.421,0.549,0.0396,0,0,0.171 -1,0.274,0.274,0.45,0,0,0,0.421,0.546,0.0764,0,0,0.149 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.363 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.181 -0.667,0.235,0.235,0,0,0.5,0.4,0.421,0.546,0.13,0,0.0541,0 -0.667,0.235,0.235,0.267,0,0,0.267,0.421,0.546,0.137,0,0.503,0.0453 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.153,0,0,0.0453 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.228 -0.667,0.252,0.252,0.133,0,0,0,0.421,0.614,0.232,0,0,0.0453 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.408 -0.667,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.0453 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.0453 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.363 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.525,0.087,0,0,0 -0.667,0.274,0.274,0,0,0.0167,0.15,0.421,0.546,0.0764,0,0,0.11 -0.667,0.263,0.263,0.233,0,0.233,0.517,0.421,0.546,0.0894,0,0.0888,0.0772 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.168 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.351 -0.667,0.237,0.237,0.267,0,0,0,0.421,0.546,0.116,0,0,0.0453 -0.667,0.235,0.235,0.45,0,0,0,0.421,0.546,0.13,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.445 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0453 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0907 -0.333,0.151,0.151,0,0,0.25,0.217,0.421,0.588,0.124,0,0.0553,0.265 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.0553,0.121 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0453 -1,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.241 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.227 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0586 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0692 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.158 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0918 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.164 -1,0.37,0.37,0,0,0,0,0.421,0.538,0.126,0,0,0.0747 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.141,0,0,0.0907 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.168 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.0907 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0.267,0.15,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0.45,0.233,0.0667,0.421,0.563,0.153,0.436,0.018,0.181 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0.666,0,0.0907 -0.667,0.252,0.252,0,0,0.5,0.4,0.421,0.614,0.232,0.718,0.0553,0.136 -0.667,0.289,0.289,0,0,0,0.05,0.749,0.623,0.31,0,0.344,0.181 -0.667,0.362,0.362,0,0,0.5,0.4,0.807,0.614,0.432,0,0.0444,0.227 -0.667,0.462,0.462,0,0,0,0.5,0.807,0.597,0.532,0,0.449,0.317 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0.582,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0.36,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.136 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -1,0.156,0.156,0.267,0,0,0,0.421,0.554,0.0526,0,0,0 -1,0.256,0.256,0.45,0,0,0,0.421,0.546,0.0996,0,0,0.195 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.0907 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.165,0,0,0.181 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.187,0,0,0.136 -1,0.327,0.327,0,0,0.5,0.217,0.421,0.538,0.198,0,0.0772,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.345,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.512,0.181 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0.32,0.181 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0.552,0.181 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0.537,0.136 -0.667,0.462,0.462,0.767,0,0,0,0.807,0.597,0.532,0,0.431,0.317 -1,0.542,0.542,1,0,0,0,0.807,0.563,0.504,0,0,0.0907 -0.667,0.223,0.223,0.15,0,0,0,0.614,0.545,0.161,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.222,0.222,0.767,0,0,0,0.807,0.512,0.0409,0,0,0 -0.333,0.0495,0.0495,1,0,0.517,0.15,0.421,0.562,0.0181,0,0.0425,0 -0.333,0.162,0.162,0.633,0,0.233,0.517,0.421,0.554,0.0636,0,0.295,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0.434,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0.324,0.317 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.511,0.0453 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.198,0,0.293,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.479,0.0453 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.526,0.0453 -1,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0.525,0.227 -1,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0.581,0.181 -0.667,0.151,0.151,0.233,0,0,0,0.421,0.588,0.167,0,0.585,0.363 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.546,0,0.441,0 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.193 -1,0.668,0.668,0,0,0.0167,0,1,0.615,0.844,0,0,0.208 -1,0.788,0.788,0,0.5,0.483,0.667,1,0.563,0.779,0.34,0.246,0 -1,0.223,0.223,0,0.183,0,0,0.614,0.545,0.176,0.46,0.0502,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0704 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0295,0,0,0.174 -0.667,0.163,0.163,0,0,0.0167,0,0.421,0.549,0.0433,0,0,0.106 -0.667,0.274,0.274,0,0,0.483,0.45,0.421,0.546,0.109,0,0.248,0.42 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0.517,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0.268,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.498,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0.447,0.195 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.345,0.0907 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.0907 -0.667,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.136 -0.667,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.405 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.194,0,0,0.227 -0.333,0.206,0.206,0.233,0,0,0,0.614,0.588,0.251,0,0,0.0453 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.569,0,0,0.0907 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.395 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0.187 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.163,0.163,0.683,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.314 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.189 -1,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.318 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.333,0.0495,0.0495,0,0,0.5,0.4,0.421,0.562,0.0159,0,0.0708,0.0907 -0.667,0.142,0.142,0,0,0,0.267,0.421,0.554,0.0766,0,0.472,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.557,0 -1,0.334,0.334,0.0167,0,0,0,0.421,0.602,0.276,0,0.438,0 -1,0.353,0.353,0.217,0,0,0,0.421,0.64,0.339,0,0.625,0.0907 -0.667,0.289,0.289,0.233,0,0,0,0.749,0.623,0.31,0,0.165,0.0907 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0.566,0.0907 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0.538,0.181 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0.497,0.136 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0.181,0.0453 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.272 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0.0907 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0928 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0.121 -1,0.37,0.37,0,0,0,0,0.421,0.538,0.126,0,0,0 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.141,0,0,0.131 -1,0.343,0.343,0.467,0,0,0,0.421,0.538,0.157,0,0,0.136 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.165,0,0,0.0848 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.181 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.181 -0.333,0.143,0.143,0.233,0,0,0,0.421,0.562,0.0846,0,0,0.136 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.181 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.317 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.181 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.0907 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.175 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.146 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.132 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.0946 -1,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.312 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.141,0,0,0.141 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.157,0,0,0.153 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.0453 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.317 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.181 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.136 -0.667,0.239,0.239,0.717,0,0,0,0.421,0.588,0.19,0,0,0.453 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.136 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.227 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0 -0.667,0.462,0.462,0.717,0.45,0,0,0.807,0.597,0.532,0.753,0,0.398 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.12,0,0.347 -1,0.571,0.571,0,0,0,0,1,0.512,0.453,0,0,0.0822 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.375 -1,0.099,0.099,0,0.45,0,0,0.807,0.495,0.059,0.767,0,0.239 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.138,0,0.0832 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.0453 -1,0.136,0.136,0.267,0,0,0,0.614,0.537,0.0316,0,0,0.123 -1,0.277,0.277,0.45,0.5,0,0,0.421,0.537,0.0633,0.26,0,0 -0.333,0.162,0.162,0.467,0.183,0,0,0.421,0.554,0.0461,0.394,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.0453 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.0453 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.376 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0.767,0,0,0,0.421,0.614,0.232,0,0,0.272 -0.667,0.289,0.289,0.433,0,0,0,0.749,0.623,0.31,0,0,0.181 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.0453 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.136 -1,0.788,0.788,0.767,0.25,0,0,1,0.563,0.749,0.166,0,0 -1,0.571,0.571,0.917,0.433,0,0,1,0.512,0.453,0.502,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.289 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0677 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.151 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.0956 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.238 -0.667,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.173 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.0907 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.136 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.272 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.0453 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.0453 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.0453 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.0907 -1,0.518,0.518,0.233,0,0,0,1,0.64,0.64,0,0,0.453 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.0453 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.0907 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.256 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.234 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.138 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.165 -1,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.0453 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.0453 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.136 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.227 -0.667,0.286,0.286,0.433,0,0,0,0.421,0.617,0.326,0,0,0.0907 -1,0.501,0.501,0.283,0,0,0,0.912,0.658,0.565,0,0,0.0907 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.181 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.0907 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.171 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.0661 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.16,0,0,0.135 -0.333,0.164,0.164,0.233,0,0,0,0.421,0.555,0.0826,0,0,0 -0.333,0.16,0.16,0.433,0,0,0,0.421,0.555,0.0961,0,0,0.0453 -0.333,0.154,0.154,1,0,0,0,0.421,0.555,0.104,0,0,0.136 -0,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0181,0,0,0.377 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.4 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.106 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.0453 -0.333,0.154,0.154,0.183,0,0,0,0.421,0.576,0.167,0,0,0.0907 -0.333,0.168,0.168,0.05,0,0,0,0.421,0.589,0.172,0,0,0.0453 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.103 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.238 -1,0.806,0.806,0.183,0,0,0,1,0.619,0.873,0,0,0.52 -1,0.584,0.584,0.533,0,0,0,0.807,0.566,0.543,0,0,0.144 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.217,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.402,0.402,0,1,0,0,0.421,0.529,0.09,0.742,0,0 -0.667,0.286,0.286,0,0.4,0,0,0.421,0.548,0.0788,0,0,0.131 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.227 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0907 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.272 -0.333,0.154,0.154,0.483,0,0,0,0.421,0.576,0.106,0,0,0.181 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.181 -0.667,0.351,0.351,0.233,0,0,0,0.749,0.626,0.32,0,0,0.227 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.181 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.227 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.317 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0478 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.172 -1,0.284,0.284,0.0167,0.25,0,0,0.421,0.54,0.0653,0.138,0,0.136 -0.667,0.286,0.286,0.217,0.717,0,0,0.421,0.548,0.0788,0.641,0,0.181 -1,0.392,0.392,0,0.2,0,0,0.421,0.542,0.131,0,0,0.217 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.0296 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.251,0.251,0,0,0.267,0.15,0.421,0.548,0.119,0,0,0.0453 -0.667,0.249,0.249,0,0,0.233,0.533,0.421,0.548,0.134,0,0.416,0.0453 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.613,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0.0553,0 -0.667,0.154,0.154,0.0167,0,0,0,0.421,0.576,0.106,0,0,0.13 -0.667,0.168,0.168,0.7,0,0,0,0.421,0.589,0.128,0,0,0.136 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.726 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0453 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.372 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.2 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.371 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.424 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.517,0,0,0,0.614,0.538,0.0323,0,0,0.165 -1,0.284,0.284,1,0.467,0,0,0.421,0.54,0.0653,0.65,0,0.0332 -1,0.286,0.286,0.417,0,0,0,0.421,0.548,0.0788,0.394,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0.479,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0.704,0,0.227 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.363 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.136 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -0.333,0.15,0.15,0.767,0,0.5,0.4,0.421,0.564,0.0871,0,0.0463,0 -0.667,0.259,0.259,0.45,0,0,0.283,0.421,0.591,0.196,0,0.317,0.181 -0.667,0.286,0.286,0.217,0,0,0,0.421,0.617,0.239,0,0,0.136 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.227 -1,0.656,0.656,0,1,0,0,1,0.645,0.662,0.894,0,0.317 -1,0.806,0.806,0,0.4,0,0,1,0.619,0.817,0,0,0.416 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.127 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0787 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.383 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.15 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.109 -1,0.286,0.286,0.2,0,0,0,0.421,0.548,0.0788,0,0,0.475 -0.333,0.164,0.164,0,0,0.5,0.4,0.421,0.555,0.0541,0,0.0521,0 -0.333,0.16,0.16,0,0,0,0.283,0.421,0.555,0.0593,0,0.465,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0.398,0.408 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0.593,0.317 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.418,0.0907 -0.667,0.149,0.149,0,0.7,0,0,0.421,0.555,0.0789,0.629,0.341,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0.782,0.0453 -0.333,0.154,0.154,0.233,0,0,0,0.421,0.576,0.106,0,0.203,0.0453 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.324 -0.667,0.351,0.351,0,0.7,0,0,0.749,0.626,0.32,0.53,0,0.128 -0.667,0.454,0.454,0.233,0,0,0,0.807,0.617,0.446,0,0,0.405 -1,0.806,0.806,0,0.7,0,0,1,0.619,0.817,0.451,0,0.0907 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0.51,0,0.418 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.284,0.284,0.517,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.168,0.168,0.45,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.16,0.16,0.0167,0,0,0,0.421,0.555,0.0593,0,0,0.0907 -0.667,0.259,0.259,0.7,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.408 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.181 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.136 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.0907 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.227 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.177 -0.667,0.351,0.351,0.267,0,0,0,0.749,0.626,0.32,0,0,0.217 -1,0.656,0.656,0.217,0,0,0,1,0.645,0.662,0,0,0.583 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.28 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0629 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0.0983 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.26 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0421,0,0,0.07 -1,0.284,0.284,0.683,0,0,0,0.421,0.54,0.0706,0,0,0 -1,0.404,0.404,0.0333,0,0,0,0.421,0.542,0.16,0,0,0 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.0907 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.0453 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.333,0.149,0.149,0,0.7,0,0,0.421,0.555,0.129,0.559,0,0.181 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0.578,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0.315,0,0.136 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.0453 -1,0.404,0.404,0.233,0,0,0,0.421,0.645,0.479,0,0,0.408 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.224 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.21 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.427 -1,0.851,0.851,0.183,0,0,0,1,0.568,0.806,0,0,0.211 -1,0.391,0.391,1,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0.583,0,0,0,0.614,0.533,0.0894,0,0,0.363 -1,0.0743,0.0743,0.233,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.239 -1,0.0781,0.0781,0,0,0.183,0.0667,0.614,0.529,0.0226,0,0,0 -0.667,0.139,0.139,0,0,0.317,1,0.614,0.538,0.0301,0,0.29,0.219 -0.667,0.167,0.167,0,0,0,1,0.421,0.551,0.0444,0,0.0463,0.0805 -0.667,0.168,0.168,0.433,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.278,0.278,0.05,0,0,0,0.421,0.548,0.147,0,0,0.0453 -0,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.227 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.349 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.227 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.0907 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.0907 -0.333,0.15,0.15,0,0,0.5,0.217,0.421,0.564,0.159,0,0.0927,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0.505,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0.371,0 -1,0.501,0.501,0,0.7,0,0,0.912,0.658,0.565,0.409,0.489,0.317 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0.387,0.0453 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.544,0.0453 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0.508,0.332 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.304,0.334 -1,0.183,0.183,0.417,0,0,0,0.807,0.505,0.161,0,0.378,0.0907 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0.49,0.0907 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0.362,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.154 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.111 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.326 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.181 -0.333,0.154,0.154,0,0.25,0,0,0.421,0.555,0.0646,0.111,0,0.0453 -0.667,0.251,0.251,0.717,0.217,0,0,0.421,0.548,0.119,0.282,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.227 -0.333,0.149,0.149,0,0,0.5,0.4,0.421,0.555,0.0789,0,0.00772,0.0453 -0.667,0.251,0.251,0,0,0,0.05,0.421,0.566,0.158,0,0.372,0.136 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0.49,0.0453 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.0907 -1,0.501,0.501,0,0.5,0,0,0.912,0.658,0.473,0.202,0,0.294 -1,0.454,0.454,0,0.2,0,0,0.807,0.617,0.446,0.328,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.272 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0.0541,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0749 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.457 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.294 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.263 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.312 -0.667,0.259,0.259,0.267,0,0,0,0.421,0.548,0.113,0,0,0.323 -0.667,0.251,0.251,0.7,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.333,0.149,0.149,0,0,0.5,0.217,0.421,0.555,0.0789,0,0.0476,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0.264,0.0907 -1,0.363,0.363,0.267,0,0,0,0.421,0.606,0.286,0,0.393,0.0907 -1,0.404,0.404,0.45,0,0,0,0.421,0.645,0.351,0,0.58,0.0907 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0.142,0.408 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.363 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.265 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.267 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0483 -1,0.107,0.107,0.483,0,0,0,0.807,0.497,0.0323,0,0,0.0933 -1,0.228,0.228,0,0,0,0,0.807,0.514,0.0488,0,0,0.277 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.0453 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.0453 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0907 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.181 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.0933 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.213 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.141 -0.667,0.259,0.259,0.483,0,0.5,0.65,0.421,0.591,0.196,0,0.112,0 -0.667,0.286,0.286,0,0,0,0.0333,0.421,0.617,0.239,0,0,0.0453 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.136 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.453 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.0453 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.125 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0.217,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.0907 -0.667,0.259,0.259,0,0,0.0167,0,0.421,0.548,0.113,0,0,0.0907 -0.667,0.251,0.251,0,0,0.483,0.217,0.421,0.548,0.119,0,0.0849,0.0453 -0.667,0.249,0.249,0.0167,0,0,0,0.421,0.548,0.134,0,0,0.0907 -0.667,0.249,0.249,0.217,0,0,0,0.421,0.548,0.142,0,0,0.181 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.136 -0.667,0.259,0.259,0.517,0,0,0,0.421,0.591,0.196,0,0,0.136 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.0907 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.32,0,0,0.136 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.0528 -1,0.806,0.806,1,0,0,0,1,0.619,0.817,0,0,0.404 -1,0.584,0.584,1,0,0,0,0.807,0.566,0.521,0,0,0.0453 -1,0.22,0.22,1,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.0926 -1,0.284,0.284,0.217,0,0,0,0.421,0.54,0.0653,0,0,0.134 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0.155 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.115 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.218 -0.333,0.154,0.154,0,0,0.267,0.15,0.421,0.555,0.0646,0,0,0.181 -0.667,0.251,0.251,0,0,0.233,0.0667,0.421,0.548,0.119,0,0.604,0.0453 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.489,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.492,0.0453 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.23,0,0.618,0.179 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0.443,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.227 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.537 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.334 -0.667,0.554,0.554,0,0.467,0,0,0.807,0.6,0.55,0.7,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.0453 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.311 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.227 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.131 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.136 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.0907 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.0453 -0.333,0.154,0.154,0.183,0,0,0,0.421,0.576,0.167,0,0,0.0453 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.172,0,0,0.0453 -1,0.501,0.501,0.0167,0.7,0,0,0.912,0.658,0.565,0.664,0,0.542 -1,0.656,0.656,0.233,0,0,0,1,0.645,0.743,0.202,0,0.152 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.0453 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.933,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.284,0.284,0.0333,0,0,0,0.421,0.54,0.0706,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.217 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.473 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.252 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.0907 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.0907 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.136 -0.667,0.259,0.259,0,0,0.75,0.567,0.421,0.591,0.315,0,0.353,0.0453 -0.667,0.286,0.286,0,0,0,0.117,0.421,0.617,0.326,0,0.736,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0.454,0.0907 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0.206,0.0666 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.136 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.194 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.317 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.138 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.116 -0.667,0.27,0.27,0.0167,0,0,0,0.421,0.548,0.103,0,0,0.619 -0.667,0.259,0.259,0.95,0,0,0,0.421,0.548,0.113,0,0,0.408 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.0453 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.227 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.136 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.0907 -0.667,0.154,0.154,0.0167,0,0,0,0.421,0.576,0.106,0,0,0.136 -0.667,0.168,0.168,0.467,0,0,0,0.421,0.589,0.128,0,0,0.136 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.227 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0907 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.139 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.198 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.127 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.272 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0453 -0.667,0.259,0.259,0.0167,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.667,0.251,0.251,1,0,0,0,0.421,0.548,0.119,0,0,0.272 -0.667,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.0495,0.0495,1,0,0.0167,0,0.421,0.562,0.0159,0,0,0.0453 -0.333,0.0495,0.0495,1,0,0.483,0.9,0.421,0.562,0.0159,0,0.36,0 -0.667,0.259,0.259,1,0,0,0.0167,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.0907 -0.667,0.351,0.351,0.5,0,0,0,0.749,0.626,0.32,0,0,0.0546 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.25 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.544 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.136 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.217,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.104 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.204 -1,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.329 -1,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.32 -1,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.0453 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.0453 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.408 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.317 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.0453 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.0453 -0.667,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.317 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.317 -0.667,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.21 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.17 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.244 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.667,0.167,0.167,0.45,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0.5,0.4,0.421,0.562,0.0159,0,0.0541,0 -0.333,0.16,0.16,0,0,0,0.283,0.421,0.555,0.0593,0,0.671,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0.366,0.181 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0.499,0.0907 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0.394,0.136 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0.559,0.0453 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0.331,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.136 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.499 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0.467,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.139,0.139,0,0,0.0167,0,0.614,0.538,0.0323,0,0,0.124 -1,0.284,0.284,0,0,0.483,0.45,0.421,0.54,0.0653,0,0.183,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.399,0.136 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0.265,0.136 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0.658,0.321 -0.667,0.259,0.259,0.517,0,0,0,0.421,0.548,0.113,0,0.438,0.227 -0.667,0.251,0.251,1,0,0,0,0.421,0.548,0.119,0,0,0.0907 -0.667,0.249,0.249,0.167,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.363 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.0907 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.227 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.0907 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.201 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.22 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.154 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0.125 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0226,0,0,0 -0.667,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0.12 -0.667,0.284,0.284,0.05,0,0,0,0.421,0.54,0.0706,0,0,0.0453 -0.667,0.286,0.286,0.233,0,0,0,0.421,0.548,0.113,0,0,0.109 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.338 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.0453 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.0453 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.272 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.408 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.181 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.136 -1,0.656,0.656,0.717,0,0,0,1,0.645,0.743,0,0,0.0453 -1,0.806,0.806,0,0.167,0,0,1,0.619,0.873,0.134,0,0.181 -1,0.851,0.851,0,0.3,0,0,1,0.568,0.806,0.69,0,0.0453 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0.587,0,0.272 -1,0.116,0.116,0.0167,0,0,0,0.614,0.533,0.0894,0.329,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0.3,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.139,0.139,0.05,0,0,0,0.614,0.538,0.0301,0,0,0.136 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.0956 -1,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.168 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.375 -1,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.0875 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.0453 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.181 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.0453 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.0907 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.23 -0.333,0.168,0.168,0.683,0,0,0,0.421,0.589,0.172,0,0,0.156 -0.667,0.351,0.351,0.517,0,0,0,0.749,0.626,0.383,0,0,0.227 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.274 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.161 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.353 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -1,0.116,0.116,0.217,0,0,0,0.614,0.533,0.0894,0.312,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.167 -0.667,0.167,0.167,0.0167,0,0.5,0.217,0.421,0.551,0.0406,0,0.0553,0.136 -1,0.286,0.286,0.467,0,0,0,0.421,0.548,0.0788,0,0.196,0.0755 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.128 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.134 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.0453 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.136 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.0907 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0907 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.363 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.317 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0,0,0.0453 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.0907 -0.333,0.252,0.252,0,0,0,0,0.614,0.589,0.231,0,0,0.0453 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.13 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.193 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.15 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.0817 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.0634 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.185 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.0971 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.63 -1,0.278,0.278,0,0,0.25,0.9,0.421,0.548,0.0923,0,0.149,0.893 -1,0.27,0.27,0,0,0,0.0167,0.421,0.548,0.103,0,0.389,0 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.162,0,0.495,0.272 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.171,0,0.473,0 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.194,0,0.495,0.261 -1,0.349,0.349,0,0,0,0,0.421,0.542,0.205,0,0.421,0.12 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.23,0,0.515,0.494 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0.439,0.317 -0.333,0.168,0.168,0,0.25,0,0,0.421,0.589,0.128,0.155,0,0.0453 -0.333,0.2,0.2,0,0.217,0,0,0.585,0.594,0.168,0.692,0,0.272 -0.667,0.454,0.454,0.233,0,0,0,0.807,0.617,0.446,0,0,0.272 -1,0.806,0.806,0,0,0.25,0.65,1,0.619,0.817,0,0.0631,0.17 -1,0.851,0.851,0,0,0,0.0333,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.114 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.203 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.227 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.48 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.082 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0.0907 -0.333,0.154,0.154,0.0167,0,0,0,0.421,0.555,0.0646,0,0,0.0453 -0.333,0.15,0.15,0.467,0,0,0,0.421,0.555,0.0676,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.0907 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.0907 -0.333,0.15,0.15,0.233,0,0,0,0.421,0.564,0.0871,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.363 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.0907 -1,0.501,0.501,0,0.25,0,0,0.912,0.658,0.473,0.0906,0,0.136 -1,0.656,0.656,0,0.45,0,0,1,0.645,0.662,0.538,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.0907 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.483,0.25,0,0,0.421,0.562,0.0159,0.117,0,0 -1,0.286,0.286,0,0.45,0,0,0.421,0.548,0.0788,0.361,0,0.105 -1,0.392,0.392,0,0.5,0,0,0.421,0.542,0.131,0.28,0,0.202 -1,0.381,0.381,0,0.2,0,0,0.421,0.542,0.146,0.814,0,0.109 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0.571,0,0.0453 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.0907 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.272 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.227 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.0907 -0.667,0.259,0.259,0,0.467,0,0,0.421,0.591,0.196,0.225,0,0.136 -0.333,0.168,0.168,0,0,0,0,0.421,0.589,0.128,0.256,0,0.272 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.168,0,0,0.227 -0.333,0.252,0.252,0,0,0.5,0.45,0.614,0.589,0.231,0,0.215,0.408 -0.333,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0.628,0.249 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0.493,0.23 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0812 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.0453 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.0907 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.136 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.0453 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.251,0.251,0.0167,0,0,0,0.421,0.566,0.158,0,0,0.181 -0.667,0.259,0.259,0.217,0,0,0,0.421,0.591,0.196,0,0,0.136 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.136 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.131 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.348 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.181 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.0453 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.0907 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0.75,0.567,0.421,0.562,0.0181,0,0.199,0 -1,0.139,0.139,0,0,0,0.35,0.614,0.538,0.0301,0,0.152,0.165 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0706,0,0,0.151 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0.38 -1,0.392,0.392,0,0,0,0,0.421,0.542,0.212,0,0,0.755 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.252,0,0,0.395 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.0712 -0.333,0.15,0.15,0,0,0.433,0.317,0.421,0.555,0.111,0,0,0.0907 -0.333,0.149,0.149,0,0,0.0667,0.6,0.421,0.555,0.129,0,0.647,0.181 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0.263,0.0453 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.0453 -0.667,0.259,0.259,0.483,0.167,0,0,0.421,0.591,0.315,0.162,0,0 -1,0.404,0.404,0,0.717,0,0,0.421,0.645,0.479,0.526,0,0 -1,0.501,0.501,0,0.283,0,0,0.912,0.658,0.565,0.666,0,0.227 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.232 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.155 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.0679 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0664 -0.667,0.0495,0.0495,0.233,0,0,0,0.421,0.562,0.0181,0,0,0.238 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.16,0,0,0.086 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.157 -1,0.364,0.364,0.933,0,0,0,0.421,0.542,0.277,0,0,0.125 -0.667,0.251,0.251,0.0333,0,0,0,0.421,0.548,0.204,0,0,0.383 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0.0453 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.0907 -1,0.351,0.351,0,0,0,0,0.421,0.568,0.441,0,0,0.0907 -0.667,0.259,0.259,0.183,0,0,0,0.421,0.591,0.315,0,0,0.181 -0.667,0.286,0.286,0.783,0,0,0,0.421,0.617,0.326,0,0,0.227 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.0453 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.0692 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.15 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.265 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0,0.427 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.127 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.25,0,0,0,0.421,0.562,0.0159,0,0,0.412 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.227 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0969 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0.5,0,0,0.14,0.64,0.139,0.296,0,0.227 -0.667,0.294,0.294,0.767,0.233,0,0,0.14,0.671,0.172,0.563,0,0.0907 -0.667,0.35,0.35,0.733,0,0,0,0.14,0.702,0.21,0,0,0.181 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.127 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.227 -0.667,0.62,0.62,0.5,0,0,0,0.14,0.681,0.481,0,0,0.136 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.317 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.265 -1,0.249,0.249,0,0,0,0,0,0.571,0.177,0,0,0.3 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.0167,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0.45,0.933,0.281,0.57,0.0296,0,0.236,0 -1,0.172,0.172,0.267,0,0,0.0167,0.281,0.585,0.0368,0,0.36,0 -0.667,0.175,0.175,0.233,0,0,0,0.281,0.591,0.0427,0,0.493,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0.649,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0.402,0.302 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0.313,0.394 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0.353,0.0135 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0.511,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0.543,0 -0.667,0.274,0.274,0.0167,0,0,0,0.14,0.64,0.139,0,0.474,0.0453 -0.667,0.294,0.294,0.733,0,0,0,0.14,0.671,0.172,0,0.394,0.0453 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.42,0.227 -0.667,0.453,0.453,0.0167,0,0,0,0.14,0.712,0.28,0,0.334,0.272 -1,0.829,0.829,0.233,0,0,0,0,0.772,0.578,0,0.494,0.227 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0.382,0.0453 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.459,0.357 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.139 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.308 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.139 -1,0.301,0.301,0,0.733,0,0,0.14,0.62,0.0695,0.547,0,0.194 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0.5,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0453 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.333,0.2,0.2,0.517,0,0.467,0.433,0.281,0.632,0.113,0,0.0746,0.181 -0.667,0.453,0.453,0.233,0,0,0.267,0.14,0.712,0.28,0,0.554,0.408 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0.512,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0.562,0.146 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.227 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.206 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0.267,0,0.467,0.433,0.281,0.57,0.0296,0,0.0116,0 -0.667,0.172,0.172,0.483,0,0,0.267,0.281,0.585,0.0368,0,0.323,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0.349,0.282 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0.359,0.151 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0.326,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0.402,0.181 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.0907 -0.667,0.274,0.274,0,0,0.267,0.183,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0.2,0.517,0.14,0.671,0.172,0,0.535,0.317 -0.667,0.35,0.35,0.517,0,0,0,0.14,0.702,0.21,0,0.396,0.181 -1,0.655,0.655,0.233,0.483,0,0,0,0.788,0.413,0.268,0.468,0.272 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0.573,0.3,0.227 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0.362,0,0.136 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0453 -1,0.51,0.51,0,0.5,0,0,0,0.618,0.409,0.254,0,0 -1,0.0495,0.0495,0,0.233,0,0,0.421,0.562,0.0159,0.533,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.175,0.175,0.5,0,0.517,0,0.281,0.591,0.0427,0,0.018,0 -1,0.299,0.299,0,0,0.667,0.233,0.14,0.62,0.0813,0,0.508,0 -1,0.411,0.411,0,0.733,0,0,0,0.649,0.128,0.535,0.366,0 -1,0.394,0.394,0.767,0,0,0,0,0.649,0.142,0,0.416,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.62,0.105,0,0.37,0.0907 -0.667,0.269,0.269,0.483,0,0,0,0.14,0.62,0.118,0,0.398,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0.269,0.181 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0.462,0.136 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.317 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.181 -0.333,0.251,0.251,0.0167,0,0,0,0.281,0.637,0.148,0,0,0.136 -1,0.829,0.829,1,0,0,0,0,0.772,0.578,0,0,0.128 -1,0.905,0.905,1,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0.233,0,0,0,0,0.679,0.676,0,0,0.363 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.224 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0.43 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0.75,0.5,0,0,0.281,0.591,0.0737,0.27,0,0 -0.333,0.0495,0.0495,0,0.233,0,0,0.421,0.562,0.0181,0.366,0,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.227 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.0453 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0.136 -0.333,0.251,0.251,0.0167,0,0,0,0.281,0.637,0.177,0,0,0.371 -0.667,0.569,0.569,0.233,0,0,0,0.14,0.702,0.438,0,0,0.181 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.272 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.247,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0403,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0 -0.667,0.299,0.299,0,0.733,0,0,0.14,0.62,0.129,0.585,0,0.116 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.236 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.0453 -0.333,0.16,0.16,0.267,0,0,0,0.281,0.591,0.0986,0,0,0 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.62,0.21,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.0907 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.136 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.0907 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0.227 -0.667,0.453,0.453,0.5,0,0,0,0.14,0.712,0.335,0,0,0.0453 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.0453 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.136 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.227 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0702 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.312 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.236 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.456 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.0453 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.333,0.172,0.172,0.25,0,0,0,0.281,0.616,0.0938,0,0,0.0453 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.181 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.615 -0.333,0.309,0.309,0,0.25,0,0,0.281,0.632,0.203,0.131,0,0.139 -0.667,0.62,0.62,0,0.233,0,0,0.14,0.681,0.481,0.514,0,0.212 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0.545,0,0 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.237 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.0453 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0152,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.172,0.172,0.25,0,0,0,0.281,0.585,0.0368,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -1,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.0907 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.233 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.0453 -0.667,0.162,0.162,0,0,0.467,0.683,0.281,0.601,0.0774,0,0.156,0 -0.667,0.294,0.294,0.25,0,0,0.267,0.14,0.671,0.172,0,0.546,0.227 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.402,0.181 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.136 -1,0.829,0.829,0.0167,0,0,0,0,0.772,0.578,0,0,0.227 -1,0.905,0.905,0.233,0,0,0,0,0.741,0.713,0,0,0.0453 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0875 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.167 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.247 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.18 -1,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0453 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.0453 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0907 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.0453 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.0907 -0.667,0.294,0.294,0,0,0.0167,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0.45,0.233,0.14,0.702,0.21,0,0.245,0.136 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0.353,0.84 -0.667,0.309,0.309,0,0.483,0,0,0.281,0.632,0.203,0.605,0,0.227 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.295,0.295,0,0.483,0,0,0.14,0.609,0.0577,0.786,0,0 -0.333,0.175,0.175,0,0,0.0167,0.167,0.281,0.591,0.0427,0.82,0,0.106 -0.667,0.299,0.299,0,0,0.217,0.0667,0.14,0.62,0.0813,0.68,0.242,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0.155,0.246,0.272 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.136 -0.333,0.16,0.16,0.517,0,0,0,0.281,0.591,0.0604,0,0,0.136 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.62,0.118,0,0,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.0907 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.0907 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.272 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.272 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0907 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.0907 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.14,0.558,0.0197,0,0,0 -1,0.11,0.11,0,0,0,0,0.14,0.558,0.0289,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0478 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.196 -0.667,0.301,0.301,0,0.25,0,0,0.14,0.62,0.0695,0.155,0,0 -0.667,0.299,0.299,0,0.233,0,0,0.14,0.62,0.0813,0.423,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.187 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.361 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.227 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.136 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.333,0.2,0.2,0.517,0,0,0,0.281,0.632,0.113,0,0,0.347 -1,0.655,0.655,0.233,0.5,0,0,0,0.788,0.413,0.287,0,0.471 -0.667,0.569,0.569,0,0.233,0,0,0.14,0.702,0.39,0.369,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0453 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.103 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.279 -1,0.143,0.143,0.517,0,0,0,0.281,0.57,0.0278,0,0,0.0722 -1,0.295,0.295,0.233,0,0,0,0.14,0.609,0.0624,0,0,0.133 -1,0.301,0.301,0.0167,0,0,0,0.14,0.62,0.0991,0,0,0.0903 -1,0.299,0.299,0.233,0,0,0,0.14,0.62,0.129,0,0,0.0907 -1,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.272 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.136 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.0907 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.136 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.543 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.136 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0.136 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.177,0,0,0.0453 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0.181 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.0453 -1,0.356,0.356,0,0,0.767,0,0.14,0.599,0.302,0,0.203,0.0453 -1,0.0495,0.0495,0,0,0.417,0.233,0.421,0.562,0.0181,0,0.065,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0395 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.0664 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.153 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.306 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.193 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.0453 -0.333,0.172,0.172,0,0,0.0167,0,0.281,0.616,0.147,0,0,0 -1,0.501,0.501,0.25,0.483,1,0.217,0,0.772,0.419,0.667,0.23,0 -1,0.655,0.655,0,0,0.167,0.967,0,0.788,0.493,0.449,0.229,0.136 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0.454,0.227 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.452,0.294 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.567 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.136 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.0907 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.285 -1,0.0495,0.0495,0.0167,0,0,0,0.14,0.558,0.0145,0,0,0.282 -1,0.0506,0.0506,0.233,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.214 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.105 -1,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.0907 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0453 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.0907 -0.667,0.164,0.164,0,0,0.267,0.183,0.281,0.591,0.0577,0,0,0 -0.667,0.16,0.16,0,0,0.2,0.05,0.281,0.591,0.0604,0,0.374,0.0907 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.383,0.0907 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0.474,0.0907 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.517,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.0907 -0.667,0.453,0.453,0,0.483,0,0,0.14,0.712,0.28,0.277,0,0.181 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0.0889,0,0.125 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.644 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0147 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.276 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.143 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.0526 -0.333,0.174,0.174,0.25,0,0,0,0.281,0.591,0.0486,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.136 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.363 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0907 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.139,0,0,0.181 -0.667,0.294,0.294,1,0.5,0,0,0.14,0.671,0.172,0.368,0,0.0453 -0.667,0.35,0.35,1,0.733,0,0,0.14,0.702,0.21,0.732,0,0 -0.333,0.251,0.251,1,0.233,0,0,0.281,0.637,0.148,0.674,0,0.123 -1,0.829,0.829,0.25,0,0,0,0,0.772,0.578,0.474,0,0.21 -1,0.905,0.905,0,0,0.267,0.183,0,0.741,0.713,0,0,0.517 -1,0.821,0.821,0,0,0.2,0.517,0,0.679,0.676,0,0.412,0.317 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0.368,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0.25,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.0495,0.0495,0,0,0.0167,0,0.421,0.562,0.0159,0,0,0 -1,0.424,0.424,0,0,0.45,0.467,0,0.649,0.114,0,0.203,0.0907 -1,0.411,0.411,0,0,0,0,0,0.649,0.128,0,0.739,0.408 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0.328,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0.395,0 -0.667,0.269,0.269,0,0,0.467,0.683,0.14,0.62,0.118,0,0.248,0 -0.667,0.269,0.269,0,0,0,0.267,0.14,0.62,0.125,0,0.356,0.136 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.201,0.0907 -0.667,0.294,0.294,0.5,0,0.0167,0,0.14,0.671,0.172,0,0,0.0453 -1,0.501,0.501,0,0,0.45,0.7,0,0.772,0.307,0,0.282,0.272 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.181 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.0907 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0907 -1,0.821,0.821,0.767,0,0,0,0,0.679,0.676,0,0,0 -1,0.51,0.51,0.483,0,0,0,0,0.618,0.409,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.382 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.197 -1,0.172,0.172,0.75,0,0,0,0.281,0.585,0.0368,0,0,0.132 -1,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0,0.293 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.272 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.0907 -0.667,0.159,0.159,0.5,0,0,0,0.281,0.591,0.0669,0,0,0.227 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.272 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.181 -1,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0 -1,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.0453 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0907 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.136 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.255 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0,0.0775 -1,0.411,0.411,0,0,0,0,0,0.649,0.128,0,0,0.102 -0.333,0.164,0.164,0.267,0,0,0,0.281,0.591,0.0577,0,0,0.249 -0.667,0.271,0.271,0.483,0,0,0,0.14,0.62,0.105,0,0,0.525 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.363 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0453 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.222 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.136 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.136 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.227 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.0453 -0.667,0.564,0.564,0.0167,0,0,0,0.14,0.64,0.456,0,0,0.0453 -1,0.356,0.356,0.733,0,0,0,0.14,0.599,0.278,0,0,0.181 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.149 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.208 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.331 -0.667,0.279,0.279,0,0,0.0167,0,0.14,0.62,0.167,0,0,0.0954 -1,0.382,0.382,0.5,0,0.45,0.233,0,0.649,0.259,0,0.477,0.338 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0.196,0.0907 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.499 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.272 -0.667,0.35,0.35,0,0,0.0167,0,0.14,0.702,0.285,0,0,0.0453 -0.667,0.453,0.453,0,0,0.45,0.233,0.14,0.712,0.335,0,0.329,0.0453 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0.221,0.0907 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.136 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.2 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.3 -1,0.301,0.301,0,0.5,0,0,0.14,0.62,0.0991,0.261,0,0.0742 -0.667,0.174,0.174,0,0.233,0,0,0.281,0.591,0.0737,0.564,0,0.215 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0.477,0,0 -0.667,0.279,0.279,0.267,0,0,0,0.14,0.62,0.167,0,0,0.0907 -0.333,0.16,0.16,0.233,0,0,0,0.281,0.591,0.0986,0,0,0.227 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.0907 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.0907 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.14,0,0,0.227 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.136 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.0907 -1,0.569,0.569,0.25,0,0,0,0.14,0.702,0.438,0,0,0.158 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.371 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.5 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.317 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.04 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.139 -1,0.0798,0.0798,0.25,0,0,0,0.281,0.56,0.0224,0,0,0.182 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.374 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.237 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.369 -1,0.424,0.424,0,0,0,0,0,0.649,0.114,0,0,0.391 -1,0.411,0.411,0,0,0,0,0,0.649,0.128,0,0,0.163 -1,0.394,0.394,0.0167,0,0.467,0.433,0,0.649,0.142,0,0.0412,0.0453 -1,0.382,0.382,0.483,0,0,0.267,0,0.649,0.149,0,0.624,0.289 -1,0.378,0.378,0,0,0,0,0,0.649,0.169,0,0.297,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.179,0,0.519,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0.544,0 -0.333,0.172,0.172,0.267,0,0,0,0.281,0.616,0.0938,0,0.319,0 -0.667,0.35,0.35,0.233,0,0,0,0.14,0.702,0.21,0,0.403,0.136 -0.667,0.453,0.453,0.25,0,0,0,0.14,0.712,0.28,0,0.385,0.0907 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.0907 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0453 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.172,0.172,0,0.733,0,0,0.281,0.585,0.0368,0.57,0,0.163 -1,0.427,0.427,0.25,0,0,0,0,0.649,0.0963,0.319,0,0.141 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0453 -1,0.394,0.394,0,0,0,0,0,0.649,0.142,0,0,0.0907 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.136 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.308 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.279 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0.5,0,0,0,0.14,0.671,0.172,0,0,0.0978 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.295 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.133 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.488 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.323 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.181 -0.667,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.217 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.206 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.136 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.168 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.305 -0.667,0.269,0.269,0,0.733,0,0,0.14,0.62,0.118,0.706,0,0.0883 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.181 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.181 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.136 -0.333,0.2,0.2,0,0,0,0,0.281,0.632,0.113,0,0,0.136 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0907 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.272 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.0907 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.181 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.0473 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.238 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.302 -1,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.317 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.0453 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0907 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.0907 -0.667,0.269,0.269,0.767,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0.483,0,0,0,0.14,0.62,0.125,0,0,0.136 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0453 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.136 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.181 -0.667,0.453,0.453,0,0.483,0,0,0.14,0.712,0.28,0.721,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0.772,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0.402,0,0.198 -1,0.821,0.821,0.5,0.483,0,0,0,0.679,0.676,0.319,0,0.227 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0.676,0,0.287 -0.667,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -0.667,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -0.667,0.143,0.143,0.0167,0,0,0,0.281,0.57,0.0296,0,0,0.0586 -0.667,0.0495,0.0495,0.733,0.5,0.0167,0,0.421,0.562,0.0159,0.282,0,0 -0.667,0.301,0.301,0.25,0.233,0.45,0.7,0.14,0.62,0.0695,0,0.23,0.181 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.293,0.0453 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.181 -0.667,0.269,0.269,0.25,0.25,0,0,0.14,0.62,0.125,0.176,0,0.0453 -0.333,0.162,0.162,0,0.233,0,0,0.281,0.601,0.0774,0.639,0,0.136 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0.209,0,0.0907 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.0453 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.227 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.408 -0.333,0.335,0.335,0,0,0,0,0.281,0.621,0.248,0,0,0.0907 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0453 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.0672 -1,0.249,0.249,0,0,0,0,0,0.571,0.177,0,0,0.09 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0586 -1,0.417,0.417,0.5,0,0,0,0,0.633,0.0845,0,0,0.192 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0.0918 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.0453 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.0453 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.0453 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.181 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.136 -1,0.501,0.501,0,0.483,0,0,0,0.772,0.419,0.216,0,0.0907 -1,0.655,0.655,0,0,0.467,0.233,0,0.788,0.493,0.638,0.245,0.491 -1,0.829,0.829,0,0.483,0,0,0,0.772,0.649,0.214,0.423,0.181 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0.516,0.201,0.103 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0,0.53 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.405 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0.25,0.733,0,0,0.281,0.56,0.0193,0.479,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0278,0,0,0.227 -1,0.295,0.295,0,0.25,0,0,0.14,0.609,0.0624,0.111,0,0.141 -1,0.427,0.427,0,0.233,0,0,0,0.649,0.14,0.491,0,0.148 -1,0.424,0.424,0,0,0,0,0,0.649,0.185,0.787,0,0.495 -1,0.411,0.411,0,0,0,0,0,0.649,0.22,0.517,0,0.415 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.298 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.197 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.226 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.0453 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -0.333,0.172,0.172,0.0167,0,0,0,0.281,0.616,0.147,0,0,0.231 -0.667,0.35,0.35,0.983,0.733,0.467,0.233,0.14,0.702,0.285,0.571,0.0772,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0.477,0.0907 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0.405,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0.59,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0.437,0.248 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0.299,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.148 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.169 -1,0.301,0.301,0,0,0.0167,0,0.14,0.62,0.0695,0,0,0.132 -0.667,0.174,0.174,0,0,0.45,0.933,0.281,0.591,0.0486,0,0.223,0 -0.667,0.17,0.17,0,0,0,1,0.281,0.591,0.0532,0,0.605,0.0907 -0.667,0.279,0.279,0,0.733,0,0.2,0.14,0.62,0.0996,0.737,0.695,0.0453 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0.12,0.375,0.136 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0.616,0.0907 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0.438,0.272 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0.481,0.0453 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0.618,0.0453 -0.333,0.2,0.2,0.5,0,0,0,0.281,0.632,0.113,0,0.457,0.0907 -0.667,0.453,0.453,0,0.25,0,0,0.14,0.712,0.28,0.0923,0,0.32 -1,0.829,0.829,0,0.233,0,0,0,0.772,0.578,0.352,0,0.085 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.212 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.469 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0.267,0,0,0,0.281,0.57,0.0296,0,0,0.145 -0.333,0.172,0.172,0.233,0,0,0,0.281,0.585,0.0368,0,0,0.157 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,0.25,0,0,0,0.14,0.62,0.0813,0,0,0.317 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.227 -0.667,0.279,0.279,0.5,0,0,0,0.14,0.62,0.0996,0,0,0.363 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -1,0.378,0.378,0,0,0,0,0,0.649,0.169,0,0,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.179,0,0,0.136 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.136 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.0907 -0.667,0.569,0.569,0,0,0.0167,0,0.14,0.702,0.39,0,0,0.181 -1,0.905,0.905,0,0,0.45,0.233,0,0.741,0.713,0,0.26,0.136 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0.565,0.136 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0.111,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.251 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.136 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.0453 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0907 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.272 -0.667,0.35,0.35,0.5,0,0,0,0.14,0.702,0.21,0,0,0.227 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.227 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.317 -0.667,0.62,0.62,0.25,0.483,0,0,0.14,0.681,0.481,0.357,0,0.408 -0.667,0.564,0.564,0,0.483,0,0,0.14,0.64,0.456,0.726,0,0.132 -0.667,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0.549,0,0.0453 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.0863 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.11 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.181 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0453 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0,0.517,0,0,0.14,0.639,0.138,0.62,0,0.0453 -0.667,0.425,0.425,0.383,0,0,0,0.14,0.67,0.17,0.31,0,0.136 -0.333,0.301,0.301,0.433,0,0,0,0.281,0.631,0.112,0,0,0.317 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0.0453 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0.0907 -0.667,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.136 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.505 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0873 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.358 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.219 -0.667,0.321,0.321,0.633,0,0,0,0.14,0.618,0.0807,0,0,0.272 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.0898,0,0,0.136 -0.667,0.3,0.3,0.833,0,0,0,0.14,0.618,0.0989,0,0,0.136 -0.333,0.171,0.171,0,0.117,0,0,0.281,0.59,0.06,0,0,0.0907 -0.333,0.169,0.169,0,0.4,0,0,0.281,0.59,0.0665,0.742,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0.566,0,0.0453 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0.176,0,0.136 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.227 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0 -0.667,0.647,0.647,0,0.517,0,0,0.14,0.711,0.278,0.544,0,0.0453 -0.667,0.629,0.629,0.383,0,0,0,0.14,0.7,0.387,0.672,0,0.0453 -1,0.747,0.747,0.7,0,0,0,0,0.739,0.708,0.387,0,0.181 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0907 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.237 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.0907 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.0498 -1,0.177,0.177,0.267,0,0,0,0.281,0.585,0.04,0,0,0.173 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.0864 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.128,0,0,0.956 -1,0.443,0.443,0,0,0,0,0,0.647,0.218,0,0,0.181 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.0453 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.0907 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.0453 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.136 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.317 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.0907 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.363 -0.667,0.647,0.647,0.267,0,0,0,0.14,0.711,0.332,0,0,0.272 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.181 -1,0.747,0.747,0,0.783,0,0,0,0.739,0.756,0.62,0,0.38 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.256 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0777 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0898 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.13 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.197 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.182 -1,0.443,0.443,0,0,0,0,0,0.647,0.218,0,0,0.109 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.247 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.363 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0.667,0.301,0.301,0.767,0,0,0,0.281,0.631,0.15,0,0,0.363 -1,0.946,0.946,0.05,0,0,0,0,0.785,0.489,0,0,0.363 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.16 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.499 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.0907 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0.117,0,0,0.421,0.562,0.0159,0,0,0.172 -1,0.305,0.305,0,0.4,0,0,0.14,0.608,0.0573,0.786,0,0 -0.667,0.184,0.184,0,0,0.467,0.25,0.281,0.59,0.0424,0.78,0.00386,0.255 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0.179,0.227,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.2 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.484 -1,0.413,0.413,0.533,0,0.383,0.25,0,0.647,0.148,0,0,0.309 -1,0.409,0.409,0,0,0.0833,0,0,0.647,0.168,0,0.17,0.133 -1,0.421,0.421,0.133,0,0,0,0,0.647,0.177,0,0.163,0.172 -1,0.482,0.482,0.4,0,0,0,0,0.677,0.199,0,0,0.192 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.418 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.181 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.272 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.227 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.327 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0561 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.237 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0.13 -0.667,0.184,0.184,0.383,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.321,0.321,0.15,0,0.467,0.55,0.14,0.618,0.0807,0,0.171,0 -0.667,0.312,0.312,0,0,0,1,0.14,0.618,0.0898,0,0.385,0.0453 -0.667,0.3,0.3,0,0,0,1,0.14,0.618,0.0989,0,0.393,0.408 -0.333,0.171,0.171,0,0,0,1,0.281,0.59,0.06,0,0.0927,0.227 -0.667,0.289,0.289,0,0,0,1,0.14,0.618,0.117,0,0,0 -0.667,0.297,0.297,0,0,0,1,0.14,0.618,0.124,0,0,0.181 -0.667,0.338,0.338,0,0,0,1,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,0.533,0,0,0.167,0.14,0.67,0.17,0,0,0.227 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.619 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.136 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0.0453 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0453 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.242 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.212 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.127 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.285 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0478 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0907 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0907 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.453 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.0907 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0.533,0.617,0,0,0.281,0.6,0.0769,0.437,0,0.14 -1,0.612,0.612,0.267,0.167,0,0,0,0.724,0.248,0.319,0,0.0309 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.227 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.227 -0.667,0.629,0.629,0,0.117,0,0,0.14,0.7,0.387,0,0,0.145 -1,0.747,0.747,0,0.667,0,0,0,0.739,0.708,0.819,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0.775,0,0.0453 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0.172,0,0.117 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.285 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.09 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.515 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.127 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.117 -0.667,0.321,0.321,0.883,0,0,0,0.14,0.618,0.0807,0,0,0.0567 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.0898,0,0,0.217 -0.667,0.3,0.3,0.0333,0,0,0,0.14,0.618,0.0989,0,0,0.194 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.446 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.45 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.117 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.0453 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.181 -0.667,0.553,0.553,0,0.617,0,0,0.14,0.7,0.208,0.556,0,0.0453 -0.667,0.647,0.647,0,0.167,0,0,0.14,0.711,0.278,0.796,0,0.0453 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0.49,0,0.144 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0.554,0,0.0857 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0453 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.0453 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.363 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0951 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.315 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.15 -1,0.321,0.321,0,0,0.467,0.517,0.14,0.618,0.0807,0,0.201,0.38 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0981 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.181 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0453 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.227 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.0453 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0907 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.179 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.136 -0.667,0.647,0.647,0.383,0,0,0,0.14,0.711,0.278,0,0,0.227 -1,0.919,0.919,0.433,0,0,0,0,0.77,0.573,0,0,0.0453 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.317 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0907 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.184,0.184,0.533,0,0,0,0.281,0.59,0.0582,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.492 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0.201 -0.667,0.173,0.173,0.0167,0,0,0,0.281,0.59,0.128,0,0,0 -1,0.338,0.338,0.25,0,0,0,0.14,0.639,0.261,0,0,0.0907 -1,0.425,0.425,0.267,0,0,0,0.14,0.67,0.274,0,0,0.317 -1,0.553,0.553,1,0.517,0,0,0.14,0.7,0.283,0.547,0,0.0907 -1,0.647,0.647,0.1,0,0,0,0.14,0.711,0.332,0.458,0,0.272 -0.667,0.339,0.339,0,0,0,0,0.281,0.631,0.227,0.383,0,0 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.0907 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0,0,0.363 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.413 -1,0.177,0.177,0,0.25,0,0,0.281,0.585,0.04,0.153,0,0.425 -1,0.318,0.318,0.267,0.267,0,0,0.14,0.618,0.0983,0.61,0,0.163 -1,0.456,0.456,0.267,0,0,0,0,0.647,0.183,0.601,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0.754,0,0 -0.667,0.3,0.3,0,0,0.517,0.2,0.14,0.618,0.166,0.721,0.0425,0.0453 -0.667,0.292,0.292,0,0,0.183,1,0.14,0.618,0.178,0.0889,0.322,0.181 -0.333,0.169,0.169,0,0,0,0.0833,0.281,0.59,0.113,0,0,0.136 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.0907 -0.333,0.194,0.194,0.267,0,0,0,0.281,0.6,0.139,0,0,0.317 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0.355 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.22 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.227 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.371 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.0453 -1,0.222,0.222,0,0,0,0,0.281,0.6,0.245,0,0,0.136 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.15 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.443 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0.817,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.232 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.66 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.23 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.227 -0.667,0.194,0.194,0.633,0,0,0,0.281,0.6,0.0769,0,0,0.227 -0.667,0.425,0.425,0.45,0,0,0,0.14,0.67,0.17,0,0,0.0453 -0.667,0.553,0.553,0,0.117,0,0,0.14,0.7,0.208,0,0,0.136 -0.667,0.647,0.647,0,0.667,0,0,0.14,0.711,0.278,0.789,0,0.272 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0.582,0,0.377 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.162,0,0.226 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.317 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.228 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.633,0,0,0,0.421,0.562,0.0159,0,0,0.111 -1,0.147,0.147,0.45,0,0,0,0.281,0.569,0.0294,0,0,0.214 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.136 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0453 -0.333,0.175,0.175,0.817,0,0,0,0.281,0.59,0.0574,0,0,0.227 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.499 -0.667,0.289,0.289,0.267,0,0,0,0.14,0.618,0.117,0,0,0.0453 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.136 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.333,0.301,0.301,0,0,0.133,0.05,0.281,0.631,0.112,0,0,0.0907 -0.667,0.647,0.647,0,0,0.333,0.717,0.14,0.711,0.278,0,0.319,0.0453 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0.323,0.227 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.181 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.13 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0717 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0998 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.242 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.0571 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.198 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.19 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.181 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.0453 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.0453 -0.667,0.289,0.289,0,0,0,0.0333,0.14,0.618,0.117,0,0,0.227 -0.667,0.297,0.297,0,0,0.233,0.217,0.14,0.618,0.124,0,0.14,0 -0.667,0.338,0.338,0,0.517,0,0,0.14,0.639,0.138,0.517,0.481,0.0453 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.784,0 -1,0.553,0.553,0.533,0,0,0,0.14,0.7,0.208,0,0.568,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0.367,0.275 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0.454,0.298 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0.311,0.176 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0.436,0.0453 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.409 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.143 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.25 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.18 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.647,0.113,0,0,0.0453 -1,0.443,0.443,0,0,0,0,0,0.647,0.127,0,0,0.136 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0907 -0.667,0.292,0.292,0,0.367,0,0,0.14,0.618,0.104,0.246,0,0 -0.667,0.289,0.289,0,0.417,0.467,0.767,0.14,0.618,0.117,0.277,0.308,0.136 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.408,0.181 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0.488,0.0453 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.377,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.0811,0.657 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.196 -1,0.919,0.919,0,0.117,0,0,0,0.77,0.573,0,0,0.581 -1,0.747,0.747,0,0.667,0,0,0,0.739,0.708,0.671,0,0.207 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.316 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.0423 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.373 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0419 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.0644 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.287 -1,0.409,0.409,0,0.517,0,0,0,0.647,0.168,0.618,0,0.124 -1,0.421,0.421,0,0,0,0,0,0.647,0.177,0,0,0.313 -1,0.482,0.482,0.817,0,0,0,0,0.677,0.199,0,0,0.0453 -1,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.499 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.358 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.158 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.309 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.227 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0192,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0.397 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0619 -0.667,0.177,0.177,0,0,0.0167,0,0.281,0.585,0.04,0,0,0.319 -0.333,0.184,0.184,0,0,0.467,0.25,0.281,0.59,0.0582,0,0.0489,0.0626 -0.333,0.185,0.185,0,0,0.45,0.933,0.281,0.59,0.0732,0,0.193,0.0571 -0.333,0.181,0.181,0.267,0,0,1,0.281,0.59,0.0849,0,0,0.0885 -0.667,0.3,0.3,0,0,0,0.383,0.14,0.618,0.166,0,0,0.356 -0.667,0.292,0.292,0.767,0,0,0,0.14,0.618,0.178,0,0,0.355 -1,0.409,0.409,0.317,0,0,0,0,0.647,0.304,0,0,0.244 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.292 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -1,0.612,0.612,0,0.5,0,0,0,0.724,0.402,0.321,0,0 -1,0.804,0.804,0,0.0167,0.517,0.2,0,0.77,0.415,0.247,0.0592,0.136 -1,0.946,0.946,0,0,0.183,0.833,0,0.785,0.489,0,0.548,0.136 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.363 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.181 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.317 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0689 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0192,0,0,0.543 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0.181 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.118 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.268 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0582,0,0,0.0907 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.272 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0.272 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.0976 -0.667,0.301,0.301,0,0,0,0,0.281,0.631,0.15,0,0,0 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.181 -1,0.747,0.747,0.267,0,0,0,0,0.739,0.756,0,0,0.227 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.181 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.0571 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.419 -1,0.426,0.426,0,0,0,0,0,0.647,0.14,0,0,0.396 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0.284 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.363 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.228 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.136 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.272 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.0907 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0453 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.286 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0296 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0767 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0.383,0,0,0,0.281,0.59,0.0424,0,0,0 -0.333,0.185,0.185,0.433,0,0,0,0.281,0.59,0.0483,0,0,0.0453 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.136 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.273 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.227 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.181 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.272 -0.333,0.348,0.348,0,0,0,0,0.281,0.636,0.147,0,0,0 -0.333,0.339,0.339,0,0,0,0,0.281,0.631,0.202,0,0,0.181 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.0453 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.144 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.0453 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0.433,0,0,0,0.281,0.559,0.0177,0,0,0.14 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.142 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.266 -1,0.305,0.305,0.383,0,0,0,0.14,0.608,0.0573,0,0,0.298 -1,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.185,0.185,0.533,0,0,0,0.281,0.59,0.0483,0,0,0.2 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.237 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.297 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.619 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.292 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.143 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.134 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.136 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.237 -1,0.946,0.946,0,0.783,0,0,0,0.785,0.409,0.599,0,0.0453 -1,0.919,0.919,0.817,0,0,0,0,0.77,0.573,0.622,0,0.136 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0.12,0,0.0907 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0453 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.272 -1,0.183,0.183,0,0,0.0167,0,0.14,0.567,0.122,0,0,0.0907 -1,0.0743,0.0743,0,0,0.567,0.25,0.281,0.559,0.0346,0,0.145,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.0926 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.282 -1,0.452,0.452,0.133,0,0,0,0,0.647,0.0955,0,0,0.015 -0.667,0.321,0.321,0.4,0.783,0,0,0.14,0.618,0.0807,0.552,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0.627,0,0.0453 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0.436,0,0.368 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.306 -1,0.409,0.409,0.533,0,0,0,0,0.647,0.168,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.227 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.0453 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.0453 -0.333,0.301,0.301,0.267,0.517,0,0,0.281,0.631,0.112,0.544,0,0.363 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0.679,0,0.136 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0.334,0,0.272 -0.333,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.0907 -0.333,0.222,0.222,0,0,0.233,0.533,0.281,0.6,0.234,0,0,0 -0.667,0.345,0.345,0,0,0,0.75,0.14,0.598,0.276,0,0.381,0.0453 -0.667,0.116,0.116,0,0,0.117,0,0.281,0.564,0.0691,0,0,0.363 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -1,0.184,0.184,0.133,0,0,0,0.281,0.59,0.0424,0,0,0.121 -0.667,0.185,0.185,0.95,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.667,0.3,0.3,0,0.517,0.383,0.3,0.14,0.618,0.0989,0.505,0,0 -0.667,0.292,0.292,0,0,0.0833,0.983,0.14,0.618,0.104,0,0.431,0.136 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0.541,0.136 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.689,0.317 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0.326,0.363 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.386,0.227 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.333,0.0907 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0.274,0.136 -0.667,0.629,0.629,0.533,0,0,0,0.14,0.7,0.387,0,0,0.17 -1,0.747,0.747,0,0.117,0,0,0,0.739,0.708,0,0,0 -1,0.394,0.394,0,0.4,0,0,0.14,0.639,0.452,0.725,0,0.0875 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.136 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.524 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.373 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.237 -1,0.443,0.443,0,0,0,0,0,0.647,0.218,0,0,0.249 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.0747 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.481 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.0907 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.181 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.249 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.146 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.15 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.719 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.435,0,0,0.201 -1,0.747,0.747,0.267,0,0,0,0,0.739,0.756,0,0,0.0907 -1,0.566,0.566,0.817,0,0,0,0,0.677,0.698,0,0,0.136 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.268 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.189 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0.126 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.0453 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.0988 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.136 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.0907 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.178,0,0,0.17 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.209,0,0,0 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.0907 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.272 -0.667,0.425,0.425,0,0.75,0,0,0.14,0.67,0.274,0.601,0,0.181 -1,0.804,0.804,0.767,0.0333,0,0,0,0.77,0.415,0,0,0.136 -1,0.946,0.946,0.05,0,0.0167,0,0,0.785,0.489,0,0,0 -1,0.919,0.919,0,0,0.45,0.933,0,0.77,0.643,0,0.315,0.294 -1,0.747,0.747,0,0,0,0.1,0,0.739,0.756,0,0.363,0.0907 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0.48,0.181 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0.359,0.227 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0.13,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.146 -1,0.177,0.177,0.817,0.117,0,0,0.281,0.585,0.0366,0,0,0 -1,0.184,0.184,0,0.4,0,0,0.281,0.59,0.0424,0.733,0,0.0606 -1,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0.153,0,0 -1,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.141 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.254 -0.667,0.292,0.292,0,0.617,0,0,0.14,0.618,0.104,0.354,0,0.0453 -0.333,0.169,0.169,0,0.167,0,0,0.281,0.59,0.0665,0.646,0,0.0907 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0.183,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.0453 -0.333,0.237,0.237,0.267,0,0,0,0.281,0.616,0.0931,0,0,0.0907 -0.667,0.553,0.553,0.817,0.117,0,0,0.14,0.7,0.208,0,0,0.0453 -0.667,0.647,0.647,0,0.667,0,0,0.14,0.711,0.278,0.692,0,0.363 -1,0.919,0.919,0.267,0,0,0,0,0.77,0.573,0,0,0.181 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.419 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.151 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.228 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0.0927,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0566 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.253 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.131 -0.667,0.318,0.318,0,0,0.383,0.3,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0,0,0.0833,0.733,0.14,0.618,0.0807,0,0.668,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.471,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0.453,0.0907 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0.346,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0.523,0.0453 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.256,0.227 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0.408,0 -0.667,0.425,0.425,0.267,0,0,0,0.14,0.67,0.17,0,0.118,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.0475 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.333 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0907 -0.667,0.282,0.282,0.267,0,0,0,0.281,0.621,0.246,0,0,0.527 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.166 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0.233 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.248 -1,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.133 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.235 -0.667,0.175,0.175,0.383,0,0.133,0.05,0.281,0.59,0.0574,0,0,0.227 -0.667,0.171,0.171,0.783,0,0.333,1,0.281,0.59,0.06,0,0.43,0.0453 -0.667,0.169,0.169,0.45,0,0,0.233,0.281,0.59,0.0665,0,0,0.192 -0.667,0.173,0.173,0.383,0,0,0,0.281,0.59,0.0697,0,0,0.383 -0.667,0.338,0.338,0.15,0,0,0,0.14,0.639,0.138,0,0,0.272 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.0453 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.0907 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.0907 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0453 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.0907 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.379 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.147,0.147,0.883,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0.483,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0 -0.667,0.321,0.321,0.883,0,0,0,0.14,0.618,0.0807,0,0,0 -0.333,0.181,0.181,0.2,0,0,0,0.281,0.59,0.0528,0,0,0.0907 -0.667,0.3,0.3,0,0,0.233,0.783,0.14,0.618,0.0989,0,0.0669,0.0453 -0.667,0.292,0.292,0,0,0,0.5,0.14,0.618,0.104,0,1,0.272 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0.342,0.0453 -0.667,0.297,0.297,0.383,0,0,0,0.14,0.618,0.124,0,0.26,0 -0.667,0.338,0.338,0.15,0,0,0,0.14,0.639,0.138,0,0.301,0.317 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.317 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.0907 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0822 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.168 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.0453 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0913 -1,0.147,0.147,0,0,0.467,0.55,0.281,0.569,0.0294,0,0.156,0.141 -1,0.305,0.305,0,0,0,0.217,0.14,0.608,0.0573,0,0.519,0 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0.201,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0.293,0.181 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.641,0.0453 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0.408,0.136 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0.408,0.0907 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0.3,0.193 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.336,0.133 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0.108,0 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.181 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.272 -0.667,0.647,0.647,0.267,0,0,0,0.14,0.711,0.278,0,0,0 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.0907 -1,0.747,0.747,0,0,0.467,0.55,0,0.739,0.708,0,0.0824,0.0453 -1,0.566,0.566,0,0,0,0.217,0,0.677,0.671,0,0.327,0.369 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.0584 -1,0.249,0.249,0,0,0,0,0,0.57,0.175,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.19,0.19,0.55,0,0,0,0.281,0.647,0.0731,0,0,0.133 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.266 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.266 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.254 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.339 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.272 -1,0.446,0.446,0,0,0,0,0,0.818,0.459,0,0,0.227 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.0907 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.0907 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0.136 -0.667,0.683,0.683,0,0,0.0167,0,0.14,0.849,0.437,0,0,0.136 -1,0.933,0.933,0,0,0.467,0.917,0,0.973,0.851,0,0.115,0.363 -1,0.732,0.732,0,0,0,0.467,0,0.934,1,0,0.319,0.0907 -1,0.554,0.554,0,0.817,0,0,0,0.857,0.923,0.505,0,0.244 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.119 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.0787 -1,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.238 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.103 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0453 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.181 -0,0.0495,0.0495,0,0,0.0167,0,0.421,0.562,0.0181,0,0,0.0907 -0.667,0.359,0.359,0,0,0.467,0.817,0.14,0.758,0.343,0,0.258,0.181 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0.476,0.363 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.0453 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0 -0.667,0.638,0.638,0,0.5,0,0,0.14,0.836,0.573,0.276,0,0.0907 -1,0.732,0.732,0,0.317,0,0,0,0.934,1,0.508,0,0.507 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.138 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.128 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.0511 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.116 -0.667,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.238 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.15 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.136 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.299 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.126 -0.333,0.204,0.204,0,0,0.0167,0,0.281,0.66,0.0982,0,0,0.227 -0.667,0.457,0.457,0.267,0,0.467,0.267,0.14,0.797,0.224,0,0.29,0.0907 -0.667,0.323,0.323,1,0,0,0,0.281,0.699,0.145,0,0,0.181 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.181 -0.333,0.344,0.344,1,0,0,0,0.281,0.699,0.263,0,0,0.691 -0.667,0.504,0.504,1,0,0.0167,0,0.14,0.81,0.629,0,0,0 -0.667,0.386,0.386,1,0.5,0.467,0.267,0.14,0.758,0.596,0.303,0.0412,0 -1,0.342,0.342,1,0.0333,0,0,0.14,0.706,0.363,0.373,0,0.0453 -1,0.116,0.116,1,0,0,0,0.281,0.614,0.0879,0,0,0.181 -1,0.0743,0.0743,0.35,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.33,0.33,0.767,0,0,0,0.14,0.732,0.0895,0,0,0.191 -1,0.481,0.481,0.35,0.533,0.483,0.667,0,0.818,0.149,0.519,0.167,0.0907 -1,0.468,0.468,0,0.5,0,1,0,0.818,0.168,0.322,0.427,0 -1,0.449,0.449,0,0.317,0,0.267,0,0.818,0.186,0.233,0.284,0.31 -1,0.436,0.436,0,0,0,0,0,0.818,0.196,0,0.462,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.446,0.227 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.652,0.0453 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.408,0.0907 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.331,0.0453 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0.13,0.363 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0.402,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.579,0.0453 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0.502,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.136 -1,0.488,0.488,0,0.533,0,0,0,0.779,0.536,0.747,0,0.354 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.087 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.151 -0.667,0.316,0.316,0.267,0,0,0,0.14,0.732,0.129,0,0,0.0926 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.0453 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.136 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.363 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.0453 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.0907 -0.333,0.366,0.366,0.267,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.218 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.317 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.136 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.272 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.137 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.393 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0159,0.218,0,0 -0.667,0.189,0.189,0,0.0333,0,0,0.281,0.647,0.0664,0.521,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0.615,0,0.227 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.0907 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0453 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0.267,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.227 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.408 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0453 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.181 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.136 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.313,0.313,0.267,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.153 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.0907 -0.667,0.307,0.307,0,0.5,0,0,0.14,0.732,0.136,0.24,0,0.136 -0.333,0.177,0.177,0,0.583,0,0,0.281,0.647,0.0845,0.326,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0907 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.136 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0453 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.136 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.554,0.554,0,0.5,0,0,0,0.857,0.887,0.333,0,0.227 -1,0.488,0.488,0,0.317,0,0,0,0.779,0.536,0.328,0,0.136 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0.227 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.313,0.313,0.767,0,0,0,0.14,0.719,0.0799,0,0,0 -1,0.33,0.33,0.35,0,0,0,0.14,0.732,0.128,0,0,0.136 -0.667,0.337,0.337,0.267,0,0,0,0.14,0.732,0.168,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0.0907 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.363 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.39 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.195,0,0,0 -0.667,0.366,0.366,0,0,0,0,0.281,0.705,0.228,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.181 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0827 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.0799,0,0,0 -0.667,0.33,0.33,0.267,0,0,0,0.14,0.732,0.128,0,0,0.0981 -1,0.481,0.481,1,0,0,0,0,0.818,0.242,0,0,0 -0.667,0.328,0.328,0.417,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.317 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.181 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.293 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.253 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.0453 -0.667,0.596,0.596,0.267,0,0,0,0.14,0.836,0.372,0,0,0.12 -1,1,1,0,0,0.0167,0,0,0.993,0.647,0,0,0.269 -1,0.933,0.933,0,0,0.467,0.267,0,0.973,0.851,0,0.288,0.267 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0.296,0.0747 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.0453 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.363 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.162 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.113 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.288 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.108 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.292 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.177 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.309 -0.333,0.178,0.178,0.267,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.177,0.177,0.283,0,0,0,0.281,0.647,0.0845,0,0,0.0453 -0.667,0.314,0.314,0.267,0,0,0,0.14,0.732,0.162,0,0,0.181 -0.333,0.204,0.204,0,0.5,0.267,0,0.281,0.66,0.0982,0.395,0,0 -0.333,0.253,0.253,0,0.0333,0.467,0.817,0.281,0.679,0.12,0.31,0.441,0.134 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0.532,0.334 -0.333,0.366,0.366,0.267,0,0,0,0.281,0.705,0.191,0,0.472,0.317 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0.573,0.0453 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0907 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.26 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.314 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0907 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.135 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.202 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.256 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.104 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.162 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0262 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.0907 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.453 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.136 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.136 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0.0907 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0,0.227 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.0453 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -0.667,0.504,0.504,0,0,0.483,0.667,0.14,0.81,0.629,0,0.144,0.0907 -1,0.554,0.554,0,0,0,0.15,0,0.857,0.887,0,0.378,0.0907 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0.329,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0.512,0.0453 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.349,0.0453 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0.545,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0.509,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.422,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.313,0.313,0.267,0,0,0,0.14,0.719,0.074,0,0,0.194 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.104 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.363 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.181 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0.267,0,0,0,0.281,0.647,0.0845,0,0,0.136 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0453 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0.267,0,0,0,0.14,0.836,0.273,0,0,0.227 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.317 -1,0.638,0.638,0,0.75,0,0,0.14,0.836,0.51,0.566,0,0.136 -1,0.504,0.504,0,0.0667,0,0,0.14,0.81,0.629,0.0767,0,0 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.141 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.169 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.128 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.269 -1,0.444,0.444,0,0,0,0,0,0.798,0.103,0,0,0.143 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.136 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0453 -0.667,0.316,0.316,0.267,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.0907 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0.267,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0.567,0,0,0,0.14,0.758,0.181,0,0,0.0907 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.227 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.19 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.136 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.0453 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.159 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.0936 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.399 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.294 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0,0.257 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.599 -1,0.449,0.449,0,0,0.483,0.417,0,0.818,0.186,0,0.0592,0.136 -0.667,0.307,0.307,0,0,0,0.4,0.14,0.732,0.136,0,0.501,0.0453 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0.344,0.181 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.344,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.356,0.0453 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0.618,0.181 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0.375,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0.479,0.272 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.272 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.175 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.284 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.0855 -0.667,0.19,0.19,0.0167,0,0,0,0.281,0.647,0.0731,0,0,0 -0.667,0.193,0.193,1,0,0,0,0.281,0.647,0.0928,0,0,0.0734 -0.667,0.189,0.189,0.95,0,0,0,0.281,0.647,0.108,0,0,0.426 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.19 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.119 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.0907 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.136 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.136 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.181 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.136 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.227 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.363 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.227 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.112 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0.413 -1,0.116,0.116,0,0,0,0,0.14,0.654,0.0301,0,0,0 -0.667,0.15,0.15,0,0,0.0167,0,0.281,0.621,0.0327,0,0,0 -1,0.313,0.313,0,0,0.467,0.917,0.14,0.719,0.0799,0,0.248,0.152 -1,0.33,0.33,0,0.75,0,0.183,0.14,0.732,0.128,0.618,0.286,0.193 -0.667,0.337,0.337,0,0.0667,0,0,0.14,0.732,0.168,0.0679,0,0.3 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.0453 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.227 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.167 -0.667,0.305,0.305,0.517,0,0,0,0.14,0.732,0.274,0,0,0.332 -1,0.446,0.446,0.6,0,0.483,0.417,0,0.818,0.459,0,0.00772,0.317 -0.667,0.359,0.359,0,0,0,0.683,0.14,0.758,0.343,0,0.0927,0.0907 -0.667,0.457,0.457,0.0167,0,0,0,0.14,0.797,0.36,0,0,0.0453 -0.667,0.596,0.596,0.817,0,0,0,0.14,0.836,0.372,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0,0.0453 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.19 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0 -0.667,0.316,0.316,0.267,0,0,0,0.14,0.732,0.129,0,0,0.0453 -0.667,0.307,0.307,0.283,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0.0167,0,0,0,0.14,0.732,0.162,0,0,0.317 -1,0.513,0.513,0.533,0,0,0,0,0.857,0.263,0,0,0.0907 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0453 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.181 -1,1,1,0,0.533,0,0,0,0.993,0.541,0.544,0,0.0907 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0.674,0,0.227 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0.298,0,0.0453 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.357 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.117 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0.503 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0.21 -1,0.066,0.066,0,0,0,0,0.14,0.654,0.0362,0,0,0.505 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0.162 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.167 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.125 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0699 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.198 -0.667,0.193,0.193,0.767,0,0,0,0.281,0.647,0.0604,0,0,0.0453 -0.667,0.189,0.189,0.0667,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.183,0.183,0.267,0,0,0,0.281,0.647,0.0724,0,0,0.272 -0.667,0.307,0.307,0.567,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.0453 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.0907 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.181 -0.667,0.596,0.596,0.0167,0.817,0,0,0.14,0.836,0.273,0.643,0,0.136 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0.408 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.0907 -1,0.732,0.732,0.8,0,0,0,0,0.934,0.936,0,0,0 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.311 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.181 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.235 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0.267,0,0,0,0.281,0.64,0.0449,0,0,0.0641 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.0699 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0,0.105 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.427 -1,0.449,0.449,0,0,0,0,0,0.818,0.186,0,0,0.395 -1,0.436,0.436,0,0.533,0,0,0,0.818,0.196,0.599,0,0.192 -1,0.432,0.432,0,0,0.267,0.167,0,0.818,0.222,0.376,0,0.154 -0.667,0.314,0.314,0,0,0.217,1,0.14,0.732,0.162,0.791,0.268,0.0453 -0.667,0.359,0.359,0.517,0,0,0.767,0.14,0.758,0.181,0.153,0.664,0.0453 -0.667,0.457,0.457,0.0333,0,0,0,0.14,0.797,0.224,0,0.0425,0.0907 -0.667,0.596,0.596,0.0167,0,0,0,0.14,0.836,0.273,0,0,0.728 -0.667,0.683,0.683,0.25,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0453 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.611 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.151 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.088 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.11 -1,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.289 -1,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.104 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.281 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.339 -0.667,0.307,0.307,0.267,0,0,0,0.14,0.732,0.136,0,0,0.415 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.388 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.0907 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0.533,0,0,0.14,0.836,0.273,0.446,0,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0.254,0,0.272 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0453 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0907 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.206 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.148 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.239 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.136 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.136 -0.667,0.307,0.307,0.55,0,0,0,0.14,0.732,0.136,0,0,0.181 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.363 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.0453 -0.667,0.359,0.359,0,0.5,0,0,0.14,0.758,0.181,0.322,0,0 -0.667,0.457,0.457,0,0.0333,0,0,0.14,0.797,0.224,0.632,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0.728,0,0.0453 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0.152,0,0.136 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0737 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.408 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.158 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0453 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.019,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.311 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.317 -1,0.47,0.47,0,0,0,0,0,0.818,0.183,0,0,0.348 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.131 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.331 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.0697 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.13 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.108 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.227 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.272 -0.333,0.253,0.253,0,0,0.267,0.167,0.281,0.679,0.189,0,0,0.0907 -1,0.869,0.869,0,0,0.217,0.933,0,0.973,0.549,0,0.138,0.317 -1,1,1,0,0,0,0,0,0.993,0.647,0,0,0.188 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0.272 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.334 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.272 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0.182 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0.0757 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0986 -0.667,0.181,0.181,0,0,0.483,0.417,0.281,0.64,0.049,0,0.0425,0 -0.667,0.33,0.33,0,0,0,0.4,0.14,0.732,0.128,0,0.498,0.317 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0.353,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0.27,0.227 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0.407,0.21 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0.537,0.441 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0.468,0.0453 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0.46,0.363 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0.692,0.227 -0.667,0.457,0.457,0,0,0.483,0.417,0.14,0.797,0.36,0,0.0444,0.0907 -0.667,0.596,0.596,0,0,0,0.133,0.14,0.836,0.372,0,0.492,0.0453 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.437,0,0.409,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.0907 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.303 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.168 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.139 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.141 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0453 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.136 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0.767,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0.35,0,0,0,0.14,0.732,0.162,0,0,0.0907 -1,0.513,0.513,0,0,0,0,0,0.857,0.263,0,0,0.181 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0.181 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.0453 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.227 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.0453 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.0453 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.241 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.467 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.313 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0907 -0.667,0.314,0.314,0.767,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.359,0.359,0.0667,0,0,0,0.14,0.758,0.181,0,0,0.563 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.529 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.0453 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.181 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.0907 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.227 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0907 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.0907 -0.667,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.265 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0.088 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.138 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.0453 -0.667,0.316,0.316,0.267,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.136 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.0453 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.272 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.136 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0453 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.0907 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.181 -0.667,0.638,0.638,0,0.25,0,0,0.14,0.836,0.51,0.157,0,0.25 -1,0.732,0.732,0,0.283,0,0,0,0.934,0.936,0.524,0,0.427 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.184 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.167 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.128 -0.667,0.313,0.313,0.267,0,0,0,0.14,0.719,0.074,0,0,0.0863 -1,0.47,0.47,0,0,0,0,0,0.818,0.126,0,0,0.141 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.159 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.136 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.181 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.11 -0.667,0.305,0.305,0,0.25,0,0,0.14,0.732,0.153,0.197,0,0.227 -0.667,0.314,0.314,0,0.283,0,0,0.14,0.732,0.162,0.852,0,0.136 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0.767,0,0.317 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0.139,0,0.0907 -0.667,0.596,0.596,0,0.25,0,0,0.14,0.836,0.273,0.211,0,0 -0.333,0.366,0.366,0,0.567,0,0,0.281,0.705,0.191,0.723,0,0.0453 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.226 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0.145 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.222 -1,0.251,0.251,0.0167,0,0,0,0.14,0.68,0.0551,0,0,0.0714 -0.667,0.313,0.313,0.817,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.25 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.0913 -0.333,0.183,0.183,0.767,0,0,0,0.281,0.647,0.0724,0,0,0.0907 -0.667,0.307,0.307,0.0667,0,0,0,0.14,0.732,0.136,0,0,0.136 -0.667,0.305,0.305,0.517,0,0,0,0.14,0.732,0.153,0,0,0.453 -0.667,0.314,0.314,0.317,0,0,0,0.14,0.732,0.162,0,0,0.0453 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0.767,0,0,0,0.14,0.797,0.224,0,0,0.0907 -1,0.869,0.869,0.35,0,0,0,0,0.973,0.402,0,0,0.0453 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.136 -1,0.933,0.933,0,0.5,0,0,0,0.973,0.758,0.341,0,0.0907 -1,0.732,0.732,0.0167,0.0333,0,0,0,0.934,0.936,0.674,0,0.0453 -1,0.554,0.554,0.533,0,0,0,0,0.857,0.887,0,0,0.136 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.181 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.101 -1,0.33,0.33,0.267,0,0,0,0.14,0.732,0.128,0,0,0.196 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.0563 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0.247 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.253 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.653 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.156 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.258 -1,0.513,0.513,0.517,0,0,0,0,0.857,0.505,0,0,0.181 -0.667,0.457,0.457,0.0333,0,0,0,0.14,0.797,0.36,0,0,0.0453 -1,0.869,0.869,0,0.5,0,0,0,0.973,0.549,0.19,0,0.272 -0.667,0.683,0.683,0,0.0333,0,0,0.14,0.849,0.437,0.47,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0.437,0,0.641 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.193 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.21 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.743 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0453 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.272 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0639 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.224 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0.609 -1,0.468,0.468,0,0,0,0,0,0.818,0.289,0,0,0.144 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.217,0,0,0.274 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0,0,0.557 -1,0.432,0.432,0,0,0,0,0,0.818,0.402,0,0,0.085 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.139 -1,0.513,0.513,0,0,0,0,0,0.857,0.505,0,0,0.227 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.596,0.596,0,0,0.483,0.417,0.14,0.836,0.372,0,0.0425,0.181 -0.667,0.683,0.683,0,0,0,0.4,0.14,0.849,0.437,0,0.695,0.0907 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.573,0,0.332,0.272 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0.604,0.0907 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.136 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.0907 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.181,0.181,0.767,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.33,0.33,0.0667,0,0,0,0.14,0.732,0.0895,0,0,0.131 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.14 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.0907 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.136 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.0453 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0453 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.0907 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.363 -1,1,1,0,0.25,0,0,0,0.993,0.541,0.132,0,0.3 -1,0.933,0.933,0,0.283,0,0,0,0.973,0.758,0.523,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.0907 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.0453 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.136 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv deleted file mode 100644 index 44aecb5a23..0000000000 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv +++ /dev/null @@ -1,8761 +0,0 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.06 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.0762 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.409 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.251 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.333 -0.667,0.192,0.192,0.267,0,0,0,0.281,0.647,0.0664,0,0,0.334 -0.667,0.322,0.322,1,0,0,0,0.14,0.732,0.129,0,0.506,0.343 -0.667,0.313,0.313,1,0,0.933,0.817,0.14,0.732,0.136,0,0.47,0 -0.667,0.18,0.18,0.0667,0,0,0,0.281,0.647,0.0845,0,0,0.072 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.314 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.194 -0.667,0.418,0.418,0.517,0,0,0,0.14,0.797,0.224,0,0,0.156 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.108 -1,0.979,0.979,0.817,0,0,0,0,0.993,0.541,0,0,0.216 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.216 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.036 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0.0167,0,0,0,0.281,0.608,0.026,0,0,0.523 -1,0.253,0.253,0.75,0,0,0,0.14,0.68,0.0551,0,0,0.144 -0.667,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0.226 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.036 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.334,0.334,0.517,0,0,0,0.14,0.732,0.117,0,0,0.216 -0.667,0.322,0.322,1,0,0,0,0.14,0.732,0.129,0,0,0.036 -0.667,0.313,0.313,0.05,0,0,0,0.14,0.732,0.136,0,0,0.108 -0.667,0.311,0.311,0.5,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.036 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.13 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.205 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.252 -0.333,0.359,0.359,0,0,0,0,0.281,0.705,0.191,0,0,0.072 -0.667,0.677,0.677,0,0.3,0,0,0.14,0.836,0.51,0.602,0,0.504 -0.667,0.565,0.565,0,1,0,0,0.14,0.81,0.629,0.768,0,0.252 -0.667,0.43,0.43,0,0.05,0,0,0.14,0.758,0.596,0.128,0,0.0985 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.144 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.251 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.072 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.036 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.036 -0.667,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0,0.072 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.036 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.18 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.036 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0.186,0.31 -0.667,0.565,0.565,0,0,0.933,0.383,0.14,0.81,0.629,0,0.658,0.362 -0.667,0.43,0.43,0,0,0,0.433,0.14,0.758,0.596,0,0.131,0.072 -0.667,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.036 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0.045,0.036 -0.667,0.0495,0.0495,0,0,0.933,0.633,0.421,0.562,0.0159,0,0.425,0 -1,0.0578,0.0578,0,0,0,1,0.281,0.608,0.026,0,0.612,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.311 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.104 -1,0.0833,0.0833,0.517,0,0,0,0.281,0.608,0.026,0,0,0.183 -0.667,0.151,0.151,1,0,0,0,0.281,0.621,0.0355,0,0,0.175 -1,0.183,0.183,0.283,0,0,0,0.281,0.64,0.0449,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -0.667,0.196,0.196,0.517,0,0,0,0.281,0.647,0.0604,0,0,0 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.117,0,0,0.144 -0.667,0.322,0.322,0.283,0,0,0,0.14,0.732,0.129,0,0,0.072 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.036 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.072 -0.333,0.196,0.196,0.517,0,0,0,0.281,0.66,0.0982,0,0,0.036 -0.667,0.418,0.418,0.25,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.108 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.252 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.144 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.072 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.0774,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0628 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0494 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0713 -1,0.316,0.316,0.0167,0,0,0,0.14,0.719,0.074,0,0,0.036 -0.667,0.192,0.192,0.75,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0.105,0 -0.667,0.334,0.334,0,0,0.933,0.383,0.14,0.732,0.117,0,0.259,0 -0.667,0.322,0.322,0,0,0,1,0.14,0.732,0.129,0,0,0.072 -0.333,0.181,0.181,0,0,0,1,0.281,0.647,0.0759,0,0,0.072 -0.333,0.18,0.18,0,0,0,0.0667,0.281,0.647,0.0845,0,0,0.18 -0.333,0.182,0.182,0,0.05,0,0,0.281,0.647,0.0888,0.45,0,0 -0.667,0.343,0.343,0.0167,1,0,0,0.14,0.758,0.181,0.527,0,0.184 -0.667,0.418,0.418,1,0.567,0,0,0.14,0.797,0.224,0.408,0,0 -0.667,0.548,0.548,0.533,0,0,0,0.14,0.836,0.273,0,0,0.036 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.331 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.232 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.226 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0,0.144 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.321 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0833,0.0833,0,0,0,0,0.281,0.608,0.0241,0,0.304,0.15 -0.667,0.151,0.151,0,0,0.933,0.55,0.281,0.621,0.0327,0,0.421,0.182 -0.667,0.183,0.183,0,0,0,0.267,0.281,0.64,0.049,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.317 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.172 -0.667,0.313,0.313,0.183,0,0,0,0.14,0.732,0.233,0,0,0.0972 -0.333,0.18,0.18,0.583,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.108 -0.333,0.196,0.196,0.683,0,0,0,0.281,0.66,0.18,0,0,0 -0.667,0.418,0.418,1,0,0,0.05,0.14,0.797,0.36,0,0.52,0.18 -0.667,0.548,0.548,0.65,0,0.933,1,0.14,0.836,0.372,0,0.672,0.216 -0.667,0.669,0.669,0,0.467,0,0.0333,0.14,0.849,0.437,0.864,0.0886,0.036 -0.667,0.677,0.677,0,0.883,0,0,0.14,0.836,0.573,0.387,0,0.171 -1,0.823,0.823,0,0,0,0,0,0.934,1,0.276,0,0.335 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.072 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.271 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.21 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.295 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.219 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.403 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.217,0,0,0.0643 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.143 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.146,0,0,0.226 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0.0717,0.645 -0.667,0.418,0.418,0.683,0,0.933,0.55,0.14,0.797,0.36,0,0.352,0.268 -0.667,0.548,0.548,1,0,0,0.267,0.14,0.836,0.372,0,0.239,0.036 -1,0.979,0.979,1,0,0,0,0,0.993,0.647,0,0.3,0.144 -1,0.991,0.991,1,0,0,0,0,0.973,0.851,0,0.177,0.108 -1,0.823,0.823,1,0,0.933,0.55,0,0.934,1,0,0.575,0.072 -0.667,0.43,0.43,0.233,0,0,0.533,0.14,0.758,0.621,0,0.447,0.072 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.282 -1,0.151,0.151,0.75,0,0,0,0.281,0.621,0.0355,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.277 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.036 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.352 -1,0.458,0.458,0.767,0,0,0,0,0.818,0.186,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0.18 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.036 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.036 -0.667,0.548,0.548,0.517,0,0,0,0.14,0.836,0.273,0,0,0.216 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.036 -1,0.991,0.991,0.283,0,0,0,0,0.973,0.758,0,0,0.036 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.036 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.036 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0.072 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.187 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.118 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.129 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.118 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.186,0.186,0.283,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.18 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.504 -0.333,0.196,0.196,0.517,0,0,0,0.281,0.66,0.0982,0,0,0 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0 -1,0.798,0.798,0.0333,0,0,0,0,0.973,0.402,0,0,0.18 -1,0.979,0.979,0.517,0,0,0,0,0.993,0.541,0,0,0.144 -1,0.991,0.991,0.25,0,0,0,0,0.973,0.758,0,0,0.252 -1,0.823,0.823,0,0.3,0,0,0,0.934,0.936,0.669,0,0.108 -1,0.621,0.621,0,1,0,0,0,0.857,0.887,0.324,0,0.261 -1,0.374,0.374,0,0.05,0,0,0.14,0.706,0.363,0,0,0.247 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.119 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.358 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.125 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.183,0.183,0.517,0,0,0,0.281,0.64,0.0449,0,0,0.162 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.0895,0,0,0.43 -0.667,0.343,0.343,1,0,0,0,0.14,0.732,0.105,0,0,0.149 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.117,0,0,0.322 -0.333,0.186,0.186,1,0,0,0,0.281,0.647,0.0724,0,0,0.144 -0.333,0.181,0.181,0.4,0,0,0,0.281,0.647,0.0759,0,0,0.072 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0.18 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.036 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0.072 -1,0.299,0.299,0.533,0,0,0,0.281,0.699,0.145,0,0,0.036 -1,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.288 -1,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0.129 -1,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0,0.145 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.136 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0.18 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.036 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.108 -0.333,0.234,0.234,0.267,0,0,0,0.281,0.679,0.12,0,0,0.072 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.145,0,0,0.216 -0.667,0.669,0.669,0.283,0,0,0,0.14,0.849,0.366,0,0,0.316 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.229 -1,0.823,0.823,0,0.3,0,0,0,0.934,0.936,0.716,0,0.108 -1,0.621,0.621,0,1,0,0,0,0.857,0.887,0.663,0,0.216 -1,0.212,0.212,0,0.05,0,0,0.281,0.634,0.189,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.201 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.026,0,0.3,0 -0.667,0.0495,0.0495,0.317,0,0.933,0.633,0.421,0.562,0.0159,0,0.436,0 -1,0.183,0.183,0,0,0,0.45,0.281,0.64,0.0449,0,0.637,0.072 -1,0.477,0.477,0,0,0,0,0,0.818,0.126,0,0.64,0.036 -1,0.49,0.49,0,0,0,0,0,0.818,0.149,0,0.267,0 -1,0.477,0.477,0,0,0,0,0,0.818,0.168,0,0,0.144 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.144 -0.667,0.313,0.313,0.0167,0,0,0,0.14,0.732,0.136,0,0,0.144 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.0845,0,0,0.187 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.162,0,0,0.152 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.181,0,0,0.128 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0 -0.667,0.548,0.548,0.9,0,0,0,0.14,0.836,0.273,0,0,0.072 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.324 -1,0.991,0.991,0,0.05,0,0,0,0.973,0.758,0.354,0,0.036 -1,0.823,0.823,0,1,0,0,0,0.934,0.936,0.134,0,0 -1,0.43,0.43,0,0.3,0,0,0.14,0.758,0.596,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.075 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.123 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0.239 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.18,0,0,0.252 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0,0 -0.667,0.548,0.548,0,0.467,0,0,0.14,0.836,0.372,0.724,0,0 -1,0.669,0.669,0,0.883,0,0,0.14,0.849,0.437,0.105,0,0.036 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.36 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.432 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.174 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.173 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0327,0,0,0.319 -1,0.183,0.183,0.517,0,0,0,0.281,0.64,0.049,0,0,0.108 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.0957 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0.404 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.198,0,0,0.072 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.125,0,0,0.108 -0.333,0.18,0.18,0,0.467,0,0,0.281,0.647,0.146,0.697,0,0.036 -0.333,0.182,0.182,0,1,0,0,0.281,0.647,0.165,0.596,0.0816,0.072 -0.333,0.196,0.196,0,0.15,0.733,0.3,0.281,0.66,0.18,0.824,0.655,0.247 -0.667,0.418,0.418,0.933,0,0.2,0.233,0.14,0.797,0.36,0,0.501,0.0789 -1,0.798,0.798,1,0,0,0,0,0.973,0.549,0,0.523,0.317 -1,0.979,0.979,0.583,0,0,0,0,0.993,0.647,0,0,0.373 -1,0.991,0.991,1,0,0,0,0,0.973,0.851,0,0,0.354 -0.667,0.565,0.565,1,0.217,0,0,0.14,0.81,0.673,0.54,0,0.144 -1,0.621,0.621,0.15,1,0,0,0,0.857,0.923,0.391,0,0.288 -1,0.212,0.212,0,0.133,0,0,0.281,0.634,0.206,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0833,0.0833,0.767,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.334,0.334,1,0,0,0,0.14,0.732,0.0895,0,0.125,0.072 -0.667,0.343,0.343,1,0,0.933,0.883,0.14,0.732,0.105,0,0,0.144 -0.667,0.334,0.334,0.15,0,0,0.467,0.14,0.732,0.117,0,0,0.036 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0,0.216 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.277 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.217 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.417 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0.238 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.246 -1,0.979,0.979,0,0.55,0,0,0,0.993,0.541,0.644,0,0.177 -1,0.991,0.991,0.267,0.8,0,0,0,0.973,0.758,0,0,0.208 -1,0.823,0.823,1,0,0,0,0,0.934,0.936,0,0,0.036 -1,0.621,0.621,1,0,0,0,0,0.857,0.887,0,0,0.036 -1,0.212,0.212,0.0667,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.139 -0.667,0.316,0.316,1,0,0,0,0.14,0.719,0.074,0,0,0.119 -0.667,0.334,0.334,0.783,0,0,0,0.14,0.732,0.0895,0,0,0.0899 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.327 -0.667,0.334,0.334,0.267,0,0,0,0.14,0.732,0.117,0,0,0.241 -0.667,0.322,0.322,1,0,0,0,0.14,0.732,0.129,0,0,0.319 -0.667,0.313,0.313,0.283,0,0,0,0.14,0.732,0.136,0,0,0.294 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.036 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.0969 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.334 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.302 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.416 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.252 -0.667,0.677,0.677,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.144 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.28 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.397 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.148 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.23 -0.667,0.334,0.334,0.0167,0,0,0,0.14,0.732,0.117,0,0,0.26 -0.667,0.322,0.322,1,0.55,0,0,0.14,0.732,0.129,0.86,0.162,0.284 -0.667,0.313,0.313,1,0.8,0.933,0.633,0.14,0.732,0.136,0,0.722,0.255 -0.333,0.18,0.18,0.317,0,0,0.183,0.281,0.647,0.0845,0,0.316,0.036 -0.333,0.182,0.182,0.267,0,0,0,0.281,0.647,0.0888,0,0.854,0.288 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0.3,0.036 -0.667,0.418,0.418,0.533,0,0,0,0.14,0.797,0.224,0,0,0.324 -0.667,0.548,0.548,0.767,0,0,0,0.14,0.836,0.273,0,0,0.036 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0.252 -1,0.991,0.991,0.567,0,0,0,0,0.973,0.758,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.18 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.106 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.129 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0527,0,0,0.181 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0604,0,0,0.249 -0.333,0.192,0.192,0.267,0,0,0,0.281,0.647,0.0664,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.313,0.313,1,0,0,0,0.14,0.732,0.136,0,0,0.072 -0.667,0.311,0.311,0.0667,0,0,0,0.14,0.732,0.153,0,0,0.036 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.072 -1,0.49,0.49,0,0,0,0,0,0.857,0.263,0,0,0 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0,0.127 -1,0.798,0.798,0,0,0,0,0,0.973,0.402,0,0,0.416 -1,0.979,0.979,0,0,0,0,0,0.993,0.541,0,0,0.48 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.247 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.0924 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.236 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.32 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0.0853 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.199 -0.667,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.511 -1,0.316,0.316,0.267,0,0,0,0.14,0.719,0.074,0,0,0.286 -1,0.334,0.334,1,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0.533,0,0,0,0.14,0.732,0.105,0,0,0.252 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.036 -0.667,0.322,0.322,0,0.05,0,0,0.14,0.732,0.129,0.369,0,0.144 -0.667,0.313,0.313,0.517,1,0,0,0.14,0.732,0.136,0.645,0,0.036 -0.667,0.311,0.311,1,0.3,0,0,0.14,0.732,0.153,0.755,0,0 -0.667,0.315,0.315,0.283,0,0,0,0.14,0.732,0.162,0,0,0.252 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.181,0,0,0.036 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0.144 -0.667,0.548,0.548,0,0,0,0,0.14,0.836,0.273,0,0,0.18 -1,0.979,0.979,0.0167,0,0,0,0,0.993,0.541,0,0,0.32 -0.667,0.677,0.677,1,0,0,0,0.14,0.836,0.51,0,0,0.577 -0.667,0.565,0.565,0.783,0,0,0,0.14,0.81,0.629,0,0,0.234 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.454 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0.072 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.683,0,0,0,0.421,0.562,0.0181,0,0,0.109 -1,0.334,0.334,1,0,0,0,0.14,0.732,0.128,0,0,0.399 -1,0.49,0.49,0.65,0.467,0,0,0,0.818,0.242,0.814,0,0.118 -1,0.477,0.477,0,1,0,0,0,0.818,0.289,0.262,0,0.266 -1,0.458,0.458,0,0.15,0,0,0,0.818,0.317,0,0,0.131 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.144 -1,0.311,0.311,0,0,0,0,0.14,0.732,0.274,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.036 -0.667,0.343,0.343,0.683,0,0,0,0.14,0.758,0.343,0,0,0.036 -1,0.602,0.602,1,0,0,0,0,0.915,0.531,0,0,0.144 -1,0.798,0.798,0.65,0,0,0,0,0.973,0.549,0,0,0.18 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.144 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.18 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.072 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.18 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.036 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0.252 -1,0.0833,0.0833,1,0,0,0,0.281,0.608,0.0241,0,0,0.144 -1,0.253,0.253,0.617,0,0,0,0.14,0.68,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0.333,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.186,0.186,0.183,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.181,0.181,1,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.18,0.18,1,0,0,0,0.281,0.647,0.146,0,0,0.324 -0.667,0.315,0.315,1,0,0,0,0.14,0.732,0.312,0,0,0.216 -0.667,0.343,0.343,1,0,0,0,0.14,0.758,0.343,0,0,0 -0.333,0.234,0.234,0.917,0,0,0,0.281,0.679,0.189,0,0,0.072 -0.333,0.299,0.299,1,0,0,0,0.281,0.699,0.195,0,0,0 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.437,0,0,0.036 -1,0.991,0.991,0.15,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.621,0,0,0.241 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.206,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.117,0.117,1,0,0,0,0.14,0.654,0.0362,0,0,0.38 -1,0.151,0.151,0.817,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.719,0.074,0,0,0 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.334,0.334,0,0,0.0667,0.133,0.14,0.732,0.117,0,0.215,0.288 -0.667,0.322,0.322,0.517,0,0.867,1,0.14,0.732,0.129,0,0.485,0.072 -0.667,0.313,0.313,0.25,0,0,0.5,0.14,0.732,0.136,0,0.437,0.036 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0.377,0.288 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0.603,0.18 -0.667,0.343,0.343,0.267,0,0,0,0.14,0.758,0.181,0,0.402,0.036 -0.667,0.418,0.418,0.517,0,0,0,0.14,0.797,0.224,0,0.373,0.288 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.036 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0.18 -1,0.991,0.991,1,0.55,0,0,0,0.973,0.758,0.684,0,0.144 -1,0.823,0.823,1,0.8,0,0,0,0.934,0.936,0.644,0.114,0.144 -1,0.621,0.621,0.9,0,0.933,0.817,0,0.857,0.887,0,0,0.072 -1,0.536,0.536,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.154 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.269 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0.113 -1,0.0833,0.0833,0,0,0,0,0.281,0.608,0.026,0,0,0.133 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0527,0,0,0.072 -0.667,0.196,0.196,1,0,0,0,0.281,0.647,0.0604,0,0,0.144 -0.667,0.192,0.192,1,0,0,0,0.281,0.647,0.0664,0,0,0.19 -0.667,0.186,0.186,1,0,0,0,0.281,0.647,0.0724,0,0.478,0.036 -0.667,0.313,0.313,0.4,0,0.933,0.883,0.14,0.732,0.136,0,0.397,0.252 -0.333,0.18,0.18,0,0,0,1,0.281,0.647,0.0845,0,0.387,0.036 -0.333,0.182,0.182,0.0167,0,0,0.283,0.281,0.647,0.0888,0,0.46,0 -0.333,0.196,0.196,1,0,0,0,0.281,0.66,0.0982,0,0.332,0.036 -1,0.602,0.602,1,0,0,0,0,0.915,0.327,0,0,0.072 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.072 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0 -0.667,0.677,0.677,0.9,0.3,0,0,0.14,0.836,0.51,0.511,0,0 -0.667,0.565,0.565,0.0167,1,0,0,0.14,0.81,0.629,0.19,0,0.396 -0.667,0.24,0.24,1,0.05,0,0,0.281,0.66,0.306,0,0,0.202 -1,0.374,0.374,0.783,0,0,0,0.14,0.706,0.363,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.407 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.192,0.192,0.0167,0,0,0,0.281,0.647,0.0664,0,0,0 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.732,0.129,0,0,0.222 -0.667,0.313,0.313,0,0,0,0,0.14,0.732,0.136,0,0,0.15 -0.667,0.18,0.18,0.517,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.182,0.182,1,0,0,0,0.281,0.647,0.0888,0,0,0.036 -0.667,0.343,0.343,0.817,0,0,0,0.14,0.758,0.181,0,0,0.036 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.548,0.548,0.517,0,0,0,0.14,0.836,0.273,0,0,0.36 -0.667,0.669,0.669,1,0,0,0,0.14,0.849,0.366,0,0,0.252 -0.667,0.677,0.677,0.0333,0,0,0,0.14,0.836,0.51,0,0,0.324 -0.667,0.565,0.565,0,0.3,0,0,0.14,0.81,0.629,0.741,0,0.216 -1,0.621,0.621,0,1,0,0,0,0.857,0.887,0.249,0,0.036 -1,0.374,0.374,0,0.317,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.415 -1,0.253,0.253,0,0,0,0,0.14,0.68,0.0551,0,0,0.0701 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.122 -0.333,0.192,0.192,0,0,0,0,0.281,0.647,0.0664,0,0,0.143 -0.333,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.647,0.0759,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.667,0.343,0.343,0.767,0,0,0,0.14,0.758,0.181,0,0,0.396 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0.288 -1,0.991,0.991,1,0,0,0,0,0.973,0.758,0,0,0.288 -1,0.823,0.823,0.15,0,0,0,0,0.934,0.936,0,0,0.322 -1,0.43,0.43,0,0,0,0,0.14,0.758,0.596,0,0,0.218 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.363,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.229 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.183,0.183,0.517,0,0,0,0.281,0.64,0.0449,0,0,0.216 -0.667,0.334,0.334,1,0.05,0,0,0.14,0.732,0.0895,0.427,0,0 -0.667,0.343,0.343,0.0333,1,0,0,0.14,0.732,0.105,0.787,0,0 -0.667,0.334,0.334,0,0.3,0,0,0.14,0.732,0.117,0.523,0,0.036 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0.678,0.263,0.036 -0.667,0.313,0.313,0,0,0.933,0.633,0.14,0.732,0.136,0.511,0.502,0.036 -0.333,0.18,0.18,0,0,0,0.183,0.281,0.647,0.0845,0,0.457,0.036 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0.577,0.216 -0.333,0.196,0.196,0,0,0,0,0.281,0.66,0.0982,0,0.543,0.072 -0.333,0.234,0.234,0,0,0,0,0.281,0.679,0.12,0.238,0.481,0.273 -1,0.798,0.798,0.267,0.8,0,0,0,0.973,0.402,0.619,0.772,0.036 -0.667,0.669,0.669,1,0.267,0,0,0.14,0.849,0.366,0.393,0.523,0.072 -1,0.991,0.991,0.533,0,0,0,0,0.973,0.758,0,0.383,0.216 -0.667,0.565,0.565,0,0,0,0,0.14,0.81,0.629,0,0.671,0.036 -1,0.24,0.24,0,0,0,0,0.281,0.66,0.306,0,0.675,0.036 -1,0.212,0.212,0.0167,0,0,0,0.281,0.634,0.189,0,0.665,0.036 -1,0.116,0.116,0.5,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.108 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.15 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.049,0,0,0.29 -1,0.334,0.334,0,0,0,0,0.14,0.732,0.128,0,0,0.0678 -1,0.343,0.343,0,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.33 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.118,0,0,0.222 -1,0.313,0.313,0,0,0,0,0.14,0.732,0.233,0,0,0.306 -1,0.441,0.441,0,0,0,0,0,0.818,0.402,0,0,0.0523 -1,0.448,0.448,0,0,0,0,0,0.818,0.459,0,0,0 -1,0.49,0.49,0,0,0,0,0,0.857,0.505,0,0,0.036 -1,0.602,0.602,0.683,0,0,0,0,0.915,0.531,0,0,0 -0.667,0.548,0.548,0.867,0,0,0,0.14,0.836,0.372,0,0,0.216 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.437,0,0,0.036 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.454 -1,0.536,0.536,0,0,0,0,0,0.779,0.582,0,0,0.557 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.064 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.192,0.192,0,0,0,0,0.281,0.647,0.0731,0,0,0.0887 -1,0.196,0.196,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0.00422,0 -0.333,0.181,0.181,0,0.467,0.733,0.3,0.281,0.647,0.125,0.711,0.54,0.144 -0.333,0.18,0.18,0,0.883,0.2,1,0.281,0.647,0.146,0,0.769,0 -0.667,0.315,0.315,0,0,0,0.05,0.14,0.732,0.312,0,0.627,0 -0.667,0.343,0.343,0,0,0,0,0.14,0.758,0.343,0,0.433,0.036 -0.667,0.418,0.418,0,0,0,0,0.14,0.797,0.36,0,0.477,0.072 -1,0.798,0.798,0,0,0,0,0,0.973,0.549,0,0,0.036 -1,0.979,0.979,0,0,0,0,0,0.993,0.647,0,0,0.216 -1,0.991,0.991,0,0,0,0,0,0.973,0.851,0,0,0.252 -1,0.823,0.823,0,0,0,0,0,0.934,1,0,0,0.036 -1,0.621,0.621,0,0,0,0,0,0.857,0.923,0,0,0.463 -1,0.374,0.374,0,0,0,0,0.14,0.706,0.394,0,0,0.18 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.136 -1,0.0833,0.0833,0.517,0,0,0,0.281,0.608,0.026,0,0,0.0735 -0.667,0.253,0.253,1,0,0,0,0.14,0.68,0.0551,0,0,0.137 -1,0.316,0.316,0.817,0,0,0,0.14,0.719,0.074,0,0,0.117 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.0895,0,0,0.263 -0.667,0.343,0.343,0,0,0,0,0.14,0.732,0.105,0,0,0.0885 -0.667,0.334,0.334,0,0,0,0,0.14,0.732,0.117,0,0,0.293 -0.667,0.322,0.322,0,0,0,0,0.14,0.732,0.129,0,0.179,0.191 -0.667,0.313,0.313,0,0,0.933,0.383,0.14,0.732,0.136,0,0.454,0.216 -0.667,0.311,0.311,0,0,0,0.433,0.14,0.732,0.153,0,0.312,0.036 -0.667,0.315,0.315,0.0167,0,0,0,0.14,0.732,0.162,0,0.381,0.036 -0.667,0.343,0.343,0.5,0,0,0,0.14,0.758,0.181,0,0.414,0.072 -1,0.602,0.602,0,0,0,0,0,0.915,0.327,0,0.741,0.036 -1,0.798,0.798,0.517,0,0,0,0,0.973,0.402,0,0.0323,0.036 -1,0.979,0.979,1,0,0,0,0,0.993,0.541,0,0,0.036 -1,0.991,0.991,0.0333,0,0,0,0,0.973,0.758,0,0,0.072 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.036 -1,0.116,0.116,0,0.3,0,0,0.281,0.614,0.0879,0.621,0.0886,0 -1,0.0743,0.0743,0,0.8,0.933,0.633,0.281,0.608,0.0424,0,0.546,0.108 -1,0.0578,0.0578,0,0,0,0.183,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.226 -1,0.151,0.151,0,0,0,0,0.281,0.621,0.0355,0,0,0.48 -1,0.183,0.183,0,0,0,0,0.281,0.64,0.0449,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.328 -0.667,0.186,0.186,0,0,0,0,0.281,0.647,0.0724,0,0,0 -1,0.445,0.445,0,0,0,0,0,0.818,0.196,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0 -0.333,0.196,0.196,0.267,0,0,0,0.281,0.66,0.0982,0,0,0.108 -0.333,0.234,0.234,1,0,0,0,0.281,0.679,0.12,0,0,0.553 -1,0.798,0.798,0.533,0,0,0,0,0.973,0.402,0,0,0.036 -0.667,0.669,0.669,0,0,0,0,0.14,0.849,0.366,0,0,0.036 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.036 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.371 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.208 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.072 -1,0.0495,0.0495,0,0.25,0,0,0.421,0.562,0.0159,0,0.134,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.151,0.151,1,0,0,0,0.281,0.621,0.0355,0,0,0.153 -1,0.183,0.183,0.833,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.334,0.334,0.75,0,0,0,0.14,0.732,0.0895,0,0.0816,0 -1,0.49,0.49,0,0,0.933,0.383,0,0.818,0.149,0,0.491,0.036 -0.667,0.334,0.334,0.0167,0,0,0.7,0.14,0.732,0.117,0,0.615,0.072 -0.667,0.322,0.322,1,0,0,0,0.14,0.732,0.129,0,0,0.288 -0.667,0.313,0.313,0.533,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.311,0.311,0,0,0,0,0.14,0.732,0.153,0,0,0.036 -0.667,0.315,0.315,0,0,0,0,0.14,0.732,0.162,0,0,0.036 -0.333,0.196,0.196,0.267,0,0,0,0.281,0.66,0.0982,0,0,0.036 -0.667,0.418,0.418,1,0,0,0,0.14,0.797,0.224,0,0,0.072 -1,0.798,0.798,1,0,0,0,0,0.973,0.402,0,0,0.144 -1,0.979,0.979,0.0667,0,0,0,0,0.993,0.541,0,0,0.036 -1,0.991,0.991,0,0,0,0,0,0.973,0.758,0,0,0.126 -1,0.823,0.823,0,0,0,0,0,0.934,0.936,0,0,0.18 -1,0.621,0.621,0,0,0,0,0,0.857,0.887,0,0,0.28 -1,0.212,0.212,0,0,0,0,0.281,0.634,0.189,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.0722 -1,0.47,0.47,0,0,0,0,0,0.824,0.125,0,0,0.24 -1,0.481,0.481,0,0.25,0,0,0,0.824,0.148,0.539,0,0.108 -1,0.468,0.468,0,1,0,0,0,0.824,0.166,0.0795,0,0 -1,0.449,0.449,0,0.0667,0,0,0,0.824,0.184,0,0,0.288 -1,0.436,0.436,0,0,0,0,0,0.824,0.194,0,0,0.108 -1,0.432,0.432,0,0,0,0,0,0.824,0.22,0,0,0.036 -1,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0.167,0,0.216 -1,0.458,0.458,0,0.75,0,0,0,0.863,0.261,0.776,0,0.036 -1,0.526,0.526,0,0.567,0,0,0,0.922,0.325,0,0,0.18 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.108 -1,0.67,0.67,0,0.25,0,0,0.14,0.841,0.507,0.555,0,0.18 -1,0.625,0.625,0,1,0,0,0.14,0.815,0.625,0.0738,0,0.036 -0.667,0.0495,0.0495,0,0.333,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.252 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.16 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.388 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.422 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.0604 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.0933 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.036 -0.333,0.178,0.178,0.217,0,0,0,0.281,0.649,0.0882,0,0,0 -0.333,0.186,0.186,1,0,0,0,0.281,0.662,0.0976,0,0,0.144 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0,0.18 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0.46,0,0.036 -0.667,0.595,0.595,1,1,0,0,0.14,0.854,0.364,0.554,0,0.036 -0.667,0.67,0.67,0.65,0.583,0,0,0.14,0.841,0.507,0.667,0,0 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0.533,0,0.216 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.108 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.18 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.072 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0223,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.174 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.259 -0.333,0.181,0.181,0,0,0,0,0.281,0.642,0.0488,0,0,0.138 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.119 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0923,0,0,0.134 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.324 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.144 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.272,0,0,0.036 -1,0.435,0.435,0,0,0,0,0,0.824,0.456,0,0,0.072 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.108 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.358,0,0,0.252 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.245 -0.667,0.595,0.595,0.9,0,0,0,0.14,0.854,0.434,0,0,0.241 -1,0.67,0.67,1,0,0,0,0.14,0.841,0.569,0,0,0.259 -0.667,0.337,0.337,1,0,0,0,0.281,0.688,0.343,0,0,0 -1,0.275,0.275,1,0,0,0,0.281,0.662,0.317,0,0,0.036 -1,0.442,0.442,0.967,0,0,0,0.14,0.71,0.392,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.275 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0.211 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0326,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.105 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.252 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.072 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.072 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0.036 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0.036 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.188,0,0,0.072 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0,0.216 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0,0.396 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.294,0,0,0.036 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.108 -0.667,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.104 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.167 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.0814 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.0692 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0.125 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.189,0.189,0.767,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.183,0.183,0.0333,0,0,0,0.281,0.649,0.072,0,0,0 -1,0.436,0.436,0,0,0,0,0,0.824,0.194,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.108 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.216 -0.667,0.322,0.322,0.5,0,0,0,0.14,0.762,0.179,0,0,0.144 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0.036 -1,0.674,0.674,0.467,0,0,0,0,0.98,0.399,0.144,0,0.108 -1,0.868,0.868,0.0333,0.75,0,0,0,1,0.537,0.588,0,0.252 -1,0.98,0.98,0,0.833,0,0,0,0.98,0.752,0.715,0,0.432 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.192 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.036 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.072 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0908 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.306 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0.0816,0 -0,0.0495,0.0495,0,0.25,0.867,0.317,0.421,0.562,0.0159,0.538,0.624,0.036 -0.667,0.337,0.337,0,1,0.133,0.467,0.14,0.736,0.104,0.858,0.439,0.072 -0.667,0.328,0.328,0,0.0667,0,0,0.14,0.736,0.116,0.146,0.378,0.036 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0.385,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0.547,0.139 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0.363,0.036 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.349,0.144 -0.667,0.322,0.322,0.467,0,0,0,0.14,0.762,0.179,0,0.606,0.072 -0.667,0.367,0.367,1,0,0,0,0.14,0.802,0.222,0,0.511,0.108 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0.336,0.072 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0,0.157 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.036 -1,0.913,0.913,0.4,0,0,0,0,0.941,0.929,0,0,0.375 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.265 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.279 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.261 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.124 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,0.467,0,0,0,0.14,0.736,0.104,0,0,0.144 -0.667,0.328,0.328,1,0,0,0,0.14,0.736,0.116,0,0,0.108 -0.667,0.316,0.316,1,0,0,0,0.14,0.736,0.128,0,0,0.072 -0.667,0.307,0.307,1,0,0,0,0.14,0.736,0.135,0,0,0.18 -0.667,0.305,0.305,1,0,0,0,0.14,0.736,0.152,0,0.158,0.128 -1,0.435,0.435,0.4,0.25,1,0.817,0,0.824,0.233,0.496,0.643,0 -1,0.458,0.458,0,1,0,0.233,0,0.863,0.261,0.487,0.0788,0.18 -1,0.526,0.526,0.967,0.0667,0,0,0,0.922,0.325,0.556,0,0.151 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0.331,0,0 -1,0.868,0.868,1,1,0,0,0,1,0.537,0.688,0,0.072 -1,0.98,0.98,1,0.317,0,0,0,0.98,0.752,0.67,0,0.036 -1,0.913,0.913,0.9,0,0,0,0,0.941,0.929,0.23,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0884 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.168 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.0761 -1,0.47,0.47,0,0,0,0,0,0.824,0.125,0,0,0.182 -1,0.481,0.481,0,0,0,0,0,0.824,0.148,0,0,0.108 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0.036 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.252 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.252 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.036 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0 -0.333,0.208,0.208,0.967,0,0,0,0.281,0.682,0.119,0,0,0.036 -0.667,0.466,0.466,1,0,0,0,0.14,0.841,0.271,0,0,0.036 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.18 -0.667,0.67,0.67,1,0,0,0,0.14,0.841,0.507,0,0,0.072 -0.667,0.625,0.625,0.9,0,0,0,0.14,0.815,0.625,0,0,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.108 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.216 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.467,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0829,0.0829,1,0,0,0,0.281,0.61,0.0259,0,0,0.294 -1,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0,0,0 -1,0.444,0.444,1,0,0,0,0,0.804,0.102,0,0,0 -0.667,0.33,0.33,1,0,0,0,0.14,0.736,0.0889,0,0,0.036 -0.333,0.193,0.193,0.4,0,0,0,0.281,0.649,0.0601,0,0,0.036 -0.333,0.189,0.189,0.467,0,0,0,0.281,0.649,0.066,0,0,0.108 -1,0.449,0.449,1,0,0,0,0,0.824,0.184,0,0,0.072 -1,0.436,0.436,0.317,0,0,0,0,0.824,0.194,0,0,0.18 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.036 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0.105,0,0.036 -0.333,0.208,0.208,0.717,0.75,0,0,0.281,0.682,0.119,0.665,0,0.144 -0.667,0.466,0.466,1,0.567,0,0,0.14,0.841,0.271,0,0,0.072 -1,0.868,0.868,1,0.25,0,0,0,1,0.537,0.588,0,0 -1,0.98,0.98,1,1,0,0,0,0.98,0.752,0.111,0,0.036 -1,0.913,0.913,1,0.0667,0,0,0,0.941,0.929,0,0,0.252 -1,0.727,0.727,0.15,0,0,0,0,0.863,0.88,0,0,0.072 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.368 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.127 -1,0.15,0.15,0.15,0,0,0,0.281,0.623,0.0326,0,0,0.0981 -1,0.313,0.313,1,0,0,0,0.14,0.723,0.0794,0,0,0.289 -0.667,0.33,0.33,0.633,0,0,0,0.14,0.736,0.127,0,0,0.182 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.252 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0,0 -0.333,0.208,0.208,0.65,0,0,0,0.281,0.682,0.188,0,0,0 -0.333,0.258,0.258,1,0,0,0,0.281,0.701,0.194,0.155,0,0.581 -1,0.868,0.868,1,0.683,0,0,0,1,0.642,0.805,0,0.39 -1,0.98,0.98,1,0.633,0,0,0,0.98,0.845,0,0,0.376 -0.667,0.625,0.625,1,0,0,0,0.14,0.815,0.668,0,0,0.242 -1,0.727,0.727,0.217,0,0,0,0,0.863,0.916,0,0,0.101 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.65,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,1,0,0,0,0.281,0.623,0.0326,0,0,0.107 -1,0.181,0.181,0.133,0,0,0,0.281,0.642,0.0488,0,0,0.178 -1,0.33,0.33,0,0,0,0,0.14,0.736,0.127,0,0,0.494 -1,0.481,0.481,0,0,0,0,0,0.824,0.241,0,0,0.312 -1,0.468,0.468,0.65,0,0,0,0,0.824,0.287,0,0,0 -0.333,0.183,0.183,0.883,0,0,0,0.281,0.649,0.117,0,0,0.072 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.144 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.396 -0,0.0495,0.0495,0.65,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.466,0.466,1,0.433,0,0,0.14,0.841,0.369,0.691,0,0 -1,0.868,0.868,0.65,0.883,0,0,0,1,0.642,0.357,0,0 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0.108 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.072 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.428 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.495 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.338 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0735,0,0,0.176 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.108 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.164 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0.47,0 -0.667,0.305,0.305,0,0,1,0.783,0.14,0.736,0.152,0,0.675,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0.00422,0.036 -0.667,0.322,0.322,0.217,0,0,0,0.14,0.762,0.179,0,0,0.18 -0.333,0.208,0.208,1,0,0,0,0.281,0.682,0.119,0,0,0.432 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0.072 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0,0 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.108 -1,0.913,0.913,0.65,0,0,0,0,0.941,0.929,0,0,0.108 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.216 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.155 -1,0.0513,0.0513,0.467,0,0,0,0.281,0.61,0.02,0,0,0.231 -1,0.0829,0.0829,1,0.5,0,0,0.281,0.61,0.0259,0.634,0,0 -1,0.15,0.15,1,1,0,0,0.281,0.623,0.0353,0.134,0,0 -0.667,0.181,0.181,1,0.0833,0,0,0.281,0.642,0.0447,0,0,0.036 -0.667,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0.036 -0.667,0.193,0.193,0.4,0,0,0,0.281,0.649,0.0601,0,0,0.216 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.072 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.301 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0.245,0,0.036 -0.667,0.322,0.322,0,0.75,0,0,0.14,0.762,0.179,1,0,0.198 -1,0.526,0.526,0,0.567,0,0,0,0.922,0.325,0.854,0,0.397 -1,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0.559,0,0.52 -1,0.868,0.868,0,1,0,0,0,1,0.537,0.782,0,0.3 -1,0.98,0.98,0,0.317,0,0,0,0.98,0.752,0.316,0,0.334 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.57 -1,0.727,0.727,0.717,0,0,0,0,0.863,0.88,0,0,0 -1,0.638,0.638,0.05,0,0,0,0,0.784,0.532,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.12 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.312 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.13 -1,0.15,0.15,0.467,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,1,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0.833,0,0,0,0.281,0.649,0.0524,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.108 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.108 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.036 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.036 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.036 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.036 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.036 -0.333,0.258,0.258,0.217,0,0,0,0.281,0.701,0.144,0,0,0.395 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.216 -1,0.98,0.98,0.317,0,0,0,0,0.98,0.752,0.27,0,0.108 -1,0.913,0.913,0,1,0,0,0,0.941,0.929,0.73,0,0 -1,0.727,0.727,0,0.317,0,0,0,0.863,0.88,0,0,0.036 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0.322 -0.667,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.353 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.337,0.337,0.217,0,0,0,0.14,0.736,0.104,0,0,0 -0.667,0.328,0.328,0.55,0,0,0,0.14,0.736,0.116,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.144 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.036 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0.0816,0.108 -0.333,0.186,0.186,0,0,0.867,0.317,0.281,0.662,0.0976,0,0.688,0.252 -0.667,0.367,0.367,0,0,0.133,0.733,0.14,0.802,0.222,0,0.913,0.253 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0.11,0.304 -1,0.868,0.868,0,0,0,0,0,1,0.537,0,0,0.108 -0.667,0.36,0.36,0,0.5,0,0,0.281,0.701,0.261,0.985,0.423,0.18 -0.667,0.337,0.337,0,0.817,1,0.817,0.281,0.688,0.32,0.155,0.308,0 -1,0.275,0.275,0,0,0,0.233,0.281,0.662,0.304,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0741 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.29 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.289 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0.558 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.247 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.45 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.108 -0.667,0.466,0.466,0.717,0,0,0,0.14,0.841,0.271,0,0,0.036 -0.667,0.595,0.595,1,0,0,0,0.14,0.854,0.364,0,0,0.072 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.288 -1,0.913,0.913,1,0,0,0,0,0.941,0.929,0,0,0.144 -1,0.727,0.727,1,0,0,0,0,0.863,0.88,0,0,0 -1,0.442,0.442,0.15,0,0,0,0.14,0.71,0.36,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0.134,0,0 -1,0.33,0.33,0,0.683,0,0,0.14,0.736,0.127,0.584,0,0 -1,0.337,0.337,0,0.633,0,0,0.14,0.736,0.166,0.536,0,0.0622 -0.667,0.328,0.328,0,0,0,0,0.14,0.736,0.197,0,0,0.329 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.319 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0.46 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0.0816,0.468 -0.667,0.322,0.322,0,0,1,0.5,0.14,0.762,0.34,0,0.353,0.0863 -0.667,0.367,0.367,0,0,0,0.55,0.14,0.802,0.358,0,0.277,0.108 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.369,0,0.56,0.036 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.434,0,0.665,0.18 -0.333,0.36,0.36,0,0,0,0,0.281,0.701,0.294,0,0.466,0.252 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0.75,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.317,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.252 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.1,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0496,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0309,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.252 -1,0.0495,0.0495,0.15,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0.425,0,0 -1,0.19,0.19,0.383,0.933,0,0,0.281,0.649,0.0727,0.28,0,0 -0.333,0.0495,0.0495,0,0.383,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.072 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.145,0,0,0.18 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.164,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.179,0,0.097,0.072 -0.333,0.208,0.208,0,0,0.6,0.25,0.281,0.682,0.188,0,0.571,0.216 -0.667,0.466,0.466,0,0,0.4,1,0.14,0.841,0.369,0,0,0.072 -0.333,0.322,0.322,0,0,0,1,0.281,0.708,0.226,0,0,0.036 -0.333,0.36,0.36,0,0,0,0.383,0.281,0.701,0.294,0,0,0.252 -0.667,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.108 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.312 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.199 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.036 -1,0.0829,0.0829,0.467,0,0,0,0.281,0.61,0.0259,0,0,0.124 -0.667,0.251,0.251,1,0,0,0,0.14,0.684,0.0548,0.113,0,0.0802 -1,0.444,0.444,1,0.75,0,0,0,0.804,0.102,0.672,0,0 -0.667,0.33,0.33,1,0.833,0,0,0.14,0.736,0.0889,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0,0.18 -0.333,0.189,0.189,0.4,0,0,0,0.281,0.649,0.066,0,0,0.108 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.036 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.036 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.229 -1,0.526,0.526,0.967,0,0,0,0,0.922,0.325,0,0,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0,0.144 -1,0.595,0.595,0.333,0,0,0,0.14,0.854,0.364,0,0,0.144 -1,0.67,0.67,0,0,0,0,0.14,0.841,0.507,0,0,0.108 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.625,0,0,0.18 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.036 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0.257 -0.667,0.193,0.193,0,0,0,0,0.281,0.649,0.0601,0,0,0.0664 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.263 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0.289 -0.667,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.16 -0.667,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.295 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.591 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.14 -0.667,0.367,0.367,0,0,0,0,0.14,0.802,0.222,0,0,0.229 -0.667,0.466,0.466,0,0,0,0,0.14,0.841,0.271,0,0,0.036 -0.667,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0.0886,0.573 -1,0.98,0.98,0,0,0.867,0.317,0,0.98,0.752,0,0.0197,0.354 -1,0.913,0.913,0,0,0.133,0.2,0,0.941,0.929,0,0,0.25 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.18 -1,0.638,0.638,0,0,0,0,0,0.784,0.532,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0165,0,0,0.162 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.02,0,0,0.127 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.251,0.251,0.717,0,0,0,0.14,0.684,0.0548,0,0,0.072 -0.667,0.181,0.181,0.817,0,0,0,0.281,0.642,0.0447,0,0,0.252 -0.667,0.19,0.19,0.467,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0,0.108 -0.333,0.189,0.189,0.0667,0,0,0,0.281,0.649,0.066,0,0,0.072 -0.333,0.183,0.183,0.467,0,0,0,0.281,0.649,0.072,0,0,0.072 -0.667,0.178,0.178,1,0,0,0,0.281,0.649,0.0754,0,0,0.108 -0.667,0.0495,0.0495,0.0667,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.105,0.216 -1,0.526,0.526,0,0.5,1,0.783,0,0.922,0.325,0.772,0,0 -0.667,0.466,0.466,0,1,0,0,0.14,0.841,0.271,0,0,0.118 -1,0.868,0.868,0.467,0.0833,0,0,0,1,0.537,0,0,0.327 -1,0.98,0.98,0.3,0,0,0,0,0.98,0.752,0,0,0.072 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0.177 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.592,0,0,0.18 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.15,0.15,0.217,0,0,0,0.281,0.623,0.0353,0,0,0 -0.667,0.313,0.313,0.55,0,0,0,0.14,0.723,0.0735,0,0,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.736,0.0889,0,0.307,0 -0.667,0.337,0.337,0,0,1,0.817,0.14,0.736,0.104,0,0.414,0.072 -0.667,0.328,0.328,0,0,0,1,0.14,0.736,0.116,0,0.506,0.036 -0.667,0.316,0.316,0,0,0,1,0.14,0.736,0.128,0,0.424,0.252 -0.667,0.307,0.307,0,0,0,1,0.14,0.736,0.135,0,0.406,0.252 -1,0.432,0.432,0,0,0,0.65,0,0.824,0.22,0,0.506,0.036 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0.726,0.108 -1,0.458,0.458,0,0,0,0,0,0.863,0.261,0,0.578,0 -1,0.526,0.526,0.967,0,0,0,0,0.922,0.325,0,0.35,0 -1,0.674,0.674,1,0,0,0,0,0.98,0.399,0,0.485,0 -1,0.868,0.868,1,0,0,0,0,1,0.537,0,0.498,0.036 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0.361,0.18 -1,0.913,0.913,0.9,0,0,0,0,0.941,0.929,0,0.429,0 -0.667,0.275,0.275,0,0,0,0,0.281,0.662,0.304,0,0,0.361 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0.301 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0896 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.0259,0,0,0.0668 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.383 -0.667,0.181,0.181,0,0,0,0,0.281,0.642,0.0447,0,0,0.106 -0.667,0.33,0.33,0.467,0,0,0,0.14,0.736,0.0889,0,0,0.0722 -0.667,0.337,0.337,1,0,0,0,0.14,0.736,0.104,0,0,0.287 -0.667,0.328,0.328,0.0667,0,0,0,0.14,0.736,0.116,0,0,0.122 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0.144 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0,0.327 -0.667,0.305,0.305,0,0,0,0,0.14,0.736,0.152,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0.288 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.036 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.108 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.324 -1,0.868,0.868,0.467,0,0,0,0,1,0.537,0,0,0.144 -1,0.98,0.98,1,0,0,0,0,0.98,0.752,0,0,0.144 -1,0.913,0.913,0.833,0,0,0,0,0.941,0.929,0,0,0.036 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.29 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.616,0.0874,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.61,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.61,0.024,0,0,0 -1,0.15,0.15,0.5,0,0,0,0.281,0.623,0.0326,0,0,0 -1,0.313,0.313,0,0,0,0,0.14,0.723,0.0794,0.284,0,0.177 -1,0.33,0.33,0,0.933,0,0,0.14,0.736,0.127,0.571,0,0.142 -0.667,0.193,0.193,0,0.383,0,0,0.281,0.649,0.0923,0.374,0.374,0.036 -0.667,0.189,0.189,0,0,1,1,0.281,0.649,0.108,0,0.585,0 -0.667,0.183,0.183,0,0,0,0.05,0.281,0.649,0.117,0,0,0.216 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0,0.036 -0.667,0.305,0.305,0.65,0,0,0,0.14,0.736,0.272,0,0,0.138 -1,0.307,0.307,0.883,0,0,0,0.14,0.736,0.31,0,0,0.199 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.34,0,0,0.106 -0.667,0.208,0.208,0.4,0,0,0,0.281,0.682,0.188,0,0,0.036 -0.667,0.258,0.258,1,0,0,0,0.281,0.701,0.194,0,0,0.036 -0.667,0.322,0.322,0.383,0,0,0,0.281,0.708,0.226,0,0,0 -0.667,0.36,0.36,0,0,0,0,0.281,0.701,0.294,0,0,0.072 -1,0.625,0.625,0,0,0,0,0.14,0.815,0.668,0,0,0.317 -1,0.501,0.501,0,0,0,0,0.14,0.762,0.617,0,0,0.245 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.392,0,0,0.116 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.159 -1,0.19,0.19,0,0,0,0,0.281,0.649,0.0727,0,0,0.184 -1,0.337,0.337,0,0,0,0,0.14,0.736,0.166,0,0,0.107 -0.667,0.189,0.189,0,0,0,0,0.281,0.649,0.108,0,0,0.318 -0.667,0.183,0.183,0,0,0,0,0.281,0.649,0.117,0,0,0.236 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.125,0,0.491,0.036 -0.333,0.177,0.177,0,0,1,0.517,0.281,0.649,0.145,0,0.603,0.036 -0.333,0.178,0.178,0.4,0,0,0,0.281,0.649,0.164,0,0.332,0.036 -0.667,0.322,0.322,0.1,0,0,0,0.14,0.762,0.34,0,0,0 -1,0.526,0.526,0,0,0,0,0,0.922,0.527,0,0,0.072 -1,0.674,0.674,0,0,0,0,0,0.98,0.545,0,0,0.144 -1,0.868,0.868,0,0,0,0,0,1,0.642,0,0,0.432 -1,0.98,0.98,0,0,0,0,0,0.98,0.845,0,0,0.036 -1,0.913,0.913,0,0,0,0,0,0.941,0.993,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.916,0,0,0.144 -1,0.638,0.638,0,0,0,0,0,0.784,0.578,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.182,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.281,0.61,0.0421,0,0,0.036 -1,0.0578,0.0578,0,0,0,0,0.281,0.61,0.0259,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.61,0.0183,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.736,0.104,0,0,0.18 -0.667,0.328,0.328,0,0,0,0.0667,0.14,0.736,0.116,0,0.554,0 -0.667,0.316,0.316,0,0,1,0.983,0.14,0.736,0.128,0,0.616,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.135,0,0.442,0.036 -1,0.432,0.432,0,0,0,0,0,0.824,0.22,0,0.0485,0.108 -1,0.435,0.435,0,0,0,0,0,0.824,0.233,0,0,0 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.036 -1,0.526,0.526,0,0,0,0,0,0.922,0.325,0,0,0 -1,0.674,0.674,0,0,0,0,0,0.98,0.399,0,0,0.396 -1,0.595,0.595,0,0,0,0,0.14,0.854,0.364,0,0,0.18 -1,0.98,0.98,0,0,0,0,0,0.98,0.752,0,0,0.18 -1,0.913,0.913,0,0,0,0,0,0.941,0.929,0,0,0 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0 -1,0.246,0.246,0,0,0,0,0.281,0.636,0.188,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.15,0 -1,0.0495,0.0495,0,0,0.867,0.317,0.421,0.562,0.0159,0,0.634,0 -1,0.15,0.15,0,0,0.133,0.733,0.281,0.623,0.0353,0,0.3,0 -1,0.181,0.181,0.967,0,0,0,0.281,0.642,0.0447,0,0,0 -0.667,0.19,0.19,1,0,0,0,0.281,0.649,0.0524,0,0,0 -0.667,0.193,0.193,0.333,0,0,0,0.281,0.649,0.0601,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.649,0.066,0,0,0.288 -0.333,0.183,0.183,0,0,0,0,0.281,0.649,0.072,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0.036 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.036 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0882,0,0,0.036 -0.667,0.322,0.322,0,0,0,0,0.14,0.762,0.179,0,0,0.036 -0.667,0.367,0.367,0.967,0,0,0.0667,0.14,0.802,0.222,0,0.0886,0 -1,0.674,0.674,1,0,1,0.717,0,0.98,0.399,0.13,0,0.072 -1,0.868,0.868,1,0.75,0,0,0,1,0.537,0.669,0,0.072 -1,0.98,0.98,1,0.567,0,0,0,0.98,0.752,0.542,0,0.036 -1,0.913,0.913,0.9,0,0,0,0,0.941,0.929,0,0,0.144 -1,0.727,0.727,0,0,0,0,0,0.863,0.88,0,0,0.144 -1,0.442,0.442,0,0,0,0,0.14,0.71,0.36,0,0,0.216 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.446 -1,0.15,0.15,0,0,0,0,0.281,0.623,0.0353,0,0,0.29 -1,0.444,0.444,0,0,0,0,0,0.804,0.102,0,0,0.203 -0.667,0.19,0.19,0.467,0,0,0,0.281,0.649,0.0524,0,0,0.26 -1,0.481,0.481,1,0,0,0,0,0.824,0.148,0,0,0.212 -1,0.468,0.468,0.833,0,0,0,0,0.824,0.166,0,0,0.036 -0.667,0.316,0.316,0,0,0,0,0.14,0.736,0.128,0,0,0 -0.333,0.178,0.178,0,0,0,0,0.281,0.649,0.0754,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.649,0.0839,0,0,0.036 -0.667,0.307,0.307,0,0,0,0,0.14,0.736,0.161,0,0,0 -0.333,0.186,0.186,0,0,0,0,0.281,0.662,0.0976,0,0,0.036 -0.333,0.208,0.208,0,0,0,0,0.281,0.682,0.119,0,0,0.216 -0.333,0.258,0.258,0.967,0,0,0,0.281,0.701,0.144,0,0,0.072 -0.333,0.322,0.322,1,0,0,0,0.281,0.708,0.19,0,0,0.108 -0.667,0.67,0.67,1,0,0,0,0.14,0.841,0.507,0,0,0.144 -0.667,0.625,0.625,1,0,0,0,0.14,0.815,0.625,0,0.0605,0.036 -1,0.501,0.501,0.9,0,0.867,0.317,0.14,0.762,0.592,0,0,0.072 -1,0.442,0.442,0,0,0.133,0.733,0.14,0.71,0.36,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.671,0.159,0,0,0.26 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.141 -1,0.305,0.305,0.267,0,0,0,0.14,0.611,0.0634,0,0,0.0905 -1,0.452,0.452,1,0,0,0,0,0.651,0.107,0,0,0.0887 -0.667,0.321,0.321,0.183,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.108 -0.667,0.3,0.3,0.0167,0,0,0,0.14,0.621,0.11,0,0,0 -0.333,0.171,0.171,0.7,0,0,0,0.281,0.591,0.0658,0,0,0.144 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.288 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.108 -0.333,0.174,0.174,0.0167,0,0,0,0.281,0.602,0.0846,0,0,0.072 -0.333,0.188,0.188,0.467,0,0,0,0.281,0.617,0.103,0,0,0.072 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.108 -1,0.736,0.736,0,0.3,0,0,0,0.79,0.457,0.642,0,0.144 -1,0.895,0.895,0,0.967,0,0,0,0.774,0.64,0.686,0,0.216 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0.211,0,0.226 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.0985 -1,0.35,0.35,0.0167,0,0,0,0.14,0.6,0.307,0,0,0.233 -1,0.116,0.116,1,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0.617,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.128 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.144 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.298,0.298,0.267,0,0,0,0.14,0.642,0.153,0,0,0.072 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.036 -0.667,0.395,0.395,0.917,0,0,0,0.14,0.704,0.232,0,0,0.108 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.144 -1,0.895,0.895,0.717,0,0,0,0,0.774,0.64,0,0,0.072 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.108 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.046 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.106 -0.667,0.184,0.184,0.1,0,0,0,0.281,0.591,0.0636,0,0,0.153 -0.667,0.185,0.185,1,0,0,0,0.281,0.591,0.0803,0.303,0,0.178 -0.667,0.312,0.312,1,0.883,0,0,0.14,0.621,0.169,0.149,0,0.035 -0.333,0.175,0.175,1,0.383,0,0,0.281,0.591,0.101,0,0,0.036 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0,0.0495,0.0495,0.533,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.216 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.291,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0.108 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.444 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.427 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.245 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.108 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.118 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0.0761 -0.667,0.177,0.177,0.6,0,0,0,0.281,0.586,0.0433,0,0,0 -0.333,0.184,0.184,0.117,0,0,0,0.281,0.591,0.0636,0,0,0.036 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.036 -0,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.072 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.216 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.305,0,0,0.144 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.252 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.266 -0.667,0.331,0.331,0.35,0,0,0,0.281,0.633,0.252,0,0,0.19 -0.667,0.635,0.635,1,0,0,0,0.14,0.683,0.57,0,0,0.0842 -1,0.807,0.807,0.833,0,0,0,0,0.682,0.78,0,0,0.215 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.108 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.46 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.108 -0.667,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.072 -0.667,0.318,0.318,0,0.55,0,0,0.14,0.621,0.0764,0.766,0,0 -0.667,0.321,0.321,0,0.717,0,0,0.14,0.621,0.0895,0.155,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.036 -0.667,0.3,0.3,0.767,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.667,0.289,0.289,0.417,0,0,0,0.14,0.621,0.13,0,0,0.18 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.072 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.454 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.288 -0,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.331,0.331,1,0,0,0,0.281,0.633,0.224,0,0,0.18 -0.667,0.635,0.635,0.433,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.072 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0.117 -1,0.245,0.245,0.933,0,0,0,0.14,0.58,0.0474,0,0,0.142 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.176 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.651,0.126,0,0,0.036 -1,0.443,0.443,0,0,0,0,0,0.651,0.142,0,0,0.036 -1,0.426,0.426,0,0,0,0,0,0.651,0.157,0,0,0 -1,0.413,0.413,0,0,0,0,0,0.651,0.166,0,0,0.398 -1,0.409,0.409,0,0,0,0,0,0.651,0.187,0,0,0.353 -1,0.41,0.41,0,0,0,0,0,0.651,0.198,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.072 -0.667,0.395,0.395,0.267,0,0,0,0.14,0.704,0.232,0,0,0.108 -0.667,0.507,0.507,0.217,0,0,0,0.14,0.714,0.31,0,0,0.324 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.072 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.144 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.208 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.212 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.072 -0.667,0.321,0.321,0.183,0,0,0,0.14,0.621,0.0895,0,0,0.036 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.036 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.216 -0.667,0.298,0.298,0.0167,0,0,0,0.14,0.642,0.153,0,0,0.036 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.036 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.18 -1,0.736,0.736,0.167,0,0,0,0,0.79,0.457,0,0,0.072 -1,0.895,0.895,0.267,0,0,0,0,0.774,0.64,0,0,0.036 -1,0.928,0.928,1,0,0,0,0,0.744,0.791,0,0.158,0.072 -1,0.807,0.807,0.433,0,0.933,0.383,0,0.682,0.749,0,0,0 -1,0.35,0.35,0,0,0,0.383,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0.267,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.318,0.318,0.183,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.072 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.144 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.108 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.298,0.298,0.267,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.108 -0.667,0.395,0.395,0.917,0,0.0667,0.133,0.14,0.704,0.232,0,0.388,0.18 -1,0.736,0.736,0,0,0.867,0.633,0,0.79,0.457,0,0.323,0.108 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0.406,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.347,0.622 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.495,0.0844 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0.489,0 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0.224,0 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0.419,0 -1,0.066,0.066,0,0,0,0,0.14,0.559,0.0314,0,0.142,0.194 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.221 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.232 -0.667,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.302 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.408 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.191 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.447 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.108 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0.219,0.252 -1,0.29,0.29,0.767,0,0.933,0.633,0.14,0.621,0.137,0,0.726,0.036 -0.667,0.174,0.174,1,0,0,1,0.281,0.602,0.0846,0,0,0.144 -0.667,0.326,0.326,1,0.05,0,0.7,0.14,0.673,0.19,0.358,0,0.216 -1,0.567,0.567,1,1,0,0,0,0.774,0.34,0,0,0.252 -1,0.736,0.736,0.867,0.217,0,0,0,0.79,0.457,0.111,0,0.036 -1,0.895,0.895,0,0.8,0,0,0,0.774,0.64,0.655,0,0.221 -1,0.928,0.928,0,0.467,0,0,0,0.744,0.791,0.669,0,0.204 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.288 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.0529 -1,0.184,0.184,0.6,0,0,0,0.281,0.591,0.0636,0,0,0.485 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.214 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.431 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0.266 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0,0.477 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0.194 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.0825 -0.667,0.298,0.298,0.35,0,0,0,0.14,0.642,0.291,0,0,0.144 -1,0.464,0.464,1,0,0,0,0,0.728,0.449,0,0,0.036 -1,0.567,0.567,0.35,0,0,0,0,0.774,0.464,0,0,0.036 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0.072 -0.667,0.613,0.613,0,0.133,0,0,0.14,0.704,0.485,0.429,0,0.144 -0.667,0.635,0.635,0,0.367,0,0,0.14,0.683,0.57,0.577,0,0.072 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.203 -1,0.5,0.5,0,0,0,0,0,0.62,0.492,0.31,0,0.234 -1,0.183,0.183,0,0.55,0,0,0.14,0.569,0.156,0.489,0,0.252 -1,0.099,0.099,0,0.65,0,0,0.14,0.559,0.0699,0.195,0,0.108 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0.304,0.108 -0.667,0.292,0.292,0,0,0.933,0.767,0.14,0.621,0.198,0,0.654,0.108 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0.203,0.108 -0.333,0.17,0.17,0.85,0,0,0,0.281,0.591,0.141,0,0,0.108 -1,0.298,0.298,1,0,0,0,0.14,0.642,0.291,0,0,0.252 -0.667,0.188,0.188,0.333,0,0,0,0.281,0.617,0.162,0,0,0.036 -0.667,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.072 -0.667,0.278,0.278,0,0,0,0,0.281,0.638,0.194,0,0,0.072 -0.667,0.331,0.331,0,0,0,0,0.281,0.633,0.252,0,0,0.036 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.151 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.161 -1,0.183,0.183,0,0.333,0,0,0.14,0.569,0.156,0.36,0,0.465 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.0796 -1,0.245,0.245,0,0.55,0,0,0.14,0.58,0.0474,0.699,0,0.201 -1,0.305,0.305,0,0.717,0,0,0.14,0.611,0.0634,0.538,0,0.0975 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.1 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.258 -0.667,0.181,0.181,0.267,0,0,0,0.281,0.591,0.0578,0,0,0 -0.333,0.175,0.175,0.217,0,0,0,0.281,0.591,0.0629,0,0,0.144 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.144 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.072 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -1,0.326,0.326,0.267,0,0,0,0.14,0.673,0.19,0,0,0.036 -1,0.395,0.395,1,0,0,0,0.14,0.704,0.232,0,0,0.072 -1,0.507,0.507,0.433,0,0,0,0.14,0.714,0.31,0,0,0.216 -1,0.331,0.331,0,0,0,0,0.281,0.633,0.224,0,0,0.072 -1,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.323 -1,0.245,0.245,0.483,0,0,0,0.14,0.58,0.0474,0,0,0.153 -1,0.305,0.305,0.517,0,0,0,0.14,0.611,0.0634,0,0,0.309 -1,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.255 -0.667,0.185,0.185,0.183,0,0,0,0.281,0.591,0.0527,0,0,0.118 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.108 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.036 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.18 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.036 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0.248,0.108 -1,0.567,0.567,0,0,0.933,0.883,0,0.774,0.34,0,0.28,0.233 -1,0.736,0.736,0,0,0,1,0,0.79,0.457,0,0,0.387 -1,0.895,0.895,0,0,0,0.983,0,0.774,0.64,0,0,0.199 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.603,0.273 -1,0.807,0.807,0,0,0.933,0.767,0,0.682,0.749,0,0,0.252 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.216 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.123 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.235 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.163 -1,0.177,0.177,0.767,0,0,0,0.281,0.586,0.0396,0,0,0.306 -1,0.318,0.318,1,0.05,0,0,0.14,0.621,0.0764,0.373,0,0.139 -1,0.456,0.456,1,1,0,0,0,0.651,0.126,0.641,0,0.344 -1,0.443,0.443,1,0.217,0,0,0,0.651,0.142,0.628,0,0.412 -1,0.426,0.426,0.867,0,0,0,0,0.651,0.157,0.216,0.287,0.377 -1,0.413,0.413,0,0,0.933,0.633,0,0.651,0.166,0,0.706,0.072 -0.667,0.169,0.169,0,0,0,0.4,0.281,0.591,0.073,0,0.366,0 -0.333,0.17,0.17,0.0167,0,0,0,0.281,0.591,0.0767,0,0,0.036 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.312 -0.667,0.395,0.395,0.167,0,0,0,0.14,0.704,0.232,0,0,0.44 -1,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.18 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.2 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.252 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.108 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.375 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.177,0.177,0.767,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.318,0.318,0.683,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.072 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.036 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.036 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.144 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0.036 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.036 -0.667,0.298,0.298,0.0167,0,0,0,0.14,0.642,0.153,0,0,0.072 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.19,0,0,0.072 -1,0.395,0.395,0.433,0.3,0,0,0.14,0.704,0.232,0.715,0,0 -1,0.507,0.507,0,0.967,0,0,0.14,0.714,0.31,0.653,0,0.108 -1,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0.148,0,0.036 -1,0.928,0.928,0,0.8,0,0,0,0.744,0.791,0.46,0,0 -1,0.555,0.555,0,0.733,0,0,0.14,0.642,0.505,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0613 -1,0.177,0.177,0.717,0,0,0,0.281,0.586,0.0396,0,0.0816,0 -0.667,0.184,0.184,0,0,0.933,0.383,0.281,0.591,0.0462,0,0.556,0 -0.667,0.185,0.185,0,0,0,0.65,0.281,0.591,0.0527,0,0.653,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0.487,0.376 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0 -1,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.036 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -1,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.252 -1,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0 -1,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.108 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.252 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.252 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.172 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0927 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0223,0,0,0.202 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.312 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.152 -1,0.312,0.312,0,0,0,0,0.14,0.621,0.169,0,0,0.151 -1,0.426,0.426,0,0,0,0,0,0.651,0.268,0,0,0.126 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.252 -0.333,0.169,0.169,0,0,0,0,0.281,0.591,0.125,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.141,0,0,0.216 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.036 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.072 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.167,0,0,0.072 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.371,0,0,0 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.485,0,0,0.108 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0.108 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0.0802 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.255 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0537 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.353 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.0878 -1,0.452,0.452,0,0,0,0,0,0.651,0.155,0,0,0.386 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.138 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0934,0,0,0.375 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.101,0,0,0.254 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.108,0,0,0.221 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0,0.127 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0844 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0.4 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0.626 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.315,0,0,0 -0.667,0.507,0.507,0,0.383,0,0,0.14,0.714,0.371,0.602,0.0731,0.144 -1,0.895,0.895,0,0.883,0.933,0.467,0,0.774,0.719,0.224,0.346,0.216 -1,0.928,0.928,0,0,0,0.567,0,0.744,0.845,0,0,0.288 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.148 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.375 -0.667,0.184,0.184,0.767,0,0,0,0.281,0.591,0.0462,0,0,0.245 -0.667,0.185,0.185,1,0,0,0,0.281,0.591,0.0527,0,0,0 -1,0.181,0.181,1,0,0,0,0.281,0.591,0.0578,0,0,0.134 -1,0.3,0.3,1,0,0,0,0.14,0.621,0.11,0,0,0.264 -0.333,0.0495,0.0495,0.867,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.281,0.591,0.073,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0.072 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.072 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.072 -0.667,0.395,0.395,0.767,0,0,0,0.14,0.704,0.232,0,0,0.216 -0.667,0.507,0.507,1,0,0,0,0.14,0.714,0.31,0,0,0.432 -0.667,0.613,0.613,0.417,0,0,0,0.14,0.704,0.432,0,0,0.108 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.216 -1,0.807,0.807,0.517,0,0,0,0,0.682,0.749,0,0,0.18 -1,0.35,0.35,1,0,0,0,0.14,0.6,0.307,0,0,0.438 -1,0.183,0.183,1,0,0,0,0.14,0.569,0.136,0,0,0.036 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.145 -1,0.0495,0.0495,0.117,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.129 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -0.667,0.177,0.177,0.767,0,0,0,0.281,0.586,0.0396,0,0,0.304 -0.667,0.318,0.318,1,0.05,0,0,0.14,0.621,0.0764,0.412,0,0.102 -0,0.0495,0.0495,0.417,1,0,0,0.421,0.562,0.0159,0.102,0,0 -0,0.0495,0.0495,0,0.217,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0629,0,0,0.288 -0.333,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0.036 -0.333,0.169,0.169,0.267,0,0,0,0.281,0.591,0.073,0,0,0.0463 -0.667,0.29,0.29,0.217,0,0,0,0.14,0.621,0.137,0,0,0.323 -1,0.422,0.422,0.517,0,0,0,0,0.682,0.222,0,0,0.205 -1,0.464,0.464,1,0,0,0,0,0.728,0.277,0,0,0.249 -1,0.395,0.395,0.667,0,0,0,0.14,0.704,0.232,0,0,0.072 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.036 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.18 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.036 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.036 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.205 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.144 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0421 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.036 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.302 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.108 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.288 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,0,0.3,0,0,0.14,0.621,0.137,0.636,0,0 -0.667,0.298,0.298,0.267,0.967,0,0,0.14,0.642,0.153,0.711,0,0 -1,0.464,0.464,1,0,0,0,0,0.728,0.277,0.607,0,0.036 -0.667,0.395,0.395,0.917,0,0,0,0.14,0.704,0.232,0,0,0.144 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.324 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.072 -0.667,0.635,0.635,0,0,0,0,0.14,0.683,0.532,0,0,0.036 -0.667,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.279 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.174 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0316,0,0,0.102 -0.667,0.0495,0.0495,0,0.05,0,0,0.421,0.562,0.0159,0.401,0,0 -0.667,0.184,0.184,0.267,1,0,0,0.281,0.591,0.0462,0.66,0,0 -0.667,0.321,0.321,1,0.217,0,0,0.14,0.621,0.0895,0.751,0,0.288 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.0997,0.854,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.591,0.0629,0.59,0,0.108 -1,0.413,0.413,1,0,0,0,0,0.651,0.166,0.609,0.0197,0 -0.667,0.289,0.289,0.367,0,0.933,0.25,0.14,0.621,0.13,0.81,0,0.108 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.072 -0.333,0.188,0.188,0.483,0,0,0,0.281,0.617,0.103,0,0,0.107 -1,0.567,0.567,0,0,0,0,0,0.774,0.34,0,0,0.144 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.252 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.144 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.276 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.188 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.28 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.172 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0.683,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.591,0.0527,0,0,0.036 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.252 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.072 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.072 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.072 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.439 -0.333,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.222,0.222,1,0,0,0,0.281,0.633,0.124,0.201,0.267,0.18 -1,0.736,0.736,0.183,0.8,0.933,0.633,0,0.79,0.457,0.979,0.53,0.18 -1,0.895,0.895,0,0.467,0,0.133,0,0.774,0.64,0.59,0.43,0.288 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0.176,0.036 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0.0928,0.036 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.19 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.199 -1,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0.0573 -1,0.147,0.147,0.617,0,0,0,0.281,0.571,0.0295,0,0,0.0954 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0685,0,0,0.17 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0,0.142 -1,0.321,0.321,0.6,0,0,0,0.14,0.621,0.143,0,0.271,0.18 -0.667,0.312,0.312,1,0,0.933,0.717,0.14,0.621,0.169,0,0.632,0.144 -1,0.426,0.426,1,0,0,0.317,0,0.651,0.268,0,0.579,0.036 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.198,0,0.266,0.036 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.233,0,0.539,0 -0.667,0.29,0.29,0.0333,0,0,0,0.14,0.621,0.265,0,0.454,0.108 -0.667,0.298,0.298,0.1,0,0,0,0.14,0.642,0.291,0,0.357,0 -0.667,0.326,0.326,1,0,0,0,0.14,0.673,0.305,0,0,0.072 -0.667,0.395,0.395,1,0,0,0,0.14,0.704,0.315,0,0,0.108 -1,0.736,0.736,0.0833,0,0,0,0,0.79,0.547,0,0,0.072 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.216 -1,0.635,0.635,0,0,0,0,0.14,0.683,0.57,0,0,0.144 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.176,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.704 -1,0.184,0.184,0,0,0,0,0.281,0.591,0.0636,0,0,0.0997 -1,0.321,0.321,0,0,0,0,0.14,0.621,0.143,0,0,0.143 -1,0.443,0.443,0,0,0,0,0,0.651,0.244,0,0,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.162,0,0,0 -0.333,0.222,0.222,0.1,0,0,0,0.281,0.633,0.167,0,0,0 -1,0.507,0.507,1,0,0,0,0.14,0.714,0.371,0,0,0.144 -1,0.895,0.895,1,0,0,0,0,0.774,0.719,0,0,0.072 -1,0.928,0.928,0.0833,0,0,0,0,0.744,0.845,0,0,0.216 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.072 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0.471 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0893 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.117 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.109 -1,0.147,0.147,0.267,0,0,0,0.281,0.571,0.0316,0,0,0.261 -0.667,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.591,0.0462,0,0,0.266 -0.667,0.321,0.321,1,0,0,0,0.14,0.621,0.0895,0,0,0.326 -0.667,0.312,0.312,1,0,0,0,0.14,0.621,0.0997,0,0,0.108 -0.333,0.175,0.175,0.367,0,0,0,0.281,0.591,0.0629,0,0,0.036 -0.667,0.171,0.171,0,0,0,0,0.281,0.591,0.0658,0,0,0 -1,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.108 -0.333,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.298,0.298,0.7,0,0,0,0.14,0.642,0.153,0,0,0.18 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.036 -0.667,0.395,0.395,0,0,0,0,0.14,0.704,0.232,0,0,0.108 -0.667,0.507,0.507,0,0,0,0,0.14,0.714,0.31,0,0,0.148 -0.667,0.613,0.613,0,0,0,0,0.14,0.704,0.432,0,0,0.656 -0.667,0.342,0.342,0,0,0,0,0.281,0.622,0.274,0,0,0.124 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.233 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.307,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.56,0.0236,0,0,0.184 -1,0.245,0.245,0,0,0,0,0.14,0.58,0.0474,0,0,0.102 -0.667,0.305,0.305,0.267,0,0,0,0.14,0.611,0.0634,0,0,0.254 -0.667,0.318,0.318,1,0,0,0,0.14,0.621,0.0764,0,0,0.557 -0.333,0.185,0.185,0.917,0,0,0,0.281,0.591,0.0527,0,0,0.504 -0.333,0.181,0.181,0,0,0,0,0.281,0.591,0.0578,0,0,0.072 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.18 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0.101,0.108 -0.333,0.17,0.17,0,0,0.933,0.383,0.281,0.591,0.0767,0,0,0.144 -0.333,0.174,0.174,0,0,0,0.65,0.281,0.602,0.0846,0,0,0.108 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0 -0.333,0.222,0.222,0.767,0,0,0,0.281,0.633,0.124,0,0,0.072 -1,0.736,0.736,0.683,0.3,0,0,0,0.79,0.457,0.448,0,0.036 -1,0.895,0.895,0,0.967,0,0,0,0.774,0.64,0,0,0.216 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.175 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0.156 -1,0.5,0.5,0,0,0,0,0,0.62,0.453,0,0,0.0896 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.127 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.305,0.305,0,0,0,0,0.14,0.611,0.0634,0,0,0.141 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.107 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.25 -0.667,0.312,0.312,0.767,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.3,0.3,1,0,0,0,0.14,0.621,0.11,0,0,0.036 -0.667,0.292,0.292,1,0,0,0,0.14,0.621,0.116,0,0,0.252 -0.667,0.289,0.289,1,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.29,0.29,0.867,0,0,0,0.14,0.621,0.137,0,0,0.036 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.144 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.072 -0.333,0.222,0.222,0,0,0,0,0.281,0.633,0.124,0,0,0.036 -1,0.736,0.736,0,0,0,0,0,0.79,0.457,0,0,0.252 -1,0.895,0.895,0,0,0,0,0,0.774,0.64,0,0,0.072 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.555,0.555,0,0,0,0,0.14,0.642,0.505,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,1,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0816,0.0816,0.183,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.147,0.147,0.0167,0,0,0,0.281,0.571,0.0316,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.586,0.0396,0,0,0.151 -1,0.318,0.318,1,0.05,0,0,0.14,0.621,0.0764,0.452,0.134,0.128 -0.667,0.185,0.185,1,1,0.933,0.383,0.281,0.591,0.0527,0.588,0.551,0.144 -0.667,0.312,0.312,1,0.217,0,1,0.14,0.621,0.0997,0.481,0.395,0 -0.667,0.3,0.3,0.617,0,0,0.95,0.14,0.621,0.11,0,0.392,0.036 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0.108 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.602,0.0846,0,0,0.109 -0.333,0.188,0.188,0,0,0,0,0.281,0.617,0.103,0,0,0.157 -0.333,0.222,0.222,0.767,0,0,0,0.281,0.633,0.124,0,0,0.18 -0.667,0.507,0.507,1,0,0,0,0.14,0.714,0.31,0,0,0.072 -1,0.895,0.895,1,0,0,0,0,0.774,0.64,0,0,0.144 -1,0.635,0.635,1,0,0,0,0.14,0.683,0.532,0,0,0.036 -1,0.302,0.302,0.867,0,0,0,0.281,0.602,0.26,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.23 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0396,0,0,0.263 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.0764,0,0,0.0966 -0.667,0.321,0.321,0,0,0,0,0.14,0.621,0.0895,0,0,0.284 -0.667,0.312,0.312,0,0,0,0,0.14,0.621,0.0997,0,0,0.391 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.11,0,0,0.217 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.116,0,0,0.213 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.137,0,0,0.072 -0.667,0.298,0.298,0,0,0,0,0.14,0.642,0.153,0,0,0.108 -0.667,0.326,0.326,0,0,0,0,0.14,0.673,0.19,0,0,0.108 -1,0.567,0.567,0.767,0,0,0,0,0.774,0.34,0.142,0,0.036 -1,0.736,0.736,0.933,0.8,0,0,0,0.79,0.457,0.766,0,0.144 -1,0.895,0.895,0,0.733,0,0,0,0.774,0.64,0,0,0.472 -1,0.928,0.928,0,0,0,0,0,0.744,0.791,0,0,0.18 -1,0.807,0.807,0,0,0,0,0,0.682,0.749,0,0,0 -1,0.2,0.2,0,0,0,0,0.281,0.581,0.162,0,0,0.112 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.586,0.0433,0,0,0.162 -1,0.318,0.318,0,0,0,0,0.14,0.621,0.109,0,0.204,0.297 -1,0.321,0.321,0,0,0.933,0.467,0.14,0.621,0.143,0,0.426,0.176 -0.667,0.312,0.312,0,0,0,0.3,0.14,0.621,0.169,0,0.437,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.621,0.185,0,0.478,0.108 -0.667,0.292,0.292,0,0,0,0,0.14,0.621,0.198,0,0.473,0.072 -0.667,0.289,0.289,0,0,0,0,0.14,0.621,0.233,0,0.0928,0 -0.667,0.29,0.29,0,0,0,0,0.14,0.621,0.265,0,0,0.571 -1,0.422,0.422,0,0,0,0,0,0.682,0.427,0,0,0.0875 -1,0.464,0.464,0,0,0,0,0,0.728,0.449,0,0,0.36 -1,0.567,0.567,0,0,0,0,0,0.774,0.464,0,0,0.403 -1,0.736,0.736,0,0,0,0,0,0.79,0.547,0,0,0.072 -1,0.895,0.895,0,0,0,0,0,0.774,0.719,0,0,0.072 -1,0.928,0.928,0,0,0,0,0,0.744,0.845,0,0,0.294 -1,0.807,0.807,0,0,0,0,0,0.682,0.78,0,0,0.188 -1,0.35,0.35,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.143 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.202 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.259 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.162 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -1,0.379,0.379,0,0,0,0,0,0.679,0.431,0,0,0.252 -1,0.386,0.386,0,0,0,0,0,0.725,0.452,0,0,0.108 -1,0.291,0.291,0,0,0,0,0.14,0.701,0.318,0,0,0.144 -1,0.339,0.339,0,0,0,0,0.14,0.712,0.374,0,0,0.144 -1,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.144 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.108 -1,0.326,0.326,0,0,0,0,0.281,0.601,0.274,0,0,0 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.178,0,0,0.132 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0826 -1,0.11,0.11,1,0,0,0,0.14,0.557,0.0316,0,0,0.082 -1,0.33,0.33,0.383,0,0,0,0,0.586,0.0637,0,0,0.166 -1,0.417,0.417,0,0,0,0,0,0.633,0.0879,0,0,0 -1,0.427,0.427,0.267,0.55,0,0,0,0.648,0.108,0.617,0,0.0661 -0.667,0.299,0.299,1,0.683,0,0,0.14,0.619,0.0902,0.644,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0.674,0,0.072 -0.667,0.279,0.279,1,0,0,0,0.14,0.619,0.111,0.63,0,0.108 -0.333,0.16,0.16,1,0,0,0,0.281,0.59,0.0662,0.774,0,0 -0.333,0.159,0.159,0.217,0,0,0,0.281,0.59,0.0735,0,0,0.144 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.252 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.31 -0.667,0.274,0.274,0.7,0,0,0,0.14,0.671,0.191,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.0713 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.206 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.216 -1,0.783,0.783,0,0.55,0,0,0,0.741,0.797,0.766,0,0 -0.667,0.326,0.326,0,0.933,0,0,0.281,0.601,0.262,0.149,0,0.144 -0.667,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -0.667,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,1,0.3,0,0,0.281,0.57,0.0318,0.605,0,0.188 -1,0.172,0.172,1,0.933,0,0,0.281,0.585,0.0399,0.203,0,0.0668 -1,0.427,0.427,1,0,0,0,0,0.648,0.108,0,0,0.168 -1,0.424,0.424,1,0,0,0,0,0.648,0.127,0,0,0.036 -0.667,0.291,0.291,0.217,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0.0167,0,0,0,0.14,0.619,0.111,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0.072 -0.667,0.269,0.269,0.633,0,0,0,0.14,0.619,0.131,0,0,0.036 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.036 -0.667,0.274,0.274,0.267,0,0,0,0.14,0.671,0.191,0,0,0.036 -0.667,0.291,0.291,0.2,0,0,0,0.14,0.701,0.234,0,0,0.108 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.144 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.072 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.108 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.232 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.178 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.0765 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.378 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.241 -0.667,0.175,0.175,0.0167,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.14,0.619,0.0902,0,0,0.199 -0.667,0.291,0.291,1,0.55,0,0,0.14,0.619,0.1,0.366,0,0 -0.333,0.164,0.164,1,0.683,0,0,0.281,0.59,0.0633,0,0,0.072 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0.18 -0.667,0.269,0.269,0.467,0,0,0,0.14,0.619,0.131,0,0,0.18 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.036 -0.667,0.269,0.269,0.267,0,0,0,0.14,0.64,0.155,0,0,0 -1,0.386,0.386,0.433,0,0,0,0,0.725,0.279,0,0,0.185 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.147 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.52 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.669 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.214 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.273 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.462 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.387 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.169 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.196 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0172,0,0,0.123 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.116 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0238,0.119,0,0.323 -1,0.236,0.236,1,0.8,0,0,0.14,0.578,0.0478,0.63,0,0.143 -0.667,0.172,0.172,1,0.433,0,0,0.281,0.585,0.0399,0.45,0,0.036 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.0465,0,0,0.036 -0.667,0.174,0.174,0.217,0,0,0,0.281,0.59,0.053,0,0,0.396 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.036 -0.667,0.164,0.164,0.767,0,0,0,0.281,0.59,0.0633,0,0,0.036 -0.667,0.271,0.271,1,0,0.0667,0.117,0.14,0.619,0.117,0,0.498,0 -0.667,0.269,0.269,1,0,0.933,0.617,0.14,0.619,0.131,0,0.487,0.072 -0.667,0.268,0.268,1,0,0,0,0.14,0.619,0.139,0,0.533,0 -0.667,0.269,0.269,0.717,0,0,0,0.14,0.64,0.155,0,0.226,0.36 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.036 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.301 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.178 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.036 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.29 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.242 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.3 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.326 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.211 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0.0281,0.153 -0.667,0.174,0.174,0,0,1,0.367,0.281,0.59,0.053,0,0.35,0.108 -0.667,0.291,0.291,0,0,0,0.117,0.14,0.619,0.1,0,0.717,0.288 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0.308,0.036 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0.321,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0.429,0.036 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0.342,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0.414,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0.385,0.036 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.072 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.36 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.072 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.072 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.072 -1,0.116,0.116,0,0.55,0,0,0.281,0.565,0.0765,0.479,0,0.144 -1,0.0495,0.0495,0,0.883,0,0,0.421,0.562,0.0181,0,0,0.115 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.0893 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.109 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.13 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.144 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0 -0.667,0.268,0.268,0,0,0.267,0.167,0.14,0.619,0.267,0,0.388,0.036 -0.667,0.269,0.269,0,0,0.733,1,0.14,0.64,0.293,0.242,0.406,0.036 -0.667,0.274,0.274,0,0.85,0,0.0667,0.14,0.671,0.308,0.474,0.232,0.072 -0.667,0.291,0.291,0.317,0.383,0,0,0.14,0.701,0.318,0.774,0.307,0.072 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0.592,0,0.036 -1,0.619,0.619,1,0,0,0,0,0.771,0.725,0.709,0,0.108 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0.812,0,0.288 -1,0.88,0.88,1,0,0,0,0,0.679,0.786,0,0,0.072 -1,0.415,0.415,0.167,0,0,0,0.14,0.599,0.337,0,0,0.036 -1,0.116,0.116,0,0.05,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.283 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.0883 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.144,0,0,0.187 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.201 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.072 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.216 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0.48,0.036 -1,0.412,0.412,0,0,1,0.667,0,0.771,0.468,0,0.291,0.108 -1,0.484,0.484,0,0.1,0,0.317,0,0.787,0.551,0.508,0.575,0.144 -1,0.619,0.619,0,1,0,0,0,0.771,0.725,0.165,0,0 -1,0.538,0.538,0,0.133,0,0,0.14,0.681,0.574,0,0,0.312 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.108 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.116 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0798,0.0798,0.267,0.05,0,0,0.281,0.56,0.0238,0.374,0,0.141 -1,0.236,0.236,0.2,1,0,0,0.14,0.578,0.0478,0.192,0,0 -0.667,0.172,0.172,0.467,0.183,0,0,0.281,0.585,0.0399,0,0,0.228 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.0934 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.123 -0.333,0.17,0.17,0.267,0,0,0,0.281,0.59,0.0582,0,0,0.369 -1,0.394,0.394,1,0,0,0,0,0.648,0.158,0,0,0.228 -0.667,0.271,0.271,0.15,0,0,0,0.14,0.619,0.117,0,0,0.275 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.142 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.257 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.333,0.162,0.162,0.267,0,0.0667,0.117,0.281,0.616,0.104,0,0.73,0.036 -1,0.412,0.412,1,0,0.933,0.617,0,0.771,0.343,0,0,0.252 -1,0.484,0.484,0.85,0,0,0,0,0.787,0.461,0,0,0.468 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.18 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.108 -0.667,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.216 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.145 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.036 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0.144 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.252 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.036 -0.667,0.269,0.269,0.267,0,0,0,0.14,0.64,0.155,0,0.273,0.252 -1,0.386,0.386,0.467,0,1,0.617,0,0.725,0.279,0,0.203,0 -1,0.291,0.291,1,0,0,0.367,0.14,0.701,0.234,0,0,0.116 -1,0.484,0.484,0.383,0,0,0,0,0.787,0.461,0,0.142,0.379 -1,0.619,0.619,0,0,1,0.617,0,0.771,0.646,0,0.43,0.072 -1,0.783,0.783,0,0,0,0.617,0,0.741,0.797,0,0.644,0.072 -1,0.603,0.603,0.767,0,0,0,0.14,0.64,0.509,0,0.629,0 -1,0.415,0.415,0.883,0,0,0,0.14,0.599,0.31,0,0.207,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.281 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0595,0,0,0.163 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.108 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.036 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.036 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.072 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.108 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0.137 -1,0.484,0.484,0,0,0,0,0,0.787,0.461,0,0,0.339 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.144 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.108 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.235 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0182 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.119 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.144 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.199 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0.767,0,0,0,0.14,0.619,0.111,0,0,0.036 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0.036 -0.667,0.269,0.269,1,0,0,0,0.14,0.619,0.131,0,0,0.036 -0.667,0.268,0.268,1,0,0,0,0.14,0.619,0.139,0,0,0.072 -0.667,0.269,0.269,0.717,0,0,0,0.14,0.64,0.155,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.216 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.072 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.436,0,0,0.288 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.072 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.288 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.072 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.146,0 -1,0.0506,0.0506,0,0,1,0.617,0.281,0.56,0.0186,0,0.522,0 -1,0.0798,0.0798,0,0,0,0.117,0.281,0.56,0.0238,0,0.487,0.229 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0.511,0.115 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.301,0.301,0.0167,0.55,0,0,0.14,0.619,0.077,0.849,0,0.036 -0.667,0.299,0.299,1,0.683,0,0,0.14,0.619,0.0902,0.14,0,0 -0.667,0.291,0.291,0.633,0,0.0667,0.117,0.14,0.619,0.1,0,0.353,0 -0.667,0.279,0.279,0,0,0.933,0.117,0.14,0.619,0.111,0,0.952,0.44 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0.338,0.248 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0.603,0.459 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0.276,0.306 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.036 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0.216 -0.667,0.291,0.291,0.267,0,0,0,0.14,0.701,0.234,0,0,0.519 -1,0.484,0.484,1,0,0,0,0,0.787,0.461,0,0,0.216 -1,0.619,0.619,1,0,0,0,0,0.771,0.646,0,0,0.412 -1,0.538,0.538,1,0,0,0,0.14,0.681,0.537,0,0,0.119 -1,0.603,0.603,1,0,0,0,0.14,0.64,0.509,0,0,0.036 -1,0.415,0.415,0.217,0,0,0,0.14,0.599,0.31,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0223,0,0,0.178 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0297,0,0,0.142 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0.184 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.383 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.159,0.159,0,0.6,0,0,0.281,0.59,0.126,0.594,0,0 -0.333,0.159,0.159,0,0.633,0,0,0.281,0.59,0.142,0,0,0.269 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.301 -0.333,0.162,0.162,0.817,0,0,0,0.281,0.616,0.163,0,0,0.144 -0.333,0.17,0.17,0.6,0,0,0,0.281,0.631,0.168,0,0,0.18 -0.333,0.194,0.194,0,0,0,0,0.281,0.637,0.196,0,0,0.036 -0.667,0.429,0.429,0,0,0,0,0.14,0.701,0.489,0,0,0.34 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0,0.199 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.42 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0443,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0436,0,0,0 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0,0.159 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.229 -0.333,0.16,0.16,0.317,0,0,0,0.281,0.59,0.109,0,0,0.15 -0.333,0.159,0.159,0.383,0,0,0,0.281,0.59,0.126,0,0,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.277 -0.333,0.162,0.162,0,0,0,0,0.281,0.616,0.163,0,0,0.442 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0.223,0,0.072 -1,0.484,0.484,0,0.85,0,0,0,0.787,0.551,0.712,0.177,0.18 -1,0.619,0.619,0,0.383,1,0.667,0,0.771,0.725,0.77,0.64,0.144 -1,0.783,0.783,0,0,0,0.317,0,0.741,0.852,0,0.349,0.353 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.036 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.129 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.072 -0.667,0.164,0.164,0,0,0,0,0.281,0.59,0.0633,0,0,0.072 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.216 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.108 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0.216 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.108 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.144 -0.333,0.17,0.17,0.267,0,0,0,0.281,0.631,0.125,0,0,0.169 -0.667,0.339,0.339,1,0,0,0,0.14,0.712,0.313,0,0,0.434 -0.667,0.429,0.429,0.15,0,0,0,0.14,0.701,0.436,0,0,0.18 -0.667,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.78 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0.0667,0.117,0.421,0.562,0.0159,0,0.0211,0.303 -1,0.295,0.295,0.767,0,0.933,0.867,0.14,0.609,0.0639,0,0,0.238 -1,0.427,0.427,1,0,0,0,0,0.648,0.108,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.14,0.619,0.0902,0,0.0169,0 -0.667,0.291,0.291,1,0,1,0.367,0.14,0.619,0.1,0,0.453,0.036 -0.667,0.279,0.279,0.717,0,0,1,0.14,0.619,0.111,0,0.501,0.216 -0.667,0.271,0.271,0,0,0,0.617,0.14,0.619,0.117,0,0.703,0.144 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0.88,0.184 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0.677,0.248 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0.654,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0.364,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.417 -1,0.484,0.484,0,0.05,0,0,0,0.787,0.461,0.391,0,0.165 -0.667,0.429,0.429,0.517,1,0,0,0.14,0.701,0.436,0.105,0,0.143 -1,0.783,0.783,0.183,0.733,0,0,0,0.741,0.797,0.738,0,0 -0.667,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.182,0,0.036 -0.667,0.0495,0.0495,0,0.183,0,0,0.421,0.562,0.0159,0,0,0.36 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.143 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.43 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0.225 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.195 -0.667,0.279,0.279,0.267,0,0,0,0.14,0.619,0.111,0,0,0.685 -0.667,0.271,0.271,1,0,0,0,0.14,0.619,0.117,0,0,0.294 -0.333,0.159,0.159,0.15,0,0,0,0.281,0.59,0.0735,0,0,0.072 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.072 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.036 -0.667,0.291,0.291,0.517,0,0,0,0.14,0.701,0.234,0,0,0.18 -1,0.484,0.484,0.183,0.233,0,0,0,0.787,0.461,0.715,0,0.216 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0.178,0,0.18 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0.144 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.036 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.143,0.143,0.267,0,0,0,0.281,0.57,0.0318,0,0,0.128 -1,0.295,0.295,0.7,0,0.0667,0.117,0.14,0.609,0.0639,0,0.506,0.113 -1,0.427,0.427,1,0,0.933,1,0,0.648,0.108,0,0,0.118 -0.667,0.299,0.299,1,0,0,0.117,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.1,0,0,0.036 -0.667,0.279,0.279,1,0,0,0,0.14,0.619,0.111,0,0.146,0 -0.667,0.271,0.271,0.217,0,1,0.617,0.14,0.619,0.117,0,0.425,0.036 -0.667,0.269,0.269,0.267,0.55,0,0.367,0.14,0.619,0.131,0.793,0.589,0 -0.667,0.268,0.268,0.433,0.683,0,0,0.14,0.619,0.139,0.824,0,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0.17,0,0.18 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0.167,0,0 -0.667,0.291,0.291,0,0.8,0,0,0.14,0.701,0.234,0.718,0,0.072 -0.333,0.194,0.194,0.517,0.483,0,0,0.281,0.637,0.164,0.674,0,0.036 -1,0.619,0.619,1,1,0,0,0,0.771,0.646,0.674,0,0.216 -1,0.783,0.783,0.133,0.183,0,0,0,0.741,0.797,0.985,0,0.108 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0.072 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0.108 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.202 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0238,0,0,0.153 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.164 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.237 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.154 -0.667,0.299,0.299,0.267,0,0,0,0.14,0.619,0.0902,0,0,0.496 -1,0.411,0.411,0.433,0,0,0,0,0.648,0.143,0,0,0.291 -1,0.394,0.394,0,0,0,0,0,0.648,0.158,0,0,0.036 -1,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0.18 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.036 -0.667,0.162,0.162,0,0,0,0,0.281,0.616,0.104,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.701,0.234,0,0,0 -0.667,0.339,0.339,0,0,0,0,0.14,0.712,0.313,0,0,0.072 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.072 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.537,0,0,0.468 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.183 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.155 -1,0.175,0.175,0,0,0,0,0.281,0.59,0.0641,0,0,0.177 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0.191 -1,0.17,0.17,0,0,0,0,0.281,0.59,0.0941,0,0.256,0.259 -0.667,0.164,0.164,0,0,1,0.233,0.281,0.59,0.102,0,0.53,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0.882,0.072 -0.667,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0.571,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -0.667,0.162,0.162,0.317,0,0,0,0.281,0.616,0.163,0,0,0.072 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0,0.288 -0.667,0.339,0.339,1,0,0,0,0.14,0.712,0.374,0,0,0.0936 -0.667,0.429,0.429,1,0,0,0,0.14,0.701,0.489,0,0,0.072 -1,0.783,0.783,1,0,0,0,0,0.741,0.852,0,0,0.108 -1,0.88,0.88,0.167,0,0,0,0,0.679,0.786,0,0,0.072 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0,0.213 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.174,0.174,0.317,0,0,0,0.281,0.59,0.0809,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.619,0.17,0,0,0 -0.667,0.279,0.279,0.8,0,0,0,0.14,0.619,0.186,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.199,0,0,0.117 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.234,0,0,0.448 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.267,0,0,0.623 -1,0.269,0.269,0,0,0,0,0.14,0.64,0.293,0,0,0.103 -1,0.274,0.274,0,0,0,0,0.14,0.671,0.308,0,0,0 -1,0.412,0.412,0,0,0,0,0,0.771,0.468,0,0,0.036 -1,0.484,0.484,0,0,0,0,0,0.787,0.551,0,0,0.216 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0,0.288 -1,0.538,0.538,0,0,0,0,0.14,0.681,0.574,0,0,0.144 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.53,0,0,0.16 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.191 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.269 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0.115 -1,0.424,0.424,0,0,0,0,0,0.648,0.127,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0,0,0.0667,0.117,0.14,0.619,0.111,0,0.667,0.216 -0.667,0.271,0.271,0,0,0.933,0.367,0.14,0.619,0.117,0,0.842,0.194 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0.364,0.223 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0.767,0.18 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0.269,0.072 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0.895,0.108 -1,0.291,0.291,0.517,0,0,0,0.14,0.701,0.234,0,0.596,0.036 -1,0.484,0.484,0.9,0,0,0,0,0.787,0.461,0,0.114,0 -1,0.619,0.619,0,0.55,0,0,0,0.771,0.646,0.789,0,0 -1,0.783,0.783,0,0.683,0,0,0,0.741,0.797,0,0,0.108 -1,0.603,0.603,0,0,0,0,0.14,0.64,0.509,0,0,0.207 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.228 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0399,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0.2,0,0,0,0.14,0.619,0.1,0,0,0.036 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.619,0.131,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.036 -0.667,0.274,0.274,0,0,0,0,0.14,0.671,0.191,0,0,0.116 -0.333,0.17,0.17,0,0,0,0,0.281,0.631,0.125,0,0,0.152 -0.667,0.339,0.339,0.267,0.55,0,0,0.14,0.712,0.313,0.858,0,0 -1,0.619,0.619,1,0.683,0,0,0,0.771,0.646,0.125,0,0.36 -1,0.783,0.783,0.15,0,0,0,0,0.741,0.797,0,0,0.396 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.216 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0377,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0798,0.0798,0.183,0,0,0,0.281,0.56,0.0238,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0.231 -1,0.417,0.417,0.517,0,0,0,0,0.633,0.0879,0,0.308,0.379 -1,0.427,0.427,1,0,1,0.617,0,0.648,0.108,0,0,0 -0.667,0.299,0.299,0.6,0,0,0.117,0.14,0.619,0.0902,0,0,0.288 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.072 -0.667,0.279,0.279,0.267,0,0,0,0.14,0.619,0.111,0,0,0.072 -0.667,0.271,0.271,0.2,0,0,0,0.14,0.619,0.117,0,0,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.036 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.172 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.107 -1,0.386,0.386,0,0,0,0,0,0.725,0.279,0,0,0.381 -1,0.412,0.412,0,0,0,0,0,0.771,0.343,0,0,0.332 -1,0.484,0.484,0,0.55,0,0,0,0.787,0.461,0.784,0,0 -1,0.619,0.619,0,0.933,0,0,0,0.771,0.646,0,0,0.252 -1,0.783,0.783,0,0,0,0,0,0.741,0.797,0,0,0 -1,0.88,0.88,0,0,0,0,0,0.679,0.756,0,0,0.261 -1,0.597,0.597,0,0,0,0,0,0.617,0.457,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0518 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0478,0,0,0.123 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0465,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0.432 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.108 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.0662,0,0,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0735,0,0,0.108 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.0772,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0 -0.333,0.162,0.162,0.267,0,0,0,0.281,0.616,0.104,0,0,0.036 -0.667,0.291,0.291,0.433,0,0,0,0.14,0.701,0.234,0,0,0.108 -1,0.484,0.484,0,0.3,0,0,0,0.787,0.461,0.642,0,0 -1,0.619,0.619,0,1,0,0,0,0.771,0.646,0.345,0,0.036 -1,0.783,0.783,0,0.183,0,0,0,0.741,0.797,0,0,0 -0.667,0.326,0.326,0,0,0,0,0.281,0.601,0.262,0,0,0.287 -1,0.232,0.232,0,0,0,0,0.281,0.58,0.163,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0765,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0.543 -1,0.0798,0.0798,0.883,0,0,0,0.281,0.56,0.0238,0,0,0 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0318,0,0,0 -0.333,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0.036 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.053,0,0,0.381 -0.333,0.17,0.17,0,0,0,0,0.281,0.59,0.0582,0,0,0.173 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.036 -0.667,0.271,0.271,0,0,0,0,0.14,0.619,0.117,0.218,0,0.252 -0.667,0.269,0.269,0,0.8,0,0,0.14,0.619,0.131,0.487,0,0 -0.667,0.268,0.268,0,0.433,0,0,0.14,0.619,0.139,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.601,0.0853,0,0,0.072 -1,0.386,0.386,0.267,0,0,0,0,0.725,0.279,0,0,0.072 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.234,0,0,0.184 -0.667,0.339,0.339,0.383,0,0,0,0.14,0.712,0.313,0,0,0 -0.667,0.429,0.429,0.267,0,0,0,0.14,0.701,0.436,0,0,0 -1,0.783,0.783,1,0,0,0,0,0.741,0.797,0,0,0.216 -1,0.88,0.88,0.85,0,0,0,0,0.679,0.756,0,0,0.342 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.31,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.137,0,0,0.036 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0705,0,0,0.036 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0282,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0209,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.317,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0412,0,0,0.036 -1,0.295,0.295,0.8,0,0,0,0.14,0.609,0.069,0,0,0 -1,0.301,0.301,0,0,0,0,0.14,0.619,0.11,0,0,0 -0.667,0.299,0.299,0,0.6,0,0,0.14,0.619,0.144,0.73,0,0.0463 -0.667,0.291,0.291,0,0.883,0,0,0.14,0.619,0.17,0.148,0,0.108 -0.333,0.164,0.164,0,0,0,0,0.281,0.59,0.102,0,0,0.036 -0.333,0.16,0.16,0,0,0,0,0.281,0.59,0.109,0,0,0.072 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.072 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.142,0,0,0 -0.667,0.159,0.159,0,0,0,0,0.281,0.601,0.156,0,0,0.124 -0.667,0.0495,0.0495,0.317,0,0,0,0.421,0.562,0.0181,0,0,0.355 -1,0.412,0.412,1,0,0,0,0,0.771,0.468,0,0,0.53 -1,0.484,0.484,1,0,0,0,0,0.787,0.551,0,0,0.325 -1,0.619,0.619,1,0,0,0,0,0.771,0.725,0,0.696,0.117 -1,0.783,0.783,1,0,1,0.233,0,0.741,0.852,0,0.505,0.204 -1,0.88,0.88,0.167,0,0,0,0,0.679,0.786,0,0.741,0.036 -1,0.597,0.597,0,0,0,0,0,0.617,0.496,0,0.287,0.281 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.157,0,0,0.143 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0927 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.0809,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.159,0.159,0,0,0,0,0.281,0.59,0.126,0,0,0.072 -0,0.0495,0.0495,0,0,0.267,0.167,0.421,0.562,0.0181,0,0.771,0.016 -0.667,0.269,0.269,0,0,0.733,0.0667,0.14,0.64,0.293,0,0.574,0.187 -0.667,0.274,0.274,0.0667,0,0,0,0.14,0.671,0.308,0,0.471,0.144 -0.667,0.291,0.291,1,0,0,0,0.14,0.701,0.318,0,0.388,0 -1,0.484,0.484,0.583,0,0,0,0,0.787,0.551,0,0.224,0.072 -1,0.619,0.619,0,0,0,0,0,0.771,0.725,0,0.568,0.216 -1,0.783,0.783,0,0,0,0,0,0.741,0.852,0,0.172,0.216 -1,0.88,0.88,0,0,0,0,0,0.679,0.786,0,0,0.273 -1,0.415,0.415,0,0,0,0,0.14,0.599,0.337,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0875,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.15 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0639,0,0,0.359 -0.667,0.301,0.301,0,0,0,0,0.14,0.619,0.077,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.619,0.0902,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.619,0.1,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.619,0.111,0,0,0.123 -0.667,0.271,0.271,0.767,0,0,0,0.14,0.619,0.117,0,0,0.288 -0.667,0.269,0.269,0.65,0,0,0,0.14,0.619,0.131,0,0,0.36 -0.667,0.268,0.268,0,0,0,0,0.14,0.619,0.139,0,0,0.072 -0.667,0.269,0.269,0,0,0,0,0.14,0.64,0.155,0,0,0.072 -0.667,0.274,0.274,0.0167,0,0,0,0.14,0.671,0.191,0,0,0.144 -1,0.412,0.412,0.45,0.55,0,0,0,0.771,0.343,0.881,0,0.108 -1,0.484,0.484,0,0.933,0,0,0,0.787,0.461,0.105,0,0.108 -1,0.619,0.619,0,0,0,0,0,0.771,0.646,0,0,0.108 -0.333,0.294,0.294,0.0167,0,0,0,0.281,0.621,0.276,0,0,0 -0.333,0.326,0.326,1,0,0,0,0.281,0.601,0.262,0,0,0.288 -0.667,0.232,0.232,1,0,0,0,0.281,0.58,0.163,0,0,0 -1,0.183,0.183,0.1,0,0,0,0.14,0.568,0.137,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.336 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.314 -0.333,0.164,0.164,0.267,0,0,0,0.281,0.591,0.0527,0,0,0.096 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0578,0,0,0.036 -0.333,0.154,0.154,0.9,0,0,0,0.281,0.591,0.0629,0,0,0.216 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.072 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.18 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -1,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0 -0.667,0.252,0.252,0.767,0,0,0,0.14,0.673,0.19,0,0,0.127 -1,0.371,0.371,0.667,0,0,0,0,0.774,0.34,0,0,0.392 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.072 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.072 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.036 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.108 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.385 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.254 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.259 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.0517 -0.333,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.101 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.324 -0.667,0.259,0.259,0.267,0,0,0,0.14,0.621,0.11,0,0,0.072 -0.667,0.251,0.251,0.2,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.216 -0.333,0.149,0.149,0.267,0,0,0,0.281,0.591,0.0767,0,0,0 -0.333,0.149,0.149,1,0,0,0,0.281,0.602,0.0846,0,0,0.072 -1,0.353,0.353,1,0,0,0,0,0.728,0.277,0,0,0 -1,0.371,0.371,1,0,0,0,0,0.774,0.34,0,0,0.36 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0,0 -1,0.523,0.523,0.317,0,0,0,0,0.774,0.64,0,0,0.036 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.072 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0805 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.324 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0866 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.149 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.146 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0.151,0,0 -0.667,0.286,0.286,0,0.8,0,0,0.14,0.621,0.0764,0.63,0,0.203 -0.667,0.278,0.278,0,0.417,0,0,0.14,0.621,0.0895,0,0,0.462 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.376 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.159 -0.333,0.15,0.15,0.717,0,0,0,0.281,0.591,0.0658,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0.211,0,0.036 -0.667,0.249,0.249,0,0.8,0.0667,0.117,0.14,0.621,0.137,0.58,0.774,0 -0.667,0.249,0.249,0.767,0.417,0.933,0.617,0.14,0.642,0.153,0.169,0,0 -0.667,0.252,0.252,1,0.8,0,0,0.14,0.673,0.19,0.632,0.129,0.451 -1,0.371,0.371,1,0.417,1,0.367,0,0.774,0.34,0.446,0.114,0.237 -1,0.42,0.42,1,0,0,0.367,0,0.79,0.457,0,0,0.036 -1,0.523,0.523,0.817,0,0,0,0,0.774,0.64,0,0,0.036 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.036 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.282 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.258 -0.667,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.12 -0.667,0.286,0.286,0,0,0.0667,0.117,0.14,0.621,0.0764,0,0.478,0.108 -0.667,0.278,0.278,0,0,0.933,0.367,0.14,0.621,0.0895,0,0.733,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0.198,0.338 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.391 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0.0802,0 -0.667,0.252,0.252,0,0,1,0.367,0.14,0.673,0.19,0,0.231,0.108 -0.667,0.264,0.264,0,0,0,0.117,0.14,0.704,0.232,0,0.712,0.072 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0.534,0.108 -1,0.523,0.523,0,0.05,0,0,0,0.774,0.64,0.469,0.637,0.072 -1,0.671,0.671,0,1,0,0,0,0.744,0.791,0.103,0.695,0.432 -1,0.799,0.799,0,0.4,0,0,0,0.682,0.749,0,0.66,0.216 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0281,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0208,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.141 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0201,0,0,0.227 -1,0.0781,0.0781,0.267,0,0,0,0.281,0.56,0.0223,0,0,0.0985 -1,0.228,0.228,1,0,0,0,0.14,0.58,0.0409,0,0,0 -1,0.284,0.284,0.417,0,0,0,0.14,0.611,0.0685,0,0,0.108 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.036 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.036 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0.422,0.144 -0.333,0.154,0.154,0,0,1,0.867,0.281,0.591,0.101,0,0.624,0 -0.333,0.15,0.15,0,0,0,0.117,0.281,0.591,0.108,0,0.713,0.18 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.252 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.18 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.157,0.157,0.767,0,0,0,0.281,0.633,0.167,0,0,0.108 -0.667,0.173,0.173,0.667,0,0,0,0.281,0.638,0.194,0,0,0 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.072 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.036 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,1,0,0,0,0.281,0.586,0.0433,0,0.121,0 -1,0.286,0.286,1,0.3,1,0.483,0.14,0.621,0.109,0.69,0,0.142 -1,0.278,0.278,1,0.917,0,0,0.14,0.621,0.143,0.341,0,0.0893 -0.667,0.27,0.27,1,0,0,0,0.14,0.621,0.169,0,0,0.036 -0.333,0.154,0.154,0.317,0,0,0,0.281,0.591,0.101,0,0,0.072 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.144 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0.18 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.162,0,0,0.18 -1,0.264,0.264,0.517,0,0,0,0.14,0.704,0.315,0,0,0 -1,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0.036 -1,0.523,0.523,0.65,0,0,0,0,0.774,0.719,0,0,0.339 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.072 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.036 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.164,0.164,0,0.55,0,0,0.281,0.591,0.0527,0.632,0,0 -0.333,0.16,0.16,0,0.9,0,0,0.281,0.591,0.0578,0.889,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0.946,0,0 -0.333,0.15,0.15,0,0,0.0667,0.117,0.281,0.591,0.0658,0.182,0.488,0.036 -0.333,0.149,0.149,0,0,0.933,0.617,0.281,0.591,0.073,0,0.397,0.144 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.311,0.18 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.858,0.18 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0.724,0.036 -0.667,0.157,0.157,0,0,0,0,0.281,0.633,0.124,0,0.463,0.072 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0.18,0.657,0.252 -1,0.523,0.523,0,0.8,0,0,0,0.774,0.64,0.529,0.698,0.18 -1,0.671,0.671,0,0.417,0,0,0,0.744,0.791,0,0.264,0.072 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0.373,0.108 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.18 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0.297,0.247 -1,0.402,0.402,0,0,1,0.733,0,0.635,0.0871,0,0.19,0.275 -0.667,0.286,0.286,0.767,0,0,0,0.14,0.621,0.0764,0,0.385,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.0895,0,0.71,0 -0.667,0.27,0.27,0.4,0,0,0,0.14,0.621,0.0997,0,0.47,0.036 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.595,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.252 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.108 -0.667,0.249,0.249,0,0.05,0,0,0.14,0.621,0.137,0.48,0,0.036 -0.333,0.149,0.149,0,1,0,0,0.281,0.602,0.0846,0.323,0,0.072 -0.333,0.0495,0.0495,0.767,0.167,0,0,0.421,0.562,0.0159,0,0.09,0.144 -1,0.371,0.371,0.917,0,1,0.617,0,0.774,0.34,0,0,0.072 -1,0.42,0.42,0,0,0,1,0,0.79,0.457,0,0,0.144 -1,0.523,0.523,0,0,0,0.85,0,0.774,0.64,0,0,0.288 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.144 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.177 -1,0.582,0.582,0,0,0,0,0,0.62,0.453,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.262 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.0174 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.128 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.072 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.288 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.108 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.072 -1,0.349,0.349,0.267,0,0,0,0,0.682,0.222,0,0,0.108 -1,0.353,0.353,0.45,0,0,0,0,0.728,0.277,0,0,0.036 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.216 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.144 -1,0.523,0.523,0.267,0,0,0,0,0.774,0.64,0,0,0.16 -1,0.671,0.671,0.45,0,0,0,0,0.744,0.791,0,0,0.495 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.263 -1,0.405,0.405,0,0.05,0,0,0.14,0.6,0.307,0.397,0,0 -1,0.183,0.183,0,1,0,0,0.14,0.569,0.136,0.588,0,0 -1,0.0743,0.0743,0,0.4,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.134 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.0914 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.0629,0,0,0.324 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.072 -0.333,0.149,0.149,0.767,0,0,0,0.281,0.591,0.073,0,0,0.288 -0.333,0.149,0.149,0.667,0,0,0,0.281,0.591,0.0767,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.036 -0.333,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.072 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.396 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.036 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.108 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.18 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.096 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.0707 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0.38 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.31 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.446 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.656 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.613 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.146 -0.667,0.249,0.249,0.267,0,0,0,0.14,0.642,0.153,0,0,0.3 -0.667,0.252,0.252,1,0,0,0,0.14,0.673,0.19,0,0,0.125 -0.667,0.264,0.264,0.417,0.05,0,0,0.14,0.704,0.232,0.446,0,0 -0.667,0.296,0.296,0,1,0,0,0.14,0.714,0.31,0.59,0.242,0.072 -1,0.523,0.523,0,0.4,1,0.367,0,0.774,0.64,0.749,0.142,0.036 -1,0.671,0.671,0,0,0,0.367,0,0.744,0.791,0,0,0.108 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.144 -1,0.405,0.405,0,0.55,0,0,0.14,0.6,0.307,0.693,0,0.072 -1,0.116,0.116,0,0.667,0,0,0.281,0.565,0.0759,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.0878 -1,0.404,0.404,0,0,0,0,0,0.651,0.155,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.157,0.157,0.517,0,0,0,0.281,0.633,0.167,0,0,0 -1,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0.108 -1,0.365,0.365,0.65,0,0,0,0.14,0.704,0.485,0,0,0.036 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.216 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0,0.396 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.164,0.164,1,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.27,0.27,0.9,0,0,0,0.14,0.621,0.169,0,0,0 -0.333,0.154,0.154,0.0167,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.108,0,0,0.072 -0.667,0.249,0.249,1,0,0,0,0.14,0.621,0.233,0,0,0.226 -1,0.348,0.348,1,0,0,0,0,0.651,0.388,0,0,0.036 -0.667,0.249,0.249,1,0,0,0,0.14,0.642,0.291,0,0,0.108 -0.667,0.252,0.252,0.567,0,0,0,0.14,0.673,0.305,0,0,0 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.036 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.371,0,0,0.072 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.279 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.072 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.072 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.334,0,0,0.237 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.222 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.194 -1,0.404,0.404,0,0,0,0,0,0.651,0.107,0,0,0.403 -1,0.278,0.278,0.767,0,0,0,0.14,0.621,0.0895,0,0,0.334 -1,0.381,0.381,0.917,0.55,0,0,0,0.651,0.142,0.625,0,0.141 -0.667,0.259,0.259,0,0.9,0,0,0.14,0.621,0.11,0,0,0.936 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.516 -0.667,0.249,0.249,0,0,0.0667,0.117,0.14,0.621,0.13,0,0.308,0.508 -0.667,0.249,0.249,0,0,0.933,0.367,0.14,0.621,0.137,0,0.781,0.394 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0.473,0.216 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0.74,0.549 -1,0.371,0.371,0.267,0,0,0,0,0.774,0.34,0,0.781,0.036 -1,0.42,0.42,1,0,0,0,0,0.79,0.457,0,0.467,0.072 -1,0.523,0.523,0.167,0,0,0,0,0.774,0.64,0,0.0844,0.072 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.18 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.036 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.221 -1,0.284,0.284,0.467,0,0,0,0.14,0.611,0.0634,0,0,0.178 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.036 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.108 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.144 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.617,0.103,0,0,0.216 -1,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.108 -0.667,0.173,0.173,0,0,0,0,0.281,0.638,0.163,0,0,0.108 -0.667,0.207,0.207,0,0,0,0,0.281,0.633,0.224,0,0,0.036 -0.667,0.257,0.257,0,0.55,0,0,0.281,0.622,0.274,0.672,0,0.627 -1,0.799,0.799,0,0.667,0,0,0,0.682,0.749,0.132,0,0.446 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.167,0.167,1,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0.433,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0.167,0,0,0,0.14,0.621,0.0997,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.036 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.108 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.216 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0,0.119 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.273 -1,0.371,0.371,0,0.3,0,0,0,0.774,0.34,0.525,0,0.072 -1,0.42,0.42,0,0.917,0,0,0,0.79,0.457,0.506,0,0.684 -1,0.365,0.365,0.767,0,0,0,0.14,0.704,0.432,0,0,0.072 -1,0.464,0.464,0.917,0,0,0,0.14,0.683,0.532,0,0,0 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.203 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0963 -1,0.228,0.228,0.267,0,0,0,0.14,0.58,0.0474,0.128,0,0 -1,0.284,0.284,1,0.8,0.0667,0.117,0.14,0.611,0.0634,0.58,0.406,0 -1,0.286,0.286,0.417,0.65,0.933,0.117,0.14,0.621,0.0764,0,0.405,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0.679,0.072 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.036 -1,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0.219,0.036 -0.667,0.15,0.15,0,0,1,0.367,0.281,0.591,0.0658,0,0.588,0.18 -0.667,0.149,0.149,0,0,0,0.117,0.281,0.591,0.073,0,0.605,0 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0.267,0.144 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.0846,0,0.426,0 -0.667,0.252,0.252,0.267,0,0,0,0.14,0.673,0.19,0,0,0.144 -0.667,0.264,0.264,1,0,0,0,0.14,0.704,0.232,0,0,0.036 -1,0.296,0.296,0.417,0,0,0,0.14,0.714,0.31,0,0,0.036 -1,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.072 -1,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.418 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.376 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.49 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.105 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.11 -0.667,0.168,0.168,0.767,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0.4,0,0,0,0.14,0.621,0.0997,0,0,0.036 -0.667,0.259,0.259,0.267,0,0,0,0.14,0.621,0.11,0,0,0.072 -0.667,0.251,0.251,0.45,0,0,0,0.14,0.621,0.116,0,0,0.18 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.18 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.216 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.108 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.411 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.671 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.133 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.406 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.452 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.217 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.139,0.139,1,0,0,0,0.281,0.571,0.0295,0,0,0.294 -1,0.167,0.167,1,0,0,0,0.281,0.586,0.0433,0,0,0.45 -1,0.286,0.286,1,0,0,0,0.14,0.621,0.109,0,0,0.319 -0.667,0.278,0.278,0.817,0,0,0,0.14,0.621,0.143,0,0,0.122 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0.324 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.153 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.036 -0.667,0.149,0.149,0,0,0,0,0.281,0.602,0.154,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.162 -0.667,0.264,0.264,0.517,0,0,0,0.14,0.704,0.315,0,0,0.149 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.371,0,0,0.477 -1,0.523,0.523,0.167,0,0,0,0,0.774,0.719,0,0,0.0628 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.036 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.144 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0201,0,0,0 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0223,0,0,0 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0295,0,0,0 -1,0.167,0.167,0,0,0,0,0.281,0.586,0.0433,0,0,0.252 -1,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0.036 -1,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0934,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0.144 -0.667,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.18 -0.667,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.243 -1,0.249,0.249,0,0,0,0,0.14,0.621,0.265,0,0,0.151 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.291,0,0,0.072 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.305,0,0,0.072 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.315,0,0,0.036 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0,0.336 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.485,0,0,0.072 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.57,0,0,0.036 -0.667,0.299,0.299,0,0,0,0,0.281,0.602,0.272,0,0.097,0.036 -0.667,0.227,0.227,0,0,1,0.733,0.281,0.581,0.176,0,0,0.288 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.156,0,0,0.144 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.191 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.0582 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.193 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.255 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0634,0,0,0.116 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0.157,0,0 -0.667,0.164,0.164,0.717,0.8,0,0,0.281,0.591,0.0527,0.655,0,0 -0.667,0.27,0.27,0.517,0.417,0,0,0.14,0.621,0.0997,0.73,0,0 -0.667,0.259,0.259,1,0,0,0,0.14,0.621,0.11,0,0,0.216 -0.667,0.251,0.251,1,0,0,0,0.14,0.621,0.116,0,0,0.072 -0.667,0.249,0.249,1,0,0,0,0.14,0.621,0.13,0,0,0.144 -0.667,0.249,0.249,1,0,0,0,0.14,0.621,0.137,0,0,0.18 -0.667,0.249,0.249,0.0667,0,0,0,0.14,0.642,0.153,0,0,0.036 -0.667,0.252,0.252,0.767,0,0,0,0.14,0.673,0.19,0,0,0.036 -1,0.371,0.371,0.667,0,0,0,0,0.774,0.34,0,0,0.036 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0.166,0.144 -1,0.523,0.523,0,0,1,0.367,0,0.774,0.64,0,0.602,0.036 -1,0.671,0.671,0,0,0,0.367,0,0.744,0.791,0,0.603,0 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0.585,0.297 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0.0886,0.278 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,0,0.55,0,0,0.281,0.56,0.0236,0.774,0.329,0.157 -1,0.228,0.228,0,0.9,1,0.617,0.14,0.58,0.0474,0.119,0.0563,0 -0.667,0.167,0.167,0,0,0,0.367,0.281,0.586,0.0396,0,0,0.0719 -0.667,0.286,0.286,0,0.05,0,0,0.14,0.621,0.0764,0.425,0,0 -0.667,0.278,0.278,0,1,0,0,0.14,0.621,0.0895,0.615,0.481,0.216 -0.667,0.27,0.27,0,0.167,1,0.483,0.14,0.621,0.0997,0.203,0.536,0.632 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0.216,0.248,0.036 -0.667,0.251,0.251,0,0.8,0,0,0.14,0.621,0.116,0.805,0,0.036 -0.667,0.249,0.249,0,0.417,0,0,0.14,0.621,0.13,0.663,0,0.187 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0.128,0,0.251 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.33 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.036 -0.667,0.264,0.264,0,0.55,0,0,0.14,0.704,0.232,0.659,0,0.252 -1,0.42,0.42,0,0.717,0,0,0,0.79,0.457,0.634,0,0.072 -1,0.523,0.523,0,1,0,0,0,0.774,0.64,0.95,0,0 -1,0.464,0.464,0,0.4,0,0,0.14,0.683,0.532,0.586,0,0.216 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.0713 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0722 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.166 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.102 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.168,0.168,0.45,0,0,0,0.281,0.591,0.0462,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.036 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.252 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.036 -0.667,0.251,0.251,0.267,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.249,0.249,1,0,0,0,0.14,0.621,0.13,0,0,0.036 -0.667,0.249,0.249,1,0.55,0,0,0.14,0.621,0.137,0.762,0,0.036 -0.667,0.249,0.249,1,0.667,0,0,0.14,0.642,0.153,0.151,0,0.036 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0.216 -1,0.371,0.371,0.317,0,0,0,0,0.774,0.34,0,0,0.072 -0.667,0.296,0.296,0,0,0,0,0.14,0.714,0.31,0,0,0.036 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.36 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0,0,0.169 -1,0.299,0.299,0,0,0,0,0.281,0.602,0.26,0,0,0.072 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.237 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.147 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.21 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.223 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0.558 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0.254 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.215 -1,0.259,0.259,0,0,0.0667,0.117,0.14,0.621,0.11,0,0.28,0.072 -1,0.251,0.251,0,0,0.933,0.117,0.14,0.621,0.116,0,0.399,0.072 -0.667,0.149,0.149,0.0167,0,0,0,0.281,0.591,0.073,0,0.601,0 -1,0.249,0.249,0.7,0,0,0,0.14,0.621,0.137,0,0.643,0.036 -1,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0.0816,0 -1,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.371,0.371,0,0,0,0,0,0.774,0.34,0,0,0.18 -1,0.42,0.42,0,0.3,0,0,0,0.79,0.457,0.563,0,0.216 -1,0.523,0.523,0,1,0,0,0,0.774,0.64,0,0,0.144 -1,0.671,0.671,0,0.15,0,0,0,0.744,0.791,0,0,0.036 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.488 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.0896 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0374,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.127 -0.667,0.284,0.284,0.417,0,0,0,0.14,0.611,0.0634,0,0,0.169 -0.667,0.286,0.286,0,0,0,0,0.14,0.621,0.0764,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.14,0.621,0.0997,0,0,0.108 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0.036 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.0658,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.073,0,0,0.072 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.036 -1,0.349,0.349,0,0,0,0,0,0.682,0.222,0,0,0.108 -1,0.353,0.353,0,0,0,0,0,0.728,0.277,0,0,0.194 -1,0.371,0.371,0.267,0,0,0,0,0.774,0.34,0,0,0.365 -1,0.42,0.42,0.2,0,0,0,0,0.79,0.457,0,0,0.324 -0.667,0.365,0.365,0,0,0,0,0.14,0.704,0.432,0,0,0.108 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.036 -1,0.799,0.799,0,0,0,0,0,0.682,0.749,0,0,0.139 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.127 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0982 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.134 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0409,0,0,0.418 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.263 -1,0.286,0.286,0,0,0,0,0.14,0.621,0.109,0,0,0 -1,0.278,0.278,0,0,0,0,0.14,0.621,0.143,0,0,0.036 -1,0.27,0.27,0,0,0,0,0.14,0.621,0.169,0,0,0.036 -0.333,0.154,0.154,0,0,0,0,0.281,0.591,0.101,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.125,0,0,0.144 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.141,0,0,0.036 -0.667,0.149,0.149,0,0,0.0667,0.117,0.281,0.602,0.154,0,0.392,0.144 -0.667,0.252,0.252,0,0,0.933,1,0.14,0.673,0.305,0,0.446,0.252 -1,0.371,0.371,0,0,0,0.117,0,0.774,0.464,0,0.592,0.036 -1,0.42,0.42,0,0,0,0,0,0.79,0.547,0,0.692,0.252 -1,0.523,0.523,0,0,0,0,0,0.774,0.719,0,0.491,0.036 -1,0.671,0.671,0,0,0,0,0,0.744,0.845,0,0,0.224 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.526,0,0,0.24 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.176,0,0,0.132 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0869,0,0,0.114 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.044,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.283 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.504 -1,0.284,0.284,0,0,0,0,0.14,0.611,0.0685,0,0,0.187 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0636,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0803,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0.333,0.15,0.15,0,0,0,0,0.281,0.591,0.108,0,0,0 -0.667,0.249,0.249,0.717,0,0,0,0.14,0.621,0.233,0,0,0 -1,0.348,0.348,0,0,0,0,0,0.651,0.388,0,0,0 -0.667,0.249,0.249,0.767,0,0,0,0.14,0.642,0.291,0,0,0.144 -1,0.353,0.353,1,0,0,0,0,0.728,0.449,0,0,0.036 -1,0.371,0.371,0.4,0,0,0,0,0.774,0.464,0,0,0.072 -1,0.42,0.42,0,0.05,0,0,0,0.79,0.547,0.496,0,0.216 -0.667,0.365,0.365,0,1,0,0,0.14,0.704,0.485,0.77,0,0.434 -1,0.671,0.671,0,0.4,0,0,0,0.744,0.845,0,0,0.243 -1,0.799,0.799,0,0,0,0,0,0.682,0.78,0,0,0.135 -1,0.582,0.582,0,0,0,0,0,0.62,0.492,0,0,0.216 -0.667,0.116,0.116,0,0.05,0,0,0.281,0.565,0.0869,0.443,0,0.103 -1,0.0743,0.0743,0,1,0,0,0.281,0.56,0.0374,0.233,0,0 -1,0.0578,0.0578,0,0.4,0,0,0.281,0.56,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0503,0.0503,0,0,0,0,0.281,0.56,0.0186,0,0,0.104 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.103 -0.667,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.281,0.586,0.0396,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.591,0.0462,0,0,0.144 -0.667,0.164,0.164,0.267,0,0,0,0.281,0.591,0.0527,0,0,0.198 -0.667,0.27,0.27,1,0.3,0,0,0.14,0.621,0.0997,0.586,0,0.203 -0.667,0.259,0.259,0.417,0.917,0,0,0.14,0.621,0.11,0.366,0,0.072 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.072 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.108 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0.108 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.036 -0.667,0.252,0.252,0,0,0,0,0.14,0.673,0.19,0,0,0.072 -0.667,0.264,0.264,0,0,0,0,0.14,0.704,0.232,0,0,0.072 -1,0.42,0.42,0,0,0,0,0,0.79,0.457,0,0,0.329 -1,0.523,0.523,0,0,0,0,0,0.774,0.64,0,0,0.617 -1,0.671,0.671,0,0,0,0,0,0.744,0.791,0.107,0,0.152 -1,0.799,0.799,0,0.8,0,0,0,0.682,0.749,0.657,0,0.308 -1,0.227,0.227,0,0.65,0,0,0.281,0.581,0.162,0,0,0.242 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.053 -1,0.0781,0.0781,0,0,0,0,0.281,0.56,0.0236,0,0,0.109 -1,0.228,0.228,0,0,0,0,0.14,0.58,0.0474,0,0,0.147 -0.667,0.284,0.284,0.267,0,0,0,0.14,0.611,0.0634,0,0,0.107 -0.667,0.286,0.286,1,0,0,0,0.14,0.621,0.0764,0,0,0.142 -0.333,0.164,0.164,0.167,0,0,0,0.281,0.591,0.0527,0,0,0.25 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.143 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0.252 -1,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.036 -1,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -1,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.473 -1,0.252,0.252,0.267,0,0,0,0.14,0.673,0.19,0,0,0 -1,0.264,0.264,0.2,0,0,0,0.14,0.704,0.232,0,0,0.072 -1,0.296,0.296,0.767,0,0,0,0.14,0.714,0.31,0,0,0.108 -1,0.523,0.523,1,0,0,0,0,0.774,0.64,0,0,0.227 -1,0.671,0.671,1,0,0,0,0,0.744,0.791,0,0,0.268 -1,0.799,0.799,1,0,0,0,0,0.682,0.749,0,0,0.156 -1,0.582,0.582,0.817,0,0,0,0,0.62,0.453,0,0,0.413 -1,0.249,0.249,0,0,0,0,0,0.573,0.196,0,0,0.355 -1,0.099,0.099,0,0,0,0,0.14,0.559,0.059,0,0,0.138 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0236,0,0,0.218 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0171,0,0,0.14 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0157,0,0,0.173 -1,0.0511,0.0511,0,0,0,0,0.14,0.559,0.0213,0,0,0 -1,0.107,0.107,0,0,0,0,0.14,0.559,0.0314,0,0,0.18 -0.667,0.139,0.139,0.767,0,0,0,0.281,0.571,0.0316,0,0,0.036 -0.667,0.284,0.284,0.667,0.05,0,0,0.14,0.611,0.0634,0.387,0,0 -0.333,0.168,0.168,0.0167,1,0,0,0.281,0.591,0.0462,0.542,0,0.036 -0.667,0.278,0.278,1,0.4,0,0,0.14,0.621,0.0895,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.14,0.621,0.0997,0,0,0.036 -0.333,0.154,0.154,1,0,0,0,0.281,0.591,0.0629,0,0,0 -0.333,0.15,0.15,1,0,0,0,0.281,0.591,0.0658,0,0,0.108 -0.333,0.149,0.149,0.567,0,0,0,0.281,0.591,0.073,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.281,0.591,0.0767,0,0,0.036 -0.333,0.149,0.149,0.0167,0,0,0,0.281,0.602,0.0846,0,0,0 -0.333,0.151,0.151,1,0,0,0,0.281,0.617,0.103,0,0,0 -0.667,0.264,0.264,0.683,0,0,0,0.14,0.704,0.232,0,0,0.036 -0.667,0.296,0.296,1,0,0,0,0.14,0.714,0.31,0,0,0.443 -1,0.523,0.523,0.167,0.55,0,0,0,0.774,0.64,0.887,0,0.462 -1,0.671,0.671,0,0.667,0,0,0,0.744,0.791,0,0,0 -1,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0 -1,0.227,0.227,0,0,0,0,0.281,0.581,0.162,0,0,0.241 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0759,0,0,0.166 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.194 -1,0.139,0.139,0,0,0,0,0.281,0.571,0.0316,0,0,0.274 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.281,0.591,0.0527,0,0,0.18 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0578,0,0,0.153 -0.667,0.259,0.259,0,0,0,0,0.14,0.621,0.11,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.621,0.116,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.13,0,0,0.432 -0.667,0.249,0.249,0,0,0,0,0.14,0.621,0.137,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.14,0.642,0.153,0,0,0.036 -0.667,0.252,0.252,0.267,0,0,0,0.14,0.673,0.19,0,0,0 -0.667,0.264,0.264,1,0.05,0,0,0.14,0.704,0.232,0.367,0,0 -1,0.42,0.42,0.9,1,0,0,0,0.79,0.457,0.455,0,0.332 -0.667,0.365,0.365,0,0.167,0,0,0.14,0.704,0.432,0,0,0.036 -0.667,0.464,0.464,0,0,0,0,0.14,0.683,0.532,0,0,0.327 -0.667,0.549,0.549,0,0,0,0,0.14,0.642,0.505,0,0,0.282 -1,0.405,0.405,0,0,0,0,0.14,0.6,0.307,0,0,0.195 -1,0.183,0.183,0,0,0,0,0.14,0.569,0.136,0,0,0.121 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.0637 -1,0.222,0.222,0.7,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.156,0.156,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.256,0.256,1,0.55,0,0,0.421,0.548,0.103,0.659,0,0.108 -0.667,0.245,0.245,0.233,0.85,0,0,0.421,0.548,0.113,0,0.0281,0.072 -0.667,0.237,0.237,1,0,1,0.367,0.421,0.548,0.119,0,0.726,0.216 -1,0.328,0.328,1,0,0,0.6,0.421,0.542,0.194,0,0,0.252 -1,0.327,0.327,1,0,0,0,0.421,0.542,0.205,0,0,0.415 -1,0.328,0.328,1,0,0,0,0.421,0.568,0.23,0,0.364,0.22 -0.667,0.238,0.238,0.467,0,1,0.617,0.421,0.591,0.196,0,0.549,0.036 -0.667,0.247,0.247,0,0,0,1,0.421,0.617,0.239,0,0.332,0.072 -1,0.384,0.384,0,0,0,0.55,0.912,0.658,0.473,0,0,0.036 -1,0.467,0.467,0,0.3,0,0,1,0.645,0.662,0.14,0,0.336 -1,0.595,0.595,0,0.867,0,0,1,0.619,0.817,0,0,0.392 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0.144 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.353 -0.333,0.144,0.144,0.267,0,0,0,0.421,0.576,0.167,0,0,0.144 -0.333,0.148,0.148,1,0,0,0,0.421,0.589,0.172,0,0,0.252 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.565,0,0,0.36 -0.667,0.328,0.328,1,0,0,0,0.807,0.617,0.501,0,0,0.288 -0.667,0.413,0.413,1,0,0,0,0.807,0.6,0.588,0,0,0.072 -1,0.501,0.501,0.217,0,0,0,0.807,0.566,0.543,0,0,0.288 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.324 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.241 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.259 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.273,0,0,0.183 -1,0.328,0.328,0,0.3,0,0,0.421,0.568,0.441,0.676,0,0.364 -1,0.332,0.332,0.267,0.867,0,0,0.421,0.606,0.464,0.621,0,0.142 -1,0.345,0.345,1,0,0,0,0.421,0.645,0.479,0.207,0,0.601 -1,0.384,0.384,0.383,0,0,0,0.912,0.658,0.565,0,0,0.18 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.432 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.626 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.124 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0.107 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0661 -1,0.0768,0.0768,0.767,0,0,0,0.614,0.529,0.0241,0,0,0.165 -1,0.222,0.222,1,0,0,0,0.807,0.514,0.0488,0,0,0.0722 -1,0.163,0.163,1,0,0,0,0.421,0.551,0.0406,0,0,0.406 -1,0.387,0.387,1,0,0,0,0.421,0.542,0.11,0,0,0 -1,0.37,0.37,0.717,0,0,0,0.421,0.542,0.131,0,0,0.036 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.144 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.072 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.33 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.188 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.254 -0.667,0.235,0.235,0,0,0.0667,0.117,0.421,0.566,0.158,0,0.181,0.572 -0.333,0.144,0.144,0,0,0.933,0.117,0.421,0.576,0.106,0,0,0.158 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.168,0,0,0.144 -0.667,0.328,0.328,0.767,0,0,0,0.807,0.617,0.446,0,0,0.072 -1,0.595,0.595,0.883,0,0,0,1,0.619,0.817,0,0,0.18 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.144 -1,0.557,0.557,0,0,0,0,1,0.516,0.468,0,0,0.331 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.211 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.198 -0.667,0.163,0.163,0.767,0,0,0,0.421,0.551,0.0406,0,0.409,0 -0.667,0.274,0.274,1,0,1,0.867,0.421,0.548,0.0788,0,0.596,0 -0.667,0.263,0.263,1,0,0,1,0.421,0.548,0.0923,0,0.269,0.146 -0.667,0.256,0.256,1,0,0,0.55,0.421,0.548,0.103,0,0.547,0.224 -0.667,0.245,0.245,0.717,0,0,0,0.421,0.548,0.113,0,0.782,0.276 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.357,1 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.523,0.178 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.416,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.795,0.108 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.515,0.497 -1,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.336,0.252 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.527,0.036 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0.52,0.036 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0.388,0.108 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.036 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.139 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.121 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0.9,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.036 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.144 -0.667,0.256,0.256,0,0.05,0,0,0.421,0.548,0.103,0.426,0,0 -0.667,0.245,0.245,0.767,1,0,0,0.421,0.548,0.113,0.526,0,0.108 -0.667,0.237,0.237,1,0.117,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0.717,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.072 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.036 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.036 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.252 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.036 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.175 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.221 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.135 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.156,0.156,0.267,0,0,0,0.421,0.555,0.0541,0,0,0.13 -0.667,0.256,0.256,0.2,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.144 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.18 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.072 -1,0.332,0.332,0.267,0,0,0,0.421,0.606,0.286,0,0,0.144 -1,0.345,0.345,1,0.55,0,0,0.421,0.645,0.351,0.665,0,0.072 -1,0.384,0.384,0.85,0.617,0,0,0.912,0.658,0.473,0.569,0,0.036 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0.852,0,0.071 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0.657,0,0.18 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.204 -0.667,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0.2,0,0,0,0.614,0.538,0.0323,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.239 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.156 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.258 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.072 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.216 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.036 -0.333,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.18 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.238,0.238,0.4,0,0,0,0.421,0.591,0.196,0,0,0.216 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.108 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.467,0.467,0,0.05,0,0,1,0.645,0.662,0.398,0,0.155 -1,0.595,0.595,0,1,0,0,1,0.619,0.817,0.292,0,0.233 -1,0.726,0.726,0,0.117,0,0,1,0.568,0.774,0,0,0.258 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.613 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.0884 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0444,0,0,0.303 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.21 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0,0,0.454 -1,0.359,0.359,0,0,0,0,0.421,0.542,0.252,0,0,0.036 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.072 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.216 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.175 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.172 -1,0.238,0.238,0.767,0,0,0,0.421,0.591,0.315,0,0,0.202 -0.667,0.247,0.247,0.65,0.55,0,0,0.421,0.617,0.326,0.795,0,0.108 -0.667,0.273,0.273,0,0.617,0,0,0.749,0.626,0.383,0.165,0,0.144 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0,0.144 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.18 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.133 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.186 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.172 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.136,0.136,0.467,0.3,0,0,0.614,0.538,0.0301,0.534,0,0 -1,0.277,0.277,0,0.867,0,0,0.421,0.54,0.0706,0.718,0,0 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0.731,0,0 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.147,0.61,0,0.036 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0.646,0,0.036 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.526 -1,0.331,0.331,0,0,0,0,0.421,0.542,0.297,0,0,0.218 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.072 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0 -1,0.345,0.345,0,0.05,0,0,0.421,0.645,0.479,0.352,0,0 -1,0.384,0.384,0,1,0,0,0.912,0.658,0.565,0.199,0,0.036 -0.667,0.328,0.328,0,0.117,0,0,0.807,0.617,0.501,0,0,0.252 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.0973 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.036 -1,0.388,0.388,0,0,0.0667,0.117,0.807,0.531,0.345,0,0.45,0 -1,0.116,0.116,0,0,0.933,0.117,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.0774 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0.128 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.103 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.036 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.18 -0.667,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.036 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.108 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0.228 -0.667,0.142,0.142,0.0167,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0.683,0,0,0,0.421,0.564,0.0871,0,0,0.252 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.072 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.072 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0,0.208 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.158 -1,0.595,0.595,0,0,0.0667,0.117,1,0.619,0.817,0,0.39,0.238 -1,0.726,0.726,0,0,0.933,0.367,1,0.568,0.774,0,0,0 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.072 -0.667,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.156 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0.371 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.325 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.281 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.108 -0.333,0.144,0.144,0,0,0,0,0.421,0.576,0.106,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.45 -0.667,0.273,0.273,0.517,0,0,0,0.749,0.626,0.32,0,0,0.266 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.216 -1,0.595,0.595,1,0,0,0,1,0.619,0.817,0,0,0.072 -1,0.726,0.726,1,0,0,0,1,0.568,0.774,0,0,0 -1,0.388,0.388,0.967,0,0,0,0.807,0.531,0.317,0,0,0.072 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.514,0.0488,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.487 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.036 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.036 -0.333,0.147,0.147,0,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.144 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.108 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -1,0.328,0.328,0.267,0,0,0,0.421,0.568,0.23,0,0,0.036 -1,0.332,0.332,0.433,0,0,0,0.421,0.606,0.286,0,0,0.144 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0,0.108 -1,0.384,0.384,0,0.3,0,0,0.912,0.658,0.473,0.561,0,0 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.148,0,0.0796 -1,0.595,0.595,0,0.1,0,0,1,0.619,0.817,0,0,0.278 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.108 -1,0.388,0.388,0,0.55,0,0,0.807,0.531,0.317,0.397,0,0.141 -1,0.116,0.116,0,0.617,0,0,0.614,0.533,0.0781,0,0,0.238 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.269 -1,0.0506,0.0506,1,0,0,0,0.807,0.497,0.0218,0,0,0.198 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0.217,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.156,0.156,0,0,0.0667,0.117,0.421,0.555,0.0541,0,0.44,0 -0.667,0.256,0.256,0,0,0.933,0.85,0.421,0.548,0.103,0,0.356,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.629,0.036 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.101,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.364,0.216 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.75,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0.574,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.426,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.37,0.108 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0.361,0.216 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0.402,0.18 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0.131,0.282 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.175 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0.184 -1,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.323 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0,0.112 -0.667,0.147,0.147,0.267,0,0,0,0.421,0.555,0.0646,0,0,0 -0.667,0.237,0.237,0.433,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0.3,0,0,0.421,0.548,0.134,0.531,0,0.18 -0.667,0.235,0.235,0,0.867,0,0,0.421,0.548,0.142,0.684,0,0.072 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0.877,0.332,0.072 -0.667,0.238,0.238,0,0,1,0.233,0.421,0.591,0.196,0,0.639,0.072 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.689,0.036 -1,0.384,0.384,0,0.55,0,0,0.912,0.658,0.473,0.684,0.0886,0.561 -1,0.467,0.467,0,0.85,0,0,1,0.645,0.662,0,0,0.43 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.251 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0561 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.183 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.259 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0777 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.262 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.151 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.174,0,0,0.247 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0.06 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0.0936 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.4 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0.612 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.287 -0.667,0.144,0.144,0,0,0,0,0.421,0.576,0.167,0,0,0.168 -0.667,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.18 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.383,0,0,0.324 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.072 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.144 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0,0.193 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.0582 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.036 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.156,0.156,1,0,0,0,0.421,0.555,0.0826,0.111,0,0 -0.667,0.256,0.256,0.1,0.8,0,0,0.421,0.548,0.174,0.446,0,0.253 -0.667,0.245,0.245,0.267,0.6,0,0,0.421,0.548,0.191,0,0,0.072 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.504 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.129,0,0,0.18 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.566,0.3,0,0,0.072 -0.333,0.144,0.144,0.217,0,0,0,0.421,0.576,0.167,0,0,0.036 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.172,0,0,0.072 -0.333,0.161,0.161,0,0,0,0,0.585,0.594,0.2,0,0,0.336 -0.667,0.328,0.328,0.517,0,0,0,0.807,0.617,0.501,0,0,0.375 -0.667,0.231,0.231,1,0,0,0,0.614,0.581,0.303,0,0,0.0536 -1,0.275,0.275,0.133,0,0,0,0.614,0.564,0.281,0,0,0.036 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.182,0,0,0.18 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.302 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0.122 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.291,0.333 -1,0.0511,0.0511,0,0,1,0.617,1,0.464,0.0248,0,0.422,0.0948 -1,0.131,0.131,0,0,0,0.35,1,0.464,0.0405,0,0.547,0.183 -1,0.308,0.308,0,0,0,0,1,0.49,0.0653,0,1,0.082 -0.667,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0.347,0.227 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0.515,0.306 -1,0.37,0.37,0,0.05,0,0,0.421,0.542,0.131,0.475,0.0816,0.239 -1,0.359,0.359,0,1,0,0,0.421,0.542,0.146,0.385,0,0.612 -0.667,0.245,0.245,0,0.117,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0.247 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.108 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.072 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.036 -0.667,0.238,0.238,0.767,0,0,0,0.421,0.591,0.196,0,0,0.036 -0.667,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.036 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0.036 -1,0.467,0.467,1,0,0,0,1,0.645,0.662,0,0,0.108 -1,0.595,0.595,0.717,0,0,0,1,0.619,0.817,0,0,0 -1,0.275,0.275,0,0,0,0,0.614,0.564,0.269,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0814 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.133 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.255,0 -0.667,0.163,0.163,0,0,1,0.617,0.421,0.551,0.0406,0,0.422,0 -0.667,0.162,0.162,0,0,0,0.35,0.421,0.555,0.0473,0,0.674,0 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0.581,0.216 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0593,0,0.416,0.036 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.544,0 -0.667,0.237,0.237,0,0.55,0,0,0.421,0.548,0.119,0.584,0.368,0.036 -0.667,0.235,0.235,0,0.617,0,0,0.421,0.548,0.134,0.826,0.371,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0.866,0.333,0.144 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0.558,0.072 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.443,0.072 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0.603,0.036 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0.281,0.108 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0.596,0.224 -1,0.595,0.595,0.0167,0,0,0,1,0.619,0.817,0,0.537,0.367 -1,0.501,0.501,1,0,0,0,0.807,0.566,0.521,0,0,0.036 -1,0.219,0.219,1,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0.1,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0771 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0975 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.19 -0.333,0.147,0.147,0.2,0,0,0,0.421,0.555,0.0646,0,0,0.324 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.108 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.0751,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.144 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.072 -0.667,0.247,0.247,0,0,0,0,0.421,0.617,0.239,0,0,0.072 -1,0.384,0.384,0,0.3,0,0,0.912,0.658,0.473,0.72,0,0.108 -1,0.467,0.467,0,0.867,0,0,1,0.645,0.662,0.485,0,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0.498,0,0.409 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.0176 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.141 -1,0.136,0.136,1,0,0,0,0.614,0.538,0.0323,0,0,0.174 -1,0.277,0.277,1,0,0,0,0.421,0.54,0.0653,0,0,0.245 -1,0.274,0.274,1,0,0,0,0.421,0.548,0.0788,0,0.0731,0.176 -0.667,0.156,0.156,1,0.55,1,0.367,0.421,0.555,0.0541,0.561,0.491,0.036 -0.667,0.153,0.153,0.467,0.85,0,0.35,0.421,0.555,0.0593,0,0.442,0.036 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.392,0.036 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.388,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0.688,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0.506,0.108 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0.321,0 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0.442,0 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0,0.515,0.072 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.473,0,0.179,0.18 -1,0.467,0.467,0,0,0,0,1,0.645,0.662,0,0,0.153 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.212 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.535 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.147 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.192 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.143 -0.667,0.263,0.263,0.0167,0.3,0,0,0.421,0.548,0.0923,0.711,0,0.155 -0.333,0.153,0.153,1,0.867,0,0,0.421,0.555,0.0593,0.274,0.0774,0.252 -0.667,0.245,0.245,1,0,1,0.717,0.421,0.548,0.113,0,0,0.036 -0.333,0.143,0.143,1,0,0,0,0.421,0.555,0.0676,0,0,0.252 -0.333,0.142,0.142,1,0,0,0,0.421,0.555,0.0751,0,0,0 -0.333,0.142,0.142,0.467,0,0,0,0.421,0.555,0.0789,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0,0.036 -0.333,0.144,0.144,0,0.05,0,0,0.421,0.576,0.106,0.389,0,0.288 -0.667,0.247,0.247,0,1,0,0,0.421,0.617,0.239,0.128,0,0.18 -0.667,0.273,0.273,0,0.4,0,0,0.749,0.626,0.32,0.394,0,0.108 -1,0.467,0.467,0,1,0,0,1,0.645,0.662,0.175,0,0.036 -1,0.595,0.595,0,0.117,0,0,1,0.619,0.817,0,0,0.205 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.225 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.369 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.341 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0301,0,0,0.314 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0706,0,0,0.35 -1,0.274,0.274,0,0,0,0,0.421,0.548,0.113,0,0,0.129 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0.264 -0.667,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.421,0.555,0.104,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.555,0.129,0,0,0.072 -0.333,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.144 -0.333,0.144,0.144,0.133,0,0,0,0.421,0.576,0.167,0,0.3,0.216 -0.667,0.247,0.247,0,0,1,0.617,0.421,0.617,0.326,0,0.295,0.18 -1,0.384,0.384,0,0,0,0.35,0.912,0.658,0.565,0,0.494,0.036 -1,0.467,0.467,0,0,0,0,1,0.645,0.743,0,0.44,0.036 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0.757,0.108 -1,0.726,0.726,0,0,0,0,1,0.568,0.806,0,0.263,0.216 -1,0.557,0.557,0,0,0,0,1,0.516,0.509,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.102 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0226,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.253 -0.667,0.156,0.156,0,0,0,0,0.421,0.555,0.0826,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.333,0.143,0.143,0.267,0,0,0,0.421,0.555,0.111,0,0,0.036 -0.667,0.235,0.235,1,0,0,0,0.421,0.548,0.24,0,0,0.036 -1,0.327,0.327,0.383,0,0,0,0.421,0.542,0.401,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0.036 -1,0.332,0.332,0,0,0,0,0.421,0.606,0.464,0,0,0.252 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.479,0,0,0.072 -1,0.384,0.384,0,0,0,0,0.912,0.658,0.565,0,0,0.108 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.072 -1,0.595,0.595,0,0,0,0,1,0.619,0.873,0,0,0.12 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.108 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.411 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.321 -1,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.192 -0.667,0.162,0.162,0.0167,0,0,0,0.421,0.555,0.0473,0,0,0.165 -0.667,0.263,0.263,1,0,0,0,0.421,0.548,0.0923,0,0,0 -0,0.0495,0.0495,0.667,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.555,0.0646,0,0,0.036 -0.667,0.237,0.237,0.15,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.072 -0.667,0.238,0.238,0,0,0,0,0.421,0.591,0.196,0,0,0.036 -1,0.345,0.345,0,0,0,0,0.421,0.645,0.351,0.192,0,0.18 -1,0.384,0.384,0,0.8,0,0,0.912,0.658,0.473,0.485,0,0.108 -1,0.467,0.467,0,0.367,0,0,1,0.645,0.662,0,0,0.324 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.18 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0 -1,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.529,0.0188,0,0,0.0881 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0.17,0.36 -0.667,0.156,0.156,0,0,1,0.617,0.421,0.555,0.0541,0,0.378,0.036 -0.667,0.153,0.153,0,0,0,0.1,0.421,0.555,0.0593,0,0.709,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0.345,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0.437,0.18 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.18 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.0871,0,0.17,0.144 -0.667,0.238,0.238,0,0,1,0.367,0.421,0.591,0.196,0,0.679,0.036 -1,0.345,0.345,0.0167,0,0,1,0.421,0.645,0.351,0,0.256,0.288 -1,0.384,0.384,1,0,0,1,0.912,0.658,0.473,0,0,0.036 -1,0.467,0.467,0.4,0,0,0.05,1,0.645,0.662,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.18 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.313 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0.534 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.242 -1,0.0768,0.0768,0,0,0,0,0.614,0.529,0.0241,0,0,0.298 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.229 -0.667,0.163,0.163,0,0,0,0,0.421,0.551,0.0406,0,0,0.0706 -0.667,0.274,0.274,0,0,0,0,0.421,0.548,0.0788,0,0,0.036 -0.333,0.156,0.156,0,0,0,0,0.421,0.555,0.0541,0,0,0.108 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.237,0.237,0.2,0,0,0,0.421,0.548,0.119,0,0,0.376 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0 -0.333,0.142,0.142,0.517,0,0,0,0.421,0.564,0.0871,0,0,0.216 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0.036 -0.667,0.247,0.247,1,0,0,0,0.421,0.617,0.239,0,0,0.072 -1,0.384,0.384,1,0,0,0,0.912,0.658,0.473,0,0,0.036 -1,0.467,0.467,0.967,0,0,0,1,0.645,0.662,0,0,0.036 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.036 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.234 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0.288 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.305 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.0692 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.162,0.162,0.0167,0,0,0,0.421,0.555,0.0473,0,0,0.113 -0.667,0.156,0.156,0.45,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.108 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.235 -0.667,0.143,0.143,0,0,0,0,0.421,0.555,0.0676,0,0,0.036 -0.667,0.142,0.142,0,0.05,0,0,0.421,0.555,0.0751,0.38,0,0.072 -0.667,0.235,0.235,0,1,0,0,0.421,0.548,0.142,0.256,0,0.599 -0.667,0.235,0.235,0.267,0.117,0,0,0.421,0.566,0.158,0,0,0.356 -0.667,0.238,0.238,1,0,0,0,0.421,0.591,0.196,0,0,0.298 -0.667,0.247,0.247,0.15,0,0,0,0.421,0.617,0.239,0,0,0.072 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.036 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.216 -1,0.595,0.595,0,0,0,0,1,0.619,0.817,0,0,0.263 -1,0.726,0.726,0,0,0,0,1,0.568,0.774,0,0,0.16 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.102 -1,0.136,0.136,0,0,0,0,0.614,0.538,0.0323,0,0,0.319 -1,0.277,0.277,0,0,0,0,0.421,0.54,0.0653,0,0,0.351 -0.667,0.162,0.162,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.548,0.0923,0,0,0.216 -0.667,0.256,0.256,0,0,0,0,0.421,0.548,0.103,0,0,0.036 -0.667,0.245,0.245,0,0,0,0,0.421,0.548,0.113,0,0,0.036 -0.667,0.237,0.237,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.134,0,0,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.548,0.142,0,0,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.566,0.158,0,0,0.144 -0.333,0.144,0.144,0.467,0,0,0,0.421,0.576,0.106,0,0,0.036 -0.333,0.148,0.148,0,0,0,0,0.421,0.589,0.128,0,0,0.252 -0.667,0.273,0.273,0,0,0,0,0.749,0.626,0.32,0,0,0.332 -0.667,0.328,0.328,0,0,0,0,0.807,0.617,0.446,0,0,0.173 -0.667,0.413,0.413,0,0,0,0,0.807,0.6,0.55,0,0,0.312 -0.667,0.501,0.501,0,0,0,0,0.807,0.566,0.521,0,0,0.199 -0.667,0.219,0.219,0,0,0,0,0.614,0.546,0.167,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.13 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.263,0.263,1,0,0,0,0.421,0.548,0.147,0,0,0 -1,0.359,0.359,1,0,0,0,0.421,0.542,0.252,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0.217,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.142,0.142,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.564,0.159,0,0,0 -0.333,0.144,0.144,0,0.05,0,0,0.421,0.576,0.167,0.387,0,0 -0.333,0.148,0.148,0,1,0,0,0.421,0.589,0.172,0.308,0,0.144 -0.333,0.161,0.161,0,0.35,0,0,0.585,0.594,0.2,0,0,0.18 -1,0.328,0.328,0,0,0,0,0.807,0.617,0.501,0,0,0.072 -1,0.413,0.413,0,0,0,0,0.807,0.6,0.588,0,0,0.288 -1,0.501,0.501,0,0,0,0,0.807,0.566,0.543,0,0,0.236 -1,0.388,0.388,0,0,0,0,0.807,0.531,0.345,0,0,0.212 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.161,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.1,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0.367,0,0,0,0.421,0.562,0.0181,0,0,0.235 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.484 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.15 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.104 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.3 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.195 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.0662 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.203 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.291 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.264 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.151 -0.333,0.159,0.159,0.6,0,0,0,0.585,0.592,0.201,0,0,0.237 -0.667,0.324,0.324,1,0,0,0,0.807,0.614,0.503,0,0,0.108 -0.667,0.41,0.41,1,0,0,0,0.807,0.597,0.59,0,0,0 -1,0.72,0.72,1,0,0,0,1,0.563,0.808,0,0,0.114 -1,0.554,0.554,0.85,0,0,0,1,0.512,0.51,0,0,0.206 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.184 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.142 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.13 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.072 -0.333,0.145,0.145,0.267,0,0,0,0.421,0.554,0.0648,0,0,0.036 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0.036 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.135,0,0,0.324 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.142,0,0,0.144 -0.667,0.23,0.23,1,0.05,0,0,0.421,0.563,0.159,0.443,0.0928,0.072 -0.667,0.233,0.233,0.183,1,1,0.617,0.421,0.588,0.196,0.602,0.592,0.072 -0.667,0.242,0.242,0,0.0833,0,0.0667,0.421,0.614,0.24,0,0,0.18 -0.667,0.268,0.268,0,0.55,0,0,0.749,0.623,0.321,0.751,0,0.216 -1,0.461,0.461,0,0.817,0,0,1,0.64,0.664,0.824,0,0.144 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.036 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.072 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.322 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.63 -0.667,0.162,0.162,0.267,0,0,0,0.421,0.549,0.0407,0,0.0844,0.633 -0.667,0.27,0.27,0.433,0,1,0.367,0.421,0.546,0.079,0,0.779,0.142 -0.667,0.258,0.258,0,0,0,0.55,0.421,0.546,0.0926,0,0.515,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0.442,0.036 -0.333,0.145,0.145,0.517,0,0,0,0.421,0.554,0.0648,0,0,0.18 -0.333,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0.036 -0.333,0.14,0.14,0.117,0,0,0,0.421,0.554,0.0753,0,0,0.072 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.144 -0.667,0.23,0.23,0.267,0,0,0,0.421,0.563,0.159,0,0,0.036 -1,0.324,0.324,0.2,0,0,0,0.421,0.602,0.287,0,0,0.072 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.216 -1,0.461,0.461,0.267,0,0,0,1,0.64,0.664,0,0,0.108 -1,0.59,0.59,0.2,0,0,0,1,0.615,0.82,0,0,0.288 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0.0634 -0.667,0.162,0.162,0.833,0,0,0,0.421,0.549,0.0407,0,0,0.216 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.154,0.154,0.517,0.05,0,0,0.421,0.554,0.0542,0.473,0,0.036 -0.667,0.25,0.25,1,1,0,0,0.421,0.546,0.103,0.701,0,0.072 -0.667,0.24,0.24,0.583,0.317,0,0,0.421,0.546,0.114,0.768,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0.738,0,0.108 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0.534,0,0.235 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.125 -0.333,0.14,0.14,0.7,0,0,0,0.421,0.562,0.0873,0,0,0.036 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.144 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.252 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.036 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.108 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.108 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.072 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.116 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.162 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.621 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.206 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0.467,0,0,0,0.421,0.554,0.0648,0,0,0.036 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.108 -0.667,0.23,0.23,0.517,0,0,0,0.421,0.546,0.135,0,0,0.108 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.142,0,0,0.036 -0.667,0.23,0.23,0.583,0,0,0,0.421,0.563,0.159,0,0,0.108 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.424 -1,0.338,0.338,0.0167,0,0,0,0.421,0.64,0.352,0,0,0.367 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.036 -1,0.461,0.461,0.617,0,0,0,1,0.64,0.664,0,0,0.144 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.072 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.233 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.331 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0.263 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.0857 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.129 -0.667,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.291 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.123 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.318 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.144 -0.667,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.072 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.14,0.14,0,0.55,0,0,0.421,0.554,0.0791,0.638,0,0.036 -0.333,0.14,0.14,0,0.583,0,0,0.421,0.562,0.0873,0.812,0,0.108 -1,0.324,0.324,0.767,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0.633,0,0,0,0.421,0.64,0.352,0,0,0.0664 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.324 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.036 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.498 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.378 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.185 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.162,0.162,0.1,0,0,0,0.421,0.549,0.0444,0,0,0.149 -1,0.381,0.381,1,0,0,0,0.421,0.538,0.16,0,0,0.175 -0.667,0.258,0.258,0.3,0,0,0,0.421,0.546,0.148,0,0,0.237 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0.072 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.18 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.072 -0.333,0.14,0.14,0.35,0,0,0,0.421,0.562,0.16,0,0,0.18 -1,0.233,0.233,1,0,0,0,0.421,0.588,0.316,0,0,0.072 -1,0.242,0.242,0.283,0,0,0,0.421,0.614,0.327,0,0,0 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0 -1,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.18 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.59,0,0,0.108 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.072 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.036 -1,0.183,0.183,0,0.55,0,0,0.807,0.503,0.161,0.529,0,0.036 -1,0.0495,0.0495,0,0.5,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.85,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0 -0.667,0.258,0.258,0.25,0,0,0,0.421,0.546,0.148,0,0,0.0997 -0.333,0.15,0.15,0.35,0,0,0,0.421,0.554,0.0964,0,0,0.186 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.105,0,0,0.0707 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.14,0.14,1,0,0,0,0.421,0.554,0.129,0,0,0.144 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.274,0,0,0 -0.667,0.23,0.23,0.1,0,0,0,0.421,0.563,0.301,0,0,0 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.108 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.396 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.396 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.216 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.144 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.346,0,0,0.072 -1,0.116,0.116,0,0.0833,0,0,0.614,0.532,0.0896,0,0,0.072 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.236 -1,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.104 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.036 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.072 -0.667,0.24,0.24,0.267,0,0,0,0.421,0.546,0.114,0,0,0.108 -0.667,0.232,0.232,0.433,0,0,0,0.421,0.546,0.12,0,0,0.152 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.0973 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.036 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0 -0.333,0.141,0.141,0.767,0,0,0,0.421,0.575,0.106,0,0,0 -0.667,0.242,0.242,1,0,0,0,0.421,0.614,0.24,0,0,0.216 -1,0.377,0.377,0.333,0,0,0,0.912,0.653,0.474,0,0,0.072 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0,0,0.036 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.108 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.108 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.141 -1,0.0504,0.0504,0,0,0,0,0.807,0.495,0.0218,0,0,0.167 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.133 -1,0.135,0.135,0.267,0,0,0,0.614,0.537,0.0324,0,0,0.287 -1,0.274,0.274,1,0,0,0,0.421,0.537,0.0655,0,0,0 -0.333,0.16,0.16,0.367,0,0,0,0.421,0.554,0.0475,0,0,0.144 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.072 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.036 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.0561 -0.667,0.232,0.232,0.767,0,0,0,0.421,0.546,0.12,0,0,0.113 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.135,0,0,0.14 -0.667,0.23,0.23,0.333,0,0,0,0.421,0.546,0.142,0,0,0.316 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.036 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0.144 -1,0.338,0.338,0.267,0,0,0,0.421,0.64,0.352,0,0,0.144 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.298 -1,0.59,0.59,1,0,0,0,1,0.615,0.82,0,0,0.164 -1,0.496,0.496,1,0,0,0,0.807,0.563,0.523,0,0,0.0893 -1,0.386,0.386,0.183,0,0,0,0.807,0.529,0.318,0,0,0.602 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.141,0,0,0.381 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.061,0,0,0.226 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.189 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.174 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.0905 -0.667,0.0495,0.0495,0,0,0.0667,0.117,0.421,0.562,0.0159,0,0.266,0 -0.667,0.16,0.16,0,0,0.933,0.567,0.421,0.554,0.0475,0,0.371,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0.134,0.108 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.108 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.072 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.219,0.072 -0.667,0.23,0.23,0,0,1,0.617,0.421,0.546,0.142,0,0,0.144 -0.667,0.23,0.23,0.767,0,0,0.0667,0.421,0.563,0.159,0,0,0 -0.667,0.233,0.233,0.867,0,0,0,0.421,0.588,0.196,0,0,0.144 -0.667,0.242,0.242,0.267,0,0,0,0.421,0.614,0.24,0,0,0.108 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.225 -1,0.461,0.461,0.133,0,0,0,1,0.64,0.664,0,0,0.0878 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.072 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.072 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.316,0 -1,0.162,0.162,0,0,1,0.617,0.421,0.549,0.0407,0,0.57,0 -0.667,0.27,0.27,0,0,0,0.3,0.421,0.546,0.079,0,0.397,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0.506,0 -0.667,0.25,0.25,0.0167,0,0,0,0.421,0.546,0.103,0,0.045,0.036 -0.333,0.145,0.145,1,0,0,0,0.421,0.554,0.0648,0,0,0.108 -0.667,0.141,0.141,1,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0159,0,0,0.152 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.106 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.484 -0.667,0.233,0.233,0,0.55,0,0,0.421,0.588,0.196,0.588,0.174,0.148 -1,0.338,0.338,0,0.583,1,0.617,0.421,0.64,0.352,0.801,0.481,0.0917 -1,0.377,0.377,0,0,0,0.0667,0.912,0.653,0.474,0.826,0.322,0.505 -1,0.461,0.461,0,0,0,0,1,0.64,0.664,0.261,0,0.144 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.261 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.147 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0.167 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.265 -0.667,0.258,0.258,0,0,0.0667,0.117,0.421,0.546,0.0926,0,0.414,0 -0.667,0.25,0.25,0,0,0.933,0.8,0.421,0.546,0.103,0,0.421,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0.195,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.592,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.072 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.216 -0.333,0.141,0.141,0.267,0,0,0,0.421,0.575,0.106,0,0,0.252 -0.667,0.242,0.242,0.433,0,0,0,0.421,0.614,0.24,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.072 -0.667,0.324,0.324,0.767,0,0,0,0.807,0.614,0.448,0,0,0.036 -0.667,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0.0563,0.216 -0.667,0.496,0.496,1,0,1,0.217,0.807,0.563,0.523,0,0.435,0.072 -1,0.386,0.386,1,0,0,0,0.807,0.529,0.318,0,0,0.145 -1,0.183,0.183,0.683,0,0,0,0.807,0.503,0.141,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0.162 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.104 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0.326 -1,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0.221 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0.298 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0.342 -0.667,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.072 -1,0.23,0.23,0,0,0,0,0.421,0.563,0.301,0,0,0.108 -1,0.233,0.233,0.467,0,0,0,0.421,0.588,0.316,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.036 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.036 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.18 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.18 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0.41 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.102 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.036 -1,0.099,0.099,0,0,0,0,0.807,0.495,0.0723,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0302,0,0,0 -1,0.162,0.162,0.1,0,0,0,0.421,0.549,0.0444,0,0,0 -1,0.16,0.16,1,0,0,0,0.421,0.554,0.0655,0,0,0.424 -1,0.258,0.258,0.3,0,0,0,0.421,0.546,0.148,0,0,0.243 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.351 -1,0.335,0.335,0,0,0,0,0.421,0.538,0.278,0,0,0.128 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.241 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0.316,0,0.138 -0.333,0.14,0.14,0,0.883,0,0,0.421,0.554,0.146,0.527,0,0.036 -0.333,0.14,0.14,0,0.25,0,0,0.421,0.562,0.16,0.473,0,0.036 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.167,0,0,0.036 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.172,0,0,0.108 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.072 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.108 -1,0.59,0.59,0.35,0,0,0,1,0.615,0.876,0,0,0 -1,0.72,0.72,1,0,0,0,1,0.563,0.808,0,0,0.177 -1,0.554,0.554,1,0,0,0,1,0.512,0.51,0,0,0.327 -1,0.183,0.183,0.917,0,0,0,0.807,0.503,0.161,0,0,0.183 -1,0.0743,0.0743,1,0,0,0,0.614,0.528,0.0384,0,0,0.0579 -1,0.0578,0.0578,0.183,0,0,0,0.614,0.528,0.0241,0,0,0.238 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0.0899 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0158,0,0,0.0936 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.153 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.252 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.036 -0.333,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0.242,0 -0.667,0.25,0.25,0,0,1,0.617,0.421,0.546,0.103,0,0,0.144 -0.667,0.24,0.24,0.267,0,0,0.3,0.421,0.546,0.114,0,0,0 -0.667,0.232,0.232,0.433,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.072 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.036 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.196,0,0,0.282 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0.216 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.263 -1,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0.412,0.144 -1,0.59,0.59,0,0,1,0.867,1,0.615,0.82,0,0.0619,0.18 -1,0.496,0.496,0,0,0,0.05,0.807,0.563,0.523,0,0,0.036 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.18 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.036 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0189,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0.162 -0.667,0.15,0.15,0.267,0,0,0,0.421,0.554,0.0595,0,0.0928,0 -0.667,0.145,0.145,0.2,0,1,0.367,0.421,0.554,0.0648,0,0.467,0 -0.667,0.232,0.232,0,0,0,1,0.421,0.546,0.12,0,0.519,0.036 -0.667,0.23,0.23,0,0,0,1,0.421,0.546,0.135,0,0.487,0.108 -0.333,0.14,0.14,0,0,0,1,0.421,0.554,0.0791,0,0.166,0.108 -0.667,0.14,0.14,0.7,0,0,0.583,0.421,0.562,0.0873,0,0,0.072 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0 -0.667,0.242,0.242,0,0,0.0667,0.117,0.421,0.614,0.24,0.128,0.454,0.18 -1,0.377,0.377,0,0.8,0.933,1,0.912,0.653,0.474,0.475,0.224,0.288 -1,0.461,0.461,0,0.633,0,0.267,1,0.64,0.664,0.718,0,0.18 -1,0.59,0.59,0,0.833,0,0,1,0.615,0.82,0,0,0.288 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.22,0.22,0.2,0,0,0,0.807,0.512,0.0489,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.156 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.301 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.0678,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0.216 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.072 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.036 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.826 -1,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.151 -1,0.324,0.324,0,0,0,0,0.807,0.614,0.448,0,0,0.072 -1,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.144 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.072 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.112 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.16 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0.342 -0.667,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.286 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.67 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.036 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0,0.072 -0.667,0.23,0.23,0.267,0,0,0,0.421,0.563,0.159,0,0,0.18 -1,0.324,0.324,1,0,0,0,0.421,0.602,0.287,0,0,0.072 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.144 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.144 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.144 -1,0.59,0.59,0.183,0,0,0,1,0.615,0.82,0,0,0.16 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0.226,0 -1,0.218,0.218,0,0,1,0.367,0.614,0.545,0.167,0,0.376,0 -1,0.116,0.116,0,0,0,1,0.614,0.532,0.0783,0,0.105,0.036 -1,0.099,0.099,0,0,0,0.483,0.807,0.495,0.061,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.236 -1,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0241,0,0,0.136 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0.179 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0407,0,0,0.228 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.0911 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0.128,0.228,0.072 -0.667,0.25,0.25,0,0.8,1,0.367,0.421,0.546,0.103,0.393,0.395,0.036 -0.667,0.24,0.24,0,0.333,0,0.55,0.421,0.546,0.114,0,0.657,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0.511,0.072 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.135,0,0.409,0.108 -1,0.23,0.23,0,0,0,0,0.421,0.546,0.142,0,0.405,0 -1,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.494,0.144 -1,0.233,0.233,0.267,0,0,0,0.421,0.588,0.196,0,0.333,0.216 -1,0.338,0.338,1,0,0,0,0.421,0.64,0.352,0,0,0.144 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.474,0,0,0.288 -1,0.461,0.461,1,0,0,0,1,0.64,0.664,0,0,0.252 -1,0.41,0.41,1,0,0,0,0.807,0.597,0.552,0,0,0.036 -1,0.273,0.273,0.183,0,0,0,0.614,0.562,0.269,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.0671 -1,0.162,0.162,0.35,0,0,0,0.421,0.549,0.0444,0,0,0.331 -1,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0 -1,0.258,0.258,0.75,0,0,0,0.421,0.546,0.148,0,0,0.189 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.175,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.105,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.554,0.111,0,0,0.072 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.036 -0.333,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0.108 -0.333,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.108 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.036 -0.667,0.242,0.242,0.35,0,0,0,0.421,0.614,0.327,0,0,0.108 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.384,0,0,0.238 -1,0.461,0.461,1,0,0,0,1,0.64,0.745,0,0,0.198 -1,0.59,0.59,1,0,0,0,1,0.615,0.876,0,0,0.072 -1,0.72,0.72,1,0,0,0,1,0.563,0.808,0,0,0 -1,0.218,0.218,0.1,0,0,0,0.614,0.545,0.182,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.112 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.151 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -0.667,0.0763,0.0763,0,0,0,0,0.614,0.528,0.0226,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.85,0,0,0,0.421,0.562,0.0181,0,0,0.151 -0.667,0.27,0.27,1,0,0,0,0.421,0.546,0.113,0,0,0.308 -1,0.362,0.362,0.25,0,0,0,0.421,0.538,0.212,0,0,0.153 -1,0.351,0.351,0,0,0,0,0.421,0.538,0.253,0,0,0.177 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.205,0,0,0.036 -0.667,0.23,0.23,0,0,0,0,0.421,0.546,0.241,0,0,0.108 -1,0.32,0.32,0.35,0,0,0,0.421,0.538,0.402,0,0,0 -1,0.321,0.321,1,0,0,0,0.421,0.563,0.443,0,0,0 -1,0.324,0.324,0.283,0,0,0,0.421,0.602,0.465,0,0,0.072 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.481,0,0,0.036 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.567,0,0,0.036 -1,0.461,0.461,0,0,0,0,1,0.64,0.745,0,0,0.072 -1,0.41,0.41,0,0,0.4,0.2,0.807,0.597,0.59,0,0.414,0.108 -1,0.496,0.496,0,0.383,0.6,0.717,0.807,0.563,0.545,0.728,0,0.072 -1,0.386,0.386,0,0.75,0,0,0.807,0.529,0.346,0.634,0,0.288 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0.291,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.217 -1,0.135,0.135,0.267,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,1,0,0,0,0.421,0.549,0.0407,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.421,0.546,0.079,0,0,0 -1,0.362,0.362,1,0,0,0,0.421,0.538,0.131,0,0,0.036 -1,0.351,0.351,1,0,0,0,0.421,0.538,0.147,0,0,0.502 -0.667,0.24,0.24,0.183,0,0,0,0.421,0.546,0.114,0,0,0.218 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0.125,0,0.143 -0.667,0.23,0.23,0,0.8,0,0,0.421,0.546,0.135,0.308,0,0.108 -0.333,0.14,0.14,0,0.333,0,0,0.421,0.554,0.0791,0,0,0.036 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0 -1,0.324,0.324,0,0.3,0,0,0.421,0.602,0.287,0.638,0,0.144 -0.667,0.242,0.242,0.517,0.833,0,0,0.421,0.614,0.24,0.167,0,0.036 -0.667,0.268,0.268,1,0,0,0,0.749,0.623,0.321,0,0,0.072 -1,0.461,0.461,0.583,0,0,0,1,0.64,0.664,0.176,0,0.036 -1,0.59,0.59,0,0.8,0,0,1,0.615,0.82,0.538,0,0.252 -1,0.72,0.72,0,0.567,0,0,1,0.563,0.777,0.651,0,0.036 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.18 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0982 -1,0.0763,0.0763,0.267,0,0,0,0.614,0.528,0.0241,0,0,0.159 -1,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0.133,0,0,0,0.421,0.549,0.0407,0,0,0.197 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.565 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.342 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.0899 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0.036 -0.333,0.141,0.141,0.767,0,0,0,0.421,0.554,0.0678,0,0,0.036 -0.667,0.14,0.14,0.633,0,0,0,0.421,0.554,0.0753,0,0,0.036 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.0791,0,0,0.108 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.0873,0,0,0.072 -0.667,0.141,0.141,0,0,0,0,0.421,0.575,0.106,0,0,0.072 -0.667,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0 -1,0.377,0.377,0,0,0,0,0.912,0.653,0.474,0,0,0.036 -1,0.324,0.324,0,0.3,0,0,0.807,0.614,0.448,0.485,0,0.108 -1,0.41,0.41,0,0.833,0,0,0.807,0.597,0.552,0,0,0.036 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.206 -1,0.22,0.22,0,0,0,0,0.807,0.512,0.0489,0,0,0.101 -0.667,0.274,0.274,0,0,0,0,0.421,0.537,0.0655,0,0,0.139 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.554,0.0542,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0595,0,0,0.036 -0.333,0.145,0.145,0,0,0,0,0.421,0.554,0.0648,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.546,0.12,0,0,0.036 -0.667,0.23,0.23,0.517,0,0,0,0.421,0.546,0.135,0,0.142,0 -0.667,0.23,0.23,0.183,0,1,0.45,0.421,0.546,0.142,0,0.568,0 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0.47,0 -0.667,0.233,0.233,0.267,0,0,0,0.421,0.588,0.196,0,0.142,0.18 -1,0.338,0.338,0.433,0,0,0,0.421,0.64,0.352,0,0,0.108 -1,0.377,0.377,0.767,0.55,0,0,0.912,0.653,0.474,0.693,0,0.252 -1,0.461,0.461,0.633,0.583,0,0,1,0.64,0.664,0.289,0,0.216 -1,0.59,0.59,0,0,0,0,1,0.615,0.82,0,0,0.108 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.072 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.115 -1,0.135,0.135,1,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.0495,0.0495,0.833,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.554,0.0475,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0.165 -0.667,0.25,0.25,0,0,0.0667,0.117,0.421,0.546,0.103,0,0.706,0.036 -0.667,0.24,0.24,0.267,0,0.933,0.8,0.421,0.546,0.114,0,0,0.108 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0.072 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.135,0,0,0.072 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.142,0,0.312,0.036 -1,0.321,0.321,1,0,1,0.617,0.421,0.563,0.23,0,0.579,0 -0.667,0.233,0.233,0.183,0,0,0.3,0.421,0.588,0.196,0,0.00844,0.072 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.24,0,0,0.252 -1,0.377,0.377,0,0.05,0,0,0.912,0.653,0.474,0.372,0,0.072 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.444,0,0 -1,0.59,0.59,0,0.0833,0,0,1,0.615,0.82,0,0,0.072 -1,0.72,0.72,0,0,0,0,1,0.563,0.777,0,0,0.216 -1,0.386,0.386,0,0,0,0,0.807,0.529,0.318,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0499,0.0499,1,0,0,0,0.614,0.528,0.0189,0,0,0 -1,0.0763,0.0763,0.133,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0,0,0,0,0.614,0.537,0.0324,0,0,0 -0.667,0.162,0.162,0,0.05,0,0,0.421,0.549,0.0407,0.399,0,0.336 -0.667,0.27,0.27,0,1,0,0,0.421,0.546,0.079,0.704,0,0 -0.667,0.258,0.258,0,0.0833,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.036 -0.667,0.24,0.24,0.517,0,0,0,0.421,0.546,0.114,0,0,0.036 -0.667,0.232,0.232,1,0,0,0,0.421,0.546,0.12,0,0,0.072 -0.667,0.23,0.23,0.133,0,0,0,0.421,0.546,0.135,0,0,0.113 -0,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.14,0.14,1,0,0,0,0.421,0.562,0.0873,0,0,0.108 -0.333,0.141,0.141,0.0833,0,0,0,0.421,0.575,0.106,0,0,0.072 -0.333,0.146,0.146,0,0,0,0,0.421,0.588,0.128,0,0,0.216 -0,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.187,0.187,1,0,0,0,0.614,0.588,0.232,0,0,0.643 -0.333,0.23,0.23,1,0,0,0,0.614,0.579,0.284,0,0,0.36 -0.667,0.496,0.496,1,0,0,0,0.807,0.563,0.523,0,0,0 -0.667,0.218,0.218,0.933,0,0,0,0.614,0.545,0.167,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0452,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.575 -1,0.162,0.162,0,0,0,0,0.421,0.549,0.0444,0,0,0.126 -1,0.16,0.16,0,0,0,0,0.421,0.554,0.0655,0,0,0 -1,0.154,0.154,0,0,0,0,0.421,0.554,0.0828,0,0,0 -1,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0,0 -1,0.24,0.24,0,0,0,0,0.421,0.546,0.191,0,0.565,0.108 -0.333,0.141,0.141,0,0,1,0.7,0.421,0.554,0.111,0,0,0.108 -0.333,0.14,0.14,0,0,0,0.45,0.421,0.554,0.129,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.554,0.146,0,0,0 -0.667,0.14,0.14,0,0,0,0,0.421,0.562,0.16,0,0,0.036 -0.667,0.233,0.233,0,0,0,0,0.421,0.588,0.316,0,0,0.404 -0.667,0.242,0.242,0,0,0,0,0.421,0.614,0.327,0,0,0.375 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.384,0,0,0.148 -0.667,0.324,0.324,0,0,0,0,0.807,0.614,0.503,0,0,0.604 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.545,0,0,0 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.182,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0896,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0499,0.0499,0,0,0,0,0.614,0.528,0.0204,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.261 -1,0.27,0.27,0,0,0,0,0.421,0.546,0.113,0,0,0.761 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.148,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.554,0.0964,0,0.101,0 -0.333,0.145,0.145,0,0,1,0.45,0.421,0.554,0.105,0,0,0.324 -0.333,0.141,0.141,0,0,0,0.467,0.421,0.554,0.111,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0,0.0495,0.0495,0,0.383,0,0,0.421,0.562,0.0181,0.676,0,0.144 -0.333,0.14,0.14,0.85,0.983,0,0,0.421,0.562,0.16,0.0747,0,0.072 -1,0.324,0.324,0.783,0,0,0,0.421,0.602,0.465,0,0,0 -1,0.338,0.338,0.35,0,0,0,0.421,0.64,0.481,0,0,0 -1,0.377,0.377,1,0,0,0,0.912,0.653,0.567,0,0,0.036 -1,0.461,0.461,0.05,0,0,0,1,0.64,0.745,0,0,0.108 -1,0.59,0.59,0,0,0,0,1,0.615,0.876,0,0,0.036 -1,0.72,0.72,0,0,0,0,1,0.563,0.808,0,0,0.144 -1,0.554,0.554,0,0,0,0,1,0.512,0.51,0,0,0.123 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.161,0,0,0.189 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0384,0,0,0.0917 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0763,0.0763,1,0,0,0,0.614,0.528,0.0241,0,0,0 -1,0.135,0.135,0.833,0,0,0,0.614,0.537,0.0324,0,0,0.143 -1,0.386,0.386,0,0.05,0,0,0.421,0.525,0.0903,0.41,0,0.245 -0.333,0.16,0.16,0,1,0,0,0.421,0.554,0.0475,0.362,0,0.344 -0.333,0.154,0.154,0,0.317,0,0,0.421,0.554,0.0542,0,0,0.144 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0,0,0.144 -0.667,0.24,0.24,0,0,0,0,0.421,0.546,0.114,0,0,0.036 -0.667,0.232,0.232,0.767,0,0,0,0.421,0.546,0.12,0,0,0 -0.667,0.23,0.23,1,0,0,0,0.421,0.546,0.135,0,0,0 -0.667,0.23,0.23,0.333,0,0,0,0.421,0.546,0.142,0,0,0.036 -0.667,0.23,0.23,0,0,0,0,0.421,0.563,0.159,0,0,0.108 -1,0.324,0.324,0,0,0,0,0.421,0.602,0.287,0,0,0 -1,0.338,0.338,0,0,0,0,0.421,0.64,0.352,0,0,0 -0.667,0.268,0.268,0,0,0,0,0.749,0.623,0.321,0,0,0.252 -0.333,0.187,0.187,0,0,0,0,0.614,0.588,0.232,0,0,0.144 -0.667,0.41,0.41,0,0,0,0,0.807,0.597,0.552,0,0,0.18 -0.667,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.036 -0.667,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.132 -0.667,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0174,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.44 -1,0.386,0.386,0,0,0,0,0.421,0.525,0.0903,0,0,0.096 -0.667,0.27,0.27,0,0,0,0,0.421,0.546,0.079,0,0,0.0722 -0.667,0.258,0.258,0,0,0,0,0.421,0.546,0.0926,0,0,0 -0.667,0.25,0.25,0,0,0,0,0.421,0.546,0.103,0.169,0,0.288 -0.667,0.24,0.24,0,0.8,0,0,0.421,0.546,0.114,0.697,0,0.072 -0.667,0.232,0.232,0.267,0.333,0,0,0.421,0.546,0.12,0.697,0,0 -0.667,0.23,0.23,1,0,0.0667,0.117,0.421,0.546,0.135,0.347,0.463,0.144 -0.667,0.23,0.23,1,0,0.933,0.333,0.421,0.546,0.142,0,0.495,0.072 -0.667,0.23,0.23,1,0,0,0,0.421,0.563,0.159,0,0.11,0.108 -0.667,0.233,0.233,1,0,0,0,0.421,0.588,0.196,0,0,0.108 -0.667,0.242,0.242,0.183,0,0,0,0.421,0.614,0.24,0,0,0.18 -1,0.377,0.377,0,0.05,0,0,0.912,0.653,0.474,0.37,0,0.072 -1,0.461,0.461,0,1,0,0,1,0.64,0.664,0.28,0,0.072 -1,0.59,0.59,0,0.0833,0,0,1,0.615,0.82,0,0,0.036 -1,0.496,0.496,0,0,0,0,0.807,0.563,0.523,0,0,0.036 -1,0.218,0.218,0,0,0,0,0.614,0.545,0.167,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0783,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.185 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.322 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.885 -0.667,0.274,0.274,0.267,0,0,0,0.421,0.546,0.0764,0,0,0.18 -0.667,0.263,0.263,0.2,0,0,0,0.421,0.546,0.0894,0,0,0.036 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.288 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.036 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.18 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.036 -0.667,0.236,0.236,0.267,0,0,0,0.421,0.563,0.153,0,0,0.134 -1,0.334,0.334,0.2,0,0,0,0.421,0.602,0.276,0,0,0.144 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.108 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0,0.108 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.036 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.108 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.244 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.21 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0.361 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0.55,0,0,0.614,0.537,0.0316,0.684,0,0 -0.667,0.163,0.163,0,0.6,0,0,0.421,0.549,0.0396,0.841,0,0.291 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.125,0,0.108 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.108 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.108 -0.333,0.147,0.147,0.267,0,0,0,0.421,0.554,0.0628,0.117,0,0 -0.667,0.237,0.237,1,0.8,0,0,0.421,0.546,0.116,0.77,0,0 -0.667,0.235,0.235,0.167,0.35,0,0,0.421,0.546,0.13,0.64,0,0 -1,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -1,0.236,0.236,0.267,0,0,0,0.421,0.563,0.153,0,0,0.216 -1,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0,0.396 -0.667,0.151,0.151,1,0,0,0,0.421,0.588,0.124,0,0,0.108 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.31,0,0,0.108 -0.667,0.362,0.362,1,0,0,0,0.807,0.614,0.432,0,0,0 -0.667,0.462,0.462,0.317,0,0,0,0.807,0.597,0.532,0,0,0 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.33 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.129 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.107 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.506 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.0811 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.207 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.288 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.279 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.072 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.219 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.144 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.036 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.113 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.354 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.372 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.377 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.22 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.346 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.349 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.222,0.222,1,0,0,0,0.807,0.512,0.0409,0,0,0.238 -0.667,0.163,0.163,1,0,0,0,0.421,0.549,0.0433,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0.317,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0.3,0 -0.333,0.143,0.143,0,0,1,0.217,0.421,0.554,0.108,0,0.315,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0.541,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.433,0.369 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0.857,0.435 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.251 -0.333,0.151,0.151,0.0167,0,0,0,0.421,0.588,0.167,0,0,0.288 -1,0.408,0.408,0.45,0,0,0,0.912,0.653,0.546,0,0,0.269 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.232 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.15 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.489 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.176,0,0,0.934 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.177 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0.244 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0201,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0222,0,0,0.036 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0295,0,0,0 -1,0.277,0.277,0.267,0,0,0,0.421,0.537,0.0684,0,0,0 -1,0.274,0.274,1,0,0,0,0.421,0.546,0.109,0,0,0.335 -1,0.263,0.263,0.9,0,0,0,0.421,0.546,0.142,0,0,0.519 -1,0.359,0.359,0,0.55,0,0,0.421,0.538,0.244,0.686,0,0.536 -0.667,0.245,0.245,0,0.6,0,0,0.421,0.546,0.184,0,0,0.435 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.264,0.13,0,0.036 -0.333,0.143,0.143,0.267,0.8,0,0,0.421,0.562,0.154,0.764,0,0.288 -0.667,0.239,0.239,1,0.35,0,0,0.421,0.588,0.305,0,0,0.072 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.464,0,0,0.036 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.546,0,0,0.072 -1,0.362,0.362,1,0,0,0,0.807,0.614,0.485,0,0,0.36 -1,0.462,0.462,0.317,0,0,0,0.807,0.597,0.569,0,0,0 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.163,0.163,0,0,0.0667,0.117,0.421,0.549,0.0396,0,0.487,0.27 -1,0.274,0.274,0,0,0.933,0.333,0.421,0.546,0.0764,0,0.615,0.171 -1,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.305,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.072 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.18 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.252 -1,0.334,0.334,0.717,0,0,0,0.421,0.602,0.276,0,0,0.072 -0.667,0.252,0.252,0.517,0,0,0,0.421,0.614,0.232,0,0,0.036 -0.667,0.289,0.289,0.2,0,0,0,0.749,0.623,0.31,0,0,0.036 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.036 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.218 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.036 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0637 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.237 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.248 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.121 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0.381 -1,0.37,0.37,0,0,0,0,0.421,0.538,0.126,0,0,0.072 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.072 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.072 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.036 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.072 -0.333,0.143,0.143,0.0167,0,0,0,0.421,0.562,0.0846,0,0,0.108 -0.333,0.144,0.144,0.7,0,0,0,0.421,0.575,0.103,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.18 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.072 -0.667,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.144 -0.667,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.252 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.105 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.151 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.488 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.257 -1,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.128 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.205 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.142,0.142,1,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,1,0,0,0,0.421,0.546,0.137,0,0,0.036 -0.667,0.236,0.236,1,0,0,0,0.421,0.563,0.153,0,0.131,0 -0.667,0.239,0.239,0.817,0,1,0.617,0.421,0.588,0.19,0,0,0 -0.667,0.252,0.252,0,0,0,0.283,0.421,0.614,0.232,0,0,0.18 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.324 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.108 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.284 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.108 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,1,0,0,0,0.614,0.528,0.0186,0,0,0.341 -1,0.104,0.104,1,0,0,0,0.807,0.495,0.0314,0,0,0.29 -0.667,0.136,0.136,1,0,0,0,0.614,0.537,0.0316,0,0,0.136 -0.667,0.163,0.163,1,0,0,0,0.421,0.549,0.0396,0,0,0.19 -0.667,0.162,0.162,0.317,0,0,0,0.421,0.554,0.0461,0,0,0.106 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.252 -0.333,0.153,0.153,0.0167,0.55,0,0,0.421,0.554,0.0577,0.703,0,0.072 -0.333,0.147,0.147,1,0.833,0,0,0.421,0.554,0.0628,0,0,0.279 -0.667,0.237,0.237,0.667,0,0,0,0.421,0.546,0.116,0,0,0.209 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.204 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0.036 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.239 -1,0.353,0.353,0.267,0,0,0,0.421,0.64,0.339,0,0,0.124 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.457,0,0,0.216 -1,0.518,0.518,0.167,0,0,0,1,0.64,0.64,0,0,0.325 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.273 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.072 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.115 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.313 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.333,0.153,0.153,0.767,0.55,0,0,0.421,0.554,0.0577,0.908,0,0.036 -0.667,0.147,0.147,0.917,0.6,0,0,0.421,0.554,0.0628,0.115,0,0.108 -0.667,0.143,0.143,0,0,0.0667,0.117,0.421,0.554,0.0657,0,0.44,0.072 -1,0.235,0.235,0,0,0.933,1,0.421,0.546,0.13,0,0.335,0.144 -1,0.327,0.327,0,0,0,1,0.421,0.538,0.198,0,0.381,0.18 -1,0.329,0.329,0,0,0,1,0.421,0.563,0.222,0,0.3,0.072 -1,0.334,0.334,0.767,0,0,0.733,0.421,0.602,0.276,0,0.568,0 -1,0.353,0.353,1,0,0,0,0.421,0.64,0.339,0,0.571,0.072 -1,0.408,0.408,1,0.55,0,0,0.912,0.653,0.457,0.891,0.352,0.252 -1,0.518,0.518,1,0.65,0,0,1,0.64,0.64,0.453,0.477,0.144 -1,0.462,0.462,0.817,1,0,0,0.807,0.597,0.532,0.555,0.513,0.072 -1,0.542,0.542,0,0.1,0,0,0.807,0.563,0.504,0.845,0.15,0.121 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.126 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0.114,0.072 -1,0.0743,0.0743,0,0,1,0.217,0.614,0.528,0.044,0,0.163,0.128 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.028,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,1,0,0,0,0.614,0.537,0.0295,0,0,0.264 -1,0.163,0.163,0.167,0,0,0,0.421,0.549,0.0433,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.156,0.156,1,0,0,0,0.421,0.554,0.0803,0,0,0.036 -0.333,0.153,0.153,1,0,0,0,0.421,0.554,0.0933,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.101,0,0,0 -0.333,0.143,0.143,1,0,0,0,0.421,0.554,0.108,0,0,0 -0.333,0.142,0.142,0.317,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.036 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.29,0,0,0.253 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0,0.182 -1,0.353,0.353,0.0167,0,0,0,0.421,0.64,0.464,0,0,0.072 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.546,0,0,0.18 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0 -1,0.462,0.462,0.15,0,0,0,0.807,0.597,0.569,0,0,0.072 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.517 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.653 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.11 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0295,0,0,0.144 -1,0.277,0.277,0.267,0,0,0,0.421,0.537,0.0684,0,0,0.13 -0.667,0.274,0.274,1,0,0,0,0.421,0.546,0.109,0,0,0.229 -0.667,0.263,0.263,0.417,0,0,0,0.421,0.546,0.142,0,0.125,0.111 -0.667,0.256,0.256,0,0,1,0.617,0.421,0.546,0.169,0,0.543,0.21 -0.667,0.245,0.245,0.467,0,0,0.283,0.421,0.546,0.184,0,0.105,0.18 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.072 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.237 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.162,0,0,0.166 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.464,0,0,0.072 -1,0.408,0.408,0.467,0.55,0,0,0.912,0.653,0.546,0.785,0,0.36 -1,0.518,0.518,0,0.6,0,0,1,0.64,0.718,0.898,0,0.072 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0.284,0,0.216 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.072 -1,0.397,0.397,0,0.05,0,0,0.807,0.529,0.334,0.32,0,0.284 -1,0.183,0.183,0,1,0,0,0.807,0.503,0.155,0.132,0,0.232 -1,0.0743,0.0743,0,0.1,0,0,0.614,0.528,0.0374,0,0,0.145 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.164 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.036 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.036 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.108 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.144 -0.667,0.235,0.235,0,0.3,0,0,0.421,0.546,0.13,0.594,0,0 -0.667,0.235,0.235,0,1,0,0,0.421,0.546,0.137,0.134,0,0.036 -0.667,0.236,0.236,0,0.0833,0,0,0.421,0.563,0.153,0,0,0.216 -0.667,0.239,0.239,0.0167,0,0,0,0.421,0.588,0.19,0,0,0.036 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.232,0,0,0.072 -1,0.408,0.408,0.417,0,0,0,0.912,0.653,0.457,0,0,0.072 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.072 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.257 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.111 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.152 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.222,0.222,0.517,0,0,0,0.807,0.512,0.0474,0,0,0.128 -1,0.39,0.39,1,0,0,0,0.421,0.525,0.087,0,0,0.155 -0.667,0.274,0.274,0.167,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.108 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.336,0 -0.667,0.245,0.245,0,0,1,0.217,0.421,0.546,0.11,0,0.588,0.036 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0.187,0.288 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0.443,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0.629,0.324 -0.667,0.236,0.236,0.517,0,0,0,0.421,0.563,0.153,0,0.475,0.211 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0.336,0.036 -1,0.353,0.353,1,0.3,0,0,0.421,0.64,0.339,0.571,0.599,0.144 -1,0.408,0.408,1,0.85,0,0,0.912,0.653,0.457,0.693,0.612,0.288 -1,0.518,0.518,1,0,0,0,1,0.64,0.64,0,0.511,0.18 -1,0.668,0.668,0.0667,0,0,0,1,0.615,0.79,0,0.553,0.036 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0.34,0.468 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0.00844,0.159 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.136,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0.45,0,0,0,0.614,0.537,0.0316,0,0,0 -1,0.163,0.163,0.267,0,0,0,0.421,0.549,0.0396,0,0,0 -1,0.274,0.274,1,0,0,0,0.421,0.546,0.0764,0,0,0 -1,0.37,0.37,0.9,0,0,0,0.421,0.538,0.126,0,0,0.036 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0.717,0,0,0,0.421,0.546,0.116,0,0.0886,0.108 -1,0.328,0.328,0,0,1,0.367,0.421,0.538,0.187,0,0.677,0.144 -1,0.327,0.327,0,0,0,0.533,0.421,0.538,0.198,0,0.402,0 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0.478,0.072 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.394,0.072 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0.633,0.144 -1,0.408,0.408,0,0,0,0,0.912,0.653,0.457,0,0.456,0.036 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0.549,0.036 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0.429,0 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0.482,0.144 -0.667,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0.534,0.036 -0.667,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0.629,0 -0.667,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0.655,0 -0.667,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0.788,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0171,0,0.584,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.528,0.0157,0,0.166,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.491 -1,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0.229 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.036 -0.667,0.274,0.274,0,0.55,0,0,0.421,0.546,0.0764,0.797,0,0.036 -0.667,0.263,0.263,0,0.833,0,0,0.421,0.546,0.0894,0,0,0.108 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.288 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.036 -0.333,0.143,0.143,0.267,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0.2,0,0,0,0.421,0.575,0.103,0,0,0.036 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.036 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.072 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.036 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.47 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.206 -1,0.0768,0.0768,0.767,0,0,0,0.614,0.528,0.0236,0,0,0.149 -1,0.136,0.136,1,0,0,0,0.614,0.537,0.0316,0,0,0.222 -1,0.163,0.163,0.4,0,0,0,0.421,0.549,0.0396,0,0,0.546 -1,0.387,0.387,0,0,0,0,0.421,0.538,0.107,0,0,0.0844 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.383 -1,0.256,0.256,0.767,0,0,0,0.421,0.546,0.0996,0,0,0.113 -1,0.343,0.343,0.667,0,0,0,0.421,0.538,0.157,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.072 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.144 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0,0.036 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.144 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.144 -1,0.518,0.518,0,0,0,0,1,0.64,0.64,0,0,0.072 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.108 -1,0.296,0.296,0,0,0,0,0.614,0.562,0.26,0,0.17,0 -1,0.223,0.223,0,0,1,0.617,0.614,0.545,0.161,0,0.48,0.072 -1,0.116,0.116,0,0,0,0.283,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.162,0.162,0.767,0,0,0,0.421,0.554,0.0636,0,0,0 -0.333,0.156,0.156,1,0,0,0,0.421,0.554,0.0803,0,0,0 -0.333,0.153,0.153,1,0,0,0,0.421,0.554,0.0933,0,0,0 -0.333,0.147,0.147,1,0,0,0,0.421,0.554,0.101,0,0,0.036 -0.333,0.143,0.143,0.817,0,0,0,0.421,0.554,0.108,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0.216 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.448,0,0,0.29 -1,0.353,0.353,0.267,0,0,0,0.421,0.64,0.464,0,0,0.108 -1,0.408,0.408,1,0,0,0,0.912,0.653,0.546,0,0,0.072 -1,0.518,0.518,0.9,0,0,0,1,0.64,0.718,0,0,0.108 -1,0.668,0.668,0,0,0,0,1,0.615,0.844,0,0,0.108 -1,0.788,0.788,0,0,0,0,1,0.563,0.779,0,0,0.144 -1,0.571,0.571,0,0.55,0,0,1,0.512,0.492,0.494,0,0.144 -1,0.183,0.183,0,0.6,0,0,0.807,0.503,0.155,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0768,0.0768,1,0,0,0,0.614,0.528,0.0222,0,0,0 -1,0.136,0.136,0.65,0,0,0,0.614,0.537,0.0295,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0684,0,0,0 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0803,0,0,0.036 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.667,0.245,0.245,0.267,0,0,0,0.421,0.546,0.184,0,0,0.036 -0.333,0.143,0.143,1,0,0,0,0.421,0.554,0.108,0,0,0.27 -0.667,0.142,0.142,0.9,0,0,0,0.421,0.554,0.125,0,0,0.372 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0.108,0.104 -0.667,0.236,0.236,0.267,0,1,0.617,0.421,0.563,0.29,0,0,0.072 -0.333,0.144,0.144,0.45,0,0,0.733,0.421,0.575,0.162,0,0,0.226 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.315,0,0,0.274 -0.667,0.289,0.289,0.767,0,0,0,0.749,0.623,0.37,0,0,0.072 -1,0.518,0.518,1,0,0,0,1,0.64,0.718,0,0,0.623 -1,0.668,0.668,0.4,0,0,0,1,0.615,0.844,0,0,0.216 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.525,0,0,0.144 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.373 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0.0595 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.201 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.301 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0,0.321 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.036 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.216 -0.333,0.142,0.142,0,0,0.0667,0.117,0.421,0.554,0.0766,0,0.474,0.396 -0.333,0.143,0.143,0,0,0.933,0.783,0.421,0.562,0.0846,0,0.504,0.359 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0.564,0.148 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0.425,0.266 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0.38,0.144 -1,0.518,0.518,0,0.3,0,0,1,0.64,0.64,0.596,0,0.036 -1,0.668,0.668,0,0.85,0,0,1,0.615,0.79,0.169,0,0.036 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.277,0.277,1,0,0,0,0.421,0.537,0.0633,0,0,0.139 -1,0.387,0.387,0.4,0,0,0,0.421,0.538,0.107,0,0,0.33 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.072 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.195 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.34 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0,0.216 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.198 -1,0.329,0.329,0,0,0,0,0.421,0.563,0.222,0,0,0.036 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.108 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.036 -0.333,0.169,0.169,0,0,0,0,0.585,0.592,0.163,0,0,0.381 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.406 -0.667,0.462,0.462,0,0,0,0,0.807,0.597,0.532,0,0,0.036 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0.13,0,0.271 -0.667,0.397,0.397,0,0.8,0,0,0.807,0.529,0.307,0.81,0,0.234 -0.667,0.116,0.116,0,0.583,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.227 -1,0.308,0.308,0,0,0,0,1,0.487,0.0631,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.421,0.546,0.0764,0,0,0.036 -0.667,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.177 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.318 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.0628,0,0,0 -0.667,0.237,0.237,0,0.3,0,0,0.421,0.546,0.116,0.68,0,0.036 -0.667,0.235,0.235,0,0.85,0.0667,0.117,0.421,0.546,0.13,0,0.429,0.18 -0.667,0.235,0.235,0,0,0.933,0.783,0.421,0.546,0.137,0,0.142,0.036 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.324 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0.036 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.36 -0.667,0.289,0.289,0.45,0,0,0,0.749,0.623,0.31,0.144,0,0 -0.667,0.362,0.362,0,0.8,0,0,0.807,0.614,0.432,0.341,0,0.31 -1,0.668,0.668,0,0.35,0,0,1,0.615,0.79,0,0,0.504 -1,0.542,0.542,0,0.3,0,0,0.807,0.563,0.504,0.724,0,0 -1,0.0495,0.0495,0,0.85,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.807,0.495,0.0154,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0768,0.0768,0,0,0,0,0.614,0.528,0.0236,0,0,0.153 -1,0.222,0.222,0,0,0.0667,0.117,0.807,0.512,0.0474,0,0.549,0.182 -0.667,0.163,0.163,0,0,0.933,1,0.421,0.549,0.0396,0,0.643,0.504 -0.667,0.162,0.162,0,0,0,0.917,0.421,0.554,0.0461,0,0.433,0.167 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.523,0.41 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.35,0.531 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0.136,0.172 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.0657,0,0,0 -0.667,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0,0.036 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.036 -0.333,0.151,0.151,0,0.55,0,0,0.421,0.588,0.124,0.812,0,0.072 -0.667,0.289,0.289,0,0.6,0,0,0.749,0.623,0.31,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.614,0.588,0.224,0,0,0.108 -0.333,0.256,0.256,0,0,0,0,0.614,0.579,0.274,0,0,0.108 -0.667,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.072 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.528,0.0236,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.159,0 -1,0.163,0.163,0.717,0,1,0.617,0.421,0.549,0.0396,0,0.498,0 -0.667,0.274,0.274,0,0,0,0.05,0.421,0.546,0.0764,0,0.817,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0.463,0 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0.316,0.036 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0.136 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.21 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.073,0,0,0.072 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.072 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.0846,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.575,0.103,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.588,0.124,0,0,0.108 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.072 -1,0.518,0.518,0,0.05,0,0,1,0.64,0.64,0.462,0,0.18 -1,0.668,0.668,0,1,0,0,1,0.615,0.79,0.302,0,0.072 -1,0.788,0.788,0,0.1,0,0,1,0.563,0.749,0,0,0.108 -1,0.223,0.223,0,0,0,0,0.614,0.545,0.161,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.175 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0.468 -1,0.277,0.277,1,0,0,0,0.421,0.537,0.0684,0,0,0.0972 -1,0.274,0.274,1,0,0,0,0.421,0.546,0.109,0,0,0.0982 -0.667,0.263,0.263,1,0,0,0,0.421,0.546,0.142,0,0,0 -0.667,0.256,0.256,1,0,0,0,0.421,0.546,0.169,0,0,0.144 -0,0.0495,0.0495,0.317,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.142,0.142,0.267,0,0,0,0.421,0.554,0.141,0,0,0.144 -0.667,0.236,0.236,0.2,0,0,0,0.421,0.563,0.29,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.305,0,0.385,0 -0.667,0.252,0.252,0,0,1,0.867,0.421,0.614,0.315,0,0.671,0.216 -1,0.408,0.408,0,0,0,0.0333,0.912,0.653,0.546,0,0.239,0.108 -1,0.518,0.518,0,0,0,0,1,0.64,0.718,0,0,0.18 -1,0.668,0.668,0,0.55,0,0,1,0.615,0.844,0.933,0,0.227 -1,0.788,0.788,0,0.6,0,0,1,0.563,0.779,0,0,0.075 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0868,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.044,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.549,0.0433,0,0,0 -1,0.162,0.162,0,0,0,0,0.421,0.554,0.0636,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0933,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.554,0.101,0,0,0.036 -0.333,0.143,0.143,0,0,0,0,0.421,0.554,0.108,0,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.125,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.141,0,0,0.288 -0.333,0.143,0.143,0,0,0,0,0.421,0.562,0.154,0,0,0.144 -0.333,0.144,0.144,0.267,0,0,0,0.421,0.575,0.162,0,0,0 -0.667,0.252,0.252,1,0,0,0,0.421,0.614,0.315,0,0,0.18 -0.667,0.289,0.289,1,0,0,0,0.749,0.623,0.37,0,0,0.072 -0.667,0.362,0.362,1,0,0,0,0.807,0.614,0.485,0,0,0.144 -1,0.668,0.668,1,0,0,0,1,0.615,0.844,0,0,0.108 -1,0.788,0.788,0.317,0,0,0,1,0.563,0.779,0,0,0.216 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.334,0,0,0.18 -1,0.183,0.183,0,0,0,0,0.807,0.503,0.155,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.14 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.807,0.512,0.0474,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.036 -0.667,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.574 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.036 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.252 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.187,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.137,0,0,0.036 -1,0.329,0.329,0.267,0,0,0,0.421,0.563,0.222,0,0,0 -0.667,0.239,0.239,0.45,0,0,0,0.421,0.588,0.19,0,0,0 -1,0.353,0.353,0,0,0,0,0.421,0.64,0.339,0,0,0 -0.667,0.289,0.289,0,0.3,0,0,0.749,0.623,0.31,0.642,0,0.18 -1,0.518,0.518,0,1,0,0,1,0.64,0.64,0.142,0,0.216 -1,0.668,0.668,0,0.0833,0,0,1,0.615,0.79,0,0,0.072 -1,0.788,0.788,0,0,0,0,1,0.563,0.749,0,0,0.359 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.528,0.0186,0,0,0 -1,0.0768,0.0768,0.267,0,0,0,0.614,0.528,0.0236,0,0,0.176 -1,0.222,0.222,1,0,0,0,0.807,0.512,0.0474,0,0,0.175 -0.667,0.277,0.277,0.9,0,0,0,0.421,0.537,0.0633,0,0,0.072 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0.144 -0.333,0.156,0.156,0,0,0,0,0.421,0.554,0.0526,0,0,0.126 -0.667,0.256,0.256,0,0,0,0,0.421,0.546,0.0996,0,0,0.0933 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0 -0.333,0.142,0.142,0.767,0,0,0,0.421,0.554,0.073,0,0.591,0 -0.667,0.235,0.235,0.917,0,1,0.667,0.421,0.546,0.137,0,0.478,0.036 -0.667,0.236,0.236,0,0,0,0,0.421,0.563,0.153,0,0.325,0.072 -1,0.334,0.334,0,0,0,0,0.421,0.602,0.276,0,0.689,0.18 -1,0.353,0.353,0.517,0,0,0,0.421,0.64,0.339,0,0.345,0 -1,0.408,0.408,1,0.05,0,0,0.912,0.653,0.457,0.366,0,0.036 -1,0.518,0.518,0.65,1,0,0,1,0.64,0.64,0.757,0,0.072 -1,0.668,0.668,0,0.65,0,0,1,0.615,0.79,0.703,0,0.18 -1,0.788,0.788,0,0.6,0,0,1,0.563,0.749,0.667,0,0.108 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0.072 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.212 -1,0.136,0.136,0.267,0,0,0,0.614,0.537,0.0316,0,0,0.0484 -1,0.163,0.163,1,0.3,0.0667,0.117,0.421,0.549,0.0396,0.776,0.295,0 -1,0.162,0.162,0.9,1,0.933,1,0.421,0.554,0.0461,0.218,0.484,0 -1,0.156,0.156,0.467,0.133,0,0.467,0.421,0.554,0.0526,0.421,0,0 -1,0.256,0.256,0,0.867,0,0,0.421,0.546,0.0996,0.657,0,0 -1,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0.575,0,0.072 -1,0.331,0.331,0,0,0,0,0.421,0.538,0.165,0.753,0,0.072 -1,0.328,0.328,0,0,0,0,0.421,0.538,0.187,0.287,0,0.036 -0.333,0.142,0.142,0,0,0,0,0.421,0.554,0.0766,0,0,0.144 -0.333,0.143,0.143,0,0,0.0667,0.117,0.421,0.562,0.0846,0,0.557,0.0982 -1,0.334,0.334,0.0167,0,0.933,1,0.421,0.602,0.276,0,0.532,0.212 -1,0.353,0.353,1,0,0,1,0.421,0.64,0.339,0,0.584,0.288 -1,0.408,0.408,1,0,0,0.133,0.912,0.653,0.457,0,0.366,0.216 -1,0.518,0.518,1,0,0,0,1,0.64,0.64,0,0.267,0 -1,0.668,0.668,1,0,0,0,1,0.615,0.79,0,0.511,0.238 -1,0.788,0.788,0.567,0,0,0,1,0.563,0.749,0,0.101,0.379 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,1,0.05,0,0,0.807,0.495,0.0212,0.42,0,0 -0.333,0.0768,0.0768,0.167,1,0,0,0.614,0.528,0.0236,0.134,0,0 -0.333,0.136,0.136,0,0.1,0,0,0.614,0.537,0.0316,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.549,0.0396,0,0,0.036 -0.333,0.162,0.162,0,0,0,0,0.421,0.554,0.0461,0,0,0 -0.667,0.263,0.263,0,0,0,0,0.421,0.546,0.0894,0,0,0.0713 -0.333,0.153,0.153,0,0,0,0,0.421,0.554,0.0577,0,0,0.115 -0.667,0.245,0.245,0,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.324 -0.667,0.235,0.235,0,0,0,0,0.421,0.546,0.13,0,0.129,0.144 -0.333,0.142,0.142,0,0,1,0.367,0.421,0.554,0.0766,0,0.242,0 -0.667,0.236,0.236,0,0,0,0.3,0.421,0.563,0.153,0,0.0689,0.108 -0.667,0.239,0.239,0,0,0,0,0.421,0.588,0.19,0,0,0.036 -0.667,0.252,0.252,0,0,0,0,0.421,0.614,0.232,0,0,0.207 -0.667,0.289,0.289,0,0.05,0,0,0.749,0.623,0.31,0.448,0,0.072 -1,0.518,0.518,0.717,1,0,0,1,0.64,0.64,0.375,0,0.108 -1,0.668,0.668,0,0.1,0,0,1,0.615,0.79,0,0,0.036 -1,0.542,0.542,0,0.55,0,0,0.807,0.563,0.504,0.883,0,0.036 -1,0.223,0.223,0,0.6,0,0,0.614,0.545,0.161,0,0,0.216 -1,0.116,0.116,0,0,0,0,0.614,0.532,0.0759,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.528,0.0374,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.537,0.0316,0,0,0.0768 -1,0.277,0.277,0,0,0,0,0.421,0.537,0.0633,0,0.134,0.194 -1,0.387,0.387,0,0.55,1,0.367,0.421,0.538,0.107,0.91,0.511,0.162 -1,0.37,0.37,0,0.6,0,0.533,0.421,0.538,0.126,0,0.563,0.0847 -1,0.359,0.359,0,0,0,0,0.421,0.538,0.141,0,0.754,0.28 -1,0.343,0.343,0,0,0,0,0.421,0.538,0.157,0,0,0.107 -0.667,0.237,0.237,0,0,0,0,0.421,0.546,0.116,0,0,0.198 -0,0.0495,0.0495,0,0,0.0667,0.117,0.421,0.562,0.0159,0,0.481,0.216 -0.667,0.235,0.235,0,0,0.933,1,0.421,0.546,0.137,0,0.544,0.036 -0.333,0.143,0.143,0.267,0,0,0.917,0.421,0.562,0.0846,0,0.567,0.252 -0.667,0.239,0.239,1,0,0,0,0.421,0.588,0.19,0,0.636,0.072 -0.667,0.252,0.252,0.9,0,0,0,0.421,0.614,0.232,0,0,0.216 -0.667,0.289,0.289,0,0,0,0,0.749,0.623,0.31,0,0,0.433 -0.667,0.362,0.362,0,0,0,0,0.807,0.614,0.432,0,0,0.779 -1,0.668,0.668,0,0,0,0,1,0.615,0.79,0,0,0.116 -1,0.542,0.542,0,0,0,0,0.807,0.563,0.504,0,0,0.176 -1,0.397,0.397,0,0,0,0,0.807,0.529,0.307,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.369 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.276 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.182 -0.333,0.0495,0.0495,0.933,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.147,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0.072 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.191,0.328,0,0.036 -0.667,0.251,0.251,0.65,0.967,0,0,0.421,0.548,0.204,0.709,0,0 -0.333,0.149,0.149,0,0.2,0,0,0.421,0.555,0.129,0.598,0,0.144 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0.207,0 -1,0.656,0.656,0,0,1,0.45,1,0.645,0.743,0,0.534,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0.461,0.146 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0.468,0.203 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0.214,0.471 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -1,0.164,0.164,0.683,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.421,0.548,0.174,0,0,0 -0.667,0.259,0.259,0.483,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -1,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.036 -1,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.108 -1,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.036 -1,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.589,0.172,0,0,0.192 -1,0.351,0.351,0,0,0,0,0.749,0.626,0.383,0,0,0.036 -0.667,0.454,0.454,0.433,0,0,0,0.807,0.617,0.501,0,0,0.343 -0.667,0.554,0.554,1,0,0,0,0.807,0.6,0.588,0,0,0.144 -1,0.584,0.584,1,0,0,0,0.807,0.566,0.543,0,0,0.036 -1,0.391,0.391,1,0,0,0,0.807,0.531,0.345,0,0,0.288 -1,0.116,0.116,0.583,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0743,0.0743,0.317,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0847 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.237 -0.667,0.278,0.278,0.267,0,0,0,0.421,0.548,0.0923,0,0,0.337 -0.667,0.27,0.27,1,0,0,0,0.421,0.548,0.103,0,0,0.305 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.113,0,0,0.036 -0.333,0.15,0.15,1,0,0,0,0.421,0.555,0.0676,0,0,0.144 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0.072 -0.333,0.149,0.149,0.317,0,0,0,0.421,0.555,0.0789,0,0,0.144 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.072 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.236 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.072 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.072 -1,0.554,0.554,0,0,0.0667,0.117,0.807,0.6,0.55,0,0.627,0.216 -1,0.584,0.584,0,0,0.933,0.8,0.807,0.566,0.521,0,0.388,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.036 -1,0.116,0.116,0.25,0,0,0,0.614,0.533,0.0781,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.146 -1,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0.232 -1,0.139,0.139,0.667,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.148 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0.181,0.036 -0.667,0.16,0.16,0,0,1,0.617,0.421,0.555,0.0593,0,0.402,0.288 -0.667,0.154,0.154,0,0,0,0.767,0.421,0.555,0.0646,0,0.613,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0.402,0.036 -0.333,0.149,0.149,0.767,0,0,0,0.421,0.555,0.0751,0,0.506,0.072 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.142,0,0.435,0.036 -1,0.351,0.351,1,0,0,0,0.421,0.568,0.23,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0.036 -0.667,0.286,0.286,0.817,0,0,0,0.421,0.617,0.239,0,0,0.072 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.144 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.252 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.072 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.103 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.433 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0.0585 -1,0.284,0.284,0.917,0,0,0,0.421,0.54,0.0653,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.14 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.226 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.0167 -0.667,0.259,0.259,0.0167,0,0,0,0.421,0.548,0.113,0,0,0.072 -0.667,0.251,0.251,0.467,0,0,0,0.421,0.548,0.119,0,0,0.108 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.072 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.108 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.036 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.036 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.036 -1,0.501,0.501,0.767,0,0,0,0.912,0.658,0.473,0,0,0.144 -1,0.656,0.656,0.917,0,0,0,1,0.645,0.662,0,0.21,0.252 -1,0.806,0.806,0,0,1,0.367,1,0.619,0.817,0,0.273,0.036 -1,0.584,0.584,0,0,0,1,0.807,0.566,0.521,0,0,0.072 -1,0.22,0.22,0,0,0,1,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0.167,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0.218 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.0561 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.13 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.18 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.252 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.276 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.252 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.0871,0,0,0.108 -0,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.268 -0.333,0.168,0.168,1,0,0,0,0.421,0.589,0.128,0,0,0.41 -0.667,0.351,0.351,1,0.05,0,0,0.749,0.626,0.32,0.297,0,0.036 -0.667,0.454,0.454,1,1,0,0,0.807,0.617,0.446,0.427,0,0 -1,0.806,0.806,1,0.117,0,0,1,0.619,0.817,0,0,0.036 -1,0.851,0.851,0.0667,0,0,0,1,0.568,0.774,0,0,0 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.072 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0608,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0 -1,0.0503,0.0503,0.517,0,0,0,0.614,0.529,0.0188,0,0,0.21 -1,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0.192 -1,0.139,0.139,0.167,0,0,0,0.614,0.538,0.0323,0,0,0.599 -1,0.402,0.402,0,0,0,0,0.421,0.529,0.09,0,0,0.328 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.271 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.277 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.275 -0.667,0.259,0.259,0,0.3,0,0,0.421,0.548,0.113,0.623,0,0.374 -0.667,0.251,0.251,0,0.867,0,0,0.421,0.548,0.119,0.291,0,0.269 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.036 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.29 -0.667,0.259,0.259,0.767,0,0,0,0.421,0.591,0.196,0,0,0.124 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.0905 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0.036 -0.667,0.454,0.454,1,0,0,0,0.807,0.617,0.446,0,0,0.036 -1,0.806,0.806,0.817,0,0,0,1,0.619,0.817,0,0,0 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.108 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.072 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0451,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.103 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.395 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.141 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.196 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.361 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.194 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.24,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.232 -1,0.259,0.259,0.183,0,0,0,0.421,0.591,0.315,0,0,0.252 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.326,0,0,0.105 -1,0.501,0.501,0.983,0,0,0,0.912,0.658,0.565,0.328,0,0.383 -1,0.656,0.656,0,0.467,0,0,1,0.645,0.743,0.318,0,0 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.288 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.304 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -1,0.0781,0.0781,0.683,0,0,0,0.614,0.529,0.0226,0,0,0 -1,0.139,0.139,1,0,0,0,0.614,0.538,0.0301,0,0,0 -1,0.167,0.167,1,0,0,0,0.421,0.551,0.0444,0,0,0.34 -1,0.286,0.286,1,0,0,0,0.421,0.548,0.113,0,0,0.288 -0.333,0.164,0.164,0.9,0,0,0,0.421,0.555,0.0826,0,0,0.265 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.258 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.491 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.144 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0 -0.667,0.286,0.286,0.683,0,0,0,0.421,0.617,0.326,0,0,0 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.18 -1,0.656,0.656,0.683,0.217,0,0,1,0.645,0.743,0.534,0,0.216 -1,0.806,0.806,0.0333,0.95,0,0,1,0.619,0.873,0.741,0,0.072 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0.406,0,0.232 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.093 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.185 -1,0.167,0.167,0.517,0,0,0,0.421,0.551,0.0406,0,0,0.036 -0.667,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.16,0.16,1,0.3,0,0,0.421,0.555,0.0593,0.63,0.241,0.072 -0.667,0.259,0.259,1,0.867,1,0.217,0.421,0.548,0.113,0.14,0.248,0.252 -0.667,0.251,0.251,0.0667,0,0,0,0.421,0.548,0.119,0,0.421,0.144 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.278,0.036 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.592,0.108 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.18 -1,0.363,0.363,0.767,0,0,0,0.421,0.606,0.286,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0.211,0,0 -1,0.501,0.501,0.4,0.8,0,0,0.912,0.658,0.473,0.678,0,0.072 -1,0.656,0.656,0,0.367,0,0,1,0.645,0.662,0,0,0.036 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.036 -1,0.584,0.584,0,0.05,0,0,0.807,0.566,0.521,0.345,0,0.036 -1,0.22,0.22,0,1,0,0,0.614,0.546,0.167,0.318,0,0.108 -1,0.0495,0.0495,0,0.35,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0503,0.0503,0.2,0,0,0,0.614,0.529,0.0188,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.203 -0.333,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.104 -0.667,0.164,0.164,1,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.27,0.27,1,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.548,0.113,0,0,0.216 -0.667,0.251,0.251,1,0,0,0,0.421,0.548,0.119,0,0,0.072 -0.667,0.249,0.249,0.567,0,0,0,0.421,0.548,0.134,0,0,0.18 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.144 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.0167,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0.7,0,0,0,0.421,0.617,0.239,0,0,0.072 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.18 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.432 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.108 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.193 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.225 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.216 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.483,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.167,0.167,0.933,0,0,0,0.421,0.551,0.0406,0.103,0.173,0 -1,0.168,0.168,0,0.8,1,0.367,0.421,0.555,0.0473,0.496,0.522,0 -1,0.278,0.278,0,0.367,0,0.55,0.421,0.548,0.0923,0,0.53,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0.474,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0.373,0.144 -0.667,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.036 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.28,0.108 -0.667,0.251,0.251,0,0,1,0.617,0.421,0.566,0.158,0,0,0.108 -0.667,0.259,0.259,0.517,0,0,0.0667,0.421,0.591,0.196,0,0,0.252 -0.667,0.286,0.286,0.2,0,0,0,0.421,0.617,0.239,0,0,0.072 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.18 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.144 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.216 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.18 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0887 -1,0.0503,0.0503,0.0167,0,0,0,0.614,0.529,0.0188,0,0,0.219 -1,0.0781,0.0781,0.467,0,0,0,0.614,0.529,0.0241,0,0,0.0488 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.262 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.454 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0.383,0.17 -1,0.392,0.392,0,0,1,0.45,0.421,0.542,0.131,0,0.406,0.673 -1,0.381,0.381,0,0,0,0,0.421,0.542,0.146,0,0.629,0.171 -1,0.364,0.364,0,0,0,0,0.421,0.542,0.162,0,0.581,0.174 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.171,0,0.316,0.036 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0.422,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0.231,0.036 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.072 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0.767,0,0,0,0.421,0.617,0.239,0,0,0.108 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.473,0,0,0.036 -0.333,0.252,0.252,1,0,0,0,0.614,0.589,0.231,0,0,0.216 -0.333,0.302,0.302,1,0,0,0,0.614,0.581,0.283,0,0,0 -0.333,0.317,0.317,0.817,0,0,0,0.614,0.564,0.269,0,0,0.175 -0.667,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.398 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.152 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.717,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.036 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.036 -0.667,0.251,0.251,0.0167,0,0,0,0.421,0.548,0.119,0,0,0.18 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.134,0,0,0.18 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.142,0,0,0.072 -0.667,0.251,0.251,0.15,0,0,0,0.421,0.566,0.158,0,0,0.216 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.432 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.108 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.55,0,0,0.036 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0.278 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0.223 -1,0.099,0.099,0,0,0,0,0.807,0.497,0.0721,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0211,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.164,0.164,0.483,0,0,0,0.421,0.555,0.0826,0,0,0 -0.667,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.216 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.072 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.379 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.315,0,0,0.216 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.326,0,0,0 -0.667,0.351,0.351,0,0,0,0.0333,0.749,0.626,0.383,0,0.71,0 -1,0.656,0.656,0,0,1,0.883,1,0.645,0.743,0,0.539,0.108 -1,0.806,0.806,0.433,0,0,0,1,0.619,0.873,0,0.786,0 -1,0.851,0.851,0.05,0,0,0,1,0.568,0.806,0,0.7,0.036 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0.276,0.124 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0.518,0.175 -1,0.124,0.124,0,0,0,0,1,0.464,0.099,0,0.127,0.252 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0286,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.168,0.168,0.5,0,0,0,0.421,0.555,0.0654,0,0,0.161 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0.169 -0.333,0.16,0.16,0.433,0,0,0,0.421,0.555,0.0961,0,0,0.119 -0.333,0.154,0.154,0.283,0,0,0,0.421,0.555,0.104,0,0,0.257 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.571 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.298 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.273,0,0,0.108 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.3,0,0,0.036 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.464,0,0,0.108 -1,0.404,0.404,0.433,0,0,0,0.421,0.645,0.479,0,0,0.252 -0.667,0.351,0.351,1,0,0,0,0.749,0.626,0.383,0,0,0.18 -1,0.656,0.656,0.0167,0,0,0,1,0.645,0.743,0,0,0.072 -0.667,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.072 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.182,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0.0534,0.21 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0.294 -1,0.167,0.167,0.433,0,0,0,0.421,0.551,0.0406,0,0,0.176 -1,0.404,0.404,0,0,0,0,0.421,0.542,0.11,0,0,0 -0.667,0.278,0.278,0,0.55,0.0667,0.117,0.421,0.548,0.0923,0.753,0.716,0 -1,0.381,0.381,0,0.617,0.933,1,0.421,0.542,0.146,0.09,0.385,0.144 -1,0.364,0.364,0,0,0,0.0333,0.421,0.542,0.162,0,0.388,0.072 -1,0.352,0.352,0,0,0,0,0.421,0.542,0.171,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0.216 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.108 -0.667,0.251,0.251,0.0167,0,0,0,0.421,0.566,0.158,0,0,0.108 -1,0.363,0.363,0.467,0,0,0,0.421,0.606,0.286,0,0,0.036 -1,0.404,0.404,0,0,0,0,0.421,0.645,0.351,0,0,0.036 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.036 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.036 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.036 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.144 -1,0.22,0.22,0.517,0,0,0,0.614,0.546,0.167,0,0,0.072 -1,0.116,0.116,0.2,0,0,0,0.614,0.533,0.0781,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.124 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.118 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.0887 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.151 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.127 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.203 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0.222,0.18 -0.333,0.164,0.164,0,0,1,0.867,0.421,0.555,0.0541,0,0.639,0.108 -0.667,0.27,0.27,0,0,0,0.733,0.421,0.548,0.103,0,0.39,0.324 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0.243,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0.477,0.036 -0.333,0.149,0.149,0,0,1,0.683,0.421,0.555,0.0789,0,0,0.072 -0.333,0.15,0.15,0,0,0.0667,0.117,0.421,0.564,0.0871,0,0.509,0.108 -0.667,0.259,0.259,0.267,0,0.933,0.8,0.421,0.591,0.196,0.192,0.802,0.072 -1,0.404,0.404,1,0.8,0,0,0.421,0.645,0.351,0.688,0.0886,0 -1,0.501,0.501,1,0.367,0,0,0.912,0.658,0.473,0,0,0.036 -1,0.656,0.656,1,0,0,0,1,0.645,0.662,0,0,0.271 -1,0.806,0.806,1,0,0,0,1,0.619,0.817,0,0,0.194 -1,0.851,0.851,0.317,0,0,0,1,0.568,0.774,0,0,0.108 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.072 -1,0.183,0.183,0,0,0,0,0.807,0.505,0.14,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0.0655 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0.531 -1,0.139,0.139,0.933,0,0,0,0.614,0.538,0.0323,0.134,0,0.234 -1,0.167,0.167,0,0.8,0,0,0.421,0.551,0.0406,0.575,0,0.177 -0.667,0.286,0.286,0,0.6,0,0,0.421,0.548,0.0788,0,0,0.0878 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.072 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.036 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.072 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.18 -0.667,0.302,0.302,0,0,0,0,0.614,0.581,0.283,0,0,0.22 -1,0.317,0.317,0,0,0,0,0.614,0.564,0.269,0,0,0.18 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.139,0.139,0.517,0,0,0,0.614,0.538,0.0323,0,0,0.0536 -1,0.402,0.402,0.2,0,0,0,0.421,0.529,0.09,0,0,0.233 -0.667,0.286,0.286,0,0.05,0,0,0.421,0.548,0.0788,0.456,0,0 -0.333,0.164,0.164,0,1,0,0,0.421,0.555,0.0541,0.67,0,0 -0.333,0.16,0.16,0,0.117,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0.483,0,0,0,0.421,0.555,0.0646,0,0,0.216 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0,0.178 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.18 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.0789,0,0,0.072 -0.667,0.251,0.251,0.517,0,0,0,0.421,0.566,0.158,0,0,0.187 -0.667,0.259,0.259,0.2,0,0,0,0.421,0.591,0.196,0,0,0.072 -0.667,0.286,0.286,0,0,0,0,0.421,0.617,0.239,0,0,0.072 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0.216 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.432 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.072 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.468 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.25 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0 -0.667,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.167,0.167,1,0,0,0,0.421,0.551,0.0406,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.421,0.555,0.0473,0,0,0.277 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0.466 -0.667,0.27,0.27,1,0,0,0,0.421,0.548,0.103,0,0,0.229 -0.667,0.259,0.259,0.0667,0,0,0,0.421,0.548,0.113,0,0,0.186 -0.667,0.251,0.251,0.0167,0,0,0,0.421,0.548,0.119,0,0,0.108 -0.333,0.149,0.149,1,0,0,0,0.421,0.555,0.0751,0,0,0.036 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.142,0,0,0.036 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0.139 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0.216 -1,0.404,0.404,0.567,0,0,0,0.421,0.645,0.351,0,0,0.036 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.473,0,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.108 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.108 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.426 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.223 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0203,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.511 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0.072 -0.667,0.164,0.164,0,0,0,0,0.421,0.555,0.0826,0,0,0.145 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.174,0,0,0.511 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0.0542 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.144 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.17 -0.333,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.036 -0.667,0.168,0.168,0.683,0,0,0,0.421,0.589,0.172,0,0,0.072 -1,0.351,0.351,1,0,0,0,0.749,0.626,0.383,0,0,0.144 -1,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0 -1,0.554,0.554,0,0,0,0,0.807,0.6,0.588,0,0,0.357 -1,0.851,0.851,0,0,0,0,1,0.568,0.806,0,0,0.397 -0.667,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.0698 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0301,0,0,0.146 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0.201 -0.667,0.286,0.286,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.147,0,0,0 -0.333,0.16,0.16,0.183,0,0,0,0.421,0.555,0.0961,0,0,0 -0,0.0495,0.0495,0.3,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0.036 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0 -0.333,0.15,0.15,0.433,0,0,0,0.421,0.564,0.159,0,0,0.108 -0.333,0.154,0.154,0.05,0,0,0.0333,0.421,0.576,0.167,0,0.336,0 -1,0.404,0.404,0,0,1,0.883,0.421,0.645,0.479,0,0.439,0.36 -1,0.501,0.501,0,0,0,0,0.912,0.658,0.565,0,0,0.072 -1,0.656,0.656,0,0,0,0,1,0.645,0.743,0,0,0.108 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.466 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0781,0.0781,1,0,0,0,0.614,0.529,0.0241,0,0,0.0921 -1,0.228,0.228,0.65,0,0,0,0.807,0.514,0.0488,0,0,0.319 -1,0.284,0.284,0,0,0,0,0.421,0.54,0.0653,0,0,0.132 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.072 -0.667,0.278,0.278,0,0,0,0,0.421,0.548,0.0923,0,0,0.351 -0.667,0.27,0.27,0,0,0,0,0.421,0.548,0.103,0,0,0.216 -0.667,0.259,0.259,0.767,0,0,0,0.421,0.548,0.113,0,0,0.252 -0.667,0.251,0.251,1,0,0,0,0.421,0.548,0.119,0,0,0.261 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.134,0,0,0.144 -0.667,0.249,0.249,1,0,0,0,0.421,0.548,0.142,0,0,0.036 -0.667,0.251,0.251,0.817,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,0.517,0,0,0,0.421,0.591,0.196,0,0,0.036 -0.667,0.286,0.286,0.933,0,0,0,0.421,0.617,0.239,0,0,0 -0.667,0.351,0.351,0,0,0,0,0.749,0.626,0.32,0,0,0.072 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.446,0,0,0.397 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.036 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.108 -1,0.561,0.561,0,0,0,0,1,0.516,0.468,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0668 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0158,0,0,0.219 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.345,0 -1,0.0781,0.0781,0,0,1,0.867,0.614,0.529,0.0241,0,0.114,0 -0.667,0.0495,0.0495,0.0167,0,0,1,0.421,0.562,0.0159,0,0,0.16 -0.667,0.167,0.167,1,0,0,0.433,0.421,0.551,0.0406,0,0,0.206 -0.667,0.286,0.286,1,0,0,0,0.421,0.548,0.0788,0,0,0.25 -0.667,0.278,0.278,1,0,0,0,0.421,0.548,0.0923,0,0,0.255 -0.667,0.27,0.27,1,0,0,0,0.421,0.548,0.103,0,0,0.31 -0.667,0.259,0.259,0.567,0,0,0,0.421,0.548,0.113,0,0,0.072 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.555,0.0751,0,0,0.072 -0.667,0.149,0.149,0.767,0,0,0,0.421,0.555,0.0789,0,0,0.036 -0.667,0.251,0.251,1,0,0,0,0.421,0.566,0.158,0,0,0 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.196,0,0,0 -0.667,0.286,0.286,1,0,0,0,0.421,0.617,0.239,0,0,0.144 -1,0.501,0.501,0.817,0,0,0,0.912,0.658,0.473,0,0,0.389 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0,0,0.327 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.072 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.108 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.614,0.529,0.0241,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.272 -1,0.139,0.139,0.7,0,0,0,0.614,0.538,0.0323,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0473,0,0,0.122 -1,0.278,0.278,0.267,0,0,0,0.421,0.548,0.0923,0,0,0.2 -0.667,0.27,0.27,0.45,0,0,0,0.421,0.548,0.103,0,0,0 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0.108 -0.667,0.251,0.251,0,0,0.0667,0.117,0.421,0.548,0.119,0,0.333,0.072 -0.667,0.249,0.249,0,0,0.933,1,0.421,0.548,0.134,0,0.684,0.18 -0.667,0.249,0.249,0,0,0,1,0.421,0.548,0.142,0,0.388,0 -0.667,0.251,0.251,0.767,0,0,0.183,0.421,0.566,0.158,0,0,0.181 -1,0.363,0.363,1,0,0,0,0.421,0.606,0.286,0,0,0.541 -1,0.404,0.404,1,0,0,0,0.421,0.645,0.351,0,0,0.164 -0.667,0.351,0.351,1,0.05,0,0,0.749,0.626,0.32,0.397,0,0.175 -1,0.656,0.656,0.817,1,0,0,1,0.645,0.662,0.644,0,0.443 -1,0.806,0.806,0,0.117,0,0,1,0.619,0.817,0,0,0.18 -1,0.584,0.584,0.517,0,0,0,0.807,0.566,0.521,0,0,0 -1,0.22,0.22,0.2,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.123 -1,0.0503,0.0503,0,0,0,0,0.614,0.529,0.0188,0,0,0.111 -1,0.0781,0.0781,0,0,0,0,0.614,0.529,0.0241,0,0,0.219 -1,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0.134 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0.522 -1,0.286,0.286,0,0,0,0,0.421,0.548,0.0788,0,0,0.404 -1,0.392,0.392,0,0.55,0,0,0.421,0.542,0.131,0.747,0,0.036 -0.667,0.27,0.27,0,0.85,0,0,0.421,0.548,0.103,0.132,0,0.545 -0.667,0.259,0.259,0,0,0,0,0.421,0.548,0.113,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.119,0,0,0.144 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.134,0,0,0 -0.667,0.249,0.249,0,0,0,0,0.421,0.548,0.142,0,0,0.108 -0.667,0.251,0.251,0,0,0,0,0.421,0.566,0.158,0,0,0.216 -0.667,0.259,0.259,0,0,0,0,0.421,0.591,0.196,0,0,0.072 -0.333,0.168,0.168,0.517,0,0,0,0.421,0.589,0.128,0,0,0.036 -0.333,0.2,0.2,1,0,0,0,0.585,0.594,0.168,0,0,0.18 -0.667,0.454,0.454,0.167,0,0,0,0.807,0.617,0.446,0,0,0.036 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.148 -1,0.851,0.851,0,0,0,0,1,0.568,0.774,0,0,0.072 -1,0.22,0.22,0,0,0,0,0.614,0.546,0.167,0,0,0 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0781,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.614,0.529,0.0383,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.614,0.529,0.0173,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.807,0.497,0.0218,0,0,0.0817 -1,0.107,0.107,0,0,0,0,0.807,0.497,0.0323,0,0,0 -0.667,0.139,0.139,0,0,0,0,0.614,0.538,0.0323,0,0,0 -0.667,0.167,0.167,0,0,0,0,0.421,0.551,0.0406,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -0.333,0.164,0.164,0,0,0,0,0.421,0.555,0.0541,0,0,0.036 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0593,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.0646,0,0,0.072 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.0676,0,0.0816,0.036 -0.333,0.149,0.149,0,0,1,0.367,0.421,0.555,0.0751,0,0.533,0.036 -0.667,0.249,0.249,0,0,0,1,0.421,0.548,0.142,0,0.546,0.108 -1,0.351,0.351,0,0,0,0.933,0.421,0.568,0.23,0,0.409,0.216 -1,0.363,0.363,0,0,0,0,0.421,0.606,0.286,0,0,0.072 -1,0.404,0.404,0,0.3,0,0,0.421,0.645,0.351,0.439,0,0.144 -1,0.501,0.501,0,0.867,0,0,0.912,0.658,0.473,0.762,0,0 -1,0.656,0.656,0,0,0,0,1,0.645,0.662,0.27,0,0.072 -1,0.806,0.806,0,0,0,0,1,0.619,0.817,0,0,0.216 -1,0.584,0.584,0,0,0,0,0.807,0.566,0.521,0,0,0.499 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.317,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.167,0.167,0,0,0,0,0.421,0.551,0.0444,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0654,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.108 -0.333,0.154,0.154,0,0,0,0,0.421,0.555,0.104,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.421,0.555,0.111,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.288 -0.667,0.251,0.251,0.433,0,0,0,0.421,0.566,0.3,0,0,0.252 -0.667,0.259,0.259,1,0,0,0,0.421,0.591,0.315,0,0,0.036 -0.333,0.168,0.168,0.0167,0,0,0,0.421,0.589,0.172,0,0,0.252 -0.333,0.2,0.2,0,0,0,0,0.585,0.594,0.2,0,0,0.036 -0.667,0.454,0.454,0,0,0,0,0.807,0.617,0.501,0,0,0.0765 -1,0.806,0.806,0,0,0,0,1,0.619,0.873,0,0,0.56 -0.667,0.584,0.584,0,0,0,0,0.807,0.566,0.543,0,0,0.268 -1,0.391,0.391,0,0,0,0,0.807,0.531,0.345,0,0,0.0698 -1,0.116,0.116,0,0,0,0,0.614,0.533,0.0894,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.133 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.408 -1,0.16,0.16,0,0,0,0,0.421,0.555,0.0961,0,0,0.169 -1,0.259,0.259,0,0,0,0,0.421,0.548,0.191,0,0,0.223 -0.667,0.251,0.251,0,0,0,0,0.421,0.548,0.204,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.129,0,0,0.108 -0.333,0.149,0.149,0,0,0,0,0.421,0.555,0.146,0,0,0.321 -0.333,0.15,0.15,0,0,0,0,0.421,0.564,0.159,0,0,0.508 -0.667,0.154,0.154,0,0,0,0,0.421,0.576,0.167,0,0,0.188 -0.667,0.286,0.286,0.683,0,0,0,0.421,0.617,0.326,0,0,0.188 -1,0.501,0.501,1,0,0,0,0.912,0.658,0.565,0,0,0.292 -1,0.656,0.656,1,0,0,0,1,0.645,0.743,0,0.203,0.254 -1,0.806,0.806,1,0,1,0.217,1,0.619,0.873,0,0.376,0.036 -1,0.851,0.851,0.9,0,0,0,1,0.568,0.806,0,0.532,0.036 -1,0.561,0.561,0,0,0,0,1,0.516,0.509,0,0.097,0.093 -1,0.249,0.249,0,0,0,0,1,0.477,0.232,0,0,0.072 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0.072 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.124 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.159 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.46 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0.0533 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.14 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0.219,0.108 -0.667,0.291,0.291,0,0,0.933,0.883,0.14,0.62,0.0905,0,0.398,0.036 -0.667,0.279,0.279,0.517,0,0,1,0.14,0.62,0.0996,0,0.271,0.036 -0.667,0.271,0.271,0.983,0,0,0.5,0.14,0.62,0.105,0,0,0.288 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.108 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.108 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -1,0.417,0.417,0.517,0,0,0,0,0.726,0.25,0,0,0 -0.667,0.35,0.35,1,0.05,0,0,0.14,0.702,0.21,0.406,0,0.288 -0.667,0.453,0.453,0.733,1,0,0,0.14,0.712,0.28,0.272,0,0.252 -1,0.829,0.829,0,0.717,0,0,0,0.772,0.578,0.716,0,0.144 -1,0.905,0.905,0,0.667,0,0,0,0.741,0.713,0.791,0,0.36 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0.103,0,0.072 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0393 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.132 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.107 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.119 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.236 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0.398,0.232 -0.667,0.279,0.279,0,0,0.933,0.233,0.14,0.62,0.0996,0,0.622,0.203 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0.847,0.294 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0.64,0.108 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0.267,0.036 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0.53,0 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0.508,0.216 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.144 -0.333,0.251,0.251,0,0,0,0,0.281,0.637,0.148,0,0,0.072 -0.667,0.569,0.569,0,0.55,0,0,0.14,0.702,0.39,0.577,0,0.036 -0.667,0.62,0.62,0,0.667,0,0,0.14,0.681,0.481,0,0,0.43 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.22 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.144 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.151 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0.144 -1,0.417,0.417,1,0,0,0,0,0.633,0.0786,0,0,0.251 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0 -0.667,0.299,0.299,1,0,0,0,0.14,0.62,0.0813,0,0,0.036 -0.667,0.291,0.291,0.5,0,0,0,0.14,0.62,0.0905,0,0,0.288 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.072 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.0893 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.248 -0.667,0.274,0.274,0.767,0,0,0,0.14,0.64,0.139,0,0,0.28 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0 -1,0.501,0.501,1,0,0,0,0,0.772,0.307,0,0,0.036 -1,0.655,0.655,1,0,0,0,0,0.788,0.413,0,0,0.216 -1,0.829,0.829,1,0,0,0,0,0.772,0.578,0,0,0.216 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0.233,0 -1,0.821,0.821,0,0,0.933,0.883,0,0.679,0.676,0,0.45,0.072 -1,0.356,0.356,0,0,0,0.3,0.14,0.599,0.278,0,0.461,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0.551,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0.0366,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.201 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.266 -1,0.172,0.172,1,0,0,0,0.281,0.585,0.0368,0,0,0.1 -1,0.301,0.301,0.733,0,0,0,0.14,0.62,0.0695,0,0,0.0969 -0.667,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.232 -0.667,0.17,0.17,0.267,0,0,0,0.281,0.591,0.0532,0,0,0.089 -0.667,0.279,0.279,0.483,0.05,0,0,0.14,0.62,0.0996,0.461,0,0 -0.667,0.271,0.271,0,1,0,0,0.14,0.62,0.105,0.673,0,0.272 -0.667,0.269,0.269,0,0.417,0,0,0.14,0.62,0.118,0.305,0,0.308 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.408 -0.667,0.274,0.274,0.767,0,0,0,0.14,0.64,0.139,0,0,0.215 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0.036 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.216 -0.667,0.453,0.453,1,0,0,0,0.14,0.712,0.28,0,0,0.108 -0.667,0.569,0.569,1,0,0,0,0.14,0.702,0.39,0,0,0.324 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.072 -0.667,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.363 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.126 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.112 -1,0.099,0.099,0,0,0,0,0.14,0.558,0.0538,0,0,0.694 -1,0.066,0.066,0,0,0,0,0.14,0.558,0.0289,0,0,0.147 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0165,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.176 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.446 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.108 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0.32 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.252 -0.333,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.144 -0.667,0.279,0.279,1,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0.983,0,0,0,0.14,0.62,0.105,0,0,0.072 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.036 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0,0.036 -0.333,0.2,0.2,0.517,0,0,0,0.281,0.632,0.113,0,0,0.108 -0.667,0.453,0.453,0.983,0,0,0,0.14,0.712,0.28,0,0,0.324 -0.667,0.569,0.569,0,0.05,0,0,0.14,0.702,0.39,0.383,0,0.144 -0.667,0.62,0.62,0,1,0,0,0.14,0.681,0.481,0.732,0,0.072 -0.667,0.564,0.564,0,0.167,0,0,0.14,0.64,0.456,0,0,0.072 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.149 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0624,0,0,0.228 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0991,0,0,0.135 -0.667,0.299,0.299,0,0.55,0,0,0.14,0.62,0.129,0.579,0,0.349 -0.667,0.291,0.291,0,0.917,0,0,0.14,0.62,0.153,0,0,0.295 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.167,0,0,0.607 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.179,0,0,0.509 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.122 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0.259,0.108 -0.333,0.162,0.162,0,0,0.933,0.633,0.281,0.601,0.14,0,0.571,0.252 -0.667,0.294,0.294,0,0,0,0.317,0.14,0.671,0.276,0,0,0.252 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.108 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.252 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.438,0,0,0 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.438 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0.167,0.516 -0.667,0.203,0.203,0,0,0.933,0.633,0.281,0.58,0.16,0,0.252,0 -0.667,0.0495,0.0495,0,0,0,0.317,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.211 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.02,0,0,0.115 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.0173,0,0,0.367 -1,0.0506,0.0506,0.0167,0,0,0,0.281,0.56,0.0193,0,0,0 -1,0.0798,0.0798,0.733,0,0,0,0.281,0.56,0.0213,0,0,0.036 -1,0.143,0.143,0,0,0.0667,0.133,0.281,0.57,0.0278,0,0.19,0.036 -0.667,0.172,0.172,0,0,0.867,0.333,0.281,0.585,0.0403,0,0.444,0.036 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0.506,0.18 -0.667,0.174,0.174,0.267,0,0,0,0.281,0.591,0.0737,0,0.153,0 -0.667,0.291,0.291,0.233,0,0,0,0.14,0.62,0.153,0,0,0.072 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0.072 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0.457,0.036 -0.333,0.162,0.162,0,0,0.933,0.7,0.281,0.601,0.14,0,0.374,0.036 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0.113 -1,0.501,0.501,0.767,0,0,0,0,0.772,0.419,0,0,0.036 -1,0.655,0.655,1,0,0,0,0,0.788,0.493,0,0,0.036 -1,0.829,0.829,0.483,0,0,0,0,0.772,0.649,0,0,0.036 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.036 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.036 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.34 -1,0.143,0.143,0.267,0,0,0,0.281,0.57,0.0296,0,0,0.135 -1,0.172,0.172,1,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0.983,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.036 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.036 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.072 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0.036 -0.333,0.159,0.159,0.517,0,0,0,0.281,0.591,0.0702,0,0,0.072 -0.667,0.274,0.274,1,0,0,0,0.14,0.64,0.139,0,0,0.999 -1,0.417,0.417,0.733,0,0,0,0,0.726,0.25,0,0,0.216 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.072 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.144 -1,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.144 -1,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.36 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0875 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.239 -0.667,0.175,0.175,0.267,0,0,0,0.281,0.591,0.0427,0,0,0.036 -0.333,0.174,0.174,0.483,0,0,0,0.281,0.591,0.0486,0,0,0.072 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.144 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.144 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.18 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.108 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.0951 -1,0.417,0.417,0,0,0,0,0,0.726,0.25,0,0,0.036 -1,0.501,0.501,0.267,0,0,0,0,0.772,0.307,0.115,0,0 -1,0.655,0.655,1,0.8,0,0,0,0.788,0.413,0.789,0,0.036 -1,0.829,0.829,1,0.417,0,0,0,0.772,0.578,0.626,0,0.18 -1,0.62,0.62,1,0,0,0,0.14,0.681,0.481,0.847,0,0.036 -1,0.564,0.564,1,0,0,0,0.14,0.64,0.456,0.243,0,0.108 -1,0.356,0.356,0.5,0,0,0,0.14,0.599,0.278,0,0,0.473 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0.129 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0649 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.115 -1,0.172,0.172,0.267,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,1,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.299,0.299,0.983,0,0,0,0.14,0.62,0.0813,0,0.195,0 -0.667,0.291,0.291,0,0,0.933,0.467,0.14,0.62,0.0905,0,0.442,0.036 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0.539,0.18 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.144 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.144 -0.667,0.294,0.294,0.0167,0,0,0,0.14,0.671,0.172,0,0,0.216 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.072 -1,0.655,0.655,1,0,0,0,0,0.788,0.413,0,0,0.144 -1,0.829,0.829,1,0,0,0,0,0.772,0.578,0,0,0.108 -1,0.905,0.905,1,0,0,0,0,0.741,0.713,0,0,0.216 -1,0.564,0.564,0.75,0,0,0,0.14,0.64,0.456,0,0,0.108 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0924 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.0722 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.072 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.288 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0.252 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.108 -1,0.501,0.501,0.767,0.3,0,0,0,0.772,0.307,0.4,0,0.18 -1,0.655,0.655,1,0.917,0,0,0,0.788,0.413,0.653,0,0.036 -1,0.829,0.829,0.483,0,0,0,0,0.772,0.578,0,0,0.072 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0.456 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.217 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.18 -1,0.116,0.116,0,0.05,0,0,0.281,0.565,0.0695,0.435,0,0.036 -1,0.0495,0.0495,0,1,0,0,0.421,0.562,0.0159,0.134,0,0.036 -1,0.0495,0.0495,0,0.167,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0224,0,0,0.0789 -0.333,0.143,0.143,0.233,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.072 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.108 -0.667,0.269,0.269,0.267,0,0,0,0.14,0.62,0.118,0,0,0.108 -0.667,0.269,0.269,0.233,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.324 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0.443 -1,0.655,0.655,0,0.05,0,0,0,0.788,0.413,0.391,0,0 -1,0.829,0.829,0,0.933,0,0,0,0.772,0.578,0.448,0,0.18 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.036 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.128 -1,0.172,0.172,0.767,0,0,0,0.281,0.585,0.0403,0,0,0.143 -1,0.301,0.301,1,0,0,0,0.14,0.62,0.0991,0,0.485,0 -1,0.299,0.299,1,0,0.933,0.883,0.14,0.62,0.129,0,0.47,0.0774 -0.667,0.17,0.17,1,0,0,0.533,0.281,0.591,0.0855,0,0.333,0 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0927,0,0.726,0 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0.284,0.036 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.114,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -0.333,0.172,0.172,0,0,0,0,0.281,0.616,0.147,0,0,0 -0.333,0.2,0.2,0.267,0,0,0,0.281,0.632,0.152,0,0,0.036 -1,0.655,0.655,1,0.05,0,0,0,0.788,0.493,0.439,0,0 -1,0.829,0.829,1,1,0,0,0,0.772,0.649,0.14,0,0.246 -1,0.905,0.905,1,0.167,0,0,0,0.741,0.763,0,0,0.144 -0.667,0.564,0.564,1,0,0,0,0.14,0.64,0.475,0,0,0.18 -0.667,0.356,0.356,0.5,0,0,0,0.14,0.599,0.302,0,0,0.036 -1,0.249,0.249,0,0,0,0,0,0.571,0.202,0,0,0.144 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.252 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0265,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.56,0.02,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.275 -1,0.175,0.175,0,0,0,0,0.281,0.591,0.0586,0,0,0.355 -1,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.0714 -1,0.411,0.411,0.267,0.55,0,0,0,0.649,0.22,0.582,0,0 -0.667,0.279,0.279,1,0.917,0,0,0.14,0.62,0.167,0,0,0.036 -0.667,0.271,0.271,0.983,0,0,0,0.14,0.62,0.179,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.239,0,0,0.108 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.108 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0.371 -1,0.501,0.501,0,0,0,0,0,0.772,0.419,0,0,0.229 -1,0.655,0.655,0,0,0,0,0,0.788,0.493,0,0,0.072 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.424 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.141,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0348,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.227 -1,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0.0349 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.17,0.17,0.0167,0,0,0,0.281,0.591,0.0532,0,0,0 -0.667,0.279,0.279,1,0,0,0,0.14,0.62,0.0996,0,0,0.036 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0604,0,0,0 -0.667,0.269,0.269,1,0,0,0,0.14,0.62,0.118,0,0,0 -0.333,0.159,0.159,1,0,0,0,0.281,0.591,0.0702,0,0,0.144 -0.333,0.162,0.162,0.75,0,0,0,0.281,0.601,0.0774,0,0,0.072 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.2,0.2,1,0,0,0,0.281,0.632,0.113,0,0,0.108 -0.333,0.251,0.251,1,0,0,0,0.281,0.637,0.148,0,0,0.216 -0.333,0.309,0.309,1,0,0,0,0.281,0.632,0.203,0,0,0.199 -0.667,0.62,0.62,1,0,0,0,0.14,0.681,0.481,0,0,0.357 -1,0.564,0.564,0.5,0,0,0,0.14,0.64,0.456,0,0,0.216 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,1,0,0,0,0.281,0.56,0.0178,0,0,0.348 -1,0.0798,0.0798,1,0,0,0,0.281,0.56,0.0224,0,0,0.126 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0.0701 -1,0.295,0.295,1,0.3,0,0,0.14,0.609,0.0577,0.764,0,0.036 -0.667,0.175,0.175,0.5,1,0,0,0.281,0.591,0.0427,0.76,0,0.072 -0.667,0.299,0.299,0,0.167,0,0,0.14,0.62,0.0813,0.567,0,0.072 -0.333,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0.593,0,0.224 -1,0.394,0.394,0.767,0,0,0,0,0.649,0.142,0.787,0.291,0.144 -1,0.382,0.382,1,0,0.933,0.7,0,0.649,0.149,0,0.689,0 -1,0.378,0.378,0.483,0,0,0,0,0.649,0.169,0,0.449,0 -1,0.379,0.379,0,0,0,0,0,0.649,0.179,0,0,0.454 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.554 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.339 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0,0.508 -1,0.655,0.655,0,0.05,0,0,0,0.788,0.413,0.469,0.198,0.257 -1,0.829,0.829,0.517,1,0.933,0.383,0,0.772,0.578,0.554,0.391,0.664 -1,0.62,0.62,1,0.167,0,0.8,0.14,0.681,0.481,0,0,0.162 -1,0.564,0.564,0.233,0,0,0,0.14,0.64,0.456,0,0,0 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.292 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0506 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.125 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.175,0.175,0,0.55,0,0,0.281,0.591,0.0427,0.726,0,0.144 -0.667,0.174,0.174,0.0167,0.917,0,0,0.281,0.591,0.0486,0.607,0,0 -0.667,0.17,0.17,1,0,0,0,0.281,0.591,0.0532,0.305,0,0.036 -0.667,0.164,0.164,1,0,0,0,0.281,0.591,0.0577,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.62,0.105,0,0,0.072 -0.667,0.269,0.269,1,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0.75,0,0,0,0.14,0.62,0.125,0,0,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.036 -0.667,0.294,0.294,0.767,0,0,0,0.14,0.671,0.172,0,0,0.144 -1,0.501,0.501,0.983,0,0,0,0,0.772,0.307,0,0,0.18 -1,0.655,0.655,0.267,0,0,0,0,0.788,0.413,0,0,0.252 -1,0.569,0.569,1,0,0,0,0.14,0.702,0.39,0,0,0.18 -1,0.62,0.62,0.983,0.05,0,0,0.14,0.681,0.481,0.358,0,0.072 -1,0.564,0.564,0,1,0,0,0.14,0.64,0.456,0.762,0,0.406 -1,0.203,0.203,0,0.167,0,0,0.281,0.58,0.147,0.251,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.143,0.143,1,0,0,0,0.281,0.57,0.0296,0,0,0.363 -1,0.172,0.172,0.483,0,0,0,0.281,0.585,0.0368,0,0,0.116 -1,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.205 -1,0.299,0.299,0.267,0,0,0,0.14,0.62,0.0813,0,0,0 -0.667,0.291,0.291,1,0,0,0,0.14,0.62,0.0905,0,0,0 -0.667,0.279,0.279,1,0,0,0,0.14,0.62,0.0996,0,0,0.18 -0.667,0.271,0.271,1,0,0,0,0.14,0.62,0.105,0,0,0 -0.333,0.159,0.159,1,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.162,0.162,0.267,0,0,0,0.281,0.601,0.0774,0,0,0.216 -0.667,0.294,0.294,1,0,0,0,0.14,0.671,0.172,0,0,0.072 -0.667,0.35,0.35,0.233,0,0,0,0.14,0.702,0.21,0,0,0.072 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.108 -0.667,0.569,0.569,0,0,0,0,0.14,0.702,0.39,0,0,0.252 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.481,0,0,0.036 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.036 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.341 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.121 -0.667,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.146,0,0 -0.667,0.301,0.301,0,0.8,0,0,0.14,0.62,0.0695,0.667,0,0 -0.667,0.299,0.299,0,0.417,0,0,0.14,0.62,0.0813,0,0,0.072 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.036 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.072 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.072 -0.667,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.347,0.144 -0.667,0.2,0.2,0,0,0.933,0.467,0.281,0.632,0.113,0,0.45,0.216 -0.667,0.453,0.453,0,0.05,0,0,0.14,0.712,0.28,0.409,0.345,0.036 -1,0.829,0.829,0,1,0,0,0,0.772,0.578,0.633,0,0 -0.667,0.62,0.62,0,0.417,0,0,0.14,0.681,0.481,0,0,0.036 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.036 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.282 -0.667,0.175,0.175,0.517,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.174,0.174,0.983,0,0,0,0.281,0.591,0.0737,0,0,0 -0.667,0.17,0.17,0,0,0,0,0.281,0.591,0.0855,0,0,0.116 -0.667,0.279,0.279,0,0,0.0667,0.133,0.14,0.62,0.167,0,0.437,0 -1,0.271,0.271,0,0,0.867,0.333,0.14,0.62,0.179,0,0.377,0 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.21,0,0.693,0.072 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.129,0,0,0.108 -1,0.274,0.274,0,0,0,0,0.14,0.64,0.263,0,0,0.144 -1,0.294,0.294,0,0,0,0,0.14,0.671,0.276,0,0,0 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.285,0,0,0.18 -1,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.396 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.072 -0.667,0.62,0.62,0,0,0,0,0.14,0.681,0.514,0,0,0.212 -0.667,0.564,0.564,0,0,0,0,0.14,0.64,0.475,0,0.174,0.182 -0.667,0.356,0.356,0,0,0.933,0.383,0.14,0.599,0.302,0,0.245,0.333 -0.667,0.183,0.183,0,0,0,1,0.14,0.568,0.141,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,1,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.175,0.175,1,0,0,0,0.281,0.591,0.0586,0,0,0 -0.667,0.174,0.174,0.233,0,0,0,0.281,0.591,0.0737,0,0,0.269 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0.0799 -0.333,0.164,0.164,0.267,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.16,0.16,1,0,0,0,0.281,0.591,0.0986,0,0,0.288 -0.333,0.159,0.159,1,0,0,0,0.281,0.591,0.114,0,0,0.144 -0.333,0.159,0.159,1,0,0,0,0.281,0.591,0.129,0,0,0.036 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.14,0,0,0 -0.667,0.294,0.294,0.5,0,0,0,0.14,0.671,0.276,0,0,0.036 -0.667,0.2,0.2,0,0,0,0,0.281,0.632,0.152,0,0,0.072 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.335,0,0,0.036 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.268 -1,0.905,0.905,0,0,0,0,0,0.741,0.763,0,0,0.381 -1,0.821,0.821,0,0,0,0,0,0.679,0.704,0,0,0.072 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.137 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0.186,0.036 -0.333,0.17,0.17,0,0,0.933,0.383,0.281,0.591,0.0532,0,0.525,0.216 -0.333,0.164,0.164,0,0,0,0.317,0.281,0.591,0.0577,0,0.105,0.036 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0.036 -1,0.417,0.417,0.733,0,0,0,0,0.726,0.25,0,0,0 -1,0.501,0.501,0,0,0,0,0,0.772,0.307,0,0,0 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0.342,0.036 -1,0.829,0.829,0,0,0.933,0.633,0,0.772,0.578,0,0,0.18 -1,0.905,0.905,0,0,0,0.0667,0,0.741,0.713,0,0,0.324 -1,0.564,0.564,0,0,0,0,0.14,0.64,0.456,0,0,0.324 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.036 -1,0.183,0.183,0,0,0,0,0.14,0.568,0.123,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0.234 -1,0.0798,0.0798,0.0167,0,0,0,0.281,0.56,0.0224,0,0,0.164 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0.173 -1,0.417,0.417,1,0,0,0,0,0.633,0.0786,0,0,0.0936 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0.599 -0.667,0.299,0.299,1,0,0,0,0.14,0.62,0.0813,0,0,0.221 -0.333,0.17,0.17,0.75,0,0,0,0.281,0.591,0.0532,0,0,0.072 -0.667,0.279,0.279,0,0,0,0,0.14,0.62,0.0996,0,0,0.216 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.329 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.29 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0 -0.667,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.118,0.036 -0.667,0.453,0.453,0,0,0.933,0.383,0.14,0.712,0.28,0,0.195,0 -1,0.829,0.829,0.267,0,0,0.317,0,0.772,0.578,0,0,0.19 -1,0.905,0.905,1,0,0,0,0,0.741,0.713,0,0,0.116 -1,0.564,0.564,0.983,0,0,0,0.14,0.64,0.456,0,0,0.18 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.633,0.0786,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.072 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.252 -0.667,0.291,0.291,0,0.3,0,0,0.14,0.62,0.0905,0.736,0,0.036 -0.333,0.164,0.164,0,0.683,0,0,0.281,0.591,0.0577,0.255,0,0.072 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.324 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.036 -0.667,0.274,0.274,0,0,0,0,0.14,0.64,0.139,0,0,0.036 -0.667,0.294,0.294,0.0167,0,0,0,0.14,0.671,0.172,0,0,0.036 -1,0.501,0.501,0.483,0,0,0,0,0.772,0.307,0,0,0.036 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0,0.072 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.162 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.119 -1,0.51,0.51,0,0,0,0,0,0.618,0.409,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.29,0 -1,0.0798,0.0798,0,0,0.933,0.7,0.281,0.56,0.0224,0,0.717,0 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0.714,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0.364,0.185 -1,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.192 -1,0.174,0.174,0,0,0,0,0.281,0.591,0.0486,0,0,0.361 -1,0.17,0.17,0,0,0,0,0.281,0.591,0.0532,0,0,0.252 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.468 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0.323,0 -0.667,0.274,0.274,0,0,0.933,0.883,0.14,0.64,0.139,0,0.308,0 -0.667,0.294,0.294,0,0,0,1,0.14,0.671,0.172,0,0,0.299 -0.667,0.35,0.35,0.267,0,0,0.25,0.14,0.702,0.21,0,0,0.18 -1,0.655,0.655,0.5,0,0,0,0,0.788,0.413,0,0,0.0863 -1,0.829,0.829,1,0,0,0,0,0.772,0.578,0,0,0.234 -0.667,0.62,0.62,1,0,0,0,0.14,0.681,0.481,0,0,0 -1,0.821,0.821,1,0,0,0,0,0.679,0.676,0,0,0.108 -1,0.203,0.203,1,0,0,0,0.281,0.58,0.147,0,0,0.072 -1,0.0495,0.0495,0.5,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.221 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.104 -1,0.143,0.143,0,0,0,0,0.281,0.57,0.0296,0,0,0.061 -0.667,0.172,0.172,0,0,0,0,0.281,0.585,0.0368,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.62,0.0695,0,0,0.18 -0.667,0.299,0.299,0.767,0,0,0,0.14,0.62,0.0813,0,0,0.144 -0.667,0.291,0.291,1,0,0,0,0.14,0.62,0.0905,0,0,0.216 -0.667,0.279,0.279,0.483,0,0,0,0.14,0.62,0.0996,0,0,0.072 -0.667,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.108 -0.667,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0.104,0.216 -0.667,0.159,0.159,0,0,0.933,0.633,0.281,0.591,0.0702,0,0.435,0.252 -0.667,0.162,0.162,0,0,0,0.55,0.281,0.601,0.0774,0,0.745,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.616,0.0938,0,0.502,0.036 -1,0.35,0.35,0,0,0,0,0.14,0.702,0.21,0,0.684,0.159 -1,0.655,0.655,0,0,0,0,0,0.788,0.413,0,0.422,0.404 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0.66,0.223 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0.316,0.036 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0,0,0.0805 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.278,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0213,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.155 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.129,0,0,0.108 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.153,0,0,0 -0.667,0.279,0.279,0.767,0,0,0,0.14,0.62,0.167,0,0,0 -0.667,0.271,0.271,1,0,0,0,0.14,0.62,0.179,0,0,0.072 -0.333,0.159,0.159,0.483,0,0,0,0.281,0.591,0.114,0,0,0.201 -0.667,0.269,0.269,0,0.05,0,0,0.14,0.62,0.239,0.401,0,0 -0.667,0.274,0.274,0,1,0,0,0.14,0.64,0.263,0.616,0,0 -0.667,0.294,0.294,0,0.417,0,0,0.14,0.671,0.276,0.803,0,0.252 -1,0.501,0.501,0.267,0,0,0,0,0.772,0.419,0.502,0,0.144 -1,0.655,0.655,1,0,0,0,0,0.788,0.493,0.985,0.191,0.144 -1,0.829,0.829,0.983,0,0.933,0.383,0,0.772,0.649,0.628,0.84,0.072 -1,0.905,0.905,0,0,0,1,0,0.741,0.763,0.693,0.518,0 -1,0.821,0.821,0,0,0,0.0333,0,0.679,0.704,0.18,0,0.273 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.16,0,0,0.208 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0.193 -1,0.0743,0.0743,0,0,0,0,0.281,0.56,0.0409,0,0,0.119 -1,0.0578,0.0578,0,0,0,0,0.281,0.56,0.0265,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.115 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0624,0,0,0.177 -1,0.301,0.301,0.267,0,0,0,0.14,0.62,0.0991,0,0,0 -0.333,0.174,0.174,1,0,0,0,0.281,0.591,0.0737,0,0,0 -0.333,0.17,0.17,0.483,0,0,0,0.281,0.591,0.0855,0,0,0 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0927,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0986,0,0,0.072 -0.667,0.269,0.269,0.517,0,0,0,0.14,0.62,0.21,0,0,0.144 -0.667,0.269,0.269,1,0,0,0,0.14,0.62,0.239,0,0,0.072 -0.667,0.162,0.162,1,0,0,0,0.281,0.601,0.14,0,0,0.216 -0.667,0.172,0.172,1,0,0,0,0.281,0.616,0.147,0,0,0 -1,0.35,0.35,1,0,0,0,0.14,0.702,0.285,0,0,0.144 -0.667,0.251,0.251,0.25,0,0,0,0.281,0.637,0.177,0,0,0.108 -1,0.829,0.829,0,0,0,0,0,0.772,0.649,0,0,0.072 -1,0.905,0.905,0,0,0.0667,0.133,0,0.741,0.763,0,0.586,0.18 -1,0.564,0.564,0,0,0.867,0.333,0.14,0.64,0.475,0,0.321,0.396 -1,0.356,0.356,0,0,0,0,0.14,0.599,0.302,0,0,0.221 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0796,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0506,0.0506,0,0,0,0,0.281,0.56,0.0178,0,0,0 -1,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0.184 -1,0.236,0.236,1,0,0,0,0.14,0.578,0.0433,0,0,0.0969 -1,0.295,0.295,1,0.05,0,0,0.14,0.609,0.0577,0.376,0,0.216 -1,0.301,0.301,1,1,0,0,0.14,0.62,0.0695,0.627,0,0.167 -1,0.299,0.299,1,0.417,0,0,0.14,0.62,0.0813,0,0,0.144 -0.667,0.17,0.17,0.75,0,0,0,0.281,0.591,0.0532,0,0,0.072 -0.333,0.164,0.164,0.5,0,0,0,0.281,0.591,0.0577,0,0,0.036 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.036 -0.667,0.269,0.269,0,0,0,0,0.14,0.62,0.118,0,0,0 -1,0.269,0.269,0,0,0,0,0.14,0.62,0.125,0,0,0.144 -1,0.387,0.387,0.267,0,0,0,0,0.679,0.2,0,0,0.072 -1,0.417,0.417,1,0,0,0,0,0.726,0.25,0,0,0.108 -0.667,0.35,0.35,1,0,0,0,0.14,0.702,0.21,0,0,0.036 -0.667,0.251,0.251,1,0,0,0,0.281,0.637,0.148,0.174,0,0.209 -1,0.569,0.569,1,0.8,0,0,0.14,0.702,0.39,0.584,0,0.338 -1,0.62,0.62,0.5,0.667,0,0,0.14,0.681,0.481,0.946,0,0.072 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0.155,0,0.169 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.22 -1,0.0798,0.0798,0,0,0,0,0.281,0.56,0.0224,0,0,0.419 -1,0.236,0.236,0,0,0,0,0.14,0.578,0.0433,0,0,0.0786 -0.667,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.301,0.301,1,0,0,0,0.14,0.62,0.0695,0,0,0.036 -0.667,0.299,0.299,1,0,0,0,0.14,0.62,0.0813,0,0,0.036 -0.667,0.291,0.291,1,0,0,0,0.14,0.62,0.0905,0,0,0.18 -0.667,0.279,0.279,1,0,0,0,0.14,0.62,0.0996,0,0,0.216 -0.333,0.16,0.16,0,0,0,0,0.281,0.591,0.0604,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.333,0.159,0.159,0.267,0,0,0,0.281,0.591,0.0702,0,0,0.072 -0.333,0.162,0.162,1,0,0,0,0.281,0.601,0.0774,0,0,0.036 -0.667,0.294,0.294,0.233,0,0,0,0.14,0.671,0.172,0,0,0.036 -0.667,0.35,0.35,0.5,0,0,0,0.14,0.702,0.21,0,0,0.036 -0.667,0.453,0.453,0,0,0,0,0.14,0.712,0.28,0,0,0.108 -1,0.829,0.829,0,0,0,0,0,0.772,0.578,0,0,0.036 -1,0.905,0.905,0,0,0,0,0,0.741,0.713,0,0,0 -1,0.307,0.307,0,0,0,0,0.281,0.601,0.236,0,0,0.036 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.348 -1,0.295,0.295,0,0,0,0,0.14,0.609,0.0577,0,0,0.288 -0.667,0.175,0.175,0,0,0,0,0.281,0.591,0.0427,0,0,0 -0.667,0.299,0.299,0,0,0,0,0.14,0.62,0.0813,0,0,0.235 -0.667,0.291,0.291,0,0,0,0,0.14,0.62,0.0905,0,0,0.0543 -0.333,0.164,0.164,0,0,0,0,0.281,0.591,0.0577,0,0,0.072 -0.667,0.271,0.271,0,0,0,0,0.14,0.62,0.105,0,0,0.108 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0669,0,0,0 -0.333,0.159,0.159,0,0,0,0,0.281,0.591,0.0702,0,0,0.108 -0.333,0.162,0.162,0,0,0,0,0.281,0.601,0.0774,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.671,0.172,0,0,0.072 -1,0.501,0.501,0.267,0.05,0,0,0,0.772,0.307,0.417,0,0.144 -0.667,0.453,0.453,0.483,1,0,0,0.14,0.712,0.28,0.67,0,0.072 -0.667,0.569,0.569,0,0.167,0,0,0.14,0.702,0.39,0.598,0.11,0.171 -1,0.905,0.905,0,0,0.933,0.467,0,0.741,0.713,0.663,0,0.934 -1,0.821,0.821,0,0,0,0,0,0.679,0.676,0.759,0,0.149 -1,0.203,0.203,0,0,0,0,0.281,0.58,0.147,0.138,0,0.273 -1,0.116,0.116,0,0,0,0,0.281,0.565,0.0695,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.036 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.18 -1,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.324 -1,0.289,0.289,0.883,0,0,0,0.14,0.618,0.117,0,0,0.108 -1,0.297,0.297,1,0,0,0,0.14,0.618,0.124,0,0.0844,0.108 -1,0.338,0.338,0.0333,0,0.533,0.25,0.14,0.639,0.138,0,0.534,0 -0.667,0.425,0.425,0,0,0.4,0.517,0.14,0.67,0.17,0,0.478,0.108 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.328,0.176 -1,0.946,0.946,0,0.417,0,0,0,0.785,0.409,0.579,0.965,0.269 -1,0.919,0.919,0,0.9,0,0,0,0.77,0.573,0.374,0.319,0.18 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.216 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.036 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.386 -0.667,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.118 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0607 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.225 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.252 -0.667,0.177,0.177,0.133,0,0,0,0.281,0.585,0.0366,0,0,0.102 -0.667,0.318,0.318,0.4,0,0,0,0.14,0.618,0.069,0,0,0.189 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.216 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.108 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.036 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.396 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.036 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.229 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.208 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.108 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.216 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.332 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.231 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.187 -0.667,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.305,0.305,1,0,0,0,0.14,0.608,0.0619,0,0,0.226 -1,0.318,0.318,1,0,0,0,0.14,0.618,0.0983,0,0,0.241 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.215 -0.667,0.181,0.181,1,0,0,0,0.281,0.59,0.0849,0,0,0.072 -0.667,0.3,0.3,0.05,0.05,0,0,0.14,0.618,0.166,0.41,0,0.072 -0.333,0.171,0.171,0,1,0,0,0.281,0.59,0.0979,0.797,0,0 -0.333,0.169,0.169,0,0.267,0,0,0.281,0.59,0.113,0.791,0,0.036 -0.333,0.173,0.173,0,0,0.0667,0.133,0.281,0.59,0.128,0.245,0.459,0.108 -0.333,0.194,0.194,0.0167,0,0.867,1,0.281,0.6,0.139,0,0.584,0.18 -0.333,0.237,0.237,1,0,0,0.667,0.281,0.616,0.146,0,0.48,0.036 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.283,0,0.248,0.18 -1,0.946,0.946,1,0,0,0,0,0.785,0.489,0.121,0,0.448 -0.667,0.629,0.629,1,0.8,0,0,0.14,0.7,0.435,0.728,0,0.126 -0.667,0.515,0.515,1,0.783,0,0,0.14,0.68,0.51,0,0,0.036 -0.667,0.0495,0.0495,0.183,0,0,0,0.421,0.562,0.0181,0,0,0.15 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.271 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.216 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.45 -1,0.456,0.456,0,0,0,0,0,0.647,0.183,0,0,0.293 -1,0.443,0.443,0,0,0,0,0,0.647,0.218,0,0,0.214 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0,0.233 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.333 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.036 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.036 -0.667,0.425,0.425,0.267,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.283,0,0,0.108 -1,0.946,0.946,1,0,0,0,0,0.785,0.489,0.128,0,0.242 -1,0.919,0.919,0.2,0.8,0,0,0,0.77,0.643,0.544,0,0.252 -1,0.747,0.747,0,0.833,0,0,0,0.739,0.756,0.425,0,0.108 -1,0.566,0.566,0,1,0,0,0,0.677,0.698,0.421,0,0.108 -1,0.197,0.197,0,0.267,0,0,0.281,0.58,0.159,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.119,0.146 -1,0.177,0.177,0,0,0.533,0.25,0.281,0.585,0.0366,0,0.643,0 -1,0.318,0.318,0,0,0.4,0.783,0.14,0.618,0.069,0,0.616,0 -1,0.321,0.321,0.383,0,0,0,0.14,0.618,0.0807,0,0.291,0 -0.667,0.312,0.312,1,0,0.933,0.75,0.14,0.618,0.0898,0,0.0197,0 -0.667,0.3,0.3,1,0,0,0.283,0.14,0.618,0.0989,0,0,0.072 -0.667,0.292,0.292,1,0,0,0,0.14,0.618,0.104,0,0,0.144 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.117,0,0,0.144 -0.667,0.297,0.297,0.817,0,0,0,0.14,0.618,0.124,0,0.239,0.108 -0.667,0.338,0.338,0,0,0.933,0.5,0.14,0.639,0.138,0,0.43,0.072 -0.667,0.425,0.425,0,0,0,0.0167,0.14,0.67,0.17,0,0.74,0.267 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0.71,0.286 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0.887,0.072 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0.421,0 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0.297,0.036 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.371 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0.209,0,0 -0.667,0.185,0.185,0,0.667,0,0,0.281,0.59,0.0483,0.686,0,0 -0.667,0.312,0.312,0.133,0.917,0,0,0.14,0.618,0.0898,0,0,0 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0 -0.667,0.292,0.292,0.5,0,0,0,0.14,0.618,0.104,0,0,0.072 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.036 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.036 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.036 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0.036 -1,0.804,0.804,0,0.167,0,0,0,0.77,0.304,0.427,0,0.252 -1,0.946,0.946,0,1,0,0,0,0.785,0.409,0.768,0,0.252 -1,0.919,0.919,0,0.15,0,0,0,0.77,0.573,0.31,0,0.072 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.258 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.374 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0159,0,0,0.0704 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0.211,0,0.166 -1,0.433,0.433,0.883,0.917,0,0,0,0.631,0.078,0.59,0,0.036 -0.667,0.318,0.318,1,0.667,0,0,0.14,0.618,0.069,0,0,0.036 -0.667,0.321,0.321,1,0,0,0,0.14,0.618,0.0807,0,0,0.036 -0.667,0.312,0.312,1,0,0,0,0.14,0.618,0.0898,0,0,0.18 -0.333,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0.036 -0.333,0.171,0.171,0.567,0,0,0,0.281,0.59,0.06,0,0,0.18 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.144 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.036 -0.667,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0 -1,0.425,0.425,0.383,0,0,0,0.14,0.67,0.17,0,0,0.036 -1,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.108 -1,0.647,0.647,1,0,0,0,0.14,0.711,0.278,0,0,0.036 -1,0.629,0.629,1,0,0,0,0.14,0.7,0.387,0,0,0.072 -1,0.515,0.515,1,0,0,0,0.14,0.68,0.477,0,0,0.18 -1,0.222,0.222,0.817,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0164,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.883,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,1,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.585,0.0366,0,0,0.072 -1,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0.0686 -0.667,0.321,0.321,1,0,0,0,0.14,0.618,0.0807,0,0,0.151 -1,0.443,0.443,0.7,0,0,0,0,0.647,0.127,0,0,0.036 -0.667,0.175,0.175,1,0,0,0,0.281,0.59,0.0574,0,0,0.118 -0.667,0.292,0.292,1,0,0,0,0.14,0.618,0.104,0,0,0.191 -0.667,0.289,0.289,1,0,0,0,0.14,0.618,0.117,0,0,0.186 -0.667,0.297,0.297,1,0,0,0,0.14,0.618,0.124,0,0,0.036 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,1,0,0,0,0.281,0.616,0.0931,0,0,0.18 -0.667,0.553,0.553,0.25,0,0,0,0.14,0.7,0.208,0,0,0.036 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.432 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.036 -1,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.186 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.266 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0.633,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,1,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,1,0,0,0,0.281,0.59,0.0424,0,0,0.258 -0.667,0.321,0.321,1,0.417,0,0,0.14,0.618,0.0807,0.778,0.215,0.318 -0.667,0.312,0.312,1,1,0.933,0.5,0.14,0.618,0.0898,0.337,0.552,0.219 -0.333,0.175,0.175,0.567,0.167,0,0.533,0.281,0.59,0.0574,0,0.425,0.18 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0.316,0.036 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.248,0.072 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0.345,0.18 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0.857,0.036 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.229 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.397 -0.667,0.629,0.629,0,0.417,0,0,0.14,0.7,0.387,0.534,0,0.072 -0.667,0.515,0.515,0,0.9,0,0,0.14,0.68,0.477,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.123 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0.175 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.036 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.152,0,0,0.18 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.263 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.143 -0.667,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0.108 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.221 -0.667,0.237,0.237,0.517,0,0,0,0.281,0.616,0.146,0,0,0.203 -1,0.804,0.804,1,0,0,0,0,0.77,0.415,0,0,0 -0.667,0.647,0.647,0.4,0,0,0,0.14,0.711,0.332,0,0,0 -1,0.919,0.919,0,0.3,0,0,0,0.77,0.643,0.58,0,0.036 -1,0.747,0.747,0,1,0,0,0,0.739,0.756,0,0,0.36 -1,0.566,0.566,0,0.283,0,0,0,0.677,0.698,0,0,0.0939 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.228 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.134 -1,0.0816,0.0816,0.267,0,0,0,0.281,0.559,0.0212,0,0,0.129 -1,0.147,0.147,1,0.05,0,0,0.281,0.569,0.0277,0.453,0,0 -1,0.177,0.177,1,1,0,0,0.281,0.585,0.04,0.574,0.345,0.295 -1,0.318,0.318,0.2,0.267,0.933,0.633,0.14,0.618,0.0983,0,0.222,0 -0.667,0.185,0.185,0,0,0,0.65,0.281,0.59,0.0732,0,0,0.072 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.216 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.036 -0,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.301,0.301,1,0,0,0,0.281,0.631,0.15,0,0,0.072 -0.667,0.647,0.647,0.65,0,0,0,0.14,0.711,0.332,0,0,0.216 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.71 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0.121 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.223 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.395 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.216 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.16 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.177,0.177,1,0,0,0,0.281,0.585,0.0366,0,0.288,0 -0.667,0.184,0.184,1,0,0.933,0.75,0.281,0.59,0.0424,0,0.25,0 -0.667,0.185,0.185,1,0,0,0.0167,0.281,0.59,0.0483,0,0,0.305 -0.667,0.181,0.181,1,0,0,0,0.281,0.59,0.0528,0,0,0.198 -1,0.3,0.3,0.817,0,0,0,0.14,0.618,0.0989,0,0,0.413 -1,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.36 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.108 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.036 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0.036 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0,0,0 -0.333,0.301,0.301,0.133,0,0,0,0.281,0.631,0.112,0,0,0.072 -0.333,0.348,0.348,0.683,0,0,0,0.281,0.636,0.147,0,0,0.036 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.108 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.474 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.598 -1,0.493,0.493,0,0,0,0,0,0.616,0.405,0,0,0.244 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.505 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0534,0,0,0.12 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0921 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0.121 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.232 -1,0.147,0.147,0.883,0,0,0,0.281,0.569,0.0294,0,0,0.108 -1,0.305,0.305,1,0,0,0,0.14,0.608,0.0573,0.119,0,0.119 -0.667,0.184,0.184,0.583,0.667,0,0,0.281,0.59,0.0424,0.607,0,0.072 -0.667,0.185,0.185,0,0.65,0,0,0.281,0.59,0.0483,0.395,0,0.036 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.252 -0.667,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.072 -0.667,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0.319,0.036 -0.667,0.173,0.173,0,0,0.933,0.75,0.281,0.59,0.0697,0,0.591,0.036 -0.667,0.194,0.194,0,0,0,1,0.281,0.6,0.0769,0,0.463,0.538 -1,0.612,0.612,0,0,0,0.567,0,0.724,0.248,0,0,0.072 -1,0.804,0.804,0.817,0,0,0,0,0.77,0.304,0,0,0.072 -1,0.946,0.946,0,0.167,0,0,0,0.785,0.409,0.483,0,0 -1,0.919,0.919,0,1,0,0,0,0.77,0.573,0.613,0,0.216 -1,0.515,0.515,0,0.15,0,0,0.14,0.68,0.477,0.439,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.195 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.0921 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0.16 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0.072 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.36 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.0933 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.036 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.036 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.667,0.108 -0.333,0.194,0.194,0,0,0.933,0.25,0.281,0.6,0.0769,0,0.608,0.072 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0.681,0.036 -0.667,0.553,0.553,0.133,0,0,0,0.14,0.7,0.208,0,0.311,0.216 -0.667,0.647,0.647,1,0,0,0,0.14,0.711,0.278,0,0.612,0.036 -1,0.919,0.919,1,0.417,0,0,0,0.77,0.573,0.586,0.371,0 -1,0.747,0.747,0.333,0.633,0,0,0,0.739,0.708,0.318,0.422,0.108 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0.072 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.106 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0982 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0.273 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0.243,0,0.348 -0.667,0.312,0.312,0,0.783,0,0,0.14,0.618,0.0898,0.448,0,0.257 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.0574,0,0,0.238 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.154 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.036 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.667,0.338,0.338,0.383,0,0,0,0.14,0.639,0.138,0,0,0 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.144 -1,0.804,0.804,0.533,0,0,0,0,0.77,0.304,0,0,0.216 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.154 -1,0.919,0.919,0,0.167,0,0,0,0.77,0.573,0.456,0,0.191 -1,0.747,0.747,0,1,0,0,0,0.739,0.708,0.299,0,0.036 -1,0.566,0.566,0,0.15,0,0,0,0.677,0.671,0,0,0.072 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.114 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.043,0,0,0.147 -1,0.433,0.433,0,0,0,0,0,0.631,0.078,0,0,0.036 -1,0.452,0.452,0,0,0,0,0,0.647,0.0955,0,0,0.144 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.446 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.108 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.18 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.06,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,0.383,0,0,0,0.281,0.6,0.0769,0,0,0.036 -0.667,0.425,0.425,0.283,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0 -1,0.946,0.946,0.5,0,0,0,0,0.785,0.409,0,0,0.18 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0.18 -1,0.747,0.747,0,0.167,0,0,0,0.739,0.708,0.466,0,0 -1,0.394,0.394,0,1,0,0,0.14,0.639,0.452,0,0,0.036 -1,0.345,0.345,0,0.15,0,0,0.14,0.598,0.276,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.072 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0.072 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0.517,0,0,0,0.281,0.559,0.0173,0,0,0.036 -1,0.051,0.051,1,0,0,0,0.281,0.559,0.0192,0,0,0.195 -1,0.114,0.114,1,0,0,0,0.14,0.557,0.0242,0,0,0.252 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.0372,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.608,0.0619,0,0,0.144 -0,0.0495,0.0495,0.683,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.252 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0,0.0495,0.0495,0.533,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0.108 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.274,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.18 -1,0.946,0.946,0,0,0,0,0,0.785,0.489,0,0,0.432 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.18 -1,0.747,0.747,0,0,0,0,0,0.739,0.756,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.101 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.13 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.14,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.117 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0277,0,0,0.36 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.04,0,0,0.391 -0.667,0.318,0.318,0,0.3,0,0,0.14,0.618,0.0983,0.54,0,0.106 -0.667,0.321,0.321,0,1,0,0,0.14,0.618,0.128,0.695,0,0.108 -0.333,0.181,0.181,0,0.0167,0,0,0.281,0.59,0.0849,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.59,0.092,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0.108 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.128,0,0,0 -0.333,0.194,0.194,0.767,0,0,0,0.281,0.6,0.139,0,0,0.144 -0.667,0.425,0.425,1,0.05,0,0,0.14,0.67,0.274,0.41,0,0.036 -0.667,0.553,0.553,1,1,0,0,0.14,0.7,0.283,0.511,0,0.108 -0.667,0.647,0.647,1,0.267,0,0,0.14,0.711,0.332,0.586,0,0.288 -1,0.919,0.919,1,0,0,0,0,0.77,0.643,0,0,0.185 -1,0.747,0.747,0.433,0,0,0,0,0.739,0.756,0,0,0.302 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.471,0,0,0.108 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.159,0,0,0.072 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0799 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.121 -0.667,0.0495,0.0495,0.883,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.318,0.318,1,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0.583,0,0,0,0.14,0.618,0.0807,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.216 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.252 -1,0.413,0.413,0,0,0,0,0,0.647,0.148,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.18 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.108 -0.667,0.338,0.338,0.133,0,0,0,0.14,0.639,0.138,0,0,0.108 -0.667,0.425,0.425,0.683,0,0,0,0.14,0.67,0.17,0,0,0.072 -0.333,0.301,0.301,0,0,0,0,0.281,0.631,0.112,0,0,0.213 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.144 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.036 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.389 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.126 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.107 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.313 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0346,0,0,0.036 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0.633,0,0,0,0.421,0.562,0.0159,0,0,0.418 -1,0.245,0.245,1,0,0,0,0.14,0.577,0.043,0,0,0.0789 -0.667,0.177,0.177,0.283,0,0,0,0.281,0.585,0.0366,0,0,0 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0,0.036 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.036 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.072 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.108 -1,0.421,0.421,0,0,0,0,0,0.647,0.177,0,0,0.072 -0.667,0.338,0.338,0,0,0,0,0.14,0.639,0.138,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0.036 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.072 -1,0.946,0.946,0,0,0,0,0,0.785,0.409,0,0,0.108 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.18 -1,0.282,0.282,0,0,0,0,0.281,0.621,0.246,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.817,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0.337,0,0.144 -0.667,0.312,0.312,0,0.917,0,0,0.14,0.618,0.0898,0.433,0,0.072 -0.667,0.3,0.3,0,0.667,0,0,0.14,0.618,0.0989,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.072 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0 -1,0.482,0.482,0,0,0,0,0,0.677,0.199,0,0,0 -1,0.612,0.612,0,0,0,0,0,0.724,0.248,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.208,0,0,0.144 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.108 -0.667,0.629,0.629,0,0,0,0,0.14,0.7,0.387,0,0,0 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.477,0,0,0.072 -0.667,0.222,0.222,0,0,0,0,0.281,0.6,0.234,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.216 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0.883,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0.75,0,0,0,0.281,0.585,0.0366,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.59,0.0424,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0.224,0.388 -0.667,0.3,0.3,0,0.167,0.933,0.75,0.14,0.618,0.0989,0.397,0,0.0522 -0.667,0.292,0.292,0,1,0,0.0167,0.14,0.618,0.104,0.527,0,0.078 -0.667,0.289,0.289,0,0.15,0,0,0.14,0.618,0.117,0.393,0,0.141 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.18 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.206 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.434 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.336 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.442 -1,0.919,0.919,0,0.417,0,0,0,0.77,0.573,0.536,0,0.459 -1,0.747,0.747,0,0.9,0,0,0,0.739,0.708,0.684,0,0.419 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0.287,0,0.134 -0.667,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0.275 -1,0.183,0.183,0,0,0,0,0.14,0.567,0.122,0,0,0.328 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.608,0.0573,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.618,0.069,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.618,0.0807,0,0,0.072 -0.667,0.312,0.312,0,0,0,0,0.14,0.618,0.0898,0,0.045,0.0767 -0.333,0.175,0.175,0,0,0.933,0.5,0.281,0.59,0.0574,0,0,0.291 -0.667,0.292,0.292,0,0,0,1,0.14,0.618,0.104,0,0,0.036 -0,0.0495,0.0495,0,0,0,0.567,0.421,0.562,0.0159,0,0,0.144 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.288 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.072 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.0931,0.132,0,0.108 -0.667,0.553,0.553,0,0.667,0,0,0.14,0.7,0.208,0.577,0,0.036 -1,0.946,0.946,0,0.65,0,0,0,0.785,0.409,0.586,0,0.036 -0.667,0.629,0.629,0.383,0,0,0,0.14,0.7,0.387,0.433,0,0 -1,0.747,0.747,1,0.167,0,0,0,0.739,0.708,0.475,0,0.072 -1,0.566,0.566,1,1,0,0,0,0.677,0.671,0.119,0,0 -1,0.345,0.345,0.0833,0.15,0,0,0.14,0.598,0.276,0,0,0.183 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.559,0.0407,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.228 -1,0.177,0.177,0.267,0,0,0,0.281,0.585,0.04,0,0,0.22 -1,0.184,0.184,1,0,0,0,0.281,0.59,0.0582,0,0,0.118 -1,0.321,0.321,1,0,0,0,0.14,0.618,0.128,0,0,0.176 -1,0.312,0.312,0.2,0,0,0,0.14,0.618,0.152,0,0,0.0899 -1,0.3,0.3,0,0,0,0,0.14,0.618,0.166,0,0.174,0.446 -1,0.292,0.292,0,0,0.933,0.633,0.14,0.618,0.178,0,0.381,0.243 -1,0.289,0.289,0,0,0,0.133,0.14,0.618,0.209,0,0.134,0.63 -1,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0.308 -1,0.338,0.338,0,0,0,0,0.14,0.639,0.261,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.036 -0.667,0.301,0.301,0.517,0,0,0,0.281,0.631,0.15,0,0,0.108 -0.667,0.647,0.647,1,0,0,0,0.14,0.711,0.332,0,0,0.108 -1,0.919,0.919,1,0,0,0,0,0.77,0.643,0,0,0.036 -1,0.747,0.747,1,0,0,0,0,0.739,0.756,0,0,0.366 -1,0.394,0.394,1,0,0,0,0.14,0.639,0.471,0,0,0.495 -1,0.345,0.345,0.683,0,0,0,0.14,0.598,0.3,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.559,0.0264,0,0,0.312 -1,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0199,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.127 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0212,0,0,0.579 -1,0.245,0.245,0,0,0,0,0.14,0.577,0.0372,0,0,0.315 -1,0.305,0.305,0,0,0,0,0.14,0.608,0.0619,0,0,0.114 -1,0.318,0.318,0,0,0,0,0.14,0.618,0.0983,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0732,0,0,0.144 -0.667,0.181,0.181,0,0,0,0,0.281,0.59,0.0849,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -0.333,0.171,0.171,0,0,0,0,0.281,0.59,0.0979,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.113,0,0,0.324 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.237,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.139,0,0,0.108 -0.333,0.237,0.237,0,0,0,0,0.281,0.616,0.146,0,0,0.18 -0.667,0.553,0.553,0,0,0,0,0.14,0.7,0.283,0,0,0.072 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.332,0,0,0.036 -1,0.919,0.919,0,0,0,0,0,0.77,0.643,0,0,0.072 -0.667,0.515,0.515,0,0,0,0,0.14,0.68,0.51,0,0,0.072 -1,0.566,0.566,0,0,0,0,0,0.677,0.698,0,0,0.072 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.3,0,0,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.079,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0,0 -0.667,0.0495,0.0495,0.383,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.321,0.321,0.15,0,0,0,0.14,0.618,0.0807,0,0.0886,0.396 -0.667,0.312,0.312,0,0,0.533,0.25,0.14,0.618,0.0898,0,0.219,0.22 -0.667,0.3,0.3,0,0,0.4,1,0.14,0.618,0.0989,0,0.255,0 -0.667,0.292,0.292,0,0,0,0.817,0.14,0.618,0.104,0,0.647,0.036 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0.402,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0,0.036 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.252 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0.144 -1,0.804,0.804,0,0,0,0,0,0.77,0.304,0,0,0.18 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.036 -1,0.919,0.919,0,0.167,0,0,0,0.77,0.573,0.433,0,0.072 -1,0.747,0.747,0,1,0,0,0,0.739,0.708,0.119,0,0.072 -1,0.566,0.566,0,0.15,0,0,0,0.677,0.671,0,0,0.18 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.051,0.051,0,0,0,0,0.281,0.559,0.0177,0,0,0 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0.374,0.036 -0.667,0.312,0.312,0,0,0.933,0.75,0.14,0.618,0.0898,0,0,0 -0.667,0.3,0.3,0,0,0,0.8,0.14,0.618,0.0989,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.324 -0.333,0.173,0.173,0,0,0,0,0.281,0.59,0.0697,0,0,0.072 -0.333,0.194,0.194,0,0,0,0,0.281,0.6,0.0769,0,0,0.036 -0.667,0.425,0.425,0,0,0,0,0.14,0.67,0.17,0,0,0 -1,0.804,0.804,0.633,0,0,0,0,0.77,0.304,0,0,0 -0.667,0.647,0.647,1,0,0,0,0.14,0.711,0.278,0,0,0.18 -0.667,0.629,0.629,1,0,0,0,0.14,0.7,0.387,0,0,0.036 -0.333,0.282,0.282,1,0,0,0,0.281,0.621,0.246,0,0,0.141 -0.667,0.222,0.222,1,0,0,0,0.281,0.6,0.234,0,0,0.0982 -0.667,0.0495,0.0495,0.567,0,0,0,0.421,0.562,0.0159,0,0,0.18 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.172 -0.667,0.0495,0.0495,0,0,0,0,0.281,0.559,0.0151,0,0,0.138 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0942 -1,0.0816,0.0816,0,0,0,0,0.281,0.559,0.0223,0,0,0.131 -0.667,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.585,0.0366,0,0.00844,0.158 -0.667,0.318,0.318,0,0,0.533,0.25,0.14,0.618,0.069,0,0.539,0.428 -0.667,0.321,0.321,0,0,0.4,1,0.14,0.618,0.0807,0,0.449,0.104 -0.667,0.312,0.312,0,0,0,0.817,0.14,0.618,0.0898,0,0.304,0.493 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0.368,0.195 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.59,0.0665,0,0,0.108 -0.333,0.173,0.173,0.383,0,0,0,0.281,0.59,0.0697,0,0,0 -0.333,0.194,0.194,1,0,0,0,0.281,0.6,0.0769,0,0,0 -0.333,0.237,0.237,0.917,0,0,0,0.281,0.616,0.0931,0,0,0.108 -0.667,0.553,0.553,1,0,0,0,0.14,0.7,0.208,0,0,0.18 -1,0.946,0.946,1,0,0,0,0,0.785,0.409,0,0,0.072 -1,0.919,0.919,1,0,0,0,0,0.77,0.573,0,0,0.0823 -1,0.747,0.747,1,0,0,0,0,0.739,0.708,0,0,0.364 -1,0.566,0.566,0.817,0,0,0,0,0.677,0.671,0,0,0.072 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.225 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.171 -1,0.177,0.177,0.383,0,0,0,0.281,0.585,0.0366,0,0,0.432 -1,0.452,0.452,0.433,0,0,0,0,0.647,0.0955,0.379,0.432,0 -0.667,0.321,0.321,0,0.917,0.933,0.75,0.14,0.618,0.0807,0.498,0.546,0 -0.667,0.312,0.312,0,0.667,0,0.0167,0.14,0.618,0.0898,0,0.43,0 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0.522,0.036 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0.54,0 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0.568,0.036 -0.667,0.297,0.297,0,0,0,0,0.14,0.618,0.124,0,0.361,0.072 -0.667,0.338,0.338,0.383,0,0,0,0.14,0.639,0.138,0,0.284,0.216 -1,0.612,0.612,1,0,0,0,0,0.724,0.248,0,0,0.072 -1,0.804,0.804,1,0,0,0,0,0.77,0.304,0,0,0.072 -0.667,0.647,0.647,0.0833,0,0,0,0.14,0.711,0.278,0,0,0.072 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.108 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0 -1,0.566,0.566,0,0,0,0,0,0.677,0.671,0,0,0.473 -1,0.345,0.345,0,0,0,0,0.14,0.598,0.276,0,0,0.159 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.557,0.0534,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.304 -1,0.147,0.147,0,0,0,0,0.281,0.569,0.0294,0,0,0 -1,0.305,0.305,0,0.417,0,0,0.14,0.608,0.0573,0.707,0,0 -0.667,0.184,0.184,0,0.9,0,0,0.281,0.59,0.0424,0.349,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.59,0.0483,0,0,0.108 -0.333,0.181,0.181,0,0,0,0,0.281,0.59,0.0528,0,0,0.036 -0.667,0.3,0.3,0,0,0,0,0.14,0.618,0.0989,0,0,0.108 -0.667,0.292,0.292,0,0,0,0,0.14,0.618,0.104,0,0,0.252 -0.667,0.289,0.289,0,0,0,0,0.14,0.618,0.117,0,0,0.144 -0.667,0.297,0.297,0.383,0,0,0,0.14,0.618,0.124,0,0,0.252 -0.667,0.338,0.338,1,0,0,0,0.14,0.639,0.138,0,0,0 -0.667,0.425,0.425,1,0,0,0,0.14,0.67,0.17,0,0,0 -0.667,0.553,0.553,0.0833,0,0,0,0.14,0.7,0.208,0,0,0.144 -0.667,0.647,0.647,0,0,0,0,0.14,0.711,0.278,0,0,0.18 -1,0.919,0.919,0,0,0,0,0,0.77,0.573,0,0,0.423 -1,0.747,0.747,0,0,0,0,0,0.739,0.708,0,0,0.362 -1,0.394,0.394,0,0,0,0,0.14,0.639,0.452,0,0,0 -1,0.197,0.197,0,0,0,0,0.281,0.58,0.146,0,0,0 -1,0.116,0.116,0,0,0,0,0.281,0.564,0.0691,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.551 -1,0.47,0.47,0,0,0,0,0,0.818,0.183,0,0,0.325 -1,0.481,0.481,0.767,0,0,0,0,0.818,0.242,0,0,0.399 -1,0.468,0.468,1,0,0,0,0,0.818,0.289,0,0,0.346 -0.667,0.316,0.316,0.767,0,0,0,0.14,0.732,0.217,0,0,0.351 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.0735 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.316 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0.34,0.036 -0.333,0.204,0.204,0,0,0.933,0.633,0.281,0.66,0.18,0,0.43,0.108 -0.333,0.253,0.253,0,0,0,0.467,0.281,0.679,0.189,0,0.468,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0.739,0.252 -1,1,1,0,0,0,0,0,0.993,0.647,0.151,0.0668,0.144 -1,0.933,0.933,0,0.8,0,0,0,0.973,0.851,0.722,0,0.036 -1,0.504,0.504,0,0.567,0,0,0.14,0.81,0.673,0,0,0.036 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.32,0,0,0.288 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.206,0,0,0.126 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.181,0.181,0.767,0,0,0,0.281,0.64,0.049,0,0,0 -0.667,0.19,0.19,0.333,0,0,0,0.281,0.647,0.0731,0,0,0.138 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.328,0.328,0.417,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.036 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.319 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.144 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.072 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.28 -0.667,0.596,0.596,0.267,0,0,0,0.14,0.836,0.372,0,0,0.405 -1,1,1,0.283,0,0,0,0,0.993,0.647,0,0,0.45 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0,0 -1,0.732,0.732,0,0.3,0,0,0,0.934,1,0.521,0,0.108 -1,0.554,0.554,0,1,0,0,0,0.857,0.923,0.801,0,0 -1,0.342,0.342,0,0.0667,0,0,0.14,0.706,0.394,0.318,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0433 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.449 -1,0.181,0.181,0.267,0,0,0,0.281,0.64,0.0449,0,0,0.147 -1,0.33,0.33,0.567,0,0,0,0.14,0.732,0.0895,0,0.177,0.153 -0.667,0.193,0.193,0.0167,0,0.933,0.267,0.281,0.647,0.0604,0,0.105,0.216 -0.667,0.189,0.189,1,0,0,0,0.281,0.647,0.0664,0.188,0,0.036 -0.667,0.183,0.183,0.967,0.8,0,0,0.281,0.647,0.0724,0.839,0,0.417 -0.667,0.307,0.307,1,0.833,0,0,0.14,0.732,0.136,0.234,0,0.215 -0.667,0.305,0.305,1,0,0,0,0.14,0.732,0.153,0,0,0.358 -0.667,0.314,0.314,1,0,0,0,0.14,0.732,0.162,0,0,0.168 -0.667,0.359,0.359,1,0,0,0,0.14,0.758,0.181,0,0,0.146 -0.667,0.457,0.457,1,0,0,0,0.14,0.797,0.224,0,0,0.312 -0.333,0.323,0.323,0.333,0,0,0,0.281,0.699,0.145,0,0,0.288 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.216 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.178 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.036 -0.667,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.072 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.153 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.253 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0,0 -1,0.0495,0.0495,0.267,0,0,0,0.281,0.608,0.0166,0,0,0 -1,0.0513,0.0513,1,0,0,0,0.281,0.608,0.02,0,0,0.072 -1,0.0829,0.0829,0.7,0,0,0,0.281,0.608,0.026,0,0,0.172 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0551,0,0,0.171 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.3 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.036 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.108 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.144 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.333,0.178,0.178,0,0.55,0,0,0.281,0.647,0.0759,0.741,0,0 -0.667,0.305,0.305,0,0.817,0,0,0.14,0.732,0.153,0.0824,0,0.072 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.108 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0 -0.333,0.253,0.253,0.267,0,0,0,0.281,0.679,0.12,0,0,0.072 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,0.417,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0.55,0,0,0,0.973,0.758,0.642,0,0.288 -1,0.732,0.732,0,1,0,0,0,0.934,0.936,0.672,0,0.036 -1,0.218,0.218,0,0.0833,0,0,0.281,0.66,0.306,0.789,0,0.072 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.419 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.364 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.245 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.0625 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.142 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.072 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.108 -0.667,0.316,0.316,0,0.3,0,0,0.14,0.732,0.129,0.573,0,0.252 -0.667,0.307,0.307,0.767,1,0,0,0.14,0.732,0.136,0.4,0,0.036 -0.667,0.305,0.305,1,0.0667,0,0,0.14,0.732,0.153,0,0,0.036 -0.667,0.314,0.314,0.767,0,0,0,0.14,0.732,0.162,0,0,0.072 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.036 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.036 -1,1,1,0.767,0,0,0,0,0.993,0.541,0.163,0,0.108 -1,0.933,0.933,1,0.8,0,0,0,0.973,0.758,0.621,0,0.252 -1,0.732,0.732,1,0.567,0,0,0,0.934,0.936,0,0,0 -1,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.036 -1,0.342,0.342,1,0,0,0,0.14,0.706,0.363,0,0,0.072 -1,0.183,0.183,0.583,0,0,0,0.14,0.667,0.16,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.166 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0.505,0 -0.667,0.181,0.181,0,0,0.933,0.633,0.281,0.64,0.0449,0,0.446,0 -0.667,0.19,0.19,0.767,0,0,0.467,0.281,0.647,0.0527,0,0.439,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0.783,0 -0.667,0.328,0.328,1,0,0,0,0.14,0.732,0.117,0,0.588,0 -0.667,0.316,0.316,1,0,0,0,0.14,0.732,0.129,0,0.613,0.143 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0.599,0.15 -1,0.432,0.432,0.583,0,0,0,0,0.818,0.222,0,0.442,0.226 -1,0.446,0.446,0,0,0,0,0,0.818,0.235,0,0.547,0.445 -1,0.513,0.513,0.267,0,0,0,0,0.857,0.263,0,0.252,0.321 -1,0.661,0.661,1,0,0,0,0,0.915,0.327,0,0.266,0.036 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0.368,0.036 -1,1,1,0.267,0,0,0,0,0.993,0.541,0,0,0.108 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.18 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.393 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.188 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.0893 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.409 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.166 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.168 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.219 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.108 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.377 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.074,0,0,0.41 -1,0.47,0.47,0.767,0,0,0,0,0.818,0.126,0,0,0.122 -1,0.337,0.337,0.0667,0,0,0,0.14,0.732,0.105,0,0,0.333 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.104 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.072 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.108 -0.333,0.177,0.177,0.267,0,0,0,0.281,0.647,0.0845,0,0,0.252 -0.333,0.182,0.182,0.567,0,0,0,0.281,0.647,0.0888,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.216 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.12,0,0,0 -0.333,0.323,0.323,0,0,0,0,0.281,0.699,0.145,0,0,0.216 -0.333,0.366,0.366,0,0,0,0,0.281,0.705,0.191,0,0,0.18 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.308 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.072 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.366 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.284 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.369 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0816,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -1,0.251,0.251,0,0,0,0,0.14,0.68,0.0473,0,0,0.173 -1,0.313,0.313,0,0,0,0,0.14,0.719,0.0799,0,0,0.779 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0.308 -1,0.337,0.337,0,0,0,0,0.14,0.732,0.168,0,0,0.123 -1,0.328,0.328,0.267,0,0,0,0.14,0.732,0.198,0,0,0.556 -0.667,0.316,0.316,1,0,0,0,0.14,0.732,0.217,0,0,0.41 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.233,0,0,0.602 -0.333,0.177,0.177,0.267,0,0,0,0.281,0.647,0.146,0,0,0.189 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.036 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.036 -0.667,0.457,0.457,0.517,0,0,0,0.14,0.797,0.36,0,0,0.144 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.288 -1,0.683,0.683,0.167,0,0,0,0.14,0.849,0.437,0,0,0.036 -1,0.933,0.933,0.517,0,0,0,0,0.973,0.851,0,0,0.108 -1,0.732,0.732,1,0.55,0,0,0,0.934,1,0.638,0,0.072 -1,0.554,0.554,1,0.533,0,0,0,0.857,0.923,0.745,0,0.036 -0.667,0.342,0.342,1,0,0,0,0.14,0.706,0.394,0.213,0,0.227 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0.036 -1,0.0495,0.0495,0.833,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.0215,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.0241,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,1,0,0,0,0.281,0.647,0.0731,0,0,0.216 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0181,0,0,0.072 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.233,0,0,0.108 -0.333,0.177,0.177,0.0833,0,0,0,0.281,0.647,0.146,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.403 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.372,0,0,0.44 -0.667,0.683,0.683,0.55,0.05,0,0,0.14,0.849,0.437,0.363,0.117,0.18 -0.667,0.638,0.638,0,1,0.933,0.383,0.14,0.836,0.573,0.212,0.388,0.241 -1,0.732,0.732,0,0.317,0,1,0,0.934,1,0,0,0 -1,0.554,0.554,0,0,0,1,0,0.857,0.923,0,0,0.036 -1,0.342,0.342,0,0,0,0.383,0.14,0.706,0.394,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.144 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.135 -1,0.313,0.313,0.267,0,0,0,0.14,0.719,0.074,0,0,0.127 -0.667,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0 -0.333,0.0495,0.0495,0.417,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.252 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0724,0,0,0.288 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.216 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.036 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.108 -0.667,0.457,0.457,0.0167,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0.817,0,0,0,0.14,0.836,0.273,0,0,0.072 -1,1,1,0,0.05,0,0,0,0.993,0.541,0.41,0,0 -1,0.933,0.933,0,1,0,0,0,0.973,0.758,0.368,0,0 -1,0.732,0.732,0,0.317,0,0,0,0.934,0.936,0,0,0.108 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.144 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.364 -1,0.15,0.15,0.267,0,0,0,0.281,0.621,0.0355,0,0,0.298 -1,0.313,0.313,1,0,0,0,0.14,0.719,0.074,0,0,0 -0.333,0.0495,0.0495,0.7,0,0,0,0.421,0.562,0.0159,0,0,0.0951 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.354 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.0664,0,0,0.357 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.108 -0.333,0.0495,0.0495,0.0167,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.869,0.869,0.667,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.194 -1,0.554,0.554,0,0,0.0667,0.133,0,0.857,0.887,0,0.53,0 -1,0.488,0.488,0,0,0.867,0.967,0,0.779,0.536,0,0.246,0.252 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0.425,0.192 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.0729 -1,0.251,0.251,0,0,0.0667,0.133,0.14,0.68,0.0551,0,0.366,0 -0.667,0.313,0.313,0,0,0.867,0.967,0.14,0.719,0.074,0,0.648,0 -0.667,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0.506,0.144 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0.352,0.072 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0.674,0.036 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0.696,0.036 -1,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0.215,0 -1,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.18 -1,0.446,0.446,0,0,0.0667,0.133,0,0.818,0.235,0,0.491,0.036 -1,0.513,0.513,0,0,0.867,0.683,0,0.857,0.263,0,0.195,0.036 -1,0.661,0.661,0,0,0,0,0,0.915,0.327,0,0.451,0.072 -0.667,0.596,0.596,0.0167,0,0,0,0.14,0.836,0.273,0,0.332,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.216 -1,0.933,0.933,0.95,0,0,0,0,0.973,0.758,0,0,0.153 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.208 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.217 -1,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0.0924 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0893 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.248 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.036 -0.667,0.189,0.189,0,0.55,0,0,0.281,0.647,0.0664,0.575,0,0 -0.667,0.183,0.183,0,1,0,0,0.281,0.647,0.0724,0,0,0 -0.667,0.307,0.307,0.0167,0.0833,0,0,0.14,0.732,0.136,0,0,0.246 -0.333,0.177,0.177,0.817,0,0,0,0.281,0.647,0.0845,0,0,0.144 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.036 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.144 -0.667,0.457,0.457,0.767,0,0,0,0.14,0.797,0.224,0,0,0.148 -0.667,0.596,0.596,0.917,0,0,0,0.14,0.836,0.273,0,0,0.109 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.3 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.15 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.257 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.182 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.144 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.036 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.036 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.338 -1,0.444,0.444,0.767,0,0,0,0,0.798,0.103,0,0,0.414 -0.667,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0.017 -0.667,0.337,0.337,0.767,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.328,0.328,0.767,0,0,0,0.14,0.732,0.117,0,0,0.036 -0.667,0.316,0.316,0.917,0,0,0,0.14,0.732,0.129,0,0,0.072 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.0759,0,0,0.072 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.39 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.187 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.0982,0,0,0.366 -0.333,0.253,0.253,0.0167,0,0,0,0.281,0.679,0.12,0,0,0.108 -0.333,0.323,0.323,0.533,0,0,0,0.281,0.699,0.145,0,0,0.54 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.036 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.163 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.294 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.662 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.207 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.142 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -0.333,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0.68 -0.333,0.19,0.19,0,0,0,0,0.281,0.647,0.0731,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.036 -0.333,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0.036 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.144 -0.333,0.204,0.204,0,0,0,0,0.281,0.66,0.18,0,0,0.108 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0,0.036 -0.333,0.323,0.323,0.267,0,0,0,0.281,0.699,0.195,0,0,0.252 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.437,0,0,0.18 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.573,0,0,0.252 -1,0.732,0.732,0.267,0,0,0,0,0.934,1,0,0,0.288 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.0869 -1,0.488,0.488,0,0.3,0,0,0,0.779,0.582,0.692,0,0.171 -1,0.183,0.183,0,1,0,0,0.14,0.667,0.183,0.341,0,0.144 -1,0.0743,0.0743,0,0.0667,0,0,0.281,0.608,0.0499,0,0,0.169 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.19,0.19,0,0.05,0,0,0.281,0.647,0.0731,0.358,0,0 -0.667,0.193,0.193,0,1,0,0,0.281,0.647,0.0928,0.234,0,0.344 -0.667,0.189,0.189,0,0.317,0,0,0.281,0.647,0.108,0,0,0.192 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.036 -0.667,0.178,0.178,0,0,0,0,0.281,0.647,0.125,0,0,0.144 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.146,0,0,0 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0.072 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0 -0,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0.181,0.072 -0.333,0.323,0.323,0,0,0.933,0.633,0.281,0.699,0.195,0,0.271,0.252 -0.333,0.366,0.366,0.767,0,0,0.467,0.281,0.705,0.228,0,0,0.072 -0.667,0.638,0.638,1,0,0,0,0.14,0.836,0.573,0,0,0.216 -0.667,0.504,0.504,0.767,0,0,0,0.14,0.81,0.673,0,0,0 -0.667,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.072 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0.226 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.0722 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0963 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.0895,0,0,0.54 -1,0.481,0.481,0,0,0,0,0,0.818,0.149,0,0,0.278 -1,0.468,0.468,0,0,0,0,0,0.818,0.168,0,0,0.254 -1,0.449,0.449,0.267,0,0,0,0,0.818,0.186,0,0,0.455 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0.072 -0.667,0.305,0.305,0.417,0,0,0,0.14,0.732,0.153,0,0,0.18 -0.667,0.314,0.314,0.0167,0,0,0,0.14,0.732,0.162,0,0,0.144 -0.667,0.359,0.359,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.333,0.253,0.253,0.95,0,0,0,0.281,0.679,0.12,0,0,0.432 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.036 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.144 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.216 -1,0.342,0.342,0,0,0.0667,0.133,0.14,0.706,0.363,0,0.61,0.036 -1,0.183,0.183,0,0,0.867,0.967,0.14,0.667,0.16,0,0.401,0 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0.705,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0.498,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0183,0,0.72,0 -1,0.0495,0.0495,0,0,0,0,0.281,0.608,0.0166,0,0.395,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.24 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.296 -0.667,0.33,0.33,0.267,0,0,0,0.14,0.732,0.0895,0,0,0.183 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.328,0.328,1,0,0,0,0.14,0.732,0.117,0,0,0.036 -0.667,0.316,0.316,0.267,0,0,0,0.14,0.732,0.129,0,0,0.18 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0.194,0 -1,0.513,0.513,0,0,0.933,0.633,0,0.857,0.263,0,0.421,0.036 -1,0.661,0.661,0,0,0,0.467,0,0.915,0.327,0,0.0816,0.18 -1,0.596,0.596,0.55,0,0,0,0.14,0.836,0.273,0,0,0.036 -0.667,0.683,0.683,0,0.55,0,0,0.14,0.849,0.366,0.816,0,0.144 -0.667,0.638,0.638,0,0.817,0,0,0.14,0.836,0.51,0.78,0,0.036 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0.278,0,0 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0,0.072 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.15,0.15,0.267,0,0,0,0.281,0.621,0.0355,0,0.0731,0.322 -1,0.444,0.444,1,0,0.933,0.383,0,0.798,0.103,0,0.239,0.111 -1,0.47,0.47,1,0,0,1,0,0.818,0.126,0.383,0,0.305 -1,0.481,0.481,1,0.8,0,0,0,0.818,0.149,0.276,0,0 -0.667,0.328,0.328,1,0.833,0,0,0.14,0.732,0.117,0,0,0.18 -0.667,0.316,0.316,1,0,0,0,0.14,0.732,0.129,0,0,0.036 -0.667,0.307,0.307,0.0833,0,0,0,0.14,0.732,0.136,0,0,0.324 -0.667,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.108 -0.667,0.182,0.182,0.267,0,0,0,0.281,0.647,0.0888,0,0,0 -0.667,0.359,0.359,1,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0.7,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0.267,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,1,0,0,0,0.14,0.849,0.366,0,0,0.148 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.697 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.697 -1,0.386,0.386,1,0,0,0,0.14,0.758,0.596,0,0,0.658 -1,0.196,0.196,1,0,0,0,0.281,0.634,0.189,0,0,0.072 -1,0.0495,0.0495,0.0833,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.137 -1,0.0829,0.0829,0.0167,0,0,0,0.281,0.608,0.026,0,0,0.111 -1,0.15,0.15,1,0,0,0,0.281,0.621,0.0355,0,0,0 -0.667,0.181,0.181,0.95,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0.59 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.196 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.286 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.471 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.381 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.374 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.072 -0.333,0.253,0.253,0.0167,0,0,0,0.281,0.679,0.12,0,0,0.036 -0.667,0.596,0.596,0.817,0.55,0,0,0.14,0.836,0.273,0.944,0,0.036 -0.667,0.683,0.683,0,1,0,0,0.14,0.849,0.366,0.64,0,0.216 -0.667,0.638,0.638,0,0.0833,0,0,0.14,0.836,0.51,0.157,0,0.0616 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.291 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.072 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.16,0,0,0.18 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.072 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0513,0.0513,0,0,0,0,0.281,0.608,0.02,0,0,0 -0.667,0.0829,0.0829,0.767,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.0495,0.0495,1,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0.2,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,0.267,0,0,0,0.14,0.732,0.153,0,0,0.14 -0.667,0.314,0.314,0.283,0,0,0,0.14,0.732,0.162,0,0.129,0.126 -1,0.513,0.513,0,0,0.933,0.383,0,0.857,0.263,0,0.138,0.036 -1,0.661,0.661,0,0,0,0.433,0,0.915,0.327,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.072 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.072 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.216 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.108 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.363,0,0,0.036 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.031,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0327,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.049,0,0,0 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -1,0.481,0.481,0,0,0,0,0,0.818,0.242,0,0,0 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.183,0.183,0.267,0,0,0,0.281,0.647,0.118,0,0,0.108 -0.333,0.178,0.178,1,0,0,0,0.281,0.647,0.125,0,0,0.18 -0.333,0.177,0.177,0.417,0,0,0,0.281,0.647,0.146,0,0,0.036 -0.667,0.182,0.182,0,0,0,0,0.281,0.647,0.165,0,0,0 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.036 -1,0.661,0.661,0.267,0,0,0,0,0.915,0.531,0,0,0.108 -1,0.869,0.869,1,0,0,0,0,0.973,0.549,0,0,0.108 -1,1,1,0.7,0,0,0,0,0.993,0.647,0,0,0.108 -0.667,0.344,0.344,0,0,0,0,0.281,0.699,0.296,0,0,0 -0.667,0.504,0.504,0,0,0,0,0.14,0.81,0.673,0,0,0.036 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.108 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.167 -1,0.183,0.183,0,0,0,0,0.14,0.667,0.183,0,0,0.108 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0499,0,0,0.036 -1,0.0578,0.0578,0.767,0,0,0,0.281,0.608,0.031,0,0,0 -1,0.0495,0.0495,0.0667,0,0,0,0.281,0.608,0.0224,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.0495,0.0495,0.267,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.168,0,0,0 -0.667,0.328,0.328,0.417,0,0,0,0.14,0.732,0.198,0,0,0 -0.333,0.183,0.183,0.767,0,0,0,0.281,0.647,0.118,0,0,0 -0.333,0.178,0.178,0.917,0,0,0,0.281,0.647,0.125,0,0,0 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.274,0,0,0.108 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.312,0,0,0.036 -1,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0,0.127 -1,0.457,0.457,0,0,0,0,0.14,0.797,0.36,0,0,0.413 -1,0.869,0.869,0,0,0,0,0,0.973,0.549,0,0,0.407 -1,1,1,0.0167,0,0,0,0,0.993,0.647,0,0,0.072 -1,0.933,0.933,1,0,0,0,0,0.973,0.851,0,0,0.144 -1,0.732,0.732,1,0,0,0,0,0.934,1,0,0,0.216 -1,0.554,0.554,1,0.55,0,0,0,0.857,0.923,0.741,0,0.036 -1,0.196,0.196,1,0.817,0,0,0.281,0.634,0.206,0,0,0.108 -1,0.183,0.183,1,0,0,0,0.14,0.667,0.183,0,0,0.154 -1,0.0743,0.0743,0.333,0,0,0,0.281,0.608,0.0424,0,0,0.163 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.154 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.181 -1,0.053,0.053,0,0,0,0,0.14,0.654,0.0242,0,0,0 -0.667,0.0829,0.0829,0,0,0,0,0.281,0.608,0.026,0,0,0 -0.667,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -0.333,0.181,0.181,0.0167,0,0,0,0.281,0.64,0.0449,0,0,0.036 -0.333,0.19,0.19,1,0,0,0,0.281,0.647,0.0527,0,0,0.18 -0.667,0.337,0.337,0.667,0,0,0,0.14,0.732,0.105,0,0,0.252 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.036 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.036 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.036 -0.667,0.305,0.305,0,0,0,0,0.14,0.732,0.153,0,0,0.203 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.036 -0.333,0.204,0.204,0.517,0,0,0,0.281,0.66,0.0982,0,0,0.072 -1,0.661,0.661,1,0,0,0,0,0.915,0.327,0,0,0.18 -1,0.869,0.869,1,0,0,0,0,0.973,0.402,0,0,0 -1,1,1,1,0,0,0,0,0.993,0.541,0,0,0 -1,0.933,0.933,1,0,0,0,0,0.973,0.758,0,0,0.072 -1,0.732,0.732,0.833,0,0.0667,0.133,0,0.934,0.936,0,0.842,0 -1,0.554,0.554,0,0,0.867,1,0,0.857,0.887,0,0.647,0.144 -1,0.488,0.488,0,0,0,0.25,0,0.779,0.536,0,0,0.117 -0.667,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0,0 -0.667,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0.235 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.288 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.256 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.19,0.19,0.267,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.337,0.337,1,0,0,0,0.14,0.732,0.105,0,0,0.036 -0.667,0.328,0.328,1,0,0,0,0.14,0.732,0.117,0,0,0.072 -0.667,0.316,0.316,1,0,0,0,0.14,0.732,0.129,0,0,0.072 -0.667,0.307,0.307,1,0,0,0,0.14,0.732,0.136,0,0,0 -0.667,0.305,0.305,1,0,0,0,0.14,0.732,0.153,0,0,0 -0.667,0.314,0.314,0.0833,0,0,0,0.14,0.732,0.162,0,0,0.144 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.144 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0.154 -1,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0.501 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0.16 -1,0.933,0.933,0,0,0,0,0,0.973,0.758,0,0,0.323 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.072 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.596,0,0.203,0.294 -1,0.342,0.342,0,0,0.933,0.55,0.14,0.706,0.363,0,0.62,0.108 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.0879,0,0.485,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0.429,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.232 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0 -1,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.11 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0604,0,0,0.422 -0.667,0.328,0.328,0,0,0,0,0.14,0.732,0.117,0,0,0.49 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0.382 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0.107 -0.333,0.177,0.177,0,0.3,0,0,0.281,0.647,0.0845,0.596,0,0.108 -0.667,0.314,0.314,0,0.783,0,0,0.14,0.732,0.162,0.502,0,0.072 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0 -0.667,0.457,0.457,0.517,0,0,0,0.14,0.797,0.224,0.13,0,0.072 -1,0.869,0.869,1,0.8,0,0,0,0.973,0.402,0.699,0,0.072 -1,1,1,0.45,0.567,0,0,0,0.993,0.541,0,0,0.036 -1,0.933,0.933,0.0167,0,0,0,0,0.973,0.758,0,0,0.216 -1,0.732,0.732,1,0,0,0,0,0.934,0.936,0,0,0.036 -1,0.386,0.386,0.95,0,0,0,0.14,0.758,0.596,0,0,0 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.181,0.181,0.0167,0,0,0,0.281,0.64,0.0449,0,0,0 -1,0.33,0.33,1,0,0,0,0.14,0.732,0.0895,0,0,0.168 -1,0.481,0.481,1,0,0,0,0,0.818,0.149,0,0,0.225 -1,0.468,0.468,1,0,0,0,0,0.818,0.168,0,0,0.124 -1,0.449,0.449,1,0,0,0,0,0.818,0.186,0,0,0.282 -0.667,0.307,0.307,1,0.55,0,0,0.14,0.732,0.136,0.78,0.408,0.18 -0.667,0.305,0.305,0.333,1,0.933,0.55,0.14,0.732,0.153,0.197,0,0.18 -0.667,0.314,0.314,0,0.0833,0,0,0.14,0.732,0.162,0,0,0.252 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0.323,0.036 -1,0.661,0.661,0,0,0.933,0.633,0,0.915,0.327,0,0.357,0.036 -1,0.869,0.869,0,0,0,0.467,0,0.973,0.402,0,0,0.288 -1,1,1,0,0,0,0,0,0.993,0.541,0,0,0 -0.333,0.344,0.344,0,0,0,0,0.281,0.699,0.263,0,0,0.18 -1,0.732,0.732,0,0,0,0,0,0.934,0.936,0,0,0.072 -1,0.554,0.554,0,0,0,0,0,0.857,0.887,0,0,0.072 -1,0.488,0.488,0,0,0,0,0,0.779,0.536,0,0,0.108 -1,0.249,0.249,0,0,0,0,0,0.72,0.232,0,0,0.108 -1,0.099,0.099,0,0,0,0,0.14,0.654,0.0689,0,0,0.315 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0.075 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.236 -0.667,0.181,0.181,0,0,0,0,0.281,0.64,0.0449,0,0,0.139 -0.333,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -0.333,0.0495,0.0495,0.767,0,0,0,0.421,0.562,0.0159,0,0,0 -0.667,0.328,0.328,0.0667,0,0,0,0.14,0.732,0.117,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.732,0.129,0,0,0 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.136,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.647,0.0845,0,0,0.036 -0.333,0.182,0.182,0,0,0,0,0.281,0.647,0.0888,0,0,0.036 -0.333,0.204,0.204,0.0167,0,0,0,0.281,0.66,0.0982,0,0,0.072 -0.333,0.253,0.253,0.533,0,0,0,0.281,0.679,0.12,0,0,0 -1,0.869,0.869,0,0,0,0,0,0.973,0.402,0,0,0.18 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.216 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.425 -1,0.504,0.504,0,0,0,0,0.14,0.81,0.629,0,0,0.203 -1,0.218,0.218,0,0,0,0,0.281,0.66,0.306,0,0,0.434 -1,0.196,0.196,0,0,0,0,0.281,0.634,0.189,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.036 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -0.667,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.0796 -0.667,0.307,0.307,0,0,0,0,0.14,0.732,0.233,0.142,0,0 -0.667,0.305,0.305,0,0.8,0,0,0.14,0.732,0.274,0.808,0,0.169 -0.667,0.314,0.314,0,0.567,0,0,0.14,0.732,0.312,0.517,0,0.036 -1,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0,0.186,0.036 -1,0.457,0.457,0,0,0.933,0.55,0.14,0.797,0.36,0,0.762,0.072 -1,0.869,0.869,0.267,0,0,0,0,0.973,0.549,0,0.179,0.18 -1,1,1,0.567,0,0,0,0,0.993,0.647,0,0.466,0 -1,0.933,0.933,0,0,0,0,0,0.973,0.851,0,0.578,0.108 -1,0.732,0.732,0,0,0,0,0,0.934,1,0,0,0.36 -1,0.554,0.554,0,0,0,0,0,0.857,0.923,0,0,0.036 -1,0.488,0.488,0,0,0,0,0,0.779,0.582,0,0,0.143 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0.108 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.18 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0181,0,0,0.2 -1,0.181,0.181,0.55,0,0,0,0.281,0.64,0.049,0,0,0.148 -1,0.33,0.33,0,0,0,0,0.14,0.732,0.128,0,0,0 -0.333,0.193,0.193,0,0,0,0,0.281,0.647,0.0928,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.647,0.108,0,0,0.169 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.118,0,0,0.337 -0.667,0.307,0.307,0.0167,0.3,0,0,0.14,0.732,0.233,0.554,0,0.072 -0.333,0.177,0.177,0.533,1,0,0,0.281,0.647,0.146,0.608,0,0.144 -0.667,0.314,0.314,0,0.0667,0,0,0.14,0.732,0.312,0.668,0,0.036 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.343,0.444,0,0 -0.333,0.253,0.253,0,0,0,0,0.281,0.679,0.189,0,0.315,0.036 -0.333,0.323,0.323,0,0,0.933,0.633,0.281,0.699,0.195,0,0.505,0.108 -0.667,0.683,0.683,0.267,0,0,0.183,0.14,0.849,0.437,0,0.391,0.072 -1,0.933,0.933,1,0,0,0,0,0.973,0.851,0,0,0.144 -1,0.732,0.732,0.7,0,0,0,0,0.934,1,0,0,0.252 -1,0.386,0.386,0,0,0,0,0.14,0.758,0.621,0,0,0.036 -1,0.342,0.342,0,0,0,0,0.14,0.706,0.394,0,0,0.144 -1,0.116,0.116,0,0,0,0,0.281,0.614,0.101,0,0,0 -1,0.0743,0.0743,0,0,0,0,0.281,0.608,0.0424,0,0,0 -1,0.0578,0.0578,0,0,0,0,0.281,0.608,0.026,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0 -1,0.0495,0.0495,0,0,0,0,0.421,0.562,0.0159,0,0,0.0902 -1,0.15,0.15,0,0,0,0,0.281,0.621,0.0355,0,0,0.289 -1,0.181,0.181,0.267,0,0,0,0.281,0.64,0.0449,0,0,0.0726 -0.667,0.19,0.19,0.283,0,0,0,0.281,0.647,0.0527,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.732,0.105,0,0,0 -0.667,0.328,0.328,0,0.05,0,0,0.14,0.732,0.117,0.413,0,0 -0.667,0.316,0.316,0,1,0,0,0.14,0.732,0.129,0.348,0,0.036 -0.667,0.307,0.307,0,0.317,0,0,0.14,0.732,0.136,0,0,0.216 -1,0.432,0.432,0,0,0,0,0,0.818,0.222,0,0,0.252 -0.667,0.314,0.314,0,0,0,0,0.14,0.732,0.162,0,0,0.144 -0.667,0.359,0.359,0,0,0,0,0.14,0.758,0.181,0,0,0.036 -0.667,0.457,0.457,0,0,0,0,0.14,0.797,0.224,0,0,0 -0.667,0.596,0.596,0,0,0,0,0.14,0.836,0.273,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.849,0.366,0,0,0.301 -0.667,0.638,0.638,0,0,0,0,0.14,0.836,0.51,0,0,0.481 -0.667,0.504,0.504,0,0.55,0,0,0.14,0.81,0.629,0.944,0,0.315 -1,0.554,0.554,0.517,0.817,0,0,0,0.857,0.887,0,0,0.036 -1,0.342,0.342,1,0,0,0,0.14,0.706,0.363,0,0,0.036 -1,0.116,0.116,0.45,0,0,0,0.281,0.614,0.0879,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv deleted file mode 100644 index 753a2f784c..0000000000 --- a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv +++ /dev/null @@ -1,8761 +0,0 @@ -occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0529 -1,0.0841,0.0841,0,0.583,0,0,0.281,0.612,0.026,0.727,0,0.223 -1,0.153,0.153,0,0.767,0,0,0.281,0.625,0.0355,0,0,0 -1,0.184,0.184,0.5,0,0,0,0.281,0.645,0.0449,0,0,0 -1,0.337,0.337,0.0167,0,0,0,0.14,0.738,0.0895,0,0,0.26 -0.667,0.198,0.198,0,0.583,0,0,0.281,0.652,0.0604,0.729,0,0.173 -0.667,0.337,0.337,0,0.767,0,0,0.14,0.738,0.117,0.21,0,0.0866 -0.667,0.325,0.325,0,0,0,0,0.14,0.738,0.129,0,0,0.112 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.136,0,0,0.0813 -0.667,0.313,0.313,0,0,0,0,0.14,0.738,0.153,0,0,0 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.162,0,0,0.173 -1,0.494,0.494,0,0,0,0,0,0.863,0.263,0,0,0.838 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.224,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.0433 -0.667,0.683,0.683,0.25,0,0,0,0.14,0.842,0.51,0,0,0.0866 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.303 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.0866 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0.373 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.122 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.291 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0.297 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.0895,0,0,0.253 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.105,0,0,0.0433 -0.333,0.194,0.194,0,0,1,0.133,0.281,0.652,0.0664,0,0.0039,0.0866 -0.333,0.187,0.187,0,0.583,0,0.683,0.281,0.652,0.0724,0.523,0.475,0.0433 -0.333,0.183,0.183,0,1,0,0,0.281,0.652,0.0759,0.702,0,0 -0.333,0.182,0.182,0,0.3,0,0,0.281,0.652,0.0845,0,0,0.13 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.346 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.173 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.0866 -0.333,0.302,0.302,0.25,0,0,0,0.281,0.704,0.145,0,0,0.0866 -0.667,0.675,0.675,0,0,0,0,0.14,0.855,0.366,0,0,0.346 -0.667,0.683,0.683,0,0,0.103,0,0.14,0.842,0.51,0,0,0.0433 -0.667,0.57,0.57,0,0,0.379,0.267,0.14,0.816,0.629,0,0.323,0 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0.222,0.665 -1,0.541,0.541,0,0,0,0,0,0.784,0.536,0,0,0.111 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.612,0.0166,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.229 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0.445 -0.667,0.194,0.194,0,0,0,0,0.281,0.652,0.0527,0,0,0.0924 -0.667,0.198,0.198,0,0,0.103,0,0.281,0.652,0.0604,0,0,0 -0.333,0.05,0.05,0,0,0.379,0.883,0.421,0.566,0.0159,0,0.259,0.173 -0.667,0.325,0.325,0,0,0,0.2,0.14,0.738,0.129,0,0.508,0.0866 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0.347,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0.536,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0.217,0.0866 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.381 -0.333,0.367,0.367,1,0,0,0,0.281,0.704,0.263,0,0,0.237 -0.667,0.57,0.57,0.0333,0,0,0,0.14,0.816,0.629,0,0,0.112 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.324 -0.667,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0,0.137 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0671 -1,0.0518,0.0518,0.25,0,0,0,0.281,0.612,0.02,0,0,0.0642 -1,0.0841,0.0841,0,0,0.483,0.633,0.281,0.612,0.026,0,0.211,0 -1,0.153,0.153,0,0,0,0.183,0.281,0.625,0.0355,0,0.322,0.541 -1,0.319,0.319,0,0,0,0,0.14,0.724,0.074,0,0.248,0.465 -1,0.481,0.481,0,0,0,0,0,0.824,0.126,0,0.433,0.468 -1,0.495,0.495,0,0,0,0,0,0.824,0.149,0,0.442,0.398 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.334 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.236,0.236,0.767,0,0,0,0.281,0.684,0.12,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.173 -0.333,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.0433 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.0433 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0992 -1,0.153,0.153,0.783,0,0,0,0.281,0.625,0.0355,0,0,0 -1,0.184,0.184,0.25,0,0,0,0.281,0.645,0.0449,0,0,0.0449 -1,0.194,0.194,0,0,0,0,0.281,0.652,0.0527,0,0,0.16 -1,0.198,0.198,0,0.0833,0,0,0.281,0.652,0.0604,0.501,0,0.148 -1,0.194,0.194,0,0.983,0,0,0.281,0.652,0.0664,0.0902,0,0.131 -1,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.134 -1,0.316,0.316,0,0,0,0,0.14,0.738,0.136,0,0,0.154 -1,0.313,0.313,0,0,0,0,0.14,0.738,0.153,0,0,0.487 -0.667,0.318,0.318,0.25,0,0,0,0.14,0.738,0.162,0,0,0.0433 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.13 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.13 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.51,0,0,0.303 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.13 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.173 -0.667,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0,0.354 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.275 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.031,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.517,0,0,0,0.421,0.566,0.0181,0,0,0.135 -1,0.453,0.453,0,0,0,0,0,0.804,0.111,0,0,0.422 -1,0.481,0.481,0,0,0,0,0,0.824,0.183,0,0,0.277 -1,0.495,0.495,0,0,0,0,0,0.824,0.242,0,0,0.25 -1,0.481,0.481,0,0,0,0,0,0.824,0.289,0,0,0.419 -0.667,0.325,0.325,0,0,0,0,0.14,0.738,0.217,0,0,0.392 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.233,0,0,0.288 -0.667,0.313,0.313,0,0,0,0,0.14,0.738,0.274,0,0,0.461 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.312,0,0,0.382 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.343,0,0,0.234 -0.333,0.236,0.236,0,0,0.483,0.8,0.281,0.684,0.189,0,0.3,0.293 -0.333,0.302,0.302,0,0,0,0.0167,0.281,0.704,0.195,0,0.267,0.13 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.228,0,0.451,0.173 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.296,0,0.401,0.19 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.673,0,0,0.0433 -1,0.626,0.626,0,0,0,0,0,0.863,0.923,0,0,0.26 -1,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0.173 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0.303 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.031,0,0,0.181 -1,0.05,0.05,0,0,0,0,0.281,0.612,0.0224,0,0,0.0137 -1,0.05,0.05,0,0,0,0,0.281,0.612,0.019,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.194,0.194,0,0,0,0,0.281,0.652,0.0731,0,0,0 -1,0.346,0.346,0,0,0,0,0.14,0.738,0.168,0,0,0 -0.667,0.194,0.194,0.517,0,0,0,0.281,0.652,0.108,0,0,0.0866 -0.667,0.187,0.187,0,0,0,0,0.281,0.652,0.118,0,0,0.0433 -0.667,0.183,0.183,0,0,0,0,0.281,0.652,0.125,0,0,0.13 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.146,0,0,0 -0.333,0.184,0.184,0.417,0,0,0,0.281,0.652,0.165,0,0,0 -0.333,0.198,0.198,0.35,0,0,0,0.281,0.665,0.18,0,0,0.0866 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.36,0,0,0 -0.667,0.553,0.553,0,0,0,0,0.14,0.842,0.372,0,0,0 -0.667,0.675,0.675,0,0,0,0,0.14,0.855,0.437,0,0,0.173 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.573,0,0,0.216 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.673,0,0,0.0503 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.621,0,0,0.451 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0.159 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.0895,0,0,0 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.333,0.194,0.194,0.25,0,0,0,0.281,0.652,0.0664,0,0,0.0433 -0.333,0.187,0.187,0.517,0,0,0,0.281,0.652,0.0724,0,0,0.26 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.0433 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.173 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.13 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.13 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.13 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.51,0,0,0.13 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.0866 -0.667,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.173 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0.0433 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.144 -1,0.153,0.153,0.5,0,0,0,0.281,0.625,0.0355,0,0,0.225 -0.667,0.184,0.184,1,0,0,0,0.281,0.645,0.0449,0,0,0 -0.333,0.05,0.05,0.05,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.105,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.13 -0.667,0.325,0.325,0,0,0,0,0.14,0.738,0.129,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0.0866 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.0866 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.0866 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.13 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0.131,0,0.0433 -0.333,0.363,0.363,0.75,0.833,0,0,0.281,0.71,0.191,0.32,0,0.13 -0,0.05,0.05,0.0167,0.517,0.103,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0.379,0.533,0.421,0.566,0.0159,0,0.384,0.303 -0.333,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0.328,0.216 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0518,0.0518,0.267,0,0,0,0.281,0.612,0.02,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.116 -1,0.153,0.153,0,0,0,0,0.281,0.625,0.0355,0,0,0.146 -1,0.319,0.319,0,0,0,0,0.14,0.724,0.074,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0527,0,0,0 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0.0433 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.13 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0.13 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.0433 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.0866 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.216 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.216 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.303 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.258 -0.667,0.57,0.57,0,0,0.483,0.633,0.14,0.816,0.629,0,0.221,0.217 -0.667,0.434,0.434,0,0,0,0.183,0.14,0.764,0.596,0,0.59,0 -0.667,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0.216,0.214 -0.667,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.169 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.0804 -0.667,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.319,0.319,0,0,0,0,0.14,0.724,0.074,0,0,0 -1,0.337,0.337,0,0,0,0,0.14,0.738,0.0895,0,0,0.0839 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0 -0.333,0.187,0.187,0.517,0,0,0,0.281,0.652,0.0724,0,0,0.0866 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0 -0.667,0.313,0.313,0,0,0,0,0.14,0.738,0.153,0,0,0.13 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.13 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.181,0,0,0.26 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.224,0,0,0.649 -0.667,0.553,0.553,0,0,0,0,0.14,0.842,0.273,0,0,0 -1,0.988,0.988,0,0,0,0,0,1,0.541,0,0,0.0433 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.51,0,0,0.216 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.13 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.0433 -0.667,0.378,0.378,0,0,0.483,0.133,0.14,0.711,0.363,0,0,0.26 -1,0.184,0.184,0,0,0,0.133,0.14,0.672,0.16,0,0.446,0.153 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.153 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.117 -1,0.153,0.153,0,0,0,0,0.281,0.625,0.0355,0,0,0.0708 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0.143 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.224 -1,0.346,0.346,0,0,0,0,0.14,0.738,0.105,0,0,0.26 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.14 -0.667,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.199 -0.667,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.139 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0.124 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.162,0,0,0.245 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.216 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.173 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.0433 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.16 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.283 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.0433 -0.667,0.242,0.242,0,0.0833,0,0,0.281,0.665,0.306,0.602,0,0.157 -1,0.214,0.214,0,0.983,0,0,0.281,0.639,0.189,0.385,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0.0897,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.667,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.153,0.153,0.1,0,0,0,0.281,0.625,0.0327,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.049,0,0,0.307 -1,0.337,0.337,0,0,0,0,0.14,0.738,0.128,0,0,0.23 -0.667,0.198,0.198,0,0,0,0,0.281,0.652,0.0928,0,0,0.174 -0.667,0.194,0.194,0,0,0,0,0.281,0.652,0.108,0,0,0 -0.667,0.187,0.187,0,0,0,0,0.281,0.652,0.118,0,0,0.0433 -0.667,0.183,0.183,0,0,0,0,0.281,0.652,0.125,0,0,0.0433 -0.667,0.182,0.182,0,0,0,0,0.281,0.652,0.146,0,0,0.422 -0.667,0.184,0.184,0,0,0,0,0.281,0.652,0.165,0,0,0.209 -0.667,0.198,0.198,0,0,0,0,0.281,0.665,0.18,0,0,0.312 -0.667,0.236,0.236,0,0,0,0,0.281,0.684,0.189,0,0,0.37 -0.667,0.553,0.553,0,0,0,0,0.14,0.842,0.372,0,0,0.26 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.228,0,0,0.237 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.573,0,0,0.216 -0.667,0.31,0.31,0,0,0,0,0.281,0.691,0.345,0,0,0.0433 -0.667,0.242,0.242,0,0,0,0,0.281,0.665,0.32,0,0,0.0433 -1,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0841,0.0841,0,0,0,0,0.281,0.612,0.0241,0,0,0 -1,0.153,0.153,0,0,0,0,0.281,0.625,0.0327,0,0,0.066 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.049,0,0,0.348 -1,0.337,0.337,0,0,0,0,0.14,0.738,0.128,0,0,0.281 -1,0.495,0.495,0,0,0,0,0,0.824,0.242,0,0,0.261 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.198,0,0,0.379 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.118,0,0,0.0433 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.125,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.146,0,0,0.13 -0.333,0.184,0.184,0,0,0.483,0.55,0.281,0.652,0.165,0,0.135,0.0433 -0.667,0.346,0.346,0,0,0,0.267,0.14,0.764,0.343,0,0.368,0.352 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.36,0,0.415,0.269 -0.667,0.553,0.553,0,0,0,0,0.14,0.842,0.372,0,0.688,0.417 -0.667,0.675,0.675,0,0,0,0,0.14,0.855,0.437,0,0.48,0.637 -1,1,1,0,0,0,0,0,0.98,0.851,0,0.394,0 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.673,0,0.499,0.346 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.621,0,0,0.13 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0.301 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0509 -1,0.153,0.153,0,0,0,0,0.281,0.625,0.0355,0,0,0.149 -1,0.319,0.319,0.767,0,0,0,0.14,0.724,0.074,0,0,0 -0.667,0.337,0.337,0,0,0.483,0.383,0.14,0.738,0.0895,0,0.0117,0 -0.667,0.346,0.346,0,0,0,0.7,0.14,0.738,0.105,0,0.347,0.173 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0.228,0 -0.333,0.187,0.187,0.5,0,0,0,0.281,0.652,0.0724,0,0,0.0433 -0.333,0.183,0.183,0.0167,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0.667,0.313,0.313,0,0,0,0,0.14,0.738,0.153,0,0,0.0433 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.162,0,0,0.0866 -0.667,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.13 -1,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.173 -0.667,0.302,0.302,0.25,0,0,0,0.281,0.704,0.145,0,0,0.13 -1,0.675,0.675,0,0,0,0,0.14,0.855,0.366,0,0,0.13 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.51,0,0,0.26 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.237 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.145 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.296 -1,0.255,0.255,1,0,0,0,0.14,0.685,0.0551,0,0,0.231 -1,0.453,0.453,0.55,0,0,0,0,0.804,0.103,0,0,0.0887 -1,0.481,0.481,0,0,0,0,0,0.824,0.126,0,0,0.352 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0.13 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0.0433 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.0866 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.136,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.236,0.236,0.75,0,0,0,0.281,0.684,0.12,0,0,0.173 -0.333,0.302,0.302,1,0,0,0,0.281,0.704,0.145,0,0,0.0674 -0.667,0.675,0.675,0.05,0,0,0,0.14,0.855,0.366,0,0,0.13 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.438 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.491 -0.333,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.582 -1,0.541,0.541,0,0,0,0,0,0.784,0.536,0,0,0.32 -1,0.252,0.252,0,0,0,0,0,0.725,0.232,0,0,0.0979 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.198 -1,0.255,0.255,0.783,0,0,0,0.14,0.685,0.0551,0,0,0.236 -1,0.453,0.453,0,0,0,0,0,0.804,0.103,0,0,0.365 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.0895,0,0,0.224 -0.667,0.346,0.346,0.25,0,0,0,0.14,0.738,0.105,0,0,0.192 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.433 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.563 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.346 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0 -0.333,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.13 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.26 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.319,0.319,0,0,0,0,0.14,0.724,0.074,0,0,0.246 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.0895,0,0,0.15 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0.13 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.173 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0.519 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.216 -0.333,0.198,0.198,0.25,0,0,0,0.281,0.665,0.0982,0,0,0.173 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.224,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0.333,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.0433 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0.239 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.142 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.15 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.192 -1,0.255,0.255,0,0,0,0,0.14,0.685,0.0551,0,0,0.36 -1,0.453,0.453,0,0,0,0,0,0.804,0.103,0,0,0.0836 -1,0.481,0.481,0,0,0,0,0,0.824,0.126,0,0,0.376 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.105,0,0,0.533 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0.157 -0.333,0.187,0.187,0.5,0.0833,0,0,0.281,0.652,0.0724,0.389,0,0.0866 -0.667,0.316,0.316,0.267,0.983,0.483,0.383,0.14,0.738,0.136,0.122,0.0468,0 -0.667,0.313,0.313,0,0,0,0.7,0.14,0.738,0.153,0,0.477,0.0433 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.162,0,0.484,0 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.181,0,0.277,0.0866 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.224,0,0,0.13 -1,0.553,0.553,0,0,0,0,0.14,0.842,0.273,0,0,0.389 -0.667,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.0866 -0.667,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.0866 -0.667,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.0866 -0.667,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.0866 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0633 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.167,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.6,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.184,0.184,0,0,0,0,0.281,0.645,0.049,0,0,0 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.128,0,0,0 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.168,0,0,0.0433 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.198,0,0,0.303 -0.667,0.325,0.325,0,0,0,0,0.14,0.738,0.217,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.333,0.182,0.182,0,0,0.448,0.05,0.281,0.652,0.146,0,0,0.0433 -0.667,0.318,0.318,0,0,0.0345,1,0.14,0.738,0.312,0,0.363,0.0866 -1,0.494,0.494,0,0,0,1,0,0.863,0.505,0,0,0 -0.333,0.236,0.236,0,0,0,0.117,0.281,0.684,0.189,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0.333,0.367,0.367,0.417,0,0,0,0.281,0.704,0.296,0,0,0.0433 -0.333,0.31,0.31,1,0,0,0,0.281,0.691,0.345,0.274,0,0 -1,0.626,0.626,0.383,1,0.483,0.267,0,0.863,0.923,0.389,0.0182,0 -1,0.378,0.378,0,0.35,0,0,0.14,0.711,0.394,0,0.492,0 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0.343,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0.157 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.667,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.153,0.153,0.1,0,0,0,0.281,0.625,0.0327,0,0,0.198 -1,0.319,0.319,0,0,0,0,0.14,0.724,0.0799,0,0,0.199 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.128,0,0,0.205 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0928,0,0,0.295 -0.333,0.194,0.194,0.417,0,0,0,0.281,0.652,0.108,0,0,0.35 -0.333,0.187,0.187,0.1,0,0,0,0.281,0.652,0.118,0,0,0.0433 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.125,0,0,0.13 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.146,0,0,0.173 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.165,0,0,0.216 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.343,0,0,0.173 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.36,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.195,0,0,0.0673 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.228,0,0,0.18 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.573,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.195 -0.667,0.242,0.242,0,0,0,0,0.281,0.665,0.32,0,0,0.216 -1,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0.102 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0834 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.153 -0.667,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0.275 -0.333,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0.0433 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.136,0,0,0 -0.333,0.182,0.182,0.25,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.184,0.184,0.267,0,0,0,0.281,0.652,0.0888,0,0,0 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.181,0,0,0.0433 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.224,0,0,0.433 -0.667,0.553,0.553,0,0,0,0,0.14,0.842,0.273,0,0,0.236 -1,0.988,0.988,0,0.0833,0,0,0,1,0.541,0.495,0,0.244 -1,1,1,0,0.983,0,0,0,0.98,0.758,0.4,0,0.303 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.173 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.289 -1,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0518,0.0518,0,0,0,0,0.281,0.612,0.02,0,0,0 -1,0.0841,0.0841,0,0,0,0,0.281,0.612,0.026,0,0,0 -0.667,0.153,0.153,0,0,0,0,0.281,0.625,0.0355,0,0,0.14 -0.667,0.319,0.319,0.5,0,0,0,0.14,0.724,0.074,0,0,0.275 -0.333,0.194,0.194,0.533,0,0,0,0.281,0.652,0.0527,0,0,0.674 -0.667,0.346,0.346,0,0.583,0,0,0.14,0.738,0.105,0.634,0,0.274 -0.333,0.194,0.194,0,0.483,0,0,0.281,0.652,0.0664,0,0,0.38 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.223 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.0433 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.51,0,0,0.389 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0,0,0.0866 -1,0.626,0.626,0,0,0,0,0,0.863,0.887,0,0,0 -1,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0,0.123 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.168 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.36 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0958 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.153,0.153,0,0.0833,0,0,0.281,0.625,0.0355,0.53,0,0 -1,0.184,0.184,0,0.983,0,0,0.281,0.645,0.0449,0.216,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0.13 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.0664,0,0,0.26 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.174 -0.333,0.236,0.236,0.25,0,0,0,0.281,0.684,0.12,0,0,0.216 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0 -0.667,0.675,0.675,0,0,0,0,0.14,0.855,0.366,0,0,0.13 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.303 -0.333,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.0866 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.13 -0.667,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0,0.173 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0.483,0.383,0.421,0.566,0.0159,0,0.078,0 -1,0.0841,0.0841,0,0,0,0.7,0.281,0.612,0.026,0,0.172,0 -1,0.358,0.358,0,0,0,0,0,0.745,0.0747,0,0.564,0.147 -1,0.453,0.453,0,0,0,0,0,0.804,0.103,0,0.33,0.0327 -1,0.481,0.481,0.5,0,0,0,0,0.824,0.126,0,0.482,0 -0.667,0.346,0.346,0.267,0,0,0,0.14,0.738,0.105,0,0,0.0866 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.173 -0.667,0.325,0.325,0,0.333,0,0,0.14,0.738,0.129,0.473,0,0.346 -0.667,0.316,0.316,0,1,0,0,0.14,0.738,0.136,0.455,0,0.0433 -0.667,0.313,0.313,0,0.0167,0,0,0.14,0.738,0.153,0.718,0,0.216 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.27 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0.238,0,0 -0.333,0.236,0.236,0,0.833,0,0,0.281,0.684,0.12,0.68,0,0.173 -0.333,0.302,0.302,0,0.233,0,0,0.281,0.704,0.145,0.663,0,0.264 -0.667,0.675,0.675,0,0,0,0,0.14,0.855,0.366,0.687,0,0.413 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.51,0.591,0,0.13 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.629,0.462,0,0.303 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0.392,0,0.0433 -1,0.541,0.541,0,0,0,0,0,0.784,0.536,0,0,0.384 -1,0.252,0.252,0,0,0,0,0,0.725,0.232,0,0,0.156 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.14 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.271 -1,0.153,0.153,0,0,0,0,0.281,0.625,0.0355,0,0,0.293 -1,0.319,0.319,0,0,0,0,0.14,0.724,0.074,0,0,0.19 -1,0.481,0.481,0,0,0.483,0.383,0,0.824,0.126,0,0.0754,0.525 -1,0.495,0.495,0,0,0,0.15,0,0.824,0.149,0,0.286,0.173 -1,0.481,0.481,0,0.583,0,0,0,0.824,0.168,0.586,0.176,0 -1,0.463,0.463,0,0.483,0,0,0,0.824,0.186,0.674,0,0.173 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.136,0,0,0.0433 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0,0,0.0433 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.145,0,0,0.173 -0.333,0.363,0.363,0.25,0,0,0,0.281,0.71,0.191,0,0,0.13 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.13 -0.333,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.3 -1,0.626,0.626,0,0,0,0,0,0.863,0.887,0,0,0.446 -1,0.378,0.378,0,0,0,0,0.14,0.711,0.363,0,0,0.216 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.153,0.153,0,0,0,0,0.281,0.625,0.0327,0,0,0 -1,0.319,0.319,0,0,0.483,0.533,0.14,0.724,0.0799,0,0.0559,0.242 -1,0.481,0.481,0,0,0,0,0,0.824,0.183,0,0.675,0 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.168,0,0.568,0.328 -1,0.481,0.481,0.167,0.25,0,0,0,0.824,0.289,0.454,0,0.145 -1,0.463,0.463,0.867,0.817,0,0,0,0.824,0.317,0.347,0,0.21 -1,0.449,0.449,0,0,0,0,0,0.824,0.34,0,0,0.242 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.146,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.165,0,0,0 -0.333,0.198,0.198,0,0,0,0,0.281,0.665,0.18,0,0,0.433 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.189,0,0,0.216 -0.333,0.302,0.302,0,0,0,0,0.281,0.704,0.195,0,0,0.13 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.228,0,0,0.13 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.573,0,0,0.13 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.673,0,0,0 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.621,0,0,0.0688 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0.191 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0,0.209 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0.0853 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.031,0,0,0.196 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.049,0,0,0.131 -1,0.337,0.337,0,0,0,0,0.14,0.738,0.128,0,0,0.0711 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.168,0,0,0 -0.333,0.194,0.194,0,0,0,0,0.281,0.652,0.108,0,0,0.0918 -0.667,0.325,0.325,0,0,0,0,0.14,0.738,0.217,0,0,0.342 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.125,0,0,0.185 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.146,0,0,0.173 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.312,0,0,0.216 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.343,0,0,0.173 -0.333,0.236,0.236,0,0,0,0,0.281,0.684,0.189,0,0,0.216 -0.333,0.302,0.302,0.767,0,0,0,0.281,0.704,0.195,0,0,0.346 -0.667,0.675,0.675,0,0,0,0,0.14,0.855,0.437,0,0,0.13 -0.667,0.683,0.683,0,0,0,0,0.14,0.842,0.573,0,0,0.13 -0.667,0.57,0.57,0,0,0,0,0.14,0.816,0.673,0,0,0.26 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.621,0,0,0.115 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.206,0,0,0.126 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0,0.19 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0.303 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.149 -0.667,0.153,0.153,0.25,0,0,0,0.281,0.625,0.0355,0,0,0.149 -0.667,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0 -0.667,0.194,0.194,0,0,0,0,0.281,0.652,0.0527,0,0,0 -0.667,0.346,0.346,0,0,0,0,0.14,0.738,0.105,0,0,0.472 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.269 -0.333,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.114 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.471 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.184,0.184,1,0,0,0,0.281,0.652,0.0888,0,0,0.0866 -0.667,0.346,0.346,0.55,0,0,0,0.14,0.764,0.181,0,0,0.173 -0.667,0.421,0.421,0.25,0,0,0,0.14,0.803,0.224,0,0,0.13 -1,0.805,0.805,0,0,0,0,0,0.98,0.402,0,0,0.389 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.24 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.0813 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.12 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.184,0.184,0,0,0,0,0.281,0.645,0.0449,0,0,0.196 -0.667,0.194,0.194,0,0,0,0,0.281,0.652,0.0527,0,0,0 -0.667,0.198,0.198,0,0,0,0,0.281,0.652,0.0604,0,0,0.0941 -0.667,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.0961 -0.667,0.325,0.325,0,0.0833,0,0,0.14,0.738,0.129,0.521,0,0.545 -0.667,0.316,0.316,0,1,0,0,0.14,0.738,0.136,0.527,0,0.291 -0.667,0.313,0.313,0,0.8,0,0,0.14,0.738,0.153,0.751,0,0.0866 -0.667,0.318,0.318,0,0,0,0,0.14,0.738,0.162,0.639,0,0.216 -0.667,0.346,0.346,0,0,0,0,0.14,0.764,0.181,0.11,0,0.13 -0.667,0.421,0.421,0,0,0,0,0.14,0.803,0.224,0,0,0.0433 -0.333,0.302,0.302,0.767,0,0,0,0.281,0.704,0.145,0,0,0.216 -0.333,0.363,0.363,0,0,0,0,0.281,0.71,0.191,0,0,0.303 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.216 -0.333,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.173 -0.667,0.434,0.434,0,0,0,0,0.14,0.764,0.596,0,0,0.0433 -1,0.541,0.541,0,0,0,0,0,0.784,0.536,0,0,0.0433 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.145 -1,0.153,0.153,0.25,0,0.103,0,0.281,0.625,0.0355,0,0,0.128 -1,0.319,0.319,0,0,0.379,0.883,0.14,0.724,0.074,0,0.194,0.27 -1,0.337,0.337,0,0,0,0.467,0.14,0.738,0.0895,0,0.692,0.127 -1,0.346,0.346,0,0,0,0,0.14,0.738,0.105,0,0.341,0.106 -1,0.337,0.337,0,0,0,0,0.14,0.738,0.117,0,0,0.171 -0.667,0.187,0.187,0,0,0,0,0.281,0.652,0.0724,0,0,0.303 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0759,0,0,0.13 -0.333,0.182,0.182,0,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.184,0.184,0,0,0,0,0.281,0.652,0.0888,0,0,0.303 -0.667,0.198,0.198,0,0,0,0,0.281,0.665,0.0982,0.0847,0,0.233 -0.667,0.421,0.421,0,0.833,0,0,0.14,0.803,0.224,0.543,0,0.136 -0.333,0.302,0.302,0.5,0.233,0,0,0.281,0.704,0.145,0,0,0.0866 -0.667,0.675,0.675,0.783,0,0,0,0.14,0.855,0.366,0,0,0.0866 -0.333,0.367,0.367,0,0,0,0,0.281,0.704,0.263,0,0,0.216 -0.333,0.31,0.31,0,0,0,0,0.281,0.691,0.322,0,0,0.0433 -0.667,0.242,0.242,0,0,0,0,0.281,0.665,0.306,0,0,0.173 -0.667,0.214,0.214,0,0,0,0,0.281,0.639,0.189,0,0,0.189 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.0722 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.614,0.0259,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.614,0.0183,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.614,0.0165,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0813 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.364 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.0935 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.128 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.0927 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.302 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0.517,0.517,0.421,0.566,0.0159,0,0.382,0.0866 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0.531,0.306 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.0787 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.22 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.0884 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0901 -1,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0421,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.65 -1,0.333,0.333,0,0,0,0,0.14,0.742,0.0889,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.346 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.173 -0.333,0.179,0.179,0.2,0,0,0,0.281,0.654,0.0839,0,0,0.0866 -0,0.05,0.05,0.3,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.325,0.325,0,0,0,0,0.14,0.768,0.179,0,0,0.0866 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.231 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.357 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0,0.266 -1,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.13 -1,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.106 -1,0.248,0.248,0,0,0,0,0.281,0.64,0.188,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.508 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0836,0.0836,0,0,0,0,0.281,0.614,0.024,0,0,0 -1,0.151,0.151,0.5,0,0,0,0.281,0.627,0.0326,0,0,0 -1,0.316,0.316,0,0,0.379,0,0.14,0.728,0.0794,0,0,0 -0.667,0.333,0.333,0,0,0.138,1,0.14,0.742,0.127,0,0.545,0 -0.667,0.34,0.34,0,0,0,0.05,0.14,0.742,0.166,0,0.711,0.0433 -1,0.472,0.472,0,0,0,0,0,0.829,0.287,0,0.112,0.173 -0.333,0.185,0.185,0.5,0,0,0,0.281,0.654,0.117,0,0,0 -0.667,0.31,0.31,0,0,0.379,0,0.14,0.742,0.231,0,0,0 -0.667,0.308,0.308,0,0,0.138,0.783,0.14,0.742,0.272,0,0.359,0.13 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.31,0,0.33,0.0866 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.179,0,0.438,0.519 -0.333,0.21,0.21,0.25,0,0,0,0.281,0.686,0.188,0,0.589,0.173 -0.333,0.26,0.26,0,0.467,0,0,0.281,0.706,0.194,0.742,0,0.0433 -0.667,0.601,0.601,0,0.583,0,0,0.14,0.86,0.434,0,0,0.13 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.569,0,0,0.303 -0.667,0.34,0.34,0,0,0,0,0.281,0.693,0.343,0,0,0.224 -0.667,0.278,0.278,0,0,0,0,0.281,0.667,0.317,0,0,0.141 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.163 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0488,0,0,0.144 -0.667,0.191,0.191,0,0,0,0,0.281,0.654,0.0727,0,0,0.0768 -0.667,0.34,0.34,0,0,0,0,0.14,0.742,0.166,0,0,0.156 -1,0.472,0.472,0,0,0,0,0,0.829,0.287,0,0,0.228 -0.667,0.319,0.319,0,0.217,0,0,0.14,0.742,0.216,0.389,0,0 -0.333,0.18,0.18,0,0.833,0,0,0.281,0.654,0.125,0.587,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.654,0.145,0.729,0,0.216 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0.273,0,0.0433 -0.333,0.05,0.05,0.633,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.21,0.21,0.383,0,0,0,0.281,0.686,0.188,0,0,0.0433 -0.667,0.47,0.47,0,0,0,0,0.14,0.847,0.369,0,0,0.0433 -0.667,0.601,0.601,0,0,0,0,0.14,0.86,0.434,0,0,0.121 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.569,0,0,0 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.668,0,0,0.13 -0.667,0.278,0.278,0,0,0,0,0.281,0.667,0.317,0,0,0.397 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.111 -1,0.151,0.151,0,0,0,0,0.281,0.627,0.0353,0,0,0.229 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.103 -1,0.333,0.333,0,0,0,0,0.14,0.742,0.0889,0,0,0.959 -1,0.485,0.485,0,0,0,0,0,0.829,0.148,0,0,0.282 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0,0.537 -0.667,0.319,0.319,0,0,0,0,0.14,0.742,0.128,0,0,0.13 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.135,0,0,0.0866 -0.667,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.0433 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0 -0.333,0.187,0.187,0.95,0,0,0,0.281,0.667,0.0976,0,0,0.0433 -0.333,0.21,0.21,0.317,0,0,0,0.281,0.686,0.119,0,0,0.0433 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.0866 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.13 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.261,0,0,0.0433 -0.333,0.34,0.34,0,0,0,0,0.281,0.693,0.32,0,0,0.0433 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0 -0.667,0.248,0.248,0,0,0,0,0.281,0.64,0.188,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.347 -1,0.253,0.253,0,0,0,0,0.14,0.689,0.0548,0,0,0.364 -1,0.449,0.449,0.45,0,0,0,0,0.81,0.102,0,0,0.168 -1,0.474,0.474,0.05,0,0,0,0,0.829,0.125,0,0,0.186 -0.667,0.34,0.34,0,0,0,0,0.14,0.742,0.104,0,0,0.303 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0.0433 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.0433 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.0433 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.216 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.303 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.261,0,0,0.13 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0 -0.667,0.278,0.278,0,0.533,0,0,0.281,0.667,0.304,0.582,0,0.0433 -1,0.446,0.446,0,0.783,0,0,0.14,0.715,0.36,0,0,0.164 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.172 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.627,0.0353,0,0,0.111 -0.667,0.316,0.316,0,0,0,0,0.14,0.728,0.0735,0,0,0.129 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.0524,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.0866 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0.303 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.0866 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.152,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.0433 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.173 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.0866 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.0866 -0.333,0.325,0.325,0,0,0.517,0.0667,0.281,0.713,0.19,0,0,0.0433 -0.667,0.676,0.676,0,0,0,0.983,0.14,0.847,0.507,0,0.398,0.303 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0.161,0.0866 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0421,0,0,0.0927 -1,0.0583,0.0583,0,0,0,0,0.281,0.614,0.0259,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.152 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0.45,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.191,0.191,1,0,0,0,0.281,0.654,0.066,0,0,0.0433 -0.333,0.185,0.185,0.0833,0,0,0,0.281,0.654,0.072,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.0433 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.173 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.26 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.0433 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.26 -0.333,0.325,0.325,0.5,0,0,0,0.281,0.713,0.19,0,0,0.0433 -0.667,0.676,0.676,0,0,0.517,0.817,0.14,0.847,0.507,0,0.22,0.216 -0.667,0.631,0.631,0,0,0,0.233,0.14,0.821,0.625,0,0.649,0.0433 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0.401,0.277 -1,0.644,0.644,0,0,0,0,0,0.79,0.532,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.676,0.159,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0421,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.614,0.0259,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0 -1,0.333,0.333,0.95,0,0,0,0.14,0.742,0.0889,0,0,0 -0.667,0.34,0.34,1,0,0,0,0.14,0.742,0.104,0,0,0 -0.667,0.331,0.331,0.1,0,0,0,0.14,0.742,0.116,0,0,0.0433 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.216 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.0866 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.173 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.168 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0,0.091 -1,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0 -1,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.155 -1,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.21 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.016 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0488,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0923,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.183 -0.667,0.319,0.319,0,0,0,0,0.14,0.742,0.216,0,0,0.124 -0.333,0.18,0.18,0.5,0,0,0,0.281,0.654,0.125,0,0,0.182 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.272,0,0,0.214 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.31,0,0,0.419 -1,0.462,0.462,0,0,0,0,0,0.869,0.502,0,0,0.13 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.188,0,0,0.303 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.194,0,0,0.173 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.226,0,0,0.173 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.569,0,0,0.0866 -1,0.921,0.921,0,0,0,0,0,0.948,0.993,0,0,0.123 -1,0.734,0.734,0,0,0,0,0,0.869,0.916,0,0,0.461 -1,0.446,0.446,0,0,0,0,0.14,0.715,0.392,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0.883,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.183,0.183,0.133,0,0,0,0.281,0.647,0.0488,0.112,0,0 -0.667,0.191,0.191,0,0.717,0,0,0.281,0.654,0.0727,0.711,0,0.345 -0.667,0.34,0.34,0,0.6,0,0,0.14,0.742,0.166,0.739,0,0.293 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.197,0.662,0,0.283 -1,0.454,0.454,0,0,0,0,0,0.829,0.315,0.597,0,0 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.231,0.691,0,0.598 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.272,0.438,0,0.26 -0.333,0.18,0.18,0.633,0,0.517,0.5,0.281,0.654,0.164,0,0.151,0 -0.667,0.325,0.325,0.133,0,0,0.55,0.14,0.768,0.34,0,0.459,0.13 -1,0.531,0.531,0,0.467,0,0,0,0.928,0.527,0.547,0.311,0.13 -0.667,0.47,0.47,0,0.583,0,0,0.14,0.847,0.369,0,0,0.0433 -0.667,0.601,0.601,0,0,0.379,0,0.14,0.86,0.434,0,0,0.205 -0.667,0.676,0.676,0,0,0.138,0.517,0.14,0.847,0.569,0,0.199,0.178 -1,0.34,0.34,0,0,0,0,0.281,0.693,0.343,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.2,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.316,0.316,0.567,0,0,0,0.14,0.728,0.0735,0,0,0.132 -1,0.474,0.474,0.5,0,0,0,0,0.829,0.125,0,0,0.393 -1,0.485,0.485,0,0,0,0,0,0.829,0.148,0,0,0.509 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0,0.264 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.532 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.181 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.152,0,0,0.287 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.161,0,0,0.13 -0.667,0.325,0.325,0,0,0,0,0.14,0.768,0.179,0,0,0 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.0433 -0.333,0.26,0.26,0.767,0,0,0,0.281,0.706,0.144,0,0,0 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.0433 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.261,0.168,0,0.13 -0.667,0.631,0.631,0,0.783,0,0,0.14,0.821,0.625,0.529,0,0.0433 -0.333,0.278,0.278,0,0.533,0,0,0.281,0.667,0.304,0,0,0.129 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0 -1,0.252,0.252,0,0,0,0,0,0.731,0.23,0,0,0.0433 -1,0.125,0.125,0,0,0,0,0,0.711,0.0947,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.102 -1,0.253,0.253,0,0,0,0,0.14,0.689,0.0548,0,0,0.437 -1,0.316,0.316,0,0,0,0,0.14,0.728,0.0735,0,0,0.159 -0.667,0.191,0.191,0,0,0,0,0.281,0.654,0.0524,0,0,0.206 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.283 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.144 -0.667,0.371,0.371,0,0,0,0,0.14,0.807,0.222,0,0,0.185 -0.667,0.47,0.47,0.95,0,0,0,0.14,0.847,0.271,0,0,0.173 -0.667,0.601,0.601,0.0667,0,0,0,0.14,0.86,0.364,0,0,0.173 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.261,0,0,0.454 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.554 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.304 -1,0.644,0.644,0,0,0,0,0,0.79,0.532,0,0,0.115 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.167 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.281,0.614,0.0183,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0.45,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.191,0.191,0.05,0,0,0,0.281,0.654,0.0524,0,0,0.0833 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.227 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0,0.145 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.0433 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.0433 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.13 -0.333,0.26,0.26,0.95,0,0,0,0.281,0.706,0.144,0,0,0.0866 -0.667,0.601,0.601,0.317,0,0,0,0.14,0.86,0.364,0,0,0.386 -1,0.989,0.989,0,0,0,0,0,0.987,0.752,0,0,0.438 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.13 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.0433 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.0433 -0.667,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.0583,0.0583,0,0,0,0,0.281,0.614,0.0259,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.279 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0,0 -0.667,0.319,0.319,0,0,0,0,0.14,0.742,0.128,0,0,0.216 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.135,0,0,0.0866 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.152,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.0866 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.13 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.0433 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.0574 -0.667,0.601,0.601,0.25,0,0,0,0.14,0.86,0.364,0,0,0.607 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0,0.575 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.0433 -0.667,0.506,0.506,0,0.533,0,0,0.14,0.768,0.592,1,0,0 -0.667,0.446,0.446,0,0.817,0,0,0.14,0.715,0.36,0.25,0,0 -0.667,0.117,0.117,0.25,0.8,0,0,0.281,0.621,0.0874,0.429,0,0.224 -1,0.0999,0.0999,0.317,0.0167,0,0,0.14,0.663,0.0684,0,0,0.346 -1,0.0666,0.0666,0,0,0,0,0.14,0.663,0.036,0,0,0.166 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.213 -1,0.449,0.449,0,0,0,0,0,0.81,0.102,0,0,0.312 -0.667,0.333,0.333,0,0,0.517,0.783,0.14,0.742,0.0889,0,0.173,0.152 -0.667,0.34,0.34,0,0,0,0,0.14,0.742,0.104,0,0.42,0.387 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0.349,0.103 -0.333,0.185,0.185,0.2,0,0,0,0.281,0.654,0.072,0,0.293,0.0433 -0.333,0.18,0.18,0.3,0,0,0,0.281,0.654,0.0754,0,0.0637,0.216 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.26 -0.333,0.187,0.187,0.45,0,0,0,0.281,0.667,0.0976,0,0,0.303 -0.333,0.21,0.21,0.05,0.0333,0,0,0.281,0.686,0.119,0.267,0,0 -0.333,0.26,0.26,0,1,0,0,0.281,0.706,0.144,0.796,0,0.0433 -0.333,0.325,0.325,0,0.0167,0,0,0.281,0.713,0.19,0.227,0,0.0944 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0,0.13 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.0866 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.0753 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.26 -1,0.184,0.184,0.2,0.2,0,0,0.14,0.676,0.159,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0496,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.614,0.0309,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0488,0,0,0.0765 -1,0.333,0.333,0,0,0,0,0.14,0.742,0.127,0,0,0 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0923,0,0,0.0762 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.197,0,0,0.109 -1,0.319,0.319,0,0,0,0,0.14,0.742,0.216,0,0,0.126 -1,0.44,0.44,0,0,0,0,0,0.829,0.338,0,0,0.523 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.272,0,0,0.445 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.164,0,0,0.289 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.188,0,0,0 -0.667,0.47,0.47,0,0,0,0,0.14,0.847,0.369,0,0,0.13 -0.667,0.601,0.601,0,0,0,0,0.14,0.86,0.434,0,0,0 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.569,0,0,0.433 -0.333,0.34,0.34,0,0,0,0,0.281,0.693,0.343,0,0,0.383 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.617,0,0,0.303 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.392,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0488,0,0,0 -0.667,0.333,0.333,0,0,0,0,0.14,0.742,0.127,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.654,0.0923,0,0,0 -0,0.05,0.05,0,0,0.517,0.5,0.421,0.566,0.0181,0,0.0676,0.115 -0.667,0.319,0.319,0,0,0,0.0167,0.14,0.742,0.216,0,0.549,0.424 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.231,0,0.237,0.346 -0.667,0.308,0.308,0.133,0,0,0,0.14,0.742,0.272,0,0,0 -0.667,0.31,0.31,0.633,0,0,0,0.14,0.742,0.31,0,0,0 -0.667,0.325,0.325,0,0,0,0,0.14,0.768,0.34,0,0,0.0433 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.188,0,0,0 -0.333,0.26,0.26,0.883,0,0,0,0.281,0.706,0.194,0,0,0.0866 -0.667,0.601,0.601,0.133,0,0,0,0.14,0.86,0.434,0,0,0.0433 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.569,0,0,0.26 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.668,0,0,0 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.617,0,0,0.303 -0.667,0.248,0.248,0,0,0,0,0.281,0.64,0.205,0,0,0.0433 -0.667,0.117,0.117,0,0,0,0,0.281,0.621,0.1,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.095 -1,0.151,0.151,0.95,0,0,0,0.281,0.627,0.0353,0,0,0.583 -0.667,0.316,0.316,0.833,0,0,0,0.14,0.728,0.0735,0,0,0.214 -0.667,0.333,0.333,0,0,0,0,0.14,0.742,0.0889,0,0,0.103 -0.667,0.34,0.34,0.2,0,0,0,0.14,0.742,0.104,0,0,0.0433 -0.667,0.331,0.331,0.567,0,0,0,0.14,0.742,0.116,0,0,0.407 -0.667,0.319,0.319,0,0,0,0,0.14,0.742,0.128,0,0,0.26 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.0433 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.13 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.173 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.303 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.707 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.261,0,0,0.241 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0,0.126 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.0583 -0.667,0.248,0.248,0,0,0,0,0.281,0.64,0.188,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.0988 -0.667,0.191,0.191,0,0,0,0,0.281,0.654,0.0524,0,0,0.131 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0.0866 -0.333,0.185,0.185,0,0,0.517,0.517,0.281,0.654,0.072,0,0.0897,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0.42,0 -0.333,0.179,0.179,0.2,0,0,0,0.281,0.654,0.0839,0,0.45,0.173 -0.333,0.18,0.18,1,0,0,0,0.281,0.654,0.0882,0,0.165,0 -0.667,0.325,0.325,0.333,0,0,0,0.14,0.768,0.179,0,0,0.389 -0.667,0.371,0.371,0,0,0,0,0.14,0.807,0.222,0,0,0 -0.333,0.26,0.26,0,0,0.517,0.317,0.281,0.706,0.144,0,0,0.173 -0.667,0.601,0.601,0,0,0,0.467,0.14,0.86,0.364,0,0.355,0.0433 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0.479,0.303 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.625,0,0.625,0.13 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0.416,0.238 -1,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0.213,0 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.151,0.151,0,0,0,0,0.281,0.627,0.0353,0,0,0.253 -1,0.316,0.316,0,0,0,0,0.14,0.728,0.0735,0,0,0.317 -1,0.333,0.333,0,0,0,0,0.14,0.742,0.0889,0,0,0.282 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.0598 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0.0433 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.173 -0.333,0.18,0.18,0.5,0,0,0,0.281,0.654,0.0754,0,0,0.13 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.152,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.0433 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.485 -0.667,0.371,0.371,0,0.0333,0,0,0.14,0.807,0.222,0.383,0,0.268 -0.667,0.47,0.47,0,1,0,0,0.14,0.847,0.271,0.263,0,0.13 -0.667,0.601,0.601,0.45,0.8,0,0,0.14,0.86,0.364,0,0,0.0866 -0.333,0.363,0.363,0.317,0,0,0,0.281,0.706,0.261,0,0,0.272 -1,0.921,0.921,0,0,0,0,0,0.948,0.929,0,0,0.0433 -1,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0 -1,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.45,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.151,0.151,0.05,0,0,0,0.281,0.627,0.0353,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.728,0.0735,0,0,0.0949 -1,0.474,0.474,0,0,0,0,0,0.829,0.125,0,0,0.187 -0.667,0.195,0.195,0.25,0,0,0,0.281,0.654,0.0601,0,0,0.0433 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0,0.302 -0.667,0.319,0.319,0,0,0,0,0.14,0.742,0.128,0,0,0.378 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0 -0.667,0.308,0.308,0,0,0,0,0.14,0.742,0.152,0,0,0.189 -1,0.439,0.439,0,0,0.517,0.317,0,0.829,0.233,0,0,0.0171 -0.667,0.325,0.325,0,0,0,0.2,0.14,0.768,0.179,0,0.57,0.346 -0.667,0.371,0.371,0,0,0,0,0.14,0.807,0.222,0,0.124,0.173 -0.667,0.47,0.47,0.45,0,0,0,0.14,0.847,0.271,0,0,0.446 -0.667,0.601,0.601,0.567,0.533,0,0,0.14,0.86,0.364,0.617,0,0.0433 -1,0.989,0.989,0,0.783,0,0,0,0.987,0.752,0.665,0,0.13 -1,0.921,0.921,0,0,0,0,0,0.948,0.929,0.232,0,0.173 -0.667,0.278,0.278,0,0,0,0,0.281,0.667,0.304,0,0,0.105 -0.667,0.248,0.248,0,0,0,0,0.281,0.64,0.188,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.208 -0.667,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.328 -0.667,0.191,0.191,0,0,0,0,0.281,0.654,0.0524,0,0,0.122 -0.667,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.264 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0.356 -0.333,0.185,0.185,0,0,0.517,0.517,0.281,0.654,0.072,0,0.251,0.0433 -0.667,0.31,0.31,0,0,0,0,0.14,0.742,0.135,0,0,0.439 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0.0866 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.13 -0.333,0.187,0.187,0.45,0,0,0,0.281,0.667,0.0976,0,0,0.0866 -0.333,0.21,0.21,0.317,0,0,0,0.281,0.686,0.119,0,0,0.216 -0.333,0.26,0.26,0.95,0,0,0,0.281,0.706,0.144,0,0,0.13 -0.333,0.325,0.325,0.0667,0,0,0,0.281,0.713,0.19,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.389 -0.333,0.34,0.34,0,0,0,0,0.281,0.693,0.32,0,0,0.0433 -1,0.734,0.734,0,0,0,0,0,0.869,0.88,0,0,0 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.389 -1,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0496,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.633,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0836,0.0836,0.9,0,0,0,0.281,0.614,0.024,0,0,0.16 -1,0.253,0.253,0,0,0,0,0.14,0.689,0.047,0,0,0.0921 -1,0.449,0.449,0,0,0,0,0,0.81,0.11,0,0,0 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.0727,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.194,0,0,0 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.226,0,0,0 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.294,0,0,0.173 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.668,0,0,0.303 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.617,0,0,0.26 -0.667,0.248,0.248,0,0,0,0,0.281,0.64,0.205,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.281,0.621,0.1,0,0,0.217 -1,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0496,0,0,0.103 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0.379,0,0.421,0.566,0.0181,0,0,0.152 -0.667,0.191,0.191,0,0,0.138,0.25,0.281,0.654,0.0727,0,0.499,0.0768 -0.667,0.34,0.34,0,0,0,0,0.14,0.742,0.166,0,0.274,0.0506 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.197,0,0.629,0.0898 -0.667,0.319,0.319,0,0,0,0,0.14,0.742,0.216,0,0.172,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.125,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.631,0.631,0,0,0,0,0.14,0.821,0.668,0,0,0 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.617,0,0,0.0866 -1,0.446,0.446,0,0,0,0,0.14,0.715,0.392,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.1,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.281,0.614,0.0421,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.273 -1,0.117,0.117,0,0,0,0,0.14,0.663,0.036,0,0,0.189 -0.667,0.151,0.151,0,0,0,0,0.281,0.627,0.0353,0,0,0.257 -0.333,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.17 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.0524,0,0,0.53 -0.333,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.489 -0.667,0.331,0.331,0,0,0,0,0.14,0.742,0.116,0,0,0.434 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.193 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.142 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.13 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.0866 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.0866 -0.333,0.325,0.325,0,0,0,0,0.281,0.713,0.19,0,0,0.314 -0.333,0.363,0.363,0.2,0,0,0,0.281,0.706,0.261,0,0,0.412 -0.333,0.34,0.34,0.3,0,0,0,0.281,0.693,0.32,0,0,0.0866 -0.667,0.506,0.506,0,0,0,0,0.14,0.768,0.592,0,0,0.146 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.0171 -0.667,0.184,0.184,0,0,0,0,0.14,0.676,0.159,0,0,0 -1,0.0999,0.0999,0,0,0,0,0.14,0.663,0.0684,0,0,0.0433 -1,0.0583,0.0583,0,0,0,0,0.281,0.614,0.0259,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.614,0.0183,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.614,0.0165,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0759 -1,0.151,0.151,0.25,0,0,0,0.281,0.627,0.0353,0,0,0.0959 -1,0.316,0.316,0,0,0,0,0.14,0.728,0.0735,0,0,0.395 -0.667,0.191,0.191,0,0,0,0,0.281,0.654,0.0524,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.654,0.0601,0,0,0.0433 -0.333,0.191,0.191,0,0,0,0,0.281,0.654,0.066,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0.0433 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0.0433 -0.333,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.22 -0.333,0.187,0.187,0.25,0,0,0,0.281,0.667,0.0976,0,0,0.0612 -0.333,0.21,0.21,0,0,0,0,0.281,0.686,0.119,0,0,0.26 -0.333,0.26,0.26,0,0,0,0,0.281,0.706,0.144,0,0,0.216 -0.667,0.601,0.601,0,0,0,0,0.14,0.86,0.364,0,0,0.0433 -0.667,0.676,0.676,0,0,0,0,0.14,0.847,0.507,0,0,0.0866 -0.667,0.631,0.631,0,0.533,0,0,0.14,0.821,0.625,0.858,0,0.303 -0.667,0.506,0.506,0,0.517,0,0,0.14,0.768,0.592,0.184,0,0.215 -1,0.644,0.644,0,0,0,0,0,0.79,0.532,0,0,0.0847 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0966 -1,0.183,0.183,0,0,0,0,0.281,0.647,0.0447,0,0,0.0322 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.654,0.072,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.654,0.0754,0,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.654,0.0839,0,0,0 -0.667,0.18,0.18,0,0,0,0,0.281,0.654,0.0882,0,0,0.173 -0.333,0.187,0.187,0,0,0,0,0.281,0.667,0.0976,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0945 -0.333,0.26,0.26,0,0,0.517,0.567,0.281,0.706,0.144,0,0.0299,0.146 -0.333,0.325,0.325,0,0,0,0.217,0.281,0.713,0.19,0,1,0.0866 -0.333,0.363,0.363,0,0,0,0,0.281,0.706,0.261,0,0.263,0 -0.333,0.34,0.34,0,0,0,0,0.281,0.693,0.32,0,0,0.0433 -0.333,0.278,0.278,0,0,0,0,0.281,0.667,0.304,0,0,0.346 -0.667,0.446,0.446,0,0,0,0,0.14,0.715,0.36,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.621,0.0874,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0841 -0.333,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.103 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0.181 -0.667,0.329,0.329,0,0.0833,0,0,0.14,0.677,0.19,0.396,0,0.147 -0.667,0.398,0.398,0,0.933,0,0,0.14,0.709,0.232,0.558,0,0.272 -0.667,0.512,0.512,0.25,0,0,0,0.14,0.719,0.31,0.626,0,0.452 -0.667,0.619,0.619,0.467,0,0,0,0.14,0.709,0.432,0,0,0.382 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0,0,0.173 -1,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.0866 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.34 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.148 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.243 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0.233,0,0,0,0.281,0.575,0.0316,0,0,0 -1,0.308,0.308,0,0,0,0,0.14,0.615,0.0634,0,0,0.0745 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0,0.236 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.158 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.13 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.173 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0.216 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.0433 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0.173 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0.13 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.432,0,0,0.0866 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0,0,0.26 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0 -0.667,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.254 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.087 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0281,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.59,0.0433,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.595,0.0636,0,0,0 -0.333,0.187,0.187,0,0,0,0,0.281,0.595,0.0803,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0934,0,0,0.216 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.101,0,0,0.398 -0.667,0.294,0.294,0,0,0,0,0.14,0.625,0.198,0,0,0.177 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.125,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.189,0.189,0.0833,0,0,0,0.281,0.621,0.162,0,0,0.0433 -0.333,0.224,0.224,0.4,0,0,0,0.281,0.637,0.167,0,0,0.0866 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.194,0,0,0.0433 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.485,0,0,0 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.57,0,0,0.309 -1,0.815,0.815,0,0,0,0,0,0.686,0.78,0,0,0.173 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.334,0,0,0.216 -1,0.184,0.184,0,0,0,0,0.14,0.573,0.156,0,0,0.0433 -1,0.0999,0.0999,0,0,0,0,0.14,0.563,0.0699,0,0,0.262 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0281,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.0833,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.4,0,0,0,0.421,0.566,0.0181,0,0,0.0907 -1,0.308,0.308,0,0,0,0,0.14,0.615,0.0685,0,0,0.123 -1,0.456,0.456,0,0,0,0,0,0.655,0.155,0,0,0.0449 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.143,0,0,0.13 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.169,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.101,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.141,0,0,0.0866 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.154,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.224,0.224,0,0,0,0,0.281,0.637,0.167,0,0,0.383 -0.667,0.281,0.281,0,0,0,0,0.281,0.642,0.194,0,0,0.293 -0.667,0.335,0.335,0,0,0,0,0.281,0.637,0.252,0,0,0 -0.667,0.346,0.346,0,0,0,0,0.281,0.627,0.294,0,0,0.0866 -1,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0,0,0.173 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.119 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.296 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.0823,0.0823,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0316,0,0,0.356 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.163 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0,0.597 -0.667,0.324,0.324,0,0,0.103,0,0.14,0.625,0.0895,0,0,0.272 -0.333,0.183,0.183,0,0,0.379,0.767,0.281,0.595,0.0578,0,0.176,0.13 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0.104,0.13 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.333,0.175,0.175,0.25,0,0,0,0.281,0.606,0.0846,0,0,0.0433 -0.333,0.189,0.189,0.467,0,0,0,0.281,0.621,0.103,0,0,0 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0.26 -0.333,0.335,0.335,0,0.333,0,0,0.281,0.637,0.224,0.475,0,0.0866 -0.667,0.641,0.641,0,0.933,0,0,0.14,0.688,0.532,0.529,0,0 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.0433 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.162,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0316,0,0,0.0819 -1,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.222 -0.667,0.185,0.185,0,0,0,0,0.281,0.595,0.0462,0,0,0.548 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.161 -1,0.448,0.448,0,0,0,0,0,0.655,0.142,0,0,0.0919 -1,0.43,0.43,0,0,0,0,0,0.655,0.157,0,0,0.451 -1,0.417,0.417,0,0,0,0,0,0.655,0.166,0,0,0.4 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.193 -0.667,0.293,0.293,0,0,0,0,0.14,0.625,0.137,0,0,0.502 -0.667,0.301,0.301,0,0,0,0,0.14,0.646,0.153,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0.13 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.432,0,0,0.0433 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0,0,0.0866 -0.667,0.305,0.305,0,0,0,0,0.281,0.606,0.26,0,0,0 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.26 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.184 -1,0.185,0.185,0,0,0,0,0.281,0.595,0.0462,0,0,0.177 -0.667,0.324,0.324,0.483,0,0,0,0.14,0.625,0.0895,0,0,0.263 -1,0.448,0.448,0,0,0,0,0,0.655,0.142,0,0,0.298 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.346 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0.0433 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.433 -0.333,0.171,0.171,0.717,0,0,0,0.281,0.595,0.0767,0,0,0 -0.667,0.301,0.301,0.483,0,0,0,0.14,0.646,0.153,0,0,0.173 -0.667,0.329,0.329,0,0,0,0,0.14,0.677,0.19,0,0,0 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.216 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0.0433 -0.333,0.335,0.335,0,0,0,0,0.281,0.637,0.224,0,0,0.13 -0.333,0.346,0.346,0,0.583,0,0,0.281,0.627,0.274,0.615,0,0.346 -0.667,0.56,0.56,0,0.433,0,0,0.14,0.646,0.505,0,0,0.0433 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0432 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.233,0.0833,0,0,0.421,0.566,0.0159,0.501,0,0 -1,0.247,0.247,0,1,0,0,0.14,0.584,0.0474,0.328,0,0.0839 -1,0.308,0.308,0.25,0.183,0,0,0.14,0.615,0.0634,0,0,0.433 -0.333,0.185,0.185,0.467,0.583,0.483,0.25,0.281,0.595,0.0462,0.691,0.0715,0.0863 -0.333,0.187,0.187,0,0.683,0,0,0.281,0.595,0.0527,0,0.577,0.216 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0.257,0.149 -1,0.43,0.43,0,0,0,0,0,0.655,0.157,0,0.65,0.24 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0.553,0.0866 -0.667,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0.635,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.667,0.175,0.175,0.233,0,0,0,0.281,0.606,0.0846,0,0,0 -0.667,0.329,0.329,0,0,0,0,0.14,0.677,0.19,0,0,0.13 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.0776 -1,0.743,0.743,0,0.0833,0,0,0,0.796,0.457,0.479,0,0.0913 -1,0.904,0.904,0,1,0,0,0,0.78,0.64,0.529,0,0.298 -0.667,0.346,0.346,0,0.183,0,0,0.281,0.627,0.274,0,0,0.712 -0.667,0.305,0.305,0,0,0,0,0.281,0.606,0.26,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0.138,0,0 -1,0.185,0.185,0,0.833,0,0,0.281,0.595,0.0462,0.606,0,0 -1,0.324,0.324,0,0.183,0,0,0.14,0.625,0.0895,0.464,0,0 -1,0.315,0.315,0,0,0,0,0.14,0.625,0.0997,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.0433 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0.0433 -0.667,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.667,0.293,0.293,0,0,0,0,0.14,0.625,0.137,0,0,0.13 -0.667,0.301,0.301,0,0,0,0,0.14,0.646,0.153,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.303 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0.177 -0.333,0.335,0.335,0,0,0,0,0.281,0.637,0.224,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.305,0.305,0,0,0,0,0.281,0.606,0.26,0,0,0.303 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.162,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.05,0.05,0,0,0.483,0.467,0.421,0.566,0.0181,0,0.0559,0 -0.667,0.171,0.171,0.483,0,0,0.3,0.281,0.595,0.125,0,0.397,0 -1,0.293,0.293,0.233,0,0,0,0.14,0.625,0.265,0,0.406,0.0433 -0.667,0.301,0.301,0,0,0,0,0.14,0.646,0.291,0,0.572,0 -0.667,0.329,0.329,0.333,0,0,0,0.14,0.677,0.305,0,0.319,0.13 -1,0.572,0.572,0.15,0,0,0,0,0.78,0.464,0,0.209,0.13 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.194,0,0,0.0433 -0.333,0.335,0.335,0,0,0,0,0.281,0.637,0.252,0,0,0.13 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.57,0,0,0.346 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0,0,0.309 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.176,0,0,0.125 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.382 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.044,0,0,0.493 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.164 -1,0.308,0.308,0,0,0,0,0.14,0.615,0.0685,0,0,0.842 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.109,0,0,0.291 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.143,0,0,0.182 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.169,0,0,0.273 -0.667,0.303,0.303,0,0,0,0,0.14,0.625,0.185,0,0,0.13 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.108,0,0,0.0866 -0.667,0.171,0.171,0,0,0,0,0.281,0.595,0.125,0,0,0.13 -0.667,0.171,0.171,0,0,0,0,0.281,0.595,0.141,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.606,0.154,0,0,0.173 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.162,0,0,0 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.167,0,0,0.0866 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.371,0,0,0.2 -1,0.904,0.904,0,0,0,0,0,0.78,0.719,0,0,0.17 -1,0.937,0.937,0,0,0,0,0,0.749,0.845,0,0,0.493 -1,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0,0,0.0941 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.158 -0.667,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.129 -1,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0,0.384 -1,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.235 -0.667,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.667,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0.0866 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0.0866 -0.667,0.512,0.512,0,0,0.103,0,0.14,0.719,0.31,0,0,0.346 -0.667,0.619,0.619,0.717,0,0.379,0.883,0.14,0.709,0.432,0,0.199,0.303 -0.667,0.641,0.641,0,0.333,0,0.15,0.14,0.688,0.532,0.715,0,0.237 -0.667,0.56,0.56,0,0.683,0,0,0.14,0.646,0.505,0.12,0,0.17 -0.667,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0433 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.188 -0.667,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0.782 -0.667,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0.143 -0.667,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0316,0,0,0.178 -0.667,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.265 -0.667,0.185,0.185,0,0,0,0,0.281,0.595,0.0462,0,0,0.119 -0.667,0.187,0.187,0,0,0,0,0.281,0.595,0.0527,0,0,0.343 -0.667,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0.195 -0.333,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.437 -0.667,0.294,0.294,0.233,0,0,0,0.14,0.625,0.116,0,0,0.39 -1,0.413,0.413,0,0,0,0,0,0.655,0.187,0,0,0.167 -1,0.414,0.414,0,0,0,0,0,0.655,0.198,0,0,0.334 -0.667,0.301,0.301,0,0,0,0,0.14,0.646,0.153,0,0,0.447 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.216 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0.0433 -0.667,0.619,0.619,0.25,0,0,0,0.14,0.709,0.432,0,0,0.0433 -0.667,0.641,0.641,0.467,0,0,0,0.14,0.688,0.532,0,0,0 -1,0.815,0.815,0,0,0,0,0,0.686,0.749,0,0,0.222 -1,0.504,0.504,0,0,0.483,0.133,0,0.624,0.453,0,0,0.0433 -1,0.117,0.117,0,0,0,0.633,0.281,0.569,0.0759,0,0.238,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0.635,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0.757,0.303 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0.264,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0.345,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.13 -0.667,0.321,0.321,0.717,0,0,0,0.14,0.625,0.0764,0,0,0.376 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.0997,0,0,0 -0.667,0.303,0.303,0,0.333,0,0,0.14,0.625,0.11,0.503,0,0 -0.667,0.294,0.294,0,0.683,0,0,0.14,0.625,0.116,0.455,0,0 -0.333,0.171,0.171,1,0,0,0,0.281,0.595,0.073,0,0,0.173 -0.667,0.293,0.293,0.45,0,0,0,0.14,0.625,0.137,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.13 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.389 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0.234 -0.667,0.619,0.619,0.967,0,0,0,0.14,0.709,0.432,0,0,0.433 -0.667,0.641,0.641,0,0.583,0,0,0.14,0.688,0.532,0.525,0,0.185 -1,0.56,0.56,0,0.433,0,0,0.14,0.646,0.505,0.82,0,0.212 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0.525,0,0.292 -1,0.252,0.252,0,0,0,0,0,0.577,0.196,0.361,0,0.133 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.111 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0.14 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0.333,0,0,0.421,0.566,0.0159,0.494,0,0 -0.667,0.05,0.05,0,0.933,0,0,0.421,0.566,0.0159,0.134,0,0 -1,0.308,0.308,0,0,0,0,0.14,0.615,0.0634,0,0,0.488 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0,0.112 -0.333,0.187,0.187,0,0,0,0,0.281,0.595,0.0527,0,0,0.0881 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0.0433 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.0866 -0.333,0.172,0.172,0.717,0,0,0,0.281,0.595,0.0658,0,0,0.173 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0.0433 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.13 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0.13 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0.0433 -0.667,0.619,0.619,0,0.583,0,0,0.14,0.709,0.432,0.716,0,0.13 -0.667,0.641,0.641,0,0.683,0,0,0.14,0.688,0.532,0,0,0.0866 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.208 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.162,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0823,0.0823,0,0,0.483,0.133,0.281,0.564,0.0236,0,0,0 -1,0.247,0.247,0,0,0,0.9,0.14,0.584,0.0474,0,0.293,0 -0.667,0.308,0.308,0,0,0,0,0.14,0.615,0.0634,0,0.49,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0.283,0.28 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.204 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0.13 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.0433 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.216 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.346,0.346,0.233,0,0,0,0.281,0.627,0.274,0,0,0.13 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.13 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0208,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.564,0.0201,0,0,0 -1,0.0823,0.0823,0,0,0,0,0.281,0.564,0.0223,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.59,0.0433,0,0,0 -1,0.321,0.321,0,0,0,0,0.14,0.625,0.109,0,0,0.13 -1,0.324,0.324,0,0,0,0,0.14,0.625,0.143,0,0,0.155 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.169,0,0,0.388 -0.667,0.303,0.303,0,0,0,0,0.14,0.625,0.185,0,0,0.303 -0.667,0.294,0.294,0,0,0,0,0.14,0.625,0.198,0,0,0.286 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.293,0.293,0,0,0,0,0.14,0.625,0.265,0,0,0.389 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.154,0,0,0.389 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.162,0,0,0.0433 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.167,0,0,0.13 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.371,0,0,0.0433 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.485,0,0,0.306 -1,0.937,0.937,0,0,0,0,0,0.749,0.845,0,0,0.21 -1,0.815,0.815,0,0,0,0,0,0.686,0.78,0,0,0.372 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.334,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0869,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0347 -1,0.321,0.321,0,0,0.483,0.217,0.14,0.625,0.109,0,0,0.305 -0.667,0.324,0.324,0,0,0,1,0.14,0.625,0.143,0,0.269,0.0978 -0.667,0.315,0.315,0,0,0,0.0833,0.14,0.625,0.169,0,0.0832,0.131 -1,0.43,0.43,0,0,0,0,0,0.655,0.268,0,0.49,0.13 -1,0.417,0.417,0,0,0,0,0,0.655,0.288,0,0.404,0.216 -0.667,0.292,0.292,0,0,0,0,0.14,0.625,0.233,0,0.505,0.364 -1,0.414,0.414,0,0,0,0,0,0.655,0.388,0,0.633,0.115 -1,0.426,0.426,0,0,0,0,0,0.686,0.427,0,0.592,0.0433 -0.667,0.329,0.329,0,0,0,0,0.14,0.677,0.305,0,0.244,0.0866 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.315,0,0.469,0.346 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.371,0,0.281,0.13 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.485,0,0,0.0866 -1,0.641,0.641,0,0,0,0,0.14,0.688,0.57,0,0,0 -1,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.126 -1,0.179,0.179,0,0,0.483,0.133,0.281,0.59,0.0396,0,0,0.0433 -1,0.456,0.456,0,0,0,1,0,0.655,0.107,0,0.472,0.11 -0.667,0.324,0.324,0,0,0,1,0.14,0.625,0.0895,0,0.35,0 -0.667,0.315,0.315,0,0,0,0.733,0.14,0.625,0.0997,0,0.621,0.0866 -0.667,0.303,0.303,0,0,0,0,0.14,0.625,0.11,0,0.322,0.519 -0.667,0.294,0.294,0,0,0,0,0.14,0.625,0.116,0,0.525,0.316 -0.667,0.292,0.292,0,0,0,0,0.14,0.625,0.13,0,0.605,0.209 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0.519,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0.0433 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0 -0.333,0.335,0.335,0.25,0,0,0,0.281,0.637,0.224,0,0,0.137 -0.667,0.641,0.641,1,0,0,0,0.14,0.688,0.532,0,0,0.227 -0.667,0.305,0.305,0.45,0,0,0,0.281,0.606,0.26,0,0,0.303 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.277 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.564,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0316,0,0,0.125 -1,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.139 -0.667,0.185,0.185,0,0,0,0,0.281,0.595,0.0462,0,0,0.123 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.0756 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.0997,0,0,0.26 -0.667,0.303,0.303,0,0,0,0,0.14,0.625,0.11,0,0,0.13 -0.667,0.294,0.294,0,0,0,0,0.14,0.625,0.116,0,0,0.202 -0.667,0.292,0.292,0,0,0,0,0.14,0.625,0.13,0,0,0.561 -0.667,0.293,0.293,0,0,0,0,0.14,0.625,0.137,0,0,0 -0.333,0.175,0.175,0.25,0,0,0,0.281,0.606,0.0846,0,0,0.0433 -0.667,0.329,0.329,0.717,0,0,0,0.14,0.677,0.19,0,0,0.0433 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.0433 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0.0433 -0.667,0.619,0.619,0.25,0,0,0,0.14,0.709,0.432,0,0,0.0866 -1,0.937,0.937,0.467,0,0,0,0,0.749,0.791,0,0,0.173 -1,0.815,0.815,0,0,0,0,0,0.686,0.749,0,0,0.0866 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.162,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.102 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0,0.251 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.721 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.0997,0,0,0.116 -0.667,0.303,0.303,0,0,0,0,0.14,0.625,0.11,0,0,0.13 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0.0433 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.667,0.189,0.189,0.25,0,0,0,0.281,0.621,0.103,0,0,0 -0.667,0.398,0.398,0.967,0,0,0,0.14,0.709,0.232,0,0,0.0433 -0.667,0.512,0.512,0.717,0,0,0,0.14,0.719,0.31,0,0,0.26 -1,0.904,0.904,0,0,0,0,0,0.78,0.64,0,0,0.303 -1,0.937,0.937,0,0,0,0,0,0.749,0.791,0,0,0.692 -1,0.815,0.815,0,0,0,0,0,0.686,0.749,0,0,0.0866 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.237 -1,0.184,0.184,0,0,0,0,0.14,0.573,0.136,0,0,0 -1,0.0999,0.0999,0,0,0,0,0.14,0.563,0.059,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0.303 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.326 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.33 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.183,0.183,0.75,0,0,0,0.281,0.595,0.0578,0,0,0.145 -0.667,0.303,0.303,0.217,0,0,0,0.14,0.625,0.11,0,0,0.285 -0.667,0.172,0.172,0.483,0,0,0,0.281,0.595,0.0658,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.667,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0.172 -0.667,0.329,0.329,0.75,0,0,0,0.14,0.677,0.19,0,0,0.32 -0.667,0.398,0.398,0.95,0,0,0,0.14,0.709,0.232,0,0,0.238 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0.165 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.432,0,0,0.173 -1,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0,0,0.216 -1,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.0866 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.14,0.584,0.0474,0,0,0.319 -0.333,0.179,0.179,0,0.583,0,0,0.281,0.59,0.0396,0.799,0,0.183 -0.667,0.321,0.321,0,0.683,0,0,0.14,0.625,0.0764,0,0,0.164 -0.333,0.187,0.187,0,0,0,0,0.281,0.595,0.0527,0,0,0.0866 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.26 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.189,0.189,0.483,0,0,0,0.281,0.621,0.103,0,0,0 -0.333,0.224,0.224,0.233,0,0,0,0.281,0.637,0.124,0,0,0.0433 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.432,0,0,0.13 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0,0,0 -0.667,0.56,0.56,0.25,0,0,0,0.14,0.646,0.505,0,0,0.0433 -0.667,0.201,0.201,0.233,0,0,0,0.281,0.585,0.162,0,0,0.26 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0866 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.564,0.044,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.136 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0295,0,0,0.116 -1,0.308,0.308,0,0,0,0,0.14,0.615,0.0685,0,0,0.129 -0.667,0.185,0.185,0,0,0,0,0.281,0.595,0.0636,0,0,0.335 -0.667,0.187,0.187,0,0,0,0,0.281,0.595,0.0803,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.333,0.05,0.05,0.583,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.172,0.172,0.867,0,0,0,0.281,0.595,0.108,0,0,0.26 -0.667,0.292,0.292,0,0,0,0,0.14,0.625,0.233,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.141,0,0,0 -0.667,0.301,0.301,0,0,0,0,0.14,0.646,0.291,0,0,0.0433 -0.667,0.329,0.329,0,0,0,0,0.14,0.677,0.305,0,0,0.173 -1,0.572,0.572,0,0,0,0,0,0.78,0.464,0,0,0.0433 -1,0.743,0.743,0,0.167,0.483,0.217,0,0.796,0.547,0.309,0,0.173 -0.667,0.619,0.619,0,1,0,0.817,0.14,0.709,0.485,0.593,0.248,0.232 -0.667,0.641,0.641,0,0.1,0,0,0.14,0.688,0.57,0.663,0,0.159 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0.657,0,0.257 -0.667,0.353,0.353,0,0,0,0,0.14,0.605,0.334,0.442,0,0.412 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0869,0,0,0.081 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.044,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0281,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0208,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.179,0.179,0,0,0,0,0.281,0.59,0.0433,0,0,0 -1,0.185,0.185,0,0,0.483,0.517,0.281,0.595,0.0636,0,0.131,0 -1,0.187,0.187,0,0,0,0,0.281,0.595,0.0803,0,0.224,0 -1,0.183,0.183,0,0,0,0,0.281,0.595,0.0934,0,0.532,0.179 -1,0.303,0.303,0,0,0,0,0.14,0.625,0.185,0,0.576,0.189 -1,0.417,0.417,0.0833,0,0,0,0,0.655,0.288,0,0.384,0.227 -1,0.413,0.413,0.633,0,0,0,0,0.655,0.34,0,0.433,0.359 -1,0.414,0.414,0,0,0,0,0,0.655,0.388,0,0.655,0.13 -1,0.426,0.426,0,0,0,0,0,0.686,0.427,0,0.52,0.0866 -1,0.468,0.468,0,0,0,0,0,0.733,0.449,0,0.377,0.0866 -1,0.572,0.572,0,0,0,0,0,0.78,0.464,0,0.326,0.173 -1,0.743,0.743,0,0,0,0,0,0.796,0.547,0,0.0117,0.389 -1,0.904,0.904,0,0,0,0,0,0.78,0.719,0,0,0.0866 -1,0.641,0.641,0,0,0,0,0.14,0.688,0.57,0,0,0 -1,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0,0,0.351 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.013 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0.39 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.121 -1,0.185,0.185,0,0,0,0,0.281,0.595,0.0462,0,0,0.339 -0.667,0.187,0.187,0,0,0,0,0.281,0.595,0.0527,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.0997,0,0,0.13 -0.667,0.303,0.303,0.25,0,0,0,0.14,0.625,0.11,0,0,0.173 -0.333,0.172,0.172,0.233,0,0,0,0.281,0.595,0.0658,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0.346 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.26 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.189,0.189,0.233,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.13 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0 -0.333,0.335,0.335,0.483,0,0,0,0.281,0.637,0.224,0,0,0 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0.182,0,0.26 -0.667,0.56,0.56,0,0.833,0,0,0.14,0.646,0.505,0.479,0,0.243 -1,0.504,0.504,0,0.433,0,0,0,0.624,0.453,0,0,0.123 -1,0.252,0.252,0,0,0,0,0,0.577,0.196,0,0,0 -1,0.0999,0.0999,0,0,0,0,0.14,0.563,0.059,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.564,0.0186,0,0,0.0866 -1,0.0823,0.0823,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.456,0.456,0,0,0,0,0,0.655,0.107,0,0,0.551 -1,0.461,0.461,0,0,0,0,0,0.655,0.126,0,0,0.341 -0.667,0.315,0.315,0,0,0,0,0.14,0.625,0.0997,0,0,0.391 -0.667,0.303,0.303,0,0,0,0,0.14,0.625,0.11,0,0,0.398 -0.667,0.294,0.294,0,0,0,0,0.14,0.625,0.116,0,0,0.435 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0.414 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.303 -0.667,0.301,0.301,0.25,0,0,0,0.14,0.646,0.153,0,0,0.0433 -0.667,0.329,0.329,0.233,0,0,0,0.14,0.677,0.19,0,0,0.173 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.232,0,0,0.388 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0 -0.333,0.335,0.335,0,0,0,0,0.281,0.637,0.224,0,0,0 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.532,0,0,0.0433 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.0866 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0.717,0,0,0,0.281,0.575,0.0316,0,0,0.117 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.321,0.321,0,0,0,0,0.14,0.625,0.0764,0,0,0.383 -0.667,0.324,0.324,0,0,0,0,0.14,0.625,0.0895,0,0,0.579 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0.214 -0.667,0.177,0.177,0,0.0833,0,0,0.281,0.595,0.0629,0.466,0,0 -0.667,0.294,0.294,0,1,0,0,0.14,0.625,0.116,0.462,0,0.295 -0.667,0.292,0.292,0,0.183,0,0,0.14,0.625,0.13,0,0,0.188 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.333,0.175,0.175,0.25,0,0,0,0.281,0.606,0.0846,0,0,0 -0.667,0.329,0.329,1,0,0,0,0.14,0.677,0.19,0,0,0.303 -0.667,0.398,0.398,0.45,0,0,0,0.14,0.709,0.232,0,0,0.0433 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.333,0.05,0.05,0,0.0833,0,0,0.421,0.566,0.0159,0.425,0,0.216 -0.667,0.346,0.346,0,1,0,0,0.281,0.627,0.274,0.122,0,0.173 -1,0.56,0.56,0,0.183,0,0,0.14,0.646,0.505,0,0,0.0433 -1,0.353,0.353,0,0,0,0,0.14,0.605,0.307,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.15 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.25 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.0515,0.0515,0,0,0,0,0.281,0.564,0.0186,0,0,0.154 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.171 -0.667,0.179,0.179,0,0,0,0,0.281,0.59,0.0396,0,0,0.208 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.246 -0.667,0.187,0.187,0,0,0,0,0.281,0.595,0.0527,0,0,0.225 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0.289 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.193 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0.256 -0.333,0.171,0.171,0.233,0,0,0,0.281,0.595,0.073,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.0433 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.189,0.189,0,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.333,0.224,0.224,0,0,0,0,0.281,0.637,0.124,0,0,0.265 -0.333,0.281,0.281,0,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.333,0.335,0.335,0,0,0,0,0.281,0.637,0.224,0,0,0 -0.667,0.641,0.641,0,0,0.103,0,0.14,0.688,0.532,0,0,0.0921 -0.667,0.56,0.56,0,0,0.379,0.883,0.14,0.646,0.505,0,0.252,0.13 -0.667,0.353,0.353,0,0,0,0.15,0.14,0.605,0.307,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.263 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.564,0.0186,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0316,0,0,0.29 -0.667,0.308,0.308,0,0,0,0,0.14,0.615,0.0634,0,0,0.127 -0.333,0.185,0.185,0,0,0,0,0.281,0.595,0.0462,0,0,0.0878 -0.333,0.187,0.187,0,0,0,0,0.281,0.595,0.0527,0,0,0.111 -0.333,0.183,0.183,0,0,0,0,0.281,0.595,0.0578,0,0,0.0866 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0629,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.0767,0,0,0.13 -0.333,0.175,0.175,0,0,0,0,0.281,0.606,0.0846,0,0,0.0866 -0.667,0.189,0.189,0.25,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.667,0.224,0.224,0.467,0,0,0,0.281,0.637,0.124,0,0,0.427 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.31,0,0,0.201 -0.333,0.335,0.335,0,0,0,0,0.281,0.637,0.224,0,0,0.13 -0.333,0.346,0.346,0,0,0,0,0.281,0.627,0.274,0,0,0.49 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.505,0,0,0.216 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.162,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0434 -1,0.148,0.148,0,0,0,0,0.281,0.575,0.0295,0,0,0.326 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.595,0.0636,0,0,0.147 -0.667,0.187,0.187,0,0,0,0,0.281,0.595,0.0803,0,0,0.128 -1,0.448,0.448,0,0,0,0,0,0.655,0.244,0,0,0.0904 -1,0.43,0.43,0,0,0,0,0,0.655,0.268,0,0,0.228 -1,0.417,0.417,0,0,0,0,0,0.655,0.288,0,0,0.0433 -0.333,0.171,0.171,0,0,0,0,0.281,0.595,0.125,0,0,0.173 -0.333,0.171,0.171,0.0833,0,0,0,0.281,0.595,0.141,0,0,0.13 -0.333,0.175,0.175,0.15,0,0,0,0.281,0.606,0.154,0,0,0 -0.667,0.329,0.329,0,0,0,0,0.14,0.677,0.305,0,0,0.346 -0.667,0.398,0.398,0,0,0,0,0.14,0.709,0.315,0,0,0.0433 -0.667,0.512,0.512,0,0,0,0,0.14,0.719,0.371,0,0,0.386 -0.667,0.619,0.619,0,0,0,0,0.14,0.709,0.485,0,0,0.216 -0.667,0.641,0.641,0,0,0,0,0.14,0.688,0.57,0,0,0.0433 -0.667,0.56,0.56,0,0,0,0,0.14,0.646,0.526,0,0,0 -0.667,0.201,0.201,0,0,0,0,0.281,0.585,0.176,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0869,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.242 -1,0.304,0.304,0,0.133,0,0,0.14,0.624,0.11,0.403,0,0.091 -1,0.302,0.302,0,1,0,0,0.14,0.624,0.144,0.74,0,0 -0.667,0.293,0.293,0,0.1,0,0,0.14,0.624,0.17,0.565,0,0.585 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.102,0,0,0.13 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.109,0,0,0.519 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.234,0,0,0.0866 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.267,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.605,0.156,0,0,0.186 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.105 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.196,0,0,0.216 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.254,0,0,0.13 -0.667,0.297,0.297,0,0,0,0,0.281,0.626,0.296,0,0,0 -0.667,0.329,0.329,0,0,0,0,0.281,0.605,0.274,0.337,0,0.216 -0.667,0.234,0.234,0,0.883,0,0,0.281,0.584,0.178,0.236,0,0.177 -1,0.117,0.117,0,0.35,0,0,0.281,0.569,0.0875,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.136 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.613,0.0639,0,0,0.335 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.0866 -0.667,0.272,0.272,0,0,0,0,0.14,0.644,0.155,0,0,0.13 -0.667,0.276,0.276,0,0,0,0,0.14,0.675,0.191,0,0,0.0866 -0.333,0.172,0.172,0.7,0,0,0,0.281,0.636,0.125,0,0,0.0866 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.303 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.436,0,0,0.0866 -0.667,0.543,0.543,0.233,0,0,0,0.14,0.686,0.537,0,0,0.0433 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.613,0.0639,0,0,0.329 -1,0.431,0.431,0,0,0,0,0,0.653,0.108,0,0,0.0841 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0902,0,0,0.104 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0.275 -0.333,0.166,0.166,0,0,0.517,0.617,0.281,0.595,0.0633,0,0.144,0.346 -0.333,0.162,0.162,0,0,0,0.617,0.281,0.595,0.0662,0,0.363,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.0433 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.389 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0.13 -0.333,0.163,0.163,0.7,0,0,0,0.281,0.621,0.104,0,0,0.0433 -0.667,0.294,0.294,0,0,0,0,0.14,0.706,0.234,0,0,0.369 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.0866 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.13 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.165 -0.667,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0,0.399 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0186,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0949 -0.667,0.144,0.144,0.45,0,0,0,0.281,0.574,0.0318,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.589,0.0399,0,0,0.0866 -0.667,0.304,0.304,0,0,0.103,0,0.14,0.624,0.077,0,0,0.265 -0.667,0.302,0.302,0,0,0.414,0.233,0.14,0.624,0.0902,0,0.316,0.18 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.1,0,0.661,0 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.111,0,0,0.26 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.117,0,0,0.0866 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.131,0,0,0.13 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0.0866 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.264 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.313,0,0,0.285 -0.333,0.241,0.241,0,0,0.517,0.617,0.281,0.636,0.226,0,0.0819,0.0978 -0.333,0.297,0.297,0,0,0,0.117,0.281,0.626,0.276,0,0,0.173 -0.667,0.609,0.609,0,0,0.517,0.117,0.14,0.644,0.509,0,0,0.0866 -0.667,0.234,0.234,0,0,0,0.367,0.281,0.584,0.163,0,0.524,0 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0.078,0.234 -1,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0595,0,0,0.0938 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0238,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.174,0.174,0.467,0,0,0,0.281,0.589,0.0399,0,0,0 -1,0.304,0.304,0,0,0,0,0.14,0.624,0.077,0,0,0.153 -1,0.302,0.302,0,0,0,0,0.14,0.624,0.0902,0,0,0.0478 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.0433 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.13 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0 -0.333,0.297,0.297,0,0,0,0,0.281,0.626,0.276,0,0,0.433 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.476 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.0433 -0.667,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0,0 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0377,0,0,0 -0.667,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0238,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.174,0.174,0,0,0,0,0.281,0.589,0.0399,0,0,0.411 -1,0.177,0.177,0,0,0,0,0.281,0.595,0.0465,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0 -0,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0.467,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.0866 -0.333,0.297,0.297,0,0,0,0,0.281,0.626,0.276,0,0,0.13 -0.333,0.329,0.329,0,0,0,0,0.281,0.605,0.262,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.281,0.584,0.163,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0179,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0297,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.589,0.0436,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0641,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.144,0,0,0.324 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0941,0,0,0.0884 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.102,0,0,0.0866 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.109,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.126,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.142,0,0,0.173 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.156,0,0,0.13 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.163,0,0,0.216 -0.667,0.294,0.294,0,0,0,0,0.14,0.706,0.318,0,0,0.496 -0.667,0.342,0.342,0.7,0,0,0,0.14,0.717,0.374,0,0,0.207 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.489,0.308,0,0.13 -1,0.79,0.79,0,0.883,0,0,0,0.746,0.852,0.234,0,0 -1,0.609,0.609,0,0.1,0,0,0.14,0.644,0.53,0,0,0.189 -1,0.234,0.234,0,0,0,0,0.281,0.584,0.178,0,0,0.13 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0875,0,0,0.116 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0.7,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.589,0.0436,0,0,0.0765 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0641,0,0,0.19 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0454 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0941,0,0,0.143 -0.333,0.166,0.166,0.7,0,0,0,0.281,0.595,0.102,0,0,0.425 -0.333,0.162,0.162,0.3,0,0,0,0.281,0.595,0.109,0,0,0.389 -0.667,0.271,0.271,0.167,0,0,0,0.14,0.624,0.234,0,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.267,0,0,0.13 -0.333,0.161,0.161,0.7,0,0,0,0.281,0.605,0.156,0,0,0.216 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.163,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.254,0,0,0.13 -0.333,0.297,0.297,0,0,0,0,0.281,0.626,0.296,0,0,0 -0.333,0.329,0.329,0,0,0,0,0.281,0.605,0.274,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0238,0,0,0.362 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0318,0,0,0.0702 -1,0.297,0.297,0,0,0,0,0.14,0.613,0.0639,0,0,0.235 -1,0.304,0.304,0.5,0,0,0,0.14,0.624,0.077,0,0,0.263 -0.667,0.302,0.302,0.2,0,0,0,0.14,0.624,0.0902,0,0,0.861 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0.136 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0.203 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0.484 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.161,0.161,0.217,0,0,0,0.281,0.605,0.0853,0,0,0.103 -0.667,0.276,0.276,0,0,0,0,0.14,0.675,0.191,0,0,0.102 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.13 -0.667,0.433,0.433,0,0.583,0,0,0.14,0.706,0.436,0.7,0,0.0866 -0.667,0.543,0.543,0,0.733,0,0,0.14,0.686,0.537,0.608,0,0.0433 -0.667,0.329,0.329,0,0.65,0,0,0.281,0.605,0.262,0.711,0,0.231 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0.0994,0,0.119 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0603 -1,0.177,0.177,0.7,0,0,0,0.281,0.595,0.0465,0,0,0.0839 -1,0.428,0.428,0,0,0,0,0,0.653,0.127,0,0,0.2 -1,0.415,0.415,0,0,0,0,0,0.653,0.143,0,0,0.534 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.111,0,0,0.315 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0.173 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.26 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.163,0.163,0,0.333,0,0,0.281,0.621,0.104,0.722,0,0.216 -0.333,0.172,0.172,0,0.65,0,0,0.281,0.636,0.125,0.19,0,0 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.0433 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.436,0,0,0.216 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.216 -1,0.888,0.888,0,0,0,0,0,0.684,0.756,0,0,0.203 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0765,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0377,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0318,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.637,0.0879,0,0,0.209 -0.667,0.304,0.304,0,0,0,0,0.14,0.624,0.077,0,0,0.196 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0.0433 -0.333,0.162,0.162,0.25,0,0,0,0.281,0.595,0.0662,0,0,0.303 -0.333,0.161,0.161,0.45,0.0833,0,0,0.281,0.595,0.0735,0.497,0,0 -0.333,0.16,0.16,0.467,0.9,0,0,0.281,0.595,0.0772,0.548,0,0.0866 -0.667,0.272,0.272,0,0,0,0,0.14,0.644,0.155,0.209,0,0.476 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0.75,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.667,0.433,0.433,0.667,0,0,0,0.14,0.706,0.436,0,0,0.216 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.0433 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0,0.0433 -1,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0595,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0238,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0651 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0318,0,0,0.185 -1,0.297,0.297,0,0,0,0,0.14,0.613,0.0639,0,0,0.0742 -0.667,0.304,0.304,0,0,0,0,0.14,0.624,0.077,0,0,0.178 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0902,0,0,0.561 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.1,0,0,0.295 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.111,0,0,0.248 -0.667,0.274,0.274,0.467,0,0,0,0.14,0.624,0.117,0,0,0.195 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.126 -1,0.271,0.271,0,0,0,0,0.14,0.624,0.139,0,0,0.183 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0.0637 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0.0433 -0.333,0.172,0.172,0.233,0,0,0,0.281,0.636,0.125,0,0,0.0433 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.216 -0.667,0.433,0.433,0,0.333,0,0,0.14,0.706,0.436,0.816,0,0.0866 -0.333,0.297,0.297,0,0.65,0,0,0.281,0.626,0.276,0,0,0 -1,0.888,0.888,0,0,0,0,0,0.684,0.756,0,0,0 -1,0.234,0.234,0,0,0,0,0.281,0.584,0.163,0,0,0.326 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.139 -1,0.177,0.177,0,0,0,0,0.281,0.595,0.0465,0,0,0.0566 -1,0.176,0.176,0,0,0,0,0.281,0.595,0.053,0,0,0.611 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0 -0.667,0.166,0.166,0,0,0.517,0.617,0.281,0.595,0.0633,0,0.209,0.13 -0.667,0.162,0.162,0,0,0,0.117,0.281,0.595,0.0662,0,0.411,0.0433 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0.367,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.139,0,0.496,0.471 -0.667,0.272,0.272,0,0,0,0,0.14,0.644,0.155,0,0,0.274 -0.667,0.276,0.276,0,0,0,0,0.14,0.675,0.191,0,0,0.121 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.225 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.189 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.303 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.476 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.26 -0.667,0.234,0.234,0,0,0,0,0.281,0.584,0.163,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0179,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0201,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0223,0,0,0 -1,0.239,0.239,0,0,0,0,0.14,0.582,0.0412,0,0,0.14 -0.667,0.297,0.297,0,0,0,0,0.14,0.613,0.069,0,0,0.216 -0.667,0.304,0.304,0,0,0,0,0.14,0.624,0.11,0,0,0.32 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0809,0,0,0.396 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.4 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.102,0,0,0.106 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.109,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.126,0,0,0.0433 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.142,0,0,0.0866 -1,0.272,0.272,0,0,0,0,0.14,0.644,0.293,0,0,0 -1,0.276,0.276,0,0,0,0,0.14,0.675,0.308,0,0,0.13 -1,0.294,0.294,0.05,0,0,0,0.14,0.706,0.318,0,0,0.0866 -0.333,0.196,0.196,1,0,0,0,0.281,0.641,0.196,0,0,0.157 -0.667,0.433,0.433,0.367,0,0,0,0.14,0.706,0.489,0,0,0.372 -1,0.79,0.79,0.55,0,0,0,0,0.746,0.852,0,0,0.0866 -1,0.888,0.888,0.867,0,0,0,0,0.684,0.786,0,0,0 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.337,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0181,0,0,0.597 -1,0.304,0.304,0,0,0.517,0.167,0.14,0.624,0.11,0,0,0.0995 -0.667,0.302,0.302,0,0,0,0.317,0.14,0.624,0.144,0,0.303,0.338 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.17,0,0.52,0.105 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.186,0,0.724,0 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.199,0,0.57,0.301 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.234,0,0.26,0.173 -0.667,0.271,0.271,0.3,0,0,0,0.14,0.624,0.267,0,0,0.491 -1,0.383,0.383,0.167,0,0,0,0,0.684,0.431,0,0,0.268 -0.667,0.276,0.276,0,0,0,0,0.14,0.675,0.308,0,0,0.0433 -0.667,0.294,0.294,0,0,0,0,0.14,0.706,0.318,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.374,0,0,0 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.489,0,0,0.13 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.574,0,0,0.173 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.53,0,0,0.216 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.337,0,0,0.183 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0875,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0377,0,0,0.173 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0238,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.141 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0238,0,0,0.141 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0318,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.613,0.0639,0,0,0.289 -0.667,0.304,0.304,0.25,0,0,0,0.14,0.624,0.077,0,0,0.426 -0.333,0.176,0.176,0.217,0,0,0,0.281,0.595,0.053,0,0,0.13 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0.0866 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0.0433 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.0866 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0 -0.333,0.172,0.172,0.5,0,0,0,0.281,0.636,0.125,0,0,0.13 -0.333,0.196,0.196,0.2,0,0,0,0.281,0.641,0.164,0,0,0.0433 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.13 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.286 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.0433 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0765,0,0,0 -1,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0595,0,0,0.185 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.377 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0318,0,0,0.206 -1,0.421,0.421,0,0,0,0,0,0.637,0.0879,0,0,0.109 -1,0.431,0.431,0,0,0,0,0,0.653,0.108,0,0,0.246 -1,0.428,0.428,0,0,0,0,0,0.653,0.127,0,0,1 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.1,0,0,0.29 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0.173 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.16,0.16,1,0,0,0,0.281,0.595,0.0772,0,0,0.26 -0.333,0.161,0.161,0.4,0,0,0,0.281,0.605,0.0853,0,0,0.173 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.173 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.0866 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.142 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.487 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.13 -1,0.603,0.603,0,0,0,0,0,0.622,0.457,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0186,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.144,0.144,0.233,0,0,0,0.281,0.574,0.0318,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.589,0.0399,0,0,0.0433 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0465,0,0,0.336 -0.667,0.176,0.176,0,0,0,0,0.281,0.595,0.053,0,0,0 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.1,0,0,0.339 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.111,0,0,0.316 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.13 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0 -0.333,0.163,0.163,0.233,0,0,0,0.281,0.621,0.104,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.0433 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.13 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.0866 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.175 -1,0.609,0.609,0,0.583,0,0,0.14,0.644,0.509,0.912,0,0.491 -1,0.234,0.234,0,0.65,0,0,0.281,0.584,0.163,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0765,0,0,0.26 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0377,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.589,0.0399,0,0,0 -1,0.304,0.304,0.467,0,0,0,0.14,0.624,0.077,0,0,0 -0.667,0.176,0.176,0,0,0,0,0.281,0.595,0.053,0,0,0.235 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0 -0.667,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0.258 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.131,0,0,0.216 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0.164,0,0.0433 -0.333,0.163,0.163,0.25,0.833,0,0,0.281,0.621,0.104,0.659,0,0 -0.667,0.294,0.294,0.217,0.15,0,0,0.14,0.706,0.234,0,0,0.0866 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.313,0,0,0.216 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.216 -0.333,0.297,0.297,0,0,0,0,0.281,0.626,0.276,0,0,0 -0.333,0.329,0.329,0,0,0,0,0.281,0.605,0.262,0,0,0.151 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0765,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0186,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0238,0,0,0.11 -1,0.239,0.239,0.233,0,0,0,0.14,0.582,0.0478,0,0,0.153 -1,0.421,0.421,0,0,0,0,0,0.637,0.0879,0,0,0.615 -1,0.304,0.304,0,0,0,0,0.14,0.624,0.077,0,0,0.598 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0902,0,0,0.0433 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.1,0,0,0.0433 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0 -0.667,0.276,0.276,0,0,0,0,0.14,0.675,0.191,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.706,0.234,0,0,0.311 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.216 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.173 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.13 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.0853 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0282,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0209,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.183 -1,0.174,0.174,0,0,0,0,0.281,0.589,0.0436,0,0,0.0762 -1,0.177,0.177,0,0,0,0,0.281,0.595,0.0641,0,0,0.119 -1,0.302,0.302,0,0,0,0,0.14,0.624,0.144,0,0,0.592 -0.667,0.293,0.293,0,0,0.517,0.417,0.14,0.624,0.17,0,0.112,0.365 -0.333,0.166,0.166,0,0,0,0.0667,0.281,0.595,0.102,0,0,0.0866 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.109,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.126,0,0,0.13 -0.333,0.16,0.16,0.467,0,0,0,0.281,0.595,0.142,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.605,0.156,0,0,0.0433 -0.667,0.276,0.276,0,0,0,0,0.14,0.675,0.308,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.706,0.318,0,0,0.346 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.374,0,0,0.0433 -1,0.625,0.625,0,0,0,0,0,0.777,0.725,0,0,0.13 -1,0.79,0.79,0,0,0,0,0,0.746,0.852,0,0,0.0866 -1,0.888,0.888,0,0,0,0,0,0.684,0.786,0,0,0.0866 -1,0.603,0.603,0,0,0,0,0,0.622,0.496,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0201,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0223,0,0,0 -1,0.239,0.239,0,0,0,0,0.14,0.582,0.0412,0,0,0 -0.667,0.174,0.174,0,0,0,0,0.281,0.589,0.0436,0,0,0.154 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0641,0,0,0.26 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0809,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.109,0,0,0.216 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.126,0,0,0.0866 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.142,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.156,0,0,0.173 -0.333,0.163,0.163,0.3,0,0,0,0.281,0.621,0.163,0,0,0.0433 -0.667,0.294,0.294,0.167,0,0,0,0.14,0.706,0.318,0,0,0 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.374,0,0,0.0433 -0.667,0.241,0.241,0,0,0,0,0.281,0.636,0.254,0,0,0.173 -1,0.543,0.543,0,0,0,0,0.14,0.686,0.574,0,0,0.254 -1,0.609,0.609,0,0,0,0,0.14,0.644,0.53,0,0,0 -1,0.234,0.234,0,0,0,0,0.281,0.584,0.178,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0238,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.174,0.174,0,0.333,0,0,0.281,0.589,0.0399,0.483,0,0 -1,0.304,0.304,0.467,0.65,0,0,0.14,0.624,0.077,0.273,0,0.0682 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0902,0.147,0,0.13 -0.667,0.293,0.293,0,0.833,0,0,0.14,0.624,0.1,0.396,0,0 -0.333,0.166,0.166,0,0.4,0,0,0.281,0.595,0.0633,0,0,0.0866 -0.667,0.274,0.274,0,0,0.517,0.367,0.14,0.624,0.117,0,0.0559,0.13 -0.667,0.271,0.271,0,0,0,1,0.14,0.624,0.131,0,0.524,0.0866 -0.333,0.16,0.16,0,0,0,0.117,0.281,0.595,0.0772,0,0.689,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0.375,0.173 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0.558,0 -0.667,0.294,0.294,0.233,0,0,0,0.14,0.706,0.234,0,0.486,0.0433 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.313,0,0.502,0.0433 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.436,0,0.517,0 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0.704,0.433 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0.707,0.0433 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0.467,0.216 -0.667,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0.0468,0.146 -0.667,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0595,0,0,0.115 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0806,0.0806,0.217,0,0,0,0.281,0.564,0.0238,0,0,0.111 -1,0.239,0.239,0,0,0,0,0.14,0.582,0.0478,0,0,0.13 -1,0.297,0.297,0,0,0,0,0.14,0.613,0.0639,0,0,0 -0.667,0.177,0.177,0,0.583,0,0,0.281,0.595,0.0465,0.799,0,0.173 -0.667,0.176,0.176,0,0.65,0,0,0.281,0.595,0.053,0.138,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.115 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.216 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.216 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0 -0.333,0.297,0.297,0.7,0,0,0,0.281,0.626,0.276,0,0,0.166 -0.667,0.609,0.609,0,0.333,0.103,0,0.14,0.644,0.509,0.455,0,0.219 -0.667,0.419,0.419,0,0.65,0.414,0.733,0.14,0.603,0.31,0.313,0.281,0 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0.0078,0.302 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0377,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0327 -1,0.421,0.421,0,0,0,0,0,0.637,0.0879,0,0,0.332 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0465,0,0,0.172 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0902,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0.19 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0633,0,0,0.13 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0.205 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.655 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0,0.236 -0.667,0.276,0.276,0.25,0,0,0,0.14,0.675,0.191,0,0,0.0866 -1,0.416,0.416,0.217,0,0,0,0,0.777,0.343,0,0,0.0433 -1,0.488,0.488,0,0,0,0,0,0.792,0.461,0,0,0.267 -0.667,0.433,0.433,0,0,0.517,0.117,0.14,0.706,0.436,0,0,0.0866 -0.667,0.543,0.543,0,0,0,0.617,0.14,0.686,0.537,0,0.666,0.13 -1,0.888,0.888,0,0,0,0,0,0.684,0.756,0,0.578,0.433 -1,0.603,0.603,0,0,0,0,0,0.622,0.457,0,0.142,0.296 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0,0.124 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.129 -0.667,0.176,0.176,0,0,0,0,0.281,0.595,0.053,0,0,0.0853 -0.333,0.05,0.05,0,0,0.517,0.367,0.421,0.566,0.0159,0,0.0579,0.104 -0.333,0.166,0.166,0,0,0,0.867,0.281,0.595,0.0633,0,0.735,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0.38,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0.364,0.26 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0.273,0.173 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.0853,0,0.276,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0,0.166,0.0866 -0.333,0.172,0.172,0,0.333,0,0,0.281,0.636,0.125,0.575,0,0.0433 -0.667,0.342,0.342,0,0.9,0,0,0.14,0.717,0.313,0.571,0,0.499 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.436,0.576,0,0.173 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0.389,0,0.0866 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.0433 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0765,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0377,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0238,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.75,0,0,0,0.421,0.566,0.0159,0,0,0.12 -1,0.297,0.297,0.667,0,0,0,0.14,0.613,0.0639,0,0,0.141 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0465,0,0,0 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.053,0.145,0,0 -0.333,0.172,0.172,0,0.833,0,0,0.281,0.595,0.0582,0.483,0,0 -0.333,0.166,0.166,0,0.15,0,0,0.281,0.595,0.0633,0,0,0.0433 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0662,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0735,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0.467,0,0,0,0.421,0.566,0.0159,0,0,0.293 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.125,0,0,0.433 -0.333,0.196,0.196,0,0,0,0,0.281,0.641,0.164,0,0,0.0433 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.216 -0.667,0.609,0.609,0,0,0,0,0.14,0.644,0.509,0,0,0.346 -0.667,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.173 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.137,0,0,0.38 -1,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0705,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.165 -1,0.239,0.239,0,0,0,0,0.14,0.582,0.0412,0.254,0,0 -1,0.297,0.297,0,0.883,0,0,0.14,0.613,0.069,0.589,0,0 -1,0.304,0.304,0.3,0.1,0,0,0.14,0.624,0.11,0.726,0,0.156 -1,0.302,0.302,0.4,0,0,0,0.14,0.624,0.144,0.0902,0,0.168 -0.333,0.172,0.172,0,0,0.517,0.667,0.281,0.595,0.0941,0,0.221,0.258 -0.333,0.166,0.166,0,0,0,0.317,0.281,0.595,0.102,0.311,0.469,0.0866 -1,0.385,0.385,0,0.883,0.517,0.667,0,0.653,0.29,0.831,0.289,0.0433 -0.667,0.271,0.271,0,0.6,0,0.317,0.14,0.624,0.234,0.0764,0.116,0.0433 -0.333,0.16,0.16,0,0,0,0,0.281,0.595,0.142,0,0,0 -0.667,0.272,0.272,0.05,0,0,0,0.14,0.644,0.293,0,0,0.0866 -0.333,0.163,0.163,0.183,0,0,0,0.281,0.621,0.163,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.706,0.318,0,0,0.173 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.374,0,0,0.386 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.489,0,0,0.349 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.574,0,0,0.186 -1,0.329,0.329,0,0,0,0,0.281,0.605,0.274,0,0,0.155 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.589,0.0436,0,0,0 -0.667,0.304,0.304,0.467,0,0,0,0.14,0.624,0.11,0,0,0.186 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.144,0,0,0.232 -1,0.415,0.415,0,0,0.517,0.667,0,0.653,0.246,0,0.105,0.611 -1,0.398,0.398,0,0,0,0.567,0,0.653,0.27,0,0.351,0.941 -1,0.385,0.385,0,0,0,0,0,0.653,0.29,0,0.401,0.165 -1,0.382,0.382,0,0,0,0,0,0.653,0.343,0,0.538,0.241 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.267,0,0.371,0.271 -0.333,0.161,0.161,0,0,0,0,0.281,0.605,0.156,0,0.408,0.216 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.163,0,0.234,0.173 -0.333,0.172,0.172,0,0,0,0,0.281,0.636,0.168,0,0.762,0.26 -0.667,0.342,0.342,0,0,0,0,0.14,0.717,0.374,0,0.464,0.173 -0.667,0.433,0.433,0,0,0,0,0.14,0.706,0.489,0,0.445,0.0866 -0.667,0.543,0.543,0,0.383,0,0,0.14,0.686,0.574,0.6,0.592,0.0433 -0.667,0.609,0.609,0,0.85,0,0,0.14,0.644,0.53,0,0,0.243 -0.667,0.234,0.234,0,0,0,0,0.281,0.584,0.178,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.399 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.21 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0238,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0465,0,0,0 -0.667,0.176,0.176,0,0,0,0,0.281,0.595,0.053,0,0,0.0705 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0582,0,0,0 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.111,0,0,0.154 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.117,0,0,0.444 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.131,0,0,0.223 -0.667,0.16,0.16,0,0,0,0,0.281,0.595,0.0772,0,0,0.188 -0.667,0.272,0.272,0,0,0,0,0.14,0.644,0.155,0,0,0.271 -0.333,0.163,0.163,0,0,0,0,0.281,0.621,0.104,0.142,0,0.195 -0.333,0.172,0.172,0,0.833,0,0,0.281,0.636,0.125,0.368,0,0.175 -0.333,0.196,0.196,0,0.4,0,0,0.281,0.641,0.164,0,0,0.373 -0.333,0.241,0.241,0,0,0,0,0.281,0.636,0.226,0,0,0.198 -0.667,0.543,0.543,0,0,0,0,0.14,0.686,0.537,0,0,0.0433 -1,0.888,0.888,0,0,0,0,0,0.684,0.756,0,0,0.606 -1,0.419,0.419,0,0,0,0,0.14,0.603,0.31,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.048 -1,0.287,0.287,0.483,0,0,0,0.14,0.615,0.0634,0,0,0 -0.667,0.288,0.288,0.467,0,0,0,0.14,0.625,0.0764,0,0,0 -0.667,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0,0.13 -0.667,0.262,0.262,0,0,0,0,0.14,0.625,0.11,0,0,0.149 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.0433 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.152,0.152,0.25,0,0,0,0.281,0.621,0.103,0,0,0.216 -0.667,0.266,0.266,1,0,0,0,0.14,0.709,0.232,0,0,0.0433 -0.667,0.299,0.299,1,0,0,0,0.14,0.719,0.31,0,0,0.0433 -1,0.528,0.528,1,0,0,0,0,0.78,0.64,0,0,0.173 -0.667,0.468,0.468,0.6,0,0,0,0.14,0.688,0.532,0,0,0.173 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.0433 -0.667,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.254 -1,0.14,0.14,0,0,0,0,0.281,0.575,0.0316,0,0,0 -0.667,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0844 -1,0.288,0.288,0.7,0,0,0,0.14,0.625,0.0764,0,0,0.15 -1,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0.468 -1,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0,0.493 -1,0.262,0.262,0,0,0.517,0.117,0.14,0.625,0.11,0,0,0.218 -0.667,0.254,0.254,0,0,0,0.867,0.14,0.625,0.116,0,0.464,0.305 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0.355,0.215 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.137,0,0.412,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.646,0.153,0,0.311,0.0433 -0.667,0.255,0.255,0,0,0,0,0.14,0.677,0.19,0,0.512,0.0866 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.232,0,0.27,0.26 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0.482,0 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0.645,0 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0.497,0.0433 -1,0.806,0.806,0,0,0,0,0,0.686,0.749,0,0,0.224 -1,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.772 -1,0.184,0.184,0,0,0,0,0.14,0.573,0.136,0,0,0.291 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.14,0.14,0,0,0,0,0.281,0.575,0.0316,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.169,0.169,0,0.583,0,0,0.281,0.595,0.0462,0.676,0,0 -0.667,0.165,0.165,0,0.633,0,0,0.281,0.595,0.0527,0,0,0.0433 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.0433 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.346 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.26 -0.333,0.209,0.209,0.233,0,0,0,0.281,0.637,0.224,0,0,0.0433 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0.175,0,0.346 -1,0.554,0.554,0,0.833,0.103,0,0.14,0.646,0.505,0.716,0,0.0866 -1,0.408,0.408,0,0.133,0.414,0.867,0.14,0.605,0.307,0.573,0.207,0.519 -1,0.184,0.184,0,0,0,0.617,0.14,0.573,0.136,0,0.187,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.23,0.23,0,0,0,0,0.14,0.584,0.0474,0,0,0.261 -0.667,0.168,0.168,0,0,0,0,0.281,0.59,0.0396,0,0,0.21 -0.667,0.169,0.169,0,0,0,0,0.281,0.595,0.0462,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.216 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.346 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.0866 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.13 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.173 -0.333,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.137 -1,0.302,0.302,0.217,0.333,0,0,0.281,0.606,0.26,0.562,0,0 -1,0.229,0.229,0,0.883,0,0,0.281,0.585,0.162,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.169,0.169,0.75,0,0,0,0.281,0.595,0.0636,0,0,0 -1,0.281,0.281,1,0,0,0,0.14,0.625,0.143,0,0,0.348 -1,0.384,0.384,1,0,0,0,0,0.655,0.244,0,0,0.0964 -0.333,0.156,0.156,1,0,0,0,0.281,0.595,0.101,0,0,0 -0.333,0.152,0.152,1,0,0,0,0.281,0.595,0.108,0,0,0 -0.333,0.151,0.151,0.55,0,0,0,0.281,0.595,0.125,0,0,0.26 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.265,0,0,0.0433 -0.667,0.252,0.252,0.5,0,0,0,0.14,0.646,0.291,0,0,0 -0.667,0.255,0.255,0.217,0,0,0,0.14,0.677,0.305,0,0,0.361 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.315,0,0,0.209 -0.667,0.299,0.299,0,0,0.517,0.617,0.14,0.719,0.371,0,0.209,0.303 -0.667,0.368,0.368,0,0,0,0.367,0.14,0.709,0.485,0,0.46,0.26 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0.135,0.0433 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.526,0,0,0.139 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0.103,0,0.421,0.566,0.0181,0,0,0.12 -0.333,0.168,0.168,0,0,0.414,0.733,0.281,0.59,0.0433,0,0.107,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.595,0.0636,0,0.344,0.209 -0.667,0.281,0.281,0,0,0,0,0.14,0.625,0.143,0,0.667,0.344 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.169,0,0.427,0 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.101,0,0.295,0.0866 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.108,0,0.313,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.125,0,0.584,0.0433 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.141,0,0.36,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.154,0,0.0559,0.13 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.162,0,0,0.33 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.315,0,0,0.241 -0.667,0.299,0.299,0,0,0,0,0.14,0.719,0.371,0,0,0.329 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.252,0,0,0.0866 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0,0.26 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.526,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0788,0.0788,0,0,0,0,0.281,0.564,0.0236,0,0,0.217 -1,0.23,0.23,0,0,0,0,0.14,0.584,0.0474,0,0,0.159 -0.333,0.168,0.168,0,0,0,0,0.281,0.59,0.0396,0,0,0.091 -0.333,0.169,0.169,0,0,0,0,0.281,0.595,0.0462,0,0,0.0859 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0527,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.0433 -0.667,0.262,0.262,0,0,0,0,0.14,0.625,0.11,0,0,0.26 -0.667,0.254,0.254,0,0,0,0,0.14,0.625,0.116,0,0,0.123 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0,0.173 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.173 -0.667,0.299,0.299,0,0.0833,0,0,0.14,0.719,0.31,0.403,0,0.346 -0.667,0.368,0.368,0,1,0,0,0.14,0.709,0.432,0.442,0,0 -0.667,0.468,0.468,0,0.133,0,0,0.14,0.688,0.532,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.225 -0.667,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0.0433 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.131 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.25 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0333 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.147 -1,0.287,0.287,0.5,0,0,0,0.14,0.615,0.0634,0.168,0,0.426 -0.667,0.288,0.288,1,0.833,0.103,0,0.14,0.625,0.0764,0.608,0,0.184 -0.667,0.281,0.281,1,0.133,0.414,0.483,0.14,0.625,0.0895,0,0.298,0.166 -0.667,0.273,0.273,0.383,0.583,0.517,0.617,0.14,0.625,0.0997,0.759,0.267,0.0433 -0.333,0.156,0.156,0,0.383,0,0.117,0.281,0.595,0.0629,0.125,0,0.26 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.258 -0.667,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.216 -0.667,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.41 -0.667,0.266,0.266,1,0,0,0,0.14,0.709,0.232,0,0,0.246 -0.667,0.299,0.299,0.2,0,0,0,0.14,0.719,0.31,0,0,0.186 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.0433 -0.667,0.259,0.259,0,0,0,0,0.281,0.627,0.274,0,0,0.192 -1,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.13 -1,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.14,0.14,0.467,0,0,0,0.281,0.575,0.0316,0,0,0 -1,0.287,0.287,0,0,0,0,0.14,0.615,0.0634,0.175,0,0.316 -0.667,0.288,0.288,0,0.833,0,0,0.14,0.625,0.0764,0.63,0,0 -0.333,0.165,0.165,0,0.383,0,0,0.281,0.595,0.0527,0.746,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.433 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0.13 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0,0.05,0.05,0.717,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.173 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.26 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.105 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.333,0.209,0.209,0.467,0,0,0,0.281,0.637,0.224,0,0,0.285 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0,0.202 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.108 -1,0.588,0.588,0,0,0,0,0,0.624,0.453,0,0,0.335 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.194 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.163 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.0508,0.0508,0,0,0,0,0.281,0.564,0.0186,0,0,0 -1,0.0788,0.0788,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.14,0.14,0,0,0,0,0.281,0.575,0.0316,0,0,0.119 -1,0.168,0.168,0,0,0,0,0.281,0.59,0.0396,0,0,0.127 -1,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0.383 -1,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0.0859 -1,0.273,0.273,0,0,0.517,0.117,0.14,0.625,0.0997,0,0,0.181 -1,0.367,0.367,0,0,0,0.367,0,0.655,0.157,0,0.147,0.341 -1,0.355,0.355,0,0,0,0,0,0.655,0.166,0,0,0.368 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.173 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.303 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.26 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.173 -0.667,0.468,0.468,0,0.333,0,0,0.14,0.688,0.532,0.692,0,0.159 -1,0.806,0.806,0,0.883,0,0,0,0.686,0.749,0.344,0,0.341 -1,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.403 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.273 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0322 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.144 -1,0.0788,0.0788,0,0,0,0,0.281,0.564,0.0236,0,0,0.132 -0.667,0.14,0.14,0,0,0,0,0.281,0.575,0.0316,0,0,0.0375 -1,0.287,0.287,0,0,0,0,0.14,0.615,0.0634,0,0,0.227 -0.667,0.169,0.169,0,0,0,0,0.281,0.595,0.0462,0,0,0.13 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0527,0,0,0.316 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.153 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.173 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.0433 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.216 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.13 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0 -0.333,0.175,0.175,0.467,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.216 -0.333,0.259,0.259,0,0,0,0,0.281,0.627,0.274,0,0,0.286 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0 -0.667,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.0433 -1,0.252,0.252,0,0,0,0,0,0.577,0.196,0,0,0 -1,0.0999,0.0999,0,0,0,0,0.14,0.563,0.0699,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.177 -0.333,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.595,0.0636,0,0,0.0935 -0.667,0.281,0.281,0,0,0,0,0.14,0.625,0.143,0,0,0.115 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.169,0,0,0.233 -0.667,0.262,0.262,0.25,0,0,0,0.14,0.625,0.185,0,0,0.0873 -0.667,0.254,0.254,0.467,0,0,0,0.14,0.625,0.198,0,0,0.469 -1,0.352,0.352,0,0,0,0,0,0.655,0.34,0,0,0.13 -0.333,0.15,0.15,0.233,0,0,0,0.281,0.595,0.141,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.646,0.291,0,0,0.0866 -0.667,0.255,0.255,0,0,0,0,0.14,0.677,0.305,0,0,0.13 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.315,0,0,0.0866 -0.667,0.299,0.299,0,0,0,0,0.14,0.719,0.371,0,0,0.13 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.485,0,0,0.303 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.281,0.606,0.272,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0869,0,0,0.23 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.044,0,0,0.0881 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0281,0,0,0.175 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.14,0.14,0,0,0,0,0.281,0.575,0.0295,0,0,0.13 -1,0.287,0.287,0,0,0,0,0.14,0.615,0.0685,0,0,0.368 -0.667,0.288,0.288,0,0,0,0,0.14,0.625,0.109,0,0,0 -0.667,0.281,0.281,0.25,0,0,0,0.14,0.625,0.143,0,0,0.242 -0.667,0.273,0.273,0.7,0,0,0,0.14,0.625,0.169,0,0,0.0433 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.101,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.108,0,0,0.0433 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.233,0,0,0.0433 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.141,0,0,0.0433 -0.667,0.151,0.151,0.467,0,0,0,0.281,0.606,0.154,0,0,0.0433 -0.667,0.152,0.152,0,0,0,0,0.281,0.621,0.162,0,0,0.13 -0.667,0.158,0.158,0,0,0,0,0.281,0.637,0.167,0,0,0.13 -0.667,0.175,0.175,0,0,0,0,0.281,0.642,0.194,0,0,0.0433 -0.667,0.209,0.209,0,0,0,0,0.281,0.637,0.252,0,0,0.185 -1,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0,0.24 -1,0.806,0.806,0,0,0,0,0,0.686,0.78,0,0,0.0532 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0788,0.0788,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.23,0.23,0,0,0,0,0.14,0.584,0.0474,0,0,0 -1,0.287,0.287,0.717,0,0,0,0.14,0.615,0.0634,0,0,0 -1,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0.0866 -0.667,0.281,0.281,0.467,0,0,0,0.14,0.625,0.0895,0,0,0.0866 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0,0.0433 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.173 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.0433 -1,0.374,0.374,0,0,0,0,0,0.78,0.34,0,0,0 -1,0.424,0.424,0,0,0,0,0,0.796,0.457,0,0,0.0433 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.432,0,0,0.13 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0,0.0866 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.173 -0.667,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0.346 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.14,0.14,0.25,0,0,0,0.281,0.575,0.0316,0,0,0 -0.667,0.168,0.168,1,0,0,0,0.281,0.59,0.0396,0,0,0 -0.667,0.288,0.288,1,0,0,0,0.14,0.625,0.0764,0,0,0.162 -0.333,0.165,0.165,0.633,0,0,0,0.281,0.595,0.0527,0,0,0.14 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.205 -0.333,0.156,0.156,0.467,0,0,0,0.281,0.595,0.0629,0,0,0.405 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.13 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.0433 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.0433 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.232,0,0,0.38 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0.155,0,0 -1,0.168,0.168,0,0.833,0,0,0.281,0.59,0.0396,0.646,0,0 -0.667,0.288,0.288,0,0.383,0.517,0.367,0.14,0.625,0.0764,0.516,0.0468,0.0995 -0.667,0.281,0.281,0,0,0,0.367,0.14,0.625,0.0895,0,0.473,0.275 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0.653,0.0739 -0.667,0.262,0.262,0,0,0,0,0.14,0.625,0.11,0,0.444,0.497 -0.667,0.254,0.254,0,0,0,0,0.14,0.625,0.116,0,0.508,0.245 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0.526,0.0433 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.144 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.121 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.232,0,0,0.248 -0.667,0.299,0.299,0,0,0,0,0.14,0.719,0.31,0,0,0.122 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.432,0,0,0.498 -0.333,0.259,0.259,0.467,0,0,0,0.281,0.627,0.274,0,0,0.0866 -1,0.806,0.806,0,0,0,0,0,0.686,0.749,0,0,0.13 -1,0.588,0.588,0,0,0,0,0,0.624,0.453,0,0,0.104 -1,0.252,0.252,0,0.583,0,0,0,0.577,0.196,0.657,0,0.303 -1,0.0749,0.0749,0,0.383,0,0,0.281,0.564,0.0374,0,0,0.173 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.168,0.168,0.5,0,0,0,0.281,0.59,0.0396,0,0,0.115 -0.667,0.288,0.288,0.217,0,0,0,0.14,0.625,0.0764,0,0,0.253 -0.667,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0.451 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0,0.137 -0.667,0.262,0.262,0.717,0,0,0,0.14,0.625,0.11,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.137,0,0,0.173 -0.667,0.252,0.252,0,0,0,0,0.14,0.646,0.153,0,0,0.303 -0.667,0.255,0.255,0,0,0,0,0.14,0.677,0.19,0,0,0.14 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.173 -0.333,0.175,0.175,0.25,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.667,0.368,0.368,0.217,0,0,0,0.14,0.709,0.432,0,0,0.412 -0.333,0.259,0.259,0.75,0,0,0,0.281,0.627,0.274,0,0,0.173 -1,0.806,0.806,0.2,0,0,0,0,0.686,0.749,0,0,0.517 -1,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0.32 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0924 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.12 -1,0.287,0.287,0,0,0,0,0.14,0.615,0.0634,0,0,0.0989 -1,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0.323 -1,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0.458 -0.667,0.273,0.273,0,0,0,0,0.14,0.625,0.0997,0,0,0.13 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0.216 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0.173 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.173 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.26 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.216 -0.667,0.299,0.299,0.5,0,0,0,0.14,0.719,0.31,0,0,0.13 -0.667,0.368,0.368,0.45,0,0,0,0.14,0.709,0.432,0,0,0.216 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0,0.0433 -0.667,0.554,0.554,0,0.583,0,0,0.14,0.646,0.505,0.788,0,0 -1,0.588,0.588,0,1,0,0,0,0.624,0.453,0.645,0,0 -1,0.184,0.184,0,0.117,0,0,0.14,0.573,0.136,0.394,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0934,0,0,0 -0.667,0.156,0.156,0,0,0,0,0.281,0.595,0.101,0,0,0 -0.667,0.152,0.152,0,0,0,0,0.281,0.595,0.108,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.595,0.125,0,0,0.346 -0.667,0.15,0.15,0,0,0,0,0.281,0.595,0.141,0,0,0.13 -0.667,0.151,0.151,0,0,0,0,0.281,0.606,0.154,0,0,0.0866 -0.667,0.255,0.255,0.717,0,0,0,0.14,0.677,0.305,0,0,0.258 -0.667,0.266,0.266,0,0,0,0,0.14,0.709,0.315,0,0,0.173 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.194,0,0,0.485 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.485,0,0,0.303 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0,0.346 -1,0.554,0.554,0,0,0,0,0.14,0.646,0.526,0,0,0.0866 -1,0.408,0.408,0,0,0,0,0.14,0.605,0.334,0,0,0.216 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0869,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.044,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0281,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.288,0.288,0,0,0,0,0.14,0.625,0.109,0,0,0.198 -0.667,0.281,0.281,0,0,0,0,0.14,0.625,0.143,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0934,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.101,0,0,0.384 -0.667,0.152,0.152,0,0,0,0,0.281,0.595,0.108,0,0,0.189 -0.667,0.151,0.151,0,0,0,0,0.281,0.595,0.125,0,0,0.189 -0.667,0.15,0.15,0,0,0,0,0.281,0.595,0.141,0,0,0.485 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.154,0,0,0.216 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.162,0,0,0.173 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.167,0,0,0.44 -0.667,0.299,0.299,0,0,0,0,0.14,0.719,0.371,0,0,0.0433 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.485,0,0,0.0866 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.526,0,0,0.13 -0.667,0.229,0.229,0,0,0,0,0.281,0.585,0.176,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.0666,0.0666,0,0,0,0,0.14,0.563,0.0314,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.23,0.23,0,0,0,0,0.14,0.584,0.0474,0,0,0.484 -0.667,0.168,0.168,0,0,0,0,0.281,0.59,0.0396,0,0,0.412 -1,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0.187 -1,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.182 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.309 -0,0.05,0.05,0.717,0,0,0,0.421,0.566,0.0159,0,0,0.236 -0.667,0.299,0.299,0,0,0,0,0.14,0.719,0.31,0,0,0.0433 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.432,0,0,0.0433 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0,0.173 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.0433 -0.667,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.23,0.23,0,0,0,0,0.14,0.584,0.0474,0,0,0.237 -0.667,0.287,0.287,0,0,0,0,0.14,0.615,0.0634,0,0,0 -0.667,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0.114 -0.333,0.165,0.165,0.717,0,0,0,0.281,0.595,0.0527,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.0433 -0.667,0.262,0.262,0,0,0,0,0.14,0.625,0.11,0,0,0.173 -0.667,0.254,0.254,0,0,0,0,0.14,0.625,0.116,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.0433 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.137,0,0,0.0433 -0.667,0.252,0.252,0,0,0,0,0.14,0.646,0.153,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.346 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.0433 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.0433 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.432,0,0,0.0866 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0.193,0,0.173 -0.667,0.554,0.554,0,0.833,0,0,0.14,0.646,0.505,0.606,0,0.233 -1,0.05,0.05,0,0.383,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.14,0.14,0.25,0,0,0,0.281,0.575,0.0316,0,0,0.255 -0.667,0.287,0.287,0.217,0,0,0,0.14,0.615,0.0634,0,0,0.0642 -0.667,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0527,0,0,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.389 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0.13 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.13 -0.667,0.251,0.251,0.25,0,0,0,0.14,0.625,0.13,0,0,0.216 -0.333,0.15,0.15,0.467,0,0,0,0.281,0.595,0.0767,0,0,0 -0.667,0.252,0.252,0,0,0,0,0.14,0.646,0.153,0,0,0.225 -0.667,0.255,0.255,0.467,0,0,0,0.14,0.677,0.19,0,0,0.341 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0.0663,0,0.0433 -0.333,0.175,0.175,0.233,0.833,0,0,0.281,0.642,0.163,0.589,0,0.0433 -0.667,0.368,0.368,0,0.133,0,0,0.14,0.709,0.432,0.564,0,0.303 -0.333,0.259,0.259,0,0,0,0,0.281,0.627,0.274,0,0,0.155 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.389 -0.667,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0.0866 -1,0.184,0.184,0,0,0,0,0.14,0.573,0.136,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0788,0.0788,0.5,0,0,0,0.281,0.564,0.0236,0,0,0.157 -1,0.23,0.23,0.7,0,0,0,0.14,0.584,0.0474,0,0,0.0691 -0.667,0.287,0.287,0,0,0,0,0.14,0.615,0.0634,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.595,0.0462,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0527,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.0866 -0.667,0.262,0.262,0,0,0,0,0.14,0.625,0.11,0,0,0 -0.667,0.254,0.254,0,0,0,0,0.14,0.625,0.116,0,0,0.0866 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.137,0,0,0.13 -0.667,0.252,0.252,0,0,0,0,0.14,0.646,0.153,0,0,0 -0.667,0.255,0.255,0.25,0,0,0,0.14,0.677,0.19,0,0,0 -0.333,0.158,0.158,1,0,0,0,0.281,0.637,0.124,0,0,0.0433 -0.333,0.175,0.175,0.917,0,0,0,0.281,0.642,0.163,0,0,0.0866 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.606 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0,0 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.36 -0.667,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.21 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.102 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0788,0.0788,0,0,0,0,0.281,0.564,0.0236,0,0,0.31 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.149 -1,0.405,0.405,0,0,0,0,0,0.64,0.0871,0,0,0.129 -0.667,0.288,0.288,0,0,0,0,0.14,0.625,0.0764,0,0,0.514 -0.667,0.281,0.281,0,0,0,0,0.14,0.625,0.0895,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.152,0.152,0.217,0,0,0,0.281,0.621,0.103,0,0,0 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0 -0.333,0.175,0.175,0.25,0,0,0,0.281,0.642,0.163,0,0,0 -1,0.528,0.528,0.467,0,0,0,0,0.78,0.64,0,0,0.13 -1,0.677,0.677,0,0,0,0,0,0.749,0.791,0,0,0.431 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.0157 -0.667,0.229,0.229,0,0,0,0,0.281,0.585,0.162,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.439 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0.333,0,0,0.421,0.566,0.0181,0.676,0,0 -1,0.0508,0.0508,0,0.633,0,0,0.281,0.564,0.0201,0.744,0,0 -1,0.0788,0.0788,0,0,0,0,0.281,0.564,0.0223,0.127,0,0 -1,0.14,0.14,0,0,0,0,0.281,0.575,0.0295,0,0,0 -1,0.287,0.287,0.233,0,0,0,0.14,0.615,0.0685,0,0,0.13 -0.667,0.169,0.169,0,0,0,0,0.281,0.595,0.0636,0,0,0.216 -0.667,0.165,0.165,0,0,0,0,0.281,0.595,0.0803,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0934,0,0,0.0866 -0.667,0.156,0.156,0,0,0,0,0.281,0.595,0.101,0.118,0,0.623 -0.667,0.254,0.254,0,0.833,0,0,0.14,0.625,0.198,0.762,0,0.13 -0.667,0.251,0.251,0,0.383,0,0,0.14,0.625,0.233,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.141,0,0,0.0866 -0.333,0.151,0.151,0,0.333,0,0,0.281,0.606,0.154,0.648,0,0 -0.333,0.152,0.152,0,0.633,0,0,0.281,0.621,0.162,0.315,0,0.346 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.167,0,0,0.148 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.194,0,0,0.13 -0.667,0.368,0.368,0,0,0,0,0.14,0.709,0.485,0,0,0.0433 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.57,0,0,0 -1,0.554,0.554,0,0,0,0,0.14,0.646,0.526,0,0,0.0433 -1,0.408,0.408,0,0,0,0,0.14,0.605,0.334,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0869,0,0,0.121 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.044,0,0,0 -1,0.0583,0.0583,0.233,0,0,0,0.281,0.564,0.0281,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0208,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0179,0,0,0.0433 -1,0.05,0.05,0,0,0.517,0.117,0.421,0.566,0.0181,0,0,0.211 -1,0.0788,0.0788,0,0,0,0.117,0.281,0.564,0.0223,0,0.164,0.374 -1,0.14,0.14,0,0,0,0,0.281,0.575,0.0295,0,0,0.531 -1,0.287,0.287,0,0,0,0,0.14,0.615,0.0685,0,0,0.142 -0.667,0.169,0.169,0,0,0,0,0.281,0.595,0.0636,0,0,0.303 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0803,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0934,0,0,0.13 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.101,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.108,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.125,0,0,0.173 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.141,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.154,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.162,0,0,0.0866 -0.667,0.266,0.266,0,0.333,0,0,0.14,0.709,0.315,0.65,0,0 -0.667,0.299,0.299,0,0.883,0,0,0.14,0.719,0.371,0.586,0,0.0433 -0.667,0.368,0.368,0,0.333,0,0,0.14,0.709,0.485,0.615,0,0 -0.667,0.468,0.468,0,0.633,0,0,0.14,0.688,0.57,0,0,0.0433 -0.667,0.302,0.302,0,0,0,0,0.281,0.606,0.272,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.287,0.287,0,0,0,0,0.14,0.615,0.0634,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.281,0.595,0.0462,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0527,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0 -0.667,0.254,0.254,0,0,0,0,0.14,0.625,0.116,0,0,0.252 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.183 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.255,0.255,0,0,0,0,0.14,0.677,0.19,0,0,0.303 -0.333,0.158,0.158,0.233,0,0,0,0.281,0.637,0.124,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.0711 -1,0.368,0.368,0,0,0,0,0.14,0.709,0.432,0,0,0.159 -1,0.677,0.677,0,0,0,0,0,0.749,0.791,0,0,0.253 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.26 -0.667,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.0433 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0.0866 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0.0433 -0.667,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.23,0.23,0.717,0,0,0,0.14,0.584,0.0474,0,0,0.394 -0.667,0.168,0.168,0,0,0,0,0.281,0.59,0.0396,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.144 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.135 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0.216 -0.333,0.156,0.156,0.75,0,0,0,0.281,0.595,0.0629,0,0,0 -0.333,0.152,0.152,0.2,0,0,0,0.281,0.595,0.0658,0,0,0.0866 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0,0 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.291 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.394 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.0866 -0.667,0.299,0.299,0,0,0,0,0.14,0.719,0.31,0,0,0.0866 -0.667,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.174 -1,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0508,0.0508,0,0,0,0,0.281,0.564,0.0186,0,0,0.31 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.281,0.59,0.0396,0,0,0.0433 -0.667,0.169,0.169,0,0,0.517,0.617,0.281,0.595,0.0462,0,0.187,0.0866 -0.667,0.165,0.165,0,0,0,0.117,0.281,0.595,0.0527,0,0.27,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.184 -0.667,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.253 -0.667,0.251,0.251,0,0,0,0,0.14,0.625,0.13,0,0,0.173 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0433 -0.333,0.152,0.152,0.717,0,0,0,0.281,0.621,0.103,0,0,0.13 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.216 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0.12,0,0.173 -0.667,0.468,0.468,0,0.833,0,0,0.14,0.688,0.532,0.611,0,0.392 -1,0.806,0.806,0,0.383,0,0,0,0.686,0.749,0,0,0.255 -1,0.408,0.408,0,0,0,0,0.14,0.605,0.307,0,0,0.267 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0374,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0236,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0171,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0157,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0788,0.0788,0.25,0,0,0,0.281,0.564,0.0236,0,0,0.177 -1,0.14,0.14,0.467,0,0,0,0.281,0.575,0.0316,0,0,0.39 -0.667,0.287,0.287,0.467,0,0,0,0.14,0.615,0.0634,0,0,0 -0.333,0.169,0.169,0.217,0,0,0,0.281,0.595,0.0462,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.281,0.595,0.0527,0,0,0.216 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0578,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.281,0.595,0.0629,0,0,0.173 -0.333,0.152,0.152,0,0,0,0,0.281,0.595,0.0658,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.281,0.595,0.073,0,0,0.238 -0.333,0.15,0.15,0,0,0,0,0.281,0.595,0.0767,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.281,0.606,0.0846,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.281,0.621,0.103,0,0,0.0866 -0.333,0.158,0.158,0,0,0,0,0.281,0.637,0.124,0,0,0.0866 -0.333,0.175,0.175,0,0,0,0,0.281,0.642,0.163,0,0,0.26 -0.333,0.209,0.209,0,0,0,0,0.281,0.637,0.224,0,0,0.0866 -0.667,0.468,0.468,0,0,0,0,0.14,0.688,0.532,0,0,0.27 -0.667,0.554,0.554,0,0,0,0,0.14,0.646,0.505,0,0,0.0433 -1,0.588,0.588,0,0,0,0,0,0.624,0.453,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0759,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.28 -1,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0.667,0.266,0.266,0,0,0,0,0.421,0.552,0.0923,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.559,0.0593,0,0,0.0433 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.113,0,0,0.0866 -0.667,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0.303 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.563 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.175 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.353 -0.667,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.13 -0.667,0.417,0.417,0,0.333,0,0,0.807,0.604,0.55,0.51,0,0.13 -0.667,0.505,0.505,0,0.833,0,0,0.807,0.57,0.521,0,0,0.385 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0.261 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.546,0.16,0,0,0 -1,0.374,0.374,0.467,0,0.517,0.483,0.421,0.546,0.212,0,0.161,0 -1,0.362,0.362,0,0,0,0,0.421,0.546,0.252,0,0.449,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.191,0,0.418,0.0866 -0.667,0.239,0.239,0,0,0,0,0.421,0.552,0.204,0,0.718,0.13 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.24,0,0.458,0.0866 -1,0.33,0.33,0,0,0,0,0.421,0.546,0.401,0,0.237,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.3,0,0,0 -0.667,0.24,0.24,0,0,0,0,0.421,0.596,0.315,0,0,0.0866 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.326,0,0,0.488 -1,0.388,0.388,0,0,0,0,0.912,0.663,0.565,0,0,0.182 -1,0.471,0.471,0,0,0,0,1,0.65,0.743,0,0,0.519 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0,0.299 -1,0.733,0.733,0,0,0,0,1,0.572,0.806,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0.75,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.279,0.279,0.183,0,0,0,0.421,0.544,0.0706,0,0,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.552,0.113,0.282,0,0 -0.333,0.158,0.158,0,0.833,0,0,0.421,0.559,0.0826,0.621,0,0.0433 -0.333,0.154,0.154,0,0.567,0,0,0.421,0.559,0.0961,0,0,0.227 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.104,0,0,0.0794 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.111,0,0,0.303 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.129,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.146,0,0,0.173 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.159,0,0,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.167,0,0,0.0433 -0.333,0.149,0.149,0.467,0,0,0,0.421,0.594,0.172,0,0,0.297 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.383,0,0,0.0866 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.501,0,0,0.277 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0,0 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.543,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.224,0.224,0.467,0,0,0,0.807,0.518,0.0488,0,0,0.429 -1,0.279,0.279,0,0,0,0,0.421,0.544,0.0653,0,0,0.163 -0.667,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0.0841 -0.667,0.266,0.266,0,0,0,0,0.421,0.552,0.0923,0,0,0.405 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0.0433 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.13 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.0866 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.32,0.116,0,0.53 -0.667,0.331,0.331,0,0.833,0,0,0.807,0.622,0.446,0.676,0,0 -0.667,0.417,0.417,0,0.817,0,0,0.807,0.604,0.55,0,0,0.25 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.238 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0.207 -1,0.184,0.184,0,0,0,0,0.807,0.509,0.14,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0.0833,0,0,0.421,0.566,0.0159,0.497,0,0 -0.667,0.266,0.266,0,1,0,0,0.421,0.552,0.0923,0.309,0,0.269 -0.333,0.154,0.154,0,0.317,0,0,0.421,0.559,0.0593,0,0,0.406 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.552,0.119,0,0,0.216 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.134,0,0,0.303 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.185 -0.333,0.19,0.19,0.25,0,0,0,0.614,0.594,0.231,0,0,0 -0.667,0.417,0.417,0.683,0,0,0,0.807,0.604,0.55,0,0,0 -0.667,0.505,0.505,0,0,0.517,0.617,0.807,0.57,0.521,0,0.239,0.13 -0.667,0.392,0.392,0,0,0,0.1,0.807,0.535,0.317,0,0.321,0.13 -1,0.252,0.252,0,0,0,0,1,0.481,0.203,0,0.447,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0.568,0.0866 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0.435,0 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0173,0,0.15,0.223 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0158,0,0,0.0156 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.137,0.137,0,0,0,0,0.614,0.542,0.0323,0,0,0.223 -0.667,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.135 -0.667,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0.332 -1,0.374,0.374,0,0,0,0,0.421,0.546,0.131,0,0,0.296 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.103,0,0,0.323 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.113,0,0,0.2 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0.225 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0 -0.333,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0.667,0.158,0.158,0,0.333,0,0,0.421,0.559,0.0541,0.637,0,0 -0.667,0.258,0.258,0,0.6,0,0,0.421,0.552,0.103,0.637,0,0.197 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.113,0.913,0,0 -0.667,0.239,0.239,0,0,0.103,0,0.421,0.552,0.119,0.77,0,0.0866 -0.333,0.144,0.144,0,0,0.414,0.233,0.421,0.559,0.0751,0,0.0754,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.13 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0.0433 -0.333,0.19,0.19,0.233,0,0,0,0.614,0.594,0.231,0,0,0.389 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.55,0,0,0.0866 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.0866 -0.667,0.221,0.221,0.7,0,0,0,0.614,0.55,0.167,0,0,0.0433 -1,0.184,0.184,0,0,0,0,0.807,0.509,0.14,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.328 -1,0.277,0.277,0,0,0,0,0.421,0.552,0.0788,0,0,0.0631 -1,0.374,0.374,0,0,0,0,0.421,0.546,0.131,0,0,0.574 -1,0.362,0.362,0,0,0,0,0.421,0.546,0.146,0,0,0.472 -1,0.346,0.346,0,0,0,0,0.421,0.546,0.162,0,0,0.348 -1,0.239,0.239,0,0,0,0,0.421,0.552,0.119,0,0,0.262 -0.667,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0.365 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.0907 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0.11 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.433 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.216 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0.433 -0.333,0.19,0.19,0,0,0,0,0.614,0.594,0.231,0,0,0.0433 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.13 -0.333,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.0433 -0.667,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0444,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.552,0.113,0,0,0 -0.667,0.266,0.266,0,0,0,0,0.421,0.552,0.147,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.174,0,0,0.253 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.104,0,0,0.303 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.111,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.129,0,0,0.0866 -0.333,0.143,0.143,0.5,0,0,0,0.421,0.559,0.146,0,0,0 -0.333,0.05,0.05,0.2,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0.667,0.24,0.24,0,0,0,0,0.421,0.596,0.315,0,0,0.13 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.326,0,0,0.13 -0.667,0.275,0.275,0,0.333,0,0,0.749,0.63,0.383,0.683,0,0.216 -0.667,0.331,0.331,0,1,0,0,0.807,0.622,0.501,0.591,0,0.0866 -0.667,0.417,0.417,0,0.317,0,0,0.807,0.604,0.588,0,0,0.0964 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.281,0,0,0.0866 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.182,0,0,0.26 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.134 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0444,0,0,0.137 -1,0.163,0.163,0.25,0,0,0,0.421,0.559,0.0654,0,0,0 -0.667,0.158,0.158,0.217,0,0,0,0.421,0.559,0.0826,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.174,0,0,0.0433 -0.667,0.247,0.247,0.25,0,0,0,0.421,0.552,0.191,0,0,0 -0.667,0.239,0.239,0.45,0.0833,0,0,0.421,0.552,0.204,0.449,0,0.13 -0.667,0.237,0.237,0,1,0,0,0.421,0.552,0.24,0.265,0,0.216 -0.667,0.237,0.237,0,0.0833,0,0,0.421,0.552,0.273,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.159,0,0,0.0433 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.167,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.172,0,0,0.26 -0.333,0.162,0.162,0.25,0,0,0,0.585,0.598,0.2,0,0,0.0866 -0.667,0.331,0.331,0.45,0,0,0,0.807,0.622,0.501,0,0,0.13 -0.667,0.234,0.234,0,0,0,0,0.614,0.585,0.303,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.346 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.552,0.0788,0,0,0.0972 -1,0.266,0.266,0,0,0,0,0.421,0.552,0.0923,0,0,0.317 -1,0.258,0.258,0,0,0,0,0.421,0.552,0.103,0,0,0.132 -0.667,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0.0939,0,0.272 -1,0.334,0.334,0,0.833,0,0,0.421,0.546,0.171,0.446,0,0.41 -0.667,0.237,0.237,0,0.567,0,0,0.421,0.552,0.134,0.486,0,0.402 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.142,0,0,0.293 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.158,0,0,0.0433 -0.667,0.24,0.24,0,0,0,0,0.421,0.596,0.196,0,0,0.13 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.0866 -0.667,0.275,0.275,0.467,0,0,0,0.749,0.63,0.32,0,0,0.0866 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.0866 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.55,0,0,0.464 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0.287 -0.667,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0,0.221 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.171 -0.667,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.2 -1,0.277,0.277,0.5,0,0.103,0,0.421,0.552,0.0788,0,0,0.0435 -0.667,0.266,0.266,0.2,0,0.414,0.867,0.421,0.552,0.0923,0,0.254,0 -0.667,0.258,0.258,0,0,0,0.583,0.421,0.552,0.103,0,0.42,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.113,0,0.623,0 -0.667,0.239,0.239,0,0,0,0,0.421,0.552,0.119,0,0.353,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0.46,0.519 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0.349,0.0433 -0.333,0.144,0.144,0.467,0,0,0,0.421,0.568,0.0871,0,0.265,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.13 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0.358 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.26 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.55,0,0,0.0866 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.285 -1,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.0749,0.0749,0.233,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.224,0.224,0.467,0,0,0,0.807,0.518,0.0488,0,0,0.143 -0.667,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.208 -0.667,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0.667,0.158,0.158,0,0,0,0,0.421,0.559,0.0541,0,0,0.448 -0.333,0.154,0.154,0,0,0,0,0.421,0.559,0.0593,0,0,0.135 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0.536 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.173 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.158,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0.087 -1,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0884 -1,0.39,0.39,0,0,0,0,0.421,0.546,0.11,0,0,0.302 -0.667,0.266,0.266,0,0,0,0,0.421,0.552,0.0923,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.103,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.113,0,0,0.0433 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0.0866 -0.667,0.237,0.237,0.5,0,0,0,0.421,0.552,0.134,0,0,0 -0.667,0.237,0.237,0.433,0,0,0,0.421,0.552,0.142,0,0,0.137 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.173 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0 -0.333,0.19,0.19,0,0,0,0,0.614,0.594,0.231,0,0,0.363 -0.333,0.234,0.234,0,0,0.517,0.367,0.614,0.585,0.283,0,0.0299,0.0866 -0.333,0.278,0.278,0,0,0,0.117,0.614,0.568,0.269,0,0.222,0.216 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0.173 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.153 -1,0.0775,0.0775,0.25,0,0,0,0.614,0.533,0.0241,0.127,0,0.225 -1,0.311,0.311,0.7,0.833,0,0,1,0.494,0.0653,0.495,0,0.539 -0.667,0.279,0.279,0.467,0.333,0,0,0.421,0.544,0.0653,0,0,0.103 -0.667,0.277,0.277,0.933,0,0,0,0.421,0.552,0.0788,0,0,0.322 -0.667,0.266,0.266,0,0,0,0,0.421,0.552,0.0923,0,0,0.198 -0.333,0.154,0.154,0.25,0,0,0,0.421,0.559,0.0593,0,0,0.386 -0.333,0.149,0.149,0.217,0,0,0,0.421,0.559,0.0646,0,0,0.138 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0.348 -0.333,0.144,0.144,0.467,0,0,0,0.421,0.559,0.0751,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0 -0.333,0.144,0.144,0.233,0,0,0,0.421,0.568,0.0871,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.216 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.216 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0.0866 -0.333,0.19,0.19,0,0,0,0,0.614,0.594,0.231,0,0,0.13 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.173 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.0433 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.145 -1,0.137,0.137,0,0,0,0,0.614,0.542,0.0301,0,0,0.363 -0.667,0.165,0.165,0.233,0,0,0,0.421,0.555,0.0444,0,0,0.425 -0.333,0.163,0.163,0,0,0,0,0.421,0.559,0.0654,0,0,0.167 -0.333,0.158,0.158,0,0,0,0,0.421,0.559,0.0826,0,0,0.242 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.174,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.104,0,0,0.0989 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.111,0,0,0.106 -0.333,0.144,0.144,0.467,0,0,0,0.421,0.559,0.129,0,0,0.173 -0.333,0.143,0.143,0,0,0.103,0,0.421,0.559,0.146,0,0,0.0433 -0.667,0.237,0.237,0,0,0.414,0.717,0.421,0.57,0.3,0,0.378,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.167,0,0.113,0.13 -0.667,0.249,0.249,0,0,0.517,0.483,0.421,0.622,0.326,0,0.191,0.0866 -0.667,0.275,0.275,0.233,0,0,0,0.749,0.63,0.383,0,0,0.519 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.501,0,0,0.13 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0,0.173 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.543,0,0,0.223 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.182,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.199 -1,0.0775,0.0775,0,0,0,0,0.614,0.533,0.0226,0,0,0.108 -0.667,0.137,0.137,0,0,0,0,0.614,0.542,0.0301,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.421,0.555,0.0444,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.104,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.111,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.129,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.3,0,0,0 -0.667,0.24,0.24,1,0,0,0,0.421,0.596,0.315,0,0,0.0866 -0.667,0.249,0.249,0.183,0,0,0,0.421,0.622,0.326,0,0,0.0433 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.383,0,0,0.303 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.501,0,0,0.173 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0,0.173 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.543,0,0,0.212 -0.667,0.392,0.392,0,0,0,0,0.807,0.535,0.345,0,0,0.227 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0.215 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.258 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.227 -1,0.394,0.394,0.683,0,0,0,0.421,0.533,0.09,0,0,0.0716 -0.333,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0.352 -0.333,0.158,0.158,0,0,0,0,0.421,0.559,0.0541,0,0,0.232 -0.333,0.154,0.154,0,0,0,0,0.421,0.559,0.0593,0,0,0.263 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.667,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.346 -0.667,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0 -0.667,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0 -0.667,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.13 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.32,0,0,0.759 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.121 -0.667,0.417,0.417,0,0,0.517,0.117,0.807,0.604,0.55,0,0,0.0433 -0.667,0.505,0.505,0,0,0,0.85,0.807,0.57,0.521,0,0.436,0.0433 -0.667,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0.549,0.0866 -0.667,0.184,0.184,0,0,0,0,0.807,0.509,0.14,0,0.37,0.0433 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0.43,0 -0.667,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0.438,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0.112,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0775,0.0775,0,0,0,0,0.614,0.533,0.0241,0,0,0.396 -0.667,0.137,0.137,0,0,0,0,0.614,0.542,0.0323,0,0,0.423 -0.667,0.279,0.279,0,0,0,0,0.421,0.544,0.0653,0,0,0.091 -0.333,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0.0433 -0,0.05,0.05,0,0,0.517,0.367,0.421,0.566,0.0159,0,0.0449,0 -0.333,0.154,0.154,0,0,0,0.117,0.421,0.559,0.0593,0,0.395,0.173 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0.42,0.0433 -0.667,0.239,0.239,0,0,0,0,0.421,0.552,0.119,0,0.221,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.476 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.519 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.0864 -1,0.388,0.388,0,0,0,0,0.912,0.663,0.473,0,0,0 -1,0.471,0.471,0,0.583,0,0,1,0.65,0.662,0.726,0,0 -1,0.601,0.601,0,0.583,0,0,1,0.624,0.817,0.225,0,0.064 -1,0.733,0.733,0.467,0,0,0,1,0.572,0.774,0,0,0.0866 -0.667,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0,0.26 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.109 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.137,0.137,0,0,0,0,0.614,0.542,0.0323,0,0,0.0839 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.382 -1,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.559,0.0593,0,0,0.26 -0.333,0.149,0.149,0.25,0,0,0,0.421,0.559,0.0646,0,0,0.0866 -0.333,0.145,0.145,1,0,0.517,0.117,0.421,0.559,0.0676,0,0,0 -0.333,0.144,0.144,0.167,0,0,0.85,0.421,0.559,0.0751,0,0.257,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.142,0,0.369,0.207 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0.199,0.438,0 -0.333,0.145,0.145,0,0.833,0,0,0.421,0.581,0.106,0.558,0.183,0.13 -0.333,0.149,0.149,0,0.333,0,0,0.421,0.594,0.128,0.645,0,0.216 -0.333,0.162,0.162,0,0,0.517,0.617,0.585,0.598,0.168,0.398,0.277,0.173 -0.333,0.19,0.19,0,0,0,0.583,0.614,0.594,0.231,0,0.0572,0.706 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.21 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.175 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.421,0.544,0.0653,0,0,0.382 -0.667,0.277,0.277,0,0,0,0,0.421,0.552,0.0788,0,0,0 -0.333,0.158,0.158,0,0,0,0,0.421,0.559,0.0541,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0.13 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0.303 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.0433 -0.667,0.249,0.249,0.467,0,0,0,0.421,0.622,0.239,0,0,0.216 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.32,0,0,0.216 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.173 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.303 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0.238 -0.667,0.392,0.392,0,0,0,0,0.807,0.535,0.317,0,0,0.237 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.175 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.279,0.279,0,0,0,0,0.421,0.544,0.0653,0,0,0.151 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.158 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.161 -0.333,0.145,0.145,0.7,0,0,0,0.421,0.559,0.0676,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.134,0,0,0.0873 -0.667,0.237,0.237,0.233,0,0,0,0.421,0.552,0.142,0,0,0.237 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.158,0,0,0.859 -0.333,0.145,0.145,0.233,0,0,0,0.421,0.581,0.106,0,0,0.339 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.571 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.32,0,0,0.26 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.173 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.55,0,0,0.13 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0.196 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0.0634 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.135 -0.667,0.165,0.165,0,0,0,0,0.421,0.555,0.0444,0,0,0.123 -0.667,0.163,0.163,0.25,0,0,0,0.421,0.559,0.0654,0,0,0.149 -0.667,0.158,0.158,0.217,0,0,0,0.421,0.559,0.0826,0,0,0.276 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.174,0,0,0.0657 -0.667,0.247,0.247,0.25,0,0,0,0.421,0.552,0.191,0,0,0.173 -0.333,0.145,0.145,0.217,0,0,0,0.421,0.559,0.111,0,0,0.173 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.129,0,0,0.173 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.146,0,0,0.0433 -0.667,0.144,0.144,0,0,0,0,0.421,0.568,0.159,0,0,0.433 -0.667,0.145,0.145,0,0,0,0,0.421,0.581,0.167,0,0,0.26 -0.667,0.149,0.149,0,0.583,0,0,0.421,0.594,0.172,0.785,0,0 -0.667,0.275,0.275,0,0.35,0,0,0.749,0.63,0.383,0.492,0,0.0866 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.501,0.298,0,0.216 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0,0.0866 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.281,0,0,0.519 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0451,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0286,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0211,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.235 -0.667,0.277,0.277,0,0,0,0,0.421,0.552,0.113,0,0,0.138 -0.667,0.266,0.266,0,0,0,0,0.421,0.552,0.147,0,0,0.0984 -0.333,0.154,0.154,0,0,0,0,0.421,0.559,0.0961,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.104,0,0,0.0433 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.111,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.129,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.146,0,0,0 -0.333,0.144,0.144,0.933,0,0,0,0.421,0.568,0.159,0,0,0.0433 -0.667,0.24,0.24,0,0,0,0,0.421,0.596,0.315,0,0,0.363 -1,0.348,0.348,0,0,0.103,0,0.421,0.65,0.479,0,0,0.23 -1,0.388,0.388,0,0,0.414,0.867,0.912,0.663,0.565,0,0.187,0.273 -1,0.471,0.471,0,0,0,0.1,1,0.65,0.743,0,0.185,0.0866 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0.191,0.173 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.281,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.147 -1,0.137,0.137,0,0,0,0,0.614,0.542,0.0323,0,0,0.12 -1,0.279,0.279,0,0,0,0,0.421,0.544,0.0653,0,0,0.269 -0.667,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0.104 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.32 -0.333,0.154,0.154,0,0,0,0,0.421,0.559,0.0593,0,0,0.216 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.0866 -0.333,0.149,0.149,0,0,0,0,0.421,0.594,0.128,0,0,0.0866 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0.389 -0.333,0.19,0.19,0,0,0,0,0.614,0.594,0.231,0,0,0.0433 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.295 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.559,0.0473,0,0,0.221 -0.667,0.158,0.158,0,0,0,0,0.421,0.559,0.0541,0,0,0.124 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.239,0.239,0,0,0,0,0.421,0.552,0.119,0,0,0.252 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.134,0,0,0.352 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.142,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.158,0,0,0.13 -0.333,0.145,0.145,0.233,0,0,0,0.421,0.581,0.106,0,0,0.26 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.463 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.32,0,0,0.173 -0.333,0.19,0.19,0,0,0,0,0.614,0.594,0.231,0,0,0.346 -0.667,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.0433 -0.667,0.278,0.278,0,0,0,0,0.614,0.568,0.269,0,0,0 -0.667,0.221,0.221,0.233,0,0,0,0.614,0.55,0.167,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0,0,0.103,0,0.421,0.555,0.0406,0,0,0.264 -0.667,0.277,0.277,1,0,0.414,0.233,0.421,0.552,0.0788,0,0.283,0.18 -0.667,0.266,0.266,0.883,0,0,0,0.421,0.552,0.0923,0,0.593,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.552,0.103,0,0.527,0.173 -0.667,0.247,0.247,0,0,0,0,0.421,0.552,0.113,0,0.0299,0.0433 -0.667,0.239,0.239,0,0,0,0,0.421,0.552,0.119,0,0,0.0866 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.134,0,0,0.216 -0.667,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0.138,0,0.0866 -0.667,0.331,0.331,0,0.833,0,0,0.807,0.622,0.446,0.486,0,0 -0.667,0.417,0.417,0,0.1,0,0,0.807,0.604,0.55,0,0,0 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0.0433 -1,0.563,0.563,0,0,0,0,1,0.52,0.468,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.143 -1,0.0775,0.0775,0,0,0,0,0.614,0.533,0.0241,0,0,0.198 -1,0.137,0.137,0,0,0,0,0.614,0.542,0.0323,0,0,0.166 -1,0.279,0.279,0.25,0,0,0,0.421,0.544,0.0653,0,0,0.201 -0.667,0.277,0.277,0.683,0.0833,0,0,0.421,0.552,0.0788,0.503,0,0.0433 -0.333,0.158,0.158,0.5,1,0,0,0.421,0.559,0.0541,0.335,0,0 -0.333,0.154,0.154,0.433,0.0833,0,0,0.421,0.559,0.0593,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.559,0.0646,0,0,0.13 -0.333,0.145,0.145,0,0,0,0,0.421,0.559,0.0676,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.559,0.0751,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0.333,0.144,0.144,0,0,0,0,0.421,0.568,0.0871,0,0,0.26 -0.333,0.145,0.145,0,0,0,0,0.421,0.581,0.106,0,0,0.173 -0.333,0.149,0.149,0.7,0,0,0,0.421,0.594,0.128,0,0,0.242 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.32,0,0,0.13 -0.333,0.19,0.19,0,0,0,0,0.614,0.594,0.231,0,0,0.13 -0.333,0.234,0.234,0,0,0,0,0.614,0.585,0.283,0,0,0.0866 -0.667,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0 -0.667,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0691 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0406,0,0,0.219 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.158,0.158,0,0,0,0,0.421,0.559,0.0541,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.559,0.0593,0,0,0.0866 -0.667,0.149,0.149,0.25,0.583,0,0,0.421,0.559,0.0646,0.667,0,0.13 -0.667,0.239,0.239,1,0.583,0,0,0.421,0.552,0.119,0.127,0,0 -1,0.331,0.331,1,0.333,0,0,0.421,0.546,0.194,0.652,0,0.13 -1,0.33,0.33,0.35,0.717,0,0,0.421,0.546,0.205,0.543,0,0.303 -0.667,0.237,0.237,0,0.35,0,0,0.421,0.57,0.158,0.762,0,0.303 -0.667,0.24,0.24,0,0,0,0,0.421,0.596,0.196,0.21,0,0.0433 -0.667,0.249,0.249,0,0,0,0,0.421,0.622,0.239,0,0,0.0433 -0.333,0.162,0.162,0,0,0,0,0.585,0.598,0.168,0,0,0.0866 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.446,0,0,0.216 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.55,0,0,0.0866 -1,0.505,0.505,0,0,0,0,0.807,0.57,0.521,0,0,0.303 -1,0.221,0.221,0,0,0,0,0.614,0.55,0.167,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.555,0.0444,0,0,0.163 -1,0.163,0.163,0,0,0,0,0.421,0.559,0.0654,0,0,0.0731 -1,0.266,0.266,0,0,0,0,0.421,0.552,0.147,0,0,0.384 -1,0.258,0.258,0,0,0,0,0.421,0.552,0.174,0,0,0.382 -1,0.247,0.247,0,0,0,0,0.421,0.552,0.191,0,0,0.229 -1,0.239,0.239,0.7,0,0,0,0.421,0.552,0.204,0,0,0.522 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.24,0,0,0.343 -0.667,0.237,0.237,0,0,0,0,0.421,0.552,0.273,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.57,0.3,0,0,0.323 -0.667,0.24,0.24,0,0,0,0,0.421,0.596,0.315,0,0,0.182 -0.333,0.149,0.149,0.233,0,0,0,0.421,0.594,0.172,0,0,0.0866 -0.667,0.275,0.275,0,0,0,0,0.749,0.63,0.383,0,0,0.389 -0.667,0.331,0.331,0,0,0,0,0.807,0.622,0.501,0,0,0.216 -0.667,0.417,0.417,0,0,0,0,0.807,0.604,0.588,0,0,0.0866 -1,0.505,0.505,0,0,0,0,0.807,0.57,0.543,0,0,0 -1,0.221,0.221,0,0,0,0,0.614,0.55,0.182,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.553,0.0444,0,0,0 -0.667,0.273,0.273,0,0,0.517,0.683,0.421,0.55,0.113,0.105,0.277,0.335 -0.667,0.26,0.26,0,0.667,0,0,0.421,0.55,0.148,0.637,0.43,0.0714 -0.667,0.253,0.253,0,0.467,0,0,0.421,0.55,0.175,0,0.596,0.0433 -0.667,0.242,0.242,0.233,0,0,0,0.421,0.55,0.191,0,0.529,0.173 -1,0.327,0.327,0,0,0,0,0.421,0.542,0.298,0,0.321,0.13 -1,0.323,0.323,0,0,0,0,0.421,0.542,0.352,0,0.169,0.246 -1,0.323,0.323,0,0,0,0,0.421,0.542,0.402,0,0.341,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.16,0,0,0.13 -0.667,0.235,0.235,0,0,0,0,0.421,0.593,0.316,0,0,0.0866 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.327,0,0,0.26 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.384,0,0,0.0866 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.503,0,0,0.211 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.59,0,0,0.272 -1,0.501,0.501,0,0,0,0,0.807,0.567,0.545,0,0,0.194 -1,0.22,0.22,0,0,0,0,0.614,0.549,0.182,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.314 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.0903,0,0,0.468 -1,0.384,0.384,0,0,0,0,0.421,0.542,0.111,0,0,0.364 -1,0.366,0.366,0.25,0,0,0,0.421,0.542,0.131,0,0,0.017 -0.667,0.253,0.253,0.45,0,0,0,0.421,0.55,0.103,0,0,0.0665 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0,0,0.748 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0.114 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.0866 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.26 -0.333,0.147,0.147,0.233,0,0,0,0.421,0.592,0.128,0,0,0.0433 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0.225,0,0.346 -0.667,0.327,0.327,0,0.833,0,0,0.807,0.619,0.448,0.733,0,0.173 -1,0.595,0.595,0,0.3,0,0,1,0.619,0.82,0,0,0.112 -0.667,0.276,0.276,0,0,0,0,0.614,0.566,0.269,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.077,0.077,0,0,0,0,0.614,0.532,0.0241,0,0,0.179 -1,0.222,0.222,0,0,0,0,0.807,0.515,0.0489,0,0,0.185 -0.667,0.276,0.276,0.233,0,0,0,0.421,0.541,0.0655,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.421,0.558,0.0475,0,0,0.791 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.563 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.146,0.146,0.7,0,0,0,0.421,0.558,0.0648,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.135,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.142,0,0,0.13 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.303 -0.667,0.235,0.235,0,0,0,0,0.421,0.593,0.196,0,0,0.173 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.24,0,0,0.0866 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.321,0,0,0.534 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0,0.216 -0.333,0.232,0.232,0,0,0,0,0.614,0.583,0.284,0,0,0.145 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0.0433 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0.128 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0384,0,0,0.102 -0.667,0.0583,0.0583,0,0,0,0,0.614,0.532,0.0241,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.807,0.498,0.0188,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.614,0.532,0.0189,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.136,0.136,0.467,0,0,0,0.614,0.54,0.0324,0,0,0.678 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.155,0.155,0.467,0,0,0,0.421,0.558,0.0542,0,0,0.0866 -0.667,0.253,0.253,0,0,0,0,0.421,0.55,0.103,0,0,0 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.114,0,0,0.273 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.12,0,0,0.358 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.567,0.159,0,0,0 -0.667,0.235,0.235,0.25,0,0,0,0.421,0.593,0.196,0,0,0 -0.333,0.147,0.147,0.217,0,0,0,0.421,0.592,0.128,0,0,0.13 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.321,0,0,0.0866 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0,0.26 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.0866 -0.667,0.501,0.501,0.467,0,0,0,0.807,0.567,0.523,0,0,0 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.222,0.222,0,0,0,0,0.807,0.515,0.0489,0,0,0 -1,0.39,0.39,0,0,0,0,0.421,0.529,0.0903,0,0,0.206 -0.667,0.273,0.273,0,0,0,0,0.421,0.55,0.079,0,0,0.25 -0.667,0.26,0.26,0,0,0,0,0.421,0.55,0.0926,0,0,0.212 -1,0.354,0.354,0,0,0,0,0.421,0.542,0.147,0,0,0.21 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.114,0,0,0.0866 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0 -0.667,0.232,0.232,0,0,0.517,0.117,0.421,0.55,0.135,0,0,0.0433 -0.667,0.232,0.232,0,0,0,1,0.421,0.55,0.142,0,0.33,0.0433 -0.667,0.232,0.232,0,0,0,0.0333,0.421,0.567,0.159,0,0.408,0.0433 -0.667,0.235,0.235,0.467,0,0,0,0.421,0.593,0.196,0,0.172,0.13 -1,0.341,0.341,0,0,0,0,0.421,0.645,0.352,0,0,0.216 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.321,0,0,0.173 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.448,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.141 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0.13 -1,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.26 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.136,0.136,0.217,0,0,0,0.614,0.54,0.0324,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.413 -0.667,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.173 -0.667,0.146,0.146,0.467,0,0,0,0.421,0.558,0.0648,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0.103,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0.414,0.45,0.421,0.566,0.0159,0,0.288,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0.361,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0.518,0 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0.468,0.0433 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0.427,0.0866 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.173 -0.667,0.276,0.276,0,0,0,0,0.614,0.566,0.269,0,0,0.0433 -0.667,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0211,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.161,0.161,0,0,0,0,0.421,0.558,0.0655,0,0,0.42 -1,0.26,0.26,0,0.417,0,0,0.421,0.55,0.148,0.645,0,0.524 -0.667,0.253,0.253,0,0.5,0,0,0.421,0.55,0.175,0.659,0,0.142 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.191,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.111,0,0,0.346 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.129,0,0,0.0433 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.274,0,0,0.13 -0.667,0.232,0.232,0,0,0,0,0.421,0.567,0.301,0,0,0.0433 -0.667,0.235,0.235,0.333,0,0,0,0.421,0.593,0.316,0,0,0.0866 -0.667,0.244,0.244,0.367,0,0,0,0.421,0.619,0.327,0,0,0.0433 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.384,0,0,0 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.503,0,0,0.0433 -1,0.595,0.595,0,0,0,0,1,0.619,0.876,0,0,0.221 -1,0.727,0.727,0,0,0,0,1,0.568,0.808,0,0,0.232 -1,0.22,0.22,0,0,0,0,0.614,0.549,0.182,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.553,0.0444,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0964,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.179 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.16,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.172,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.201,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.232,0.232,0,0,0,0,0.614,0.583,0.304,0,0,0.0433 -0.333,0.276,0.276,0,0,0,0,0.614,0.566,0.282,0,0,0.389 -0.333,0.22,0.22,0,0,0,0,0.614,0.549,0.182,0,0,0.132 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.077,0.077,0,0,0,0,0.614,0.532,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0 -1,0.276,0.276,0,0,0,0,0.421,0.541,0.0655,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.421,0.558,0.0475,0,0,0.173 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.389 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0,0.0433 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0,0.26 -0.333,0.232,0.232,0,0,0,0,0.614,0.583,0.284,0,0,0 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0 -1,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.077,0.077,0,0,0,0,0.614,0.532,0.0241,0,0,0.284 -1,0.136,0.136,0,0.333,0,0,0.614,0.54,0.0324,0.575,0,0 -1,0.276,0.276,0.25,1,0,0,0.421,0.541,0.0655,0.678,0,0.121 -1,0.273,0.273,0.217,0.267,0,0,0.421,0.55,0.079,0.505,0,0.262 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.45 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.114,0,0,0.401 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.12,0,0,0.425 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.135,0,0,0.472 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.252 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.404 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.444 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0 -0.333,0.16,0.16,0,0.333,0,0,0.585,0.596,0.169,0.53,0,0.0866 -0.667,0.327,0.327,0,0.117,0,0,0.807,0.619,0.448,0.337,0,0.13 -0.667,0.232,0.232,0,0,0,0,0.614,0.583,0.284,0,0,0.535 -0.667,0.276,0.276,0,0,0,0,0.614,0.566,0.269,0,0,0.163 -1,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.276,0.276,0,0,0,0,0.421,0.541,0.0655,0,0,0.413 -1,0.384,0.384,0,0,0,0,0.421,0.542,0.111,0,0,0.453 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.184 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.176 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.114,0,0,0.371 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.12,0,0,0.405 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0.303 -0.667,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.346 -0.667,0.141,0.141,0.483,0,0,0,0.421,0.566,0.0873,0,0,0.13 -1,0.327,0.327,0.217,0,0,0,0.421,0.606,0.287,0,0,0.353 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.24,0,0,0.0433 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0.133,0,0.18 -1,0.727,0.727,0,0.833,0,0,1,0.568,0.777,0.645,0,0.0866 -1,0.559,0.559,0,0.0833,0,0,1,0.516,0.47,0.58,0,0.0866 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.141,0,0,0.108 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0384,0,0,0.402 -1,0.0583,0.0583,0,0,0,0,0.614,0.532,0.0241,0,0,0.211 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0174,0,0,0.103 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.163,0.163,0.217,0,0,0,0.421,0.553,0.0407,0,0,0.0433 -0.667,0.161,0.161,0,0,0,0,0.421,0.558,0.0475,0,0,0.405 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.0337 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0,0,0.0433 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.0866 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.13 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.173 -0.333,0.147,0.147,0.5,0,0,0,0.421,0.592,0.128,0,0,0 -0.667,0.271,0.271,0.2,0,0,0,0.749,0.627,0.321,0,0,0.0866 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.448,0,0,0.13 -1,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0 -1,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0 -1,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0384,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.421,0.558,0.0475,0,0,0.167 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.141 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.182 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0,0,0.0995 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.116 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.222 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.224 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.321,0,0,0.216 -0.667,0.327,0.327,0,0.333,0,0,0.807,0.619,0.448,0.589,0,0.389 -0.667,0.413,0.413,0,1,0,0,0.807,0.601,0.552,0,0,0.108 -0.667,0.501,0.501,0,0.267,0,0,0.807,0.567,0.523,0,0,0.0433 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.262 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0452,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0302,0,0,0 -0.667,0.276,0.276,0,0,0,0,0.421,0.541,0.0708,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.421,0.558,0.0655,0,0,0 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0828,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0964,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0.333,0.142,0.142,0.333,0,0,0,0.421,0.558,0.111,0,0,0 -0.333,0.141,0.141,0.367,0,0,0,0.421,0.558,0.129,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.146,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.16,0,0,0.0866 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.167,0,0,0.173 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.327,0,0,0.0433 -0.667,0.271,0.271,0,0,0.517,0.2,0.749,0.627,0.384,0,0,0.0866 -0.667,0.327,0.327,0,0,0,0.0167,0.807,0.619,0.503,0,0.386,0.26 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.59,0,0.0572,0.26 -0.333,0.276,0.276,0,0,0,0,0.614,0.566,0.282,0,0,0.0866 -0.667,0.389,0.389,0.333,0,0,0,0.807,0.533,0.346,0,0,0.0866 -0.667,0.117,0.117,0.367,0,0,0,0.614,0.536,0.0896,0,0,0 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0452,0,0,0.216 -0.667,0.0583,0.0583,0,0,0,0,0.614,0.532,0.0286,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0302,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.553,0.0444,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.421,0.558,0.0655,0,0,0.152 -0.667,0.26,0.26,0,0,0,0,0.421,0.55,0.148,0,0,0.386 -1,0.354,0.354,0,0,0,0,0.421,0.542,0.253,0,0,0.311 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.105,0,0,0 -0,0.05,0.05,0.333,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0.333,0.141,0.141,0.367,0,0,0,0.421,0.558,0.129,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.146,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.16,0,0,0 -0.667,0.235,0.235,0,0,0,0,0.421,0.593,0.316,0,0,0.0631 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.327,0,0,0.0433 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.384,0,0,0.173 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.503,0,0,0.216 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.59,0,0,0.173 -0.667,0.276,0.276,0,0,0,0,0.614,0.566,0.282,0,0,0.13 -1,0.389,0.389,0,0,0,0,0.807,0.533,0.346,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0896,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0384,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.532,0.0241,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0174,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.163,0.163,0.25,0,0,0,0.421,0.553,0.0407,0,0,0 -1,0.273,0.273,1,0,0,0,0.421,0.55,0.079,0,0,0 -1,0.26,0.26,1,0,0,0,0.421,0.55,0.0926,0,0,0.394 -1,0.253,0.253,0.567,0,0,0,0.421,0.55,0.103,0,0,0.179 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.114,0,0,0.541 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.12,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.173 -0.333,0.142,0.142,0,0,0.517,0.117,0.421,0.579,0.106,0,0,0.173 -0.667,0.244,0.244,0,0,0,0.8,0.421,0.619,0.24,0,0.229,0.635 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0,0.0433 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.448,0,0,0 -0.667,0.413,0.413,0.233,0,0,0,0.807,0.601,0.552,0,0,0.173 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0.0433 -1,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.553,0.0407,0,0,0.344 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.215 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0 -0.667,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0,0,0.0433 -0.667,0.142,0.142,0.233,0,0,0,0.421,0.558,0.0678,0,0,0.216 -0.667,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0.0433 -0.667,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.197 -0.667,0.232,0.232,0,0,0,0,0.421,0.567,0.159,0,0,0.137 -0.667,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.0433 -0.667,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.346 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0,0.0866 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0,0.303 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.0433 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.0433 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.141,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.161,0.161,0.75,0,0,0,0.421,0.558,0.0475,0,0,0 -1,0.366,0.366,0.417,0.333,0,0,0.421,0.542,0.131,0.58,0,0 -0.333,0.151,0.151,0,0.8,0,0,0.421,0.558,0.0595,0.488,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0.681,0,0.216 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.12,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.135,0,0,0.13 -0.333,0.141,0.141,0.5,0,0,0,0.421,0.558,0.0791,0,0,0.0433 -0.667,0.232,0.232,1,0,0,0,0.421,0.567,0.159,0,0,0.13 -0.667,0.235,0.235,0.6,0.333,0,0,0.421,0.593,0.196,0.659,0,0.433 -0.667,0.244,0.244,0,1,0,0,0.421,0.619,0.24,0.308,0,0.303 -0.667,0.271,0.271,0,0.267,0,0,0.749,0.627,0.321,0.162,0,0.13 -1,0.465,0.465,0,0.833,0,0,1,0.645,0.664,0.748,0,0.13 -0.667,0.413,0.413,0,0.0833,0,0,0.807,0.601,0.552,0.567,0,0.0866 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0.534,0,0.0866 -1,0.559,0.559,0,0,0,0,1,0.516,0.47,0,0,0.995 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.141,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.614,0.532,0.0189,0,0,0.568 -1,0.077,0.077,0.75,0,0,0,0.614,0.532,0.0241,0,0,0.0708 -0.667,0.05,0.05,0.183,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.553,0.0407,0,0,0.0433 -0.667,0.273,0.273,0.25,0,0,0,0.421,0.55,0.079,0,0,0.39 -0.333,0.155,0.155,0.45,0,0,0,0.421,0.558,0.0542,0,0,0.149 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.0866 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0,0,0.13 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0.216 -0.667,0.232,0.232,0.467,0,0,0,0.421,0.55,0.135,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.421,0.567,0.159,0,0,0.452 -0.667,0.235,0.235,0,0,0,0,0.421,0.593,0.196,0,0,0.199 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.24,0.197,0,0.126 -0.333,0.16,0.16,0,0.833,0,0,0.585,0.596,0.169,0.737,0,0.13 -0.667,0.327,0.327,0,0.0833,0,0,0.807,0.619,0.448,0,0,0 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.0866 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0.239 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.272 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.141,0,0,0.0944 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0504,0.0504,0.217,0,0,0,0.614,0.532,0.0189,0,0,0 -1,0.077,0.077,0,0,0,0,0.614,0.532,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0.0935 -0.667,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0.206 -0.667,0.161,0.161,0,0,0,0,0.421,0.558,0.0475,0,0,0.124 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.353 -0.667,0.253,0.253,0,0,0,0,0.421,0.55,0.103,0,0,0.202 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.0648,0,0,0.443 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0.173 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.0866 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.232,0.232,0,0.583,0,0,0.614,0.583,0.284,0.691,0,0.146 -0.667,0.501,0.501,0,0.333,0,0,0.807,0.567,0.523,0.118,0,0.335 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0.128 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.141,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0452,0,0,0.0433 -1,0.0583,0.0583,0,0,0,0,0.614,0.532,0.0286,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0211,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.467,0,0,0,0.421,0.566,0.0181,0.385,0,0 -1,0.276,0.276,0.233,0.917,0,0,0.421,0.541,0.0708,0.309,0,0 -1,0.273,0.273,0,0,0,0,0.421,0.55,0.113,0,0,0 -1,0.26,0.26,0,0,0,0,0.421,0.55,0.148,0,0,0 -1,0.354,0.354,0,0,0,0,0.421,0.542,0.253,0,0,0.0433 -1,0.338,0.338,0.7,0,0,0,0.421,0.542,0.278,0,0,0 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.205,0,0,0.0866 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.241,0,0,0.13 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.274,0,0,0 -1,0.232,0.232,0,0,0,0,0.421,0.567,0.301,0,0,0.0433 -1,0.235,0.235,0,0,0,0,0.421,0.593,0.316,0,0,0.0866 -0.667,0.147,0.147,0,0,0,0,0.421,0.592,0.172,0,0,0 -1,0.381,0.381,0,0,0,0,0.912,0.658,0.567,0,0,0.344 -1,0.465,0.465,0,0,0,0,1,0.645,0.745,0,0,0.173 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.59,0,0,0.0433 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.545,0,0,0.295 -1,0.559,0.559,0,0,0,0,1,0.516,0.51,0,0,0.291 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0896,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0302,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.421,0.558,0.0655,0,0,0 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0828,0,0,0.348 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0964,0,0,0.116 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.105,0,0,0.219 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.111,0,0,0.253 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.129,0,0,0.268 -0.667,0.232,0.232,0,0,0,0,0.421,0.55,0.274,0,0,0.509 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.16,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.389 -0,0.05,0.05,0,0,0.517,0.7,0.421,0.566,0.0181,0,0.196,0.26 -0.667,0.271,0.271,0,0,0,0.45,0.749,0.627,0.384,0,0.601,0.0866 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.503,0,0.498,0.0708 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.59,0,0.0273,0.36 -0.333,0.276,0.276,0,0,0,0,0.614,0.566,0.282,0,0,0.465 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.176 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.421,0.553,0.0407,0,0,0.137 -0.333,0.161,0.161,0,0,0,0,0.421,0.558,0.0475,0,0,0.187 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.0433 -0.333,0.151,0.151,0.25,0,0,0,0.421,0.558,0.0595,0,0,0.303 -0.333,0.146,0.146,0.917,0,0,0,0.421,0.558,0.0648,0,0,0.0866 -0.667,0.234,0.234,0,0,0,0,0.421,0.55,0.12,0,0,0.0866 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.0433 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.13 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.321,0,0,0.322 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.448,0,0,0.29 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.137 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0 -0.667,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0.131 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.124 -1,0.276,0.276,0,0,0,0,0.421,0.541,0.0655,0,0,0.204 -0.667,0.273,0.273,0,0,0,0,0.421,0.55,0.079,0,0,0.205 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.193 -0.333,0.146,0.146,0,0,0.517,0.617,0.421,0.558,0.0648,0,0.252,0.193 -0.333,0.142,0.142,0,0,0,0.0667,0.421,0.558,0.0678,0,0.529,0 -0.333,0.141,0.141,0.25,0,0,0,0.421,0.558,0.0753,0,0.183,0.345 -0.667,0.232,0.232,0.217,0,0,0,0.421,0.55,0.142,0,0,0.13 -0.667,0.232,0.232,0,0,0,0,0.421,0.567,0.159,0,0,0.0433 -0.667,0.235,0.235,0.25,0,0,0,0.421,0.593,0.196,0,0,0.13 -0.667,0.244,0.244,0.917,0,0,0,0.421,0.619,0.24,0,0,0.303 -0.667,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0,0.389 -0.667,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0,0 -0.667,0.232,0.232,0,0,0,0,0.614,0.583,0.284,0,0,0.19 -1,0.276,0.276,0,0,0,0,0.614,0.566,0.269,0,0,0.135 -1,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.553,0.0407,0,0,0.181 -0.667,0.161,0.161,0,0.333,0,0,0.421,0.558,0.0475,0.659,0,0.0711 -1,0.26,0.26,0,0.8,0,0,0.421,0.55,0.0926,0,0,0.135 -0.667,0.253,0.253,0,0,0,0,0.421,0.55,0.103,0,0,0.102 -0.333,0.146,0.146,0.25,0,0,0,0.421,0.558,0.0648,0,0,0.13 -0.333,0.142,0.142,0.217,0,0,0,0.421,0.558,0.0678,0,0,0.0866 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0.388 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0.433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0.0433 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.173 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.232,0.232,0,0,0,0,0.614,0.583,0.284,0,0,0.0866 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0.435 -0.667,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0158,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0.0833,0,0,0.421,0.566,0.0159,0.464,0,0.0866 -0.667,0.163,0.163,0,1,0,0,0.421,0.553,0.0407,0.429,0,0 -0.667,0.161,0.161,0,0.283,0,0,0.421,0.558,0.0475,0,0,0 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.0433 -0.667,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.0866 -0,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.142,0.142,0.2,0,0,0,0.421,0.558,0.0678,0,0,0.26 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0.258,0,0 -0.333,0.141,0.141,0,0.833,0,0,0.421,0.566,0.0873,0.843,0,0 -0.333,0.142,0.142,0,0.3,0.517,0.117,0.421,0.579,0.106,0.821,0,0 -0.333,0.147,0.147,0,0,0,0.567,0.421,0.592,0.128,0,0.56,0.216 -0.333,0.16,0.16,0,0,0,0,0.585,0.596,0.169,0,0.209,0.0433 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.448,0,0,0.173 -0.667,0.413,0.413,0.5,0,0,0,0.807,0.601,0.552,0,0,0.216 -0.667,0.276,0.276,0.667,0,0,0,0.614,0.566,0.269,0,0,0.26 -0.667,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0.13 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0384,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0504,0.0504,0,0,0,0,0.614,0.532,0.0189,0,0,0 -1,0.077,0.077,0,0,0,0,0.614,0.532,0.0241,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0 -1,0.163,0.163,0,0.333,0,0,0.421,0.553,0.0407,0.436,0,0.144 -1,0.161,0.161,0,0.8,0,0,0.421,0.558,0.0475,0,0,0.421 -1,0.26,0.26,0,0,0,0,0.421,0.55,0.0926,0,0,0.205 -1,0.253,0.253,0,0,0,0,0.421,0.55,0.103,0,0,0.539 -0.667,0.242,0.242,0,0,0,0,0.421,0.55,0.114,0,0,0.221 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.141,0.141,0.467,0,0,0,0.421,0.558,0.0791,0,0,0.433 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.579,0.106,0,0,0 -0.333,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.216 -0.667,0.16,0.16,0.5,0,0,0,0.585,0.596,0.169,0,0,0 -0.667,0.327,0.327,1,0,0,0,0.807,0.619,0.448,0,0,0.0433 -0.667,0.413,0.413,0.133,0.583,0,0,0.807,0.601,0.552,0.65,0,0.0866 -0.667,0.501,0.501,0,0.333,0,0,0.807,0.567,0.523,0.735,0,0 -0.667,0.389,0.389,0,0,0,0,0.807,0.533,0.318,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0.263 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0452,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0302,0,0,0 -1,0.276,0.276,0,0,0,0,0.421,0.541,0.0708,0,0,0 -1,0.273,0.273,0,0,0,0,0.421,0.55,0.113,0,0,0 -0.667,0.155,0.155,0,0,0,0,0.421,0.558,0.0828,0,0,0.169 -0.667,0.151,0.151,0,0,0,0,0.421,0.558,0.0964,0,0,0.28 -0.333,0.146,0.146,0,0,0,0,0.421,0.558,0.105,0,0,0.284 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.111,0,0,0.173 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.129,0,0,0.269 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.146,0,0,0.173 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.16,0,0,0.0433 -0,0.05,0.05,0,0,0.517,0.45,0.421,0.566,0.0181,0,0.0897,0.0433 -0.667,0.244,0.244,0,0,0,0,0.421,0.619,0.327,0,0.891,0.13 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.384,0,0.525,0.26 -1,0.465,0.465,0.467,0,0,0,1,0.645,0.745,0,0.242,0 -1,0.595,0.595,0,0,0,0,1,0.619,0.876,0,0,0.0433 -1,0.727,0.727,0,0,0,0,1,0.568,0.808,0,0,0.216 -1,0.559,0.559,0,0,0,0,1,0.516,0.51,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0896,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.553,0.0444,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0.107,0,0 -0.333,0.147,0.147,0,0.667,0,0,0.421,0.592,0.172,0.532,0,0 -0.333,0.16,0.16,0,0.25,0,0,0.585,0.596,0.201,0,0,0 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.26,0,0,0 -0.333,0.232,0.232,0,0,0,0,0.614,0.583,0.304,0,0,0.173 -0.333,0.276,0.276,0,0,0,0,0.614,0.566,0.282,0.217,0,0.433 -1,0.389,0.389,0,0.917,0,0,0.807,0.533,0.346,0.366,0,0.26 -1,0.05,0.05,0,0.217,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0.169 -0.667,0.163,0.163,0,0,0,0,0.421,0.553,0.0407,0,0,0.116 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.162 -0.333,0.155,0.155,0,0,0,0,0.421,0.558,0.0542,0,0,0.13 -0.333,0.151,0.151,0,0,0,0,0.421,0.558,0.0595,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0753,0,0,0.0433 -0.333,0.141,0.141,0,0,0,0,0.421,0.558,0.0791,0,0,0 -0.333,0.141,0.141,0,0,0,0,0.421,0.566,0.0873,0,0,0.303 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.275 -0.667,0.147,0.147,0,0,0,0,0.421,0.592,0.128,0,0,0.255 -0.667,0.271,0.271,0,0,0,0,0.749,0.627,0.321,0,0,0.29 -0.667,0.327,0.327,0,0,0,0,0.807,0.619,0.448,0,0,0.188 -0.667,0.413,0.413,0,0,0,0,0.807,0.601,0.552,0,0,0.216 -0.667,0.501,0.501,0,0,0,0,0.807,0.567,0.523,0,0,0.13 -1,0.559,0.559,0,0,0,0,1,0.516,0.47,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0384,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.136,0.136,0,0,0,0,0.614,0.54,0.0324,0,0,0.26 -0.667,0.163,0.163,0,0,0,0,0.421,0.553,0.0407,0,0,0.153 -1,0.273,0.273,0,0,0,0,0.421,0.55,0.079,0,0,0.187 -0.667,0.155,0.155,0.25,0,0,0,0.421,0.558,0.0542,0,0,0.242 -0.667,0.253,0.253,0.917,0,0.517,0.117,0.421,0.55,0.103,0,0,0.13 -0.667,0.242,0.242,0,0,0,0.1,0.421,0.55,0.114,0,0.445,0 -0.333,0.142,0.142,0,0,0,0,0.421,0.558,0.0678,0,0.4,0 -0.667,0.232,0.232,0.25,0,0,0,0.421,0.55,0.135,0,0.607,0.476 -0.667,0.232,0.232,0.217,0,0,0,0.421,0.55,0.142,0,0.416,0.0433 -0.667,0.232,0.232,0,0,0,0,0.421,0.567,0.159,0,0.552,0.0433 -0.667,0.235,0.235,0,0,0,0,0.421,0.593,0.196,0,0.557,0.0433 -0.667,0.244,0.244,0.25,0.583,0,0,0.421,0.619,0.24,0.737,0.285,0.0433 -0.667,0.271,0.271,0.45,0.333,0,0,0.749,0.627,0.321,0,0.0449,0.173 -0.333,0.188,0.188,0,0,0,0,0.614,0.592,0.232,0,0,0 -0.333,0.232,0.232,0,0,0,0,0.614,0.583,0.284,0,0,0.0866 -0.667,0.276,0.276,0,0,0,0,0.614,0.566,0.269,0,0,0.0433 -0.667,0.22,0.22,0,0,0,0,0.614,0.549,0.167,0,0,0.389 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0783,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0947 -0.667,0.163,0.163,0.467,0,0,0,0.421,0.558,0.0461,0,0,0.159 -1,0.374,0.374,0,0,0,0,0.421,0.542,0.126,0,0,0.351 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.0996,0,0,0.265 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.303 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.216 -0.667,0.238,0.238,0,0,0,0,0.421,0.567,0.153,0,0,0.303 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.19,0,0,0.349 -0.667,0.254,0.254,0,0,0,0,0.421,0.619,0.232,0,0,0.125 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.173 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.432,0,0,0.303 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.346 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.13 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0775,0.0775,0,0,0,0,0.614,0.532,0.0236,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0.717,0,0,0,0.421,0.553,0.0396,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.55,0.0764,0,0,0.0433 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0.0433 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.13 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.173 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.173 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.432,0,0,0.0866 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.0866 -1,0.795,0.795,0,0,0,0,1,0.568,0.749,0,0,0 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0505,0.0505,0.25,0,0,0,0.614,0.532,0.0186,0,0,0 -1,0.105,0.105,0.217,0,0,0,0.807,0.498,0.0314,0,0,0 -1,0.224,0.224,0,0,0,0,0.807,0.515,0.0474,0,0,0 -0.667,0.165,0.165,0,0,0,0,0.421,0.553,0.0396,0,0,0.0433 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0.114 -0.667,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0.234 -0.667,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0.117 -1,0.247,0.247,0,0,0,0,0.421,0.55,0.11,0,0,0.454 -0.667,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.653 -0.333,0.144,0.144,0,0.333,0,0,0.421,0.558,0.073,0.582,0,0 -0.333,0.143,0.143,0,0.817,0,0,0.421,0.558,0.0766,0.886,0,0.13 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.13 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.19,0,0,0.216 -0.667,0.254,0.254,0,0,0,0,0.421,0.619,0.232,0,0,0.386 -0.667,0.291,0.291,0,0,0.517,0.617,0.749,0.627,0.31,0,0.238,0.192 -0.667,0.365,0.365,0,0,0,0.05,0.807,0.619,0.432,0,0.0468,0.234 -1,0.674,0.674,0,0,0,0,1,0.619,0.79,0,0,0.401 -1,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.209 -1,0.225,0.225,0,0,0,0,0.614,0.549,0.161,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.279,0.279,0.233,0,0,0,0.421,0.541,0.0684,0,0,0.154 -0.667,0.277,0.277,0,0,0,0,0.421,0.55,0.109,0,0,0 -0.667,0.266,0.266,0,0,0,0,0.421,0.55,0.142,0,0,0.0534 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.169,0,0,0.225 -0.667,0.247,0.247,0,0,0,0,0.421,0.55,0.184,0,0,0.241 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.108,0,0,0.169 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.264,0,0,0 -0.667,0.144,0.144,0,0,0,0,0.421,0.566,0.154,0,0,0.13 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.162,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.167,0,0,0.13 -0.667,0.291,0.291,0,0,0,0,0.749,0.627,0.37,0,0,0.0866 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.485,0,0,0.0866 -0.667,0.466,0.466,0,0,0.517,0.117,0.807,0.601,0.569,0,0,0.26 -0.667,0.298,0.298,0,0,0,0.333,0.614,0.566,0.272,0,0.277,0 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.176,0,0.551,0 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0868,0,0.152,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.266,0.266,0,0,0,0,0.421,0.55,0.142,0,0,0.33 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.169,0,0,0.191 -0.667,0.247,0.247,0,0,0,0,0.421,0.55,0.184,0,0,0.299 -0.667,0.239,0.239,0,0,0,0,0.421,0.55,0.198,0,0,0.757 -0.667,0.237,0.237,0.467,0,0,0,0.421,0.55,0.232,0,0,0.203 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.264,0,0,0.282 -0.667,0.238,0.238,0,0,0,0,0.421,0.567,0.29,0,0,0.0866 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.162,0,0,0.13 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.167,0,0,0.26 -0.667,0.291,0.291,0,0,0,0,0.749,0.627,0.37,0,0,0.0866 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.485,0,0,0.13 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.569,0,0,0.0433 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.525,0,0,0.0866 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.334,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0868,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.324 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.553,0.0396,0,0,0.0884 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0.129 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0 -0.333,0.154,0.154,0,0,0.517,0.117,0.421,0.558,0.0577,0,0,0.0866 -0.333,0.149,0.149,0,0,0,1,0.421,0.558,0.0628,0,0.589,0.346 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0.401,0.13 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0.295,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0.514,0.0433 -0.333,0.144,0.144,0.717,0,0,0,0.421,0.566,0.0846,0,0,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.13 -0.667,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.404 -0.667,0.208,0.208,0,0,0,0,0.614,0.592,0.224,0,0,0.467 -1,0.674,0.674,0,0,0,0,1,0.619,0.79,0,0,0.299 -1,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.0304 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.224,0.224,0,0,0,0,0.807,0.515,0.0474,0,0,0.25 -1,0.394,0.394,0,0,0,0,0.421,0.529,0.087,0,0,0.183 -0.333,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0.451 -0.333,0.158,0.158,0,0.583,0,0,0.421,0.558,0.0526,0.847,0,0.221 -0.333,0.154,0.154,0,0.567,0,0,0.421,0.558,0.0577,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0.173 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.0866 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.533 -0.333,0.146,0.146,1,0,0,0,0.421,0.579,0.103,0,0,0.189 -0.333,0.152,0.152,0.183,0.0833,0,0,0.421,0.592,0.124,0.472,0,0.436 -1,0.412,0.412,0,0.833,0,0,0.912,0.658,0.457,0.255,0,0.0992 -1,0.523,0.523,0,0,0,0,1,0.645,0.64,0.208,0,0.245 -1,0.674,0.674,0,0.833,0,0,1,0.619,0.79,0.738,0,0.0554 -1,0.795,0.795,0,0.0833,0,0,1,0.568,0.749,0,0,0.435 -1,0.576,0.576,0,0,0,0,1,0.516,0.453,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0.101,0,0 -1,0.158,0.158,0,0.833,0,0,0.421,0.558,0.0526,0.808,0,0 -1,0.154,0.154,0,0.0833,0,0,0.421,0.558,0.0577,0.56,0,0 -1,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0.818,0,0 -0.667,0.145,0.145,0.25,0,0,0,0.421,0.558,0.0657,0.672,0,0.0433 -0.667,0.237,0.237,0.7,0,0,0,0.421,0.55,0.13,0,0,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.137,0,0,0.0866 -0.333,0.144,0.144,0,0,0.517,0.117,0.421,0.566,0.0846,0,0,0.0866 -0.667,0.241,0.241,0.717,0,0,0.1,0.421,0.593,0.19,0,0.239,0.173 -0.667,0.254,0.254,0,0,0,0,0.421,0.619,0.232,0,0,0.301 -1,0.412,0.412,0,0.333,0,0,0.912,0.658,0.457,0.523,0,0.204 -0.333,0.208,0.208,0,0.583,0,0,0.614,0.592,0.224,0,0,0.0433 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.205 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.165 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0775,0.0775,0,0,0,0,0.614,0.532,0.0236,0,0,0.612 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.163,0.163,0.467,0,0,0,0.421,0.558,0.0461,0,0,0.0433 -0.667,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0.0433 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.0996,0,0,0.33 -0.667,0.247,0.247,0,0,0,0,0.421,0.55,0.11,0,0,0.15 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.131 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.13 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.216 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.115 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.19,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.0866 -0.333,0.208,0.208,0,0,0,0,0.614,0.592,0.224,0,0,0.356 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.27 -0.667,0.298,0.298,0,0,0,0,0.614,0.566,0.26,0,0,0.389 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.136,0,0,0.145 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0374,0,0,0.61 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.147 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0775,0.0775,0.25,0,0,0,0.614,0.532,0.0236,0,0,0 -1,0.224,0.224,0.467,0,0.517,0.367,0.807,0.515,0.0474,0,0.0767,0 -1,0.279,0.279,0,0,0,0.75,0.421,0.541,0.0633,0,0.389,0 -0.667,0.277,0.277,0,0,0,0,0.421,0.55,0.0764,0,0.429,0.0866 -0.667,0.158,0.158,0.25,0,0,0,0.421,0.558,0.0526,0,0,0.0433 -0.333,0.154,0.154,0.7,0,0,0,0.421,0.558,0.0577,0,0,0.0866 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.13 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.26 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.13 -0.667,0.238,0.238,0,0,0,0,0.421,0.567,0.153,0,0,0.0866 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.173 -0.333,0.208,0.208,0,0,0,0,0.614,0.592,0.224,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.0866 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.26 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.136,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.044,0,0,0.0433 -1,0.0583,0.0583,0,0,0,0,0.614,0.532,0.028,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.532,0.0208,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0489 -1,0.165,0.165,0,0,0,0,0.421,0.553,0.0433,0,0,0.198 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0636,0,0,0.201 -0.667,0.266,0.266,0,0,0,0,0.421,0.55,0.142,0,0,0.103 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.169,0,0,0.21 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.101,0,0,0.0866 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.108,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.125,0,0,0.13 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.141,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.154,0,0,0.0866 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.162,0,0,0.389 -0.667,0.254,0.254,0,0,0,0,0.421,0.619,0.315,0,0,0.619 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.194,0,0,0.233 -0.333,0.208,0.208,0,0,0,0,0.614,0.592,0.251,0,0,0.0866 -0.333,0.258,0.258,0,0,0,0,0.614,0.583,0.294,0,0,0.0433 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.525,0,0,0.173 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.176,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0775,0.0775,0,0,0,0,0.614,0.532,0.0222,0,0,0.277 -1,0.137,0.137,0,0,0,0,0.614,0.54,0.0295,0,0,0.117 -1,0.165,0.165,0,0,0,0,0.421,0.553,0.0433,0,0,0.188 -1,0.163,0.163,0.467,0,0,0,0.421,0.558,0.0636,0,0,0.499 -1,0.374,0.374,0,0,0,0,0.421,0.542,0.205,0,0,0.431 -0.333,0.154,0.154,0,0,0.103,0,0.421,0.558,0.0933,0.184,0,0 -0.333,0.149,0.149,0.233,0.833,0.414,0.667,0.421,0.558,0.101,0.626,0.423,0.216 -0.333,0.145,0.145,0,0.0833,0,0,0.421,0.558,0.108,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.125,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.141,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.154,0,0,0.216 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.305,0,0,0.0866 -0.667,0.254,0.254,0,0,0.517,0.217,0.421,0.619,0.315,0,0.153,0.216 -0.667,0.291,0.291,0,0,0,0,0.749,0.627,0.37,0,0.376,0 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.485,0,0.34,0.13 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.569,0,0.429,0.0433 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.525,0,0.312,0.457 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.334,0,0,0.327 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.137,0.137,0.233,0,0,0,0.614,0.54,0.0316,0,0,0.161 -1,0.394,0.394,0,0,0,0,0.421,0.529,0.087,0,0,0.181 -1,0.39,0.39,0,0,0,0,0.421,0.542,0.107,0,0,0.274 -1,0.374,0.374,0,0,0.517,0.117,0.421,0.542,0.126,0,0,0.589 -1,0.362,0.362,0,0,0,0.333,0.421,0.542,0.141,0,0.479,0.215 -1,0.346,0.346,0,0.333,0,0,0.421,0.542,0.157,0.63,0.0299,0.538 -0.667,0.239,0.239,0,0.583,0,0,0.421,0.55,0.116,0,0,0.249 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.13,0,0,0.303 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.223 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.356 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.422 -0.333,0.152,0.152,0,0.333,0,0,0.421,0.592,0.124,0.58,0,0.412 -0.333,0.171,0.171,0,0.817,0,0,0.585,0.596,0.163,0.285,0,0.0866 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.432,0,0,0.0866 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.0433 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.359 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.402 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.137,0.137,0.5,0,0,0,0.614,0.54,0.0316,0,0,0.196 -1,0.279,0.279,1,0,0,0,0.421,0.541,0.0633,0,0,0.144 -1,0.277,0.277,0.667,0,0,0,0.421,0.55,0.0764,0,0,0.0335 -0.667,0.266,0.266,0,0,0,0,0.421,0.55,0.0894,0,0,0.234 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.0996,0,0,0.549 -0.667,0.247,0.247,0,0,0,0,0.421,0.55,0.11,0,0,0.221 -0.667,0.239,0.239,0,0,0,0,0.421,0.55,0.116,0,0,0.23 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.13,0,0,0.104 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.303 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.173 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.0433 -0.333,0.152,0.152,0,0.583,0,0,0.421,0.592,0.124,0.652,0,0.173 -0.333,0.171,0.171,0,1,0,0,0.585,0.596,0.163,0.326,0,0 -0.667,0.365,0.365,0,0.0333,0,0,0.807,0.619,0.432,0,0,0 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.0433 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.368 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.161,0,0,0.921 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.165,0.165,0,0,0,0,0.421,0.553,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0.191 -0.667,0.158,0.158,0.233,0,0,0,0.421,0.558,0.0526,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.0996,0,0,0 -0.667,0.247,0.247,0,0,0,0,0.421,0.55,0.11,0,0,0.216 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.43 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.395 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.218 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.148 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.13 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.0433 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.432,0,0,0.26 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.0433 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0 -1,0.576,0.576,0,0,0,0,1,0.516,0.453,0,0,0.0959 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.172 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0447 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0,0,0,0,0.421,0.553,0.0396,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0.306 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.111 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.26 -0,0.05,0.05,0,0,0.517,0.367,0.421,0.566,0.0159,0,0.0618,0.0866 -0.333,0.171,0.171,0,0,0,0.0833,0.585,0.596,0.163,0,0.347,0.0866 -0.667,0.365,0.365,0.467,0,0,0,0.807,0.619,0.432,0,0.445,0.216 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0.0527,0.26 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.13 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.532 -1,0.394,0.394,0,0,0,0,0.421,0.529,0.087,0,0,0.19 -0.333,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0.0679 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0 -0.333,0.149,0.149,0.5,0,0.517,0.617,0.421,0.558,0.0628,0,0.0715,0 -0.667,0.239,0.239,0.45,0,0,0.05,0.421,0.55,0.116,0,0.563,0.346 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.13,0,0.655,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0.346,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0.513,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0.353,0.13 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.13 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.173 -0.333,0.208,0.208,0.233,0,0,0,0.614,0.592,0.224,0,0,0.0433 -1,0.674,0.674,0,0,0,0,1,0.619,0.79,0,0,0.356 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.0866 -1,0.576,0.576,0,0,0,0,1,0.516,0.453,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.177 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.044,0,0,0.239 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0505,0.0505,0,0,0,0,0.614,0.532,0.0201,0,0,0.233 -1,0.0775,0.0775,0,0,0.517,0.367,0.614,0.532,0.0222,0,0.0468,0.167 -1,0.224,0.224,1,0,0,0.533,0.807,0.515,0.0409,0,0.615,0 -1,0.279,0.279,1,0,0,0,0.421,0.541,0.0684,0,0.425,0.13 -1,0.39,0.39,0.883,0,0,0,0.421,0.542,0.155,0,0.311,0.592 -1,0.374,0.374,0,0,0,0,0.421,0.542,0.205,0,0.33,0 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.169,0,0.3,0.0866 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.101,0,0.558,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.108,0,0.432,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.125,0,0.702,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.141,0,0.661,0.13 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.154,0,0.62,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.162,0,0.322,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0.333,0.208,0.208,0,0,0,0,0.614,0.592,0.251,0,0,0.211 -0.333,0.258,0.258,0,0,0,0,0.614,0.583,0.294,0,0,0.125 -0.333,0.298,0.298,0,0,0,0,0.614,0.566,0.272,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.117,0.117,0,0,0,0,0.614,0.536,0.0868,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.044,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.277,0.277,0,0,0,0,0.421,0.55,0.109,0,0,0 -0.667,0.158,0.158,0,0,0,0,0.421,0.558,0.0803,0,0,0.224 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.169,0,0,0.117 -0.667,0.247,0.247,0,0,0.517,0.117,0.421,0.55,0.184,0,0,0.432 -0.667,0.239,0.239,0,0,0,0.333,0.421,0.55,0.198,0,0.362,0.0433 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.232,0,0.242,0 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.264,0,0.663,0.0866 -0.667,0.238,0.238,0,0,0,0,0.421,0.567,0.29,0,0.495,0.0866 -1,0.241,0.241,0.25,0,0,0,0.421,0.593,0.305,0,0,0.0866 -1,0.357,0.357,1,0,0,0,0.421,0.645,0.464,0,0,0.281 -0.667,0.291,0.291,0.183,0,0,0,0.749,0.627,0.37,0,0,0.184 -1,0.523,0.523,0,0,0,0,1,0.645,0.718,0,0,0.215 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.569,0,0,0.173 -1,0.547,0.547,0,0,0,0,0.807,0.567,0.525,0,0,0.177 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.334,0,0,0.173 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0868,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0775,0.0775,0,0,0,0,0.614,0.532,0.0236,0,0,0.102 -0.667,0.224,0.224,0,0,0,0,0.807,0.515,0.0474,0,0,0.274 -0.667,0.279,0.279,0,0,0,0,0.421,0.541,0.0633,0,0,0.235 -0.667,0.277,0.277,0,0,0,0,0.421,0.55,0.0764,0,0,0.316 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0.118 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.216 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.303 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.13 -0.667,0.254,0.254,0.717,0,0,0,0.421,0.619,0.232,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.0866 -0.333,0.208,0.208,0.75,0,0,0,0.614,0.592,0.224,0,0,0.0866 -0.667,0.466,0.466,0.45,0,0,0,0.807,0.601,0.532,0,0,0.0433 -0.667,0.298,0.298,0,0,0,0,0.614,0.566,0.26,0,0,0.0866 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.161,0,0,0.108 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.323 -1,0.279,0.279,0.75,0,0,0,0.421,0.541,0.0633,0,0,0.0662 -1,0.39,0.39,0.2,0,0,0,0.421,0.542,0.107,0,0,0.277 -1,0.374,0.374,0,0.583,0,0,0.421,0.542,0.126,0.831,0,0.211 -0.667,0.258,0.258,0,0.333,0,0,0.421,0.55,0.0996,0,0,0.13 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0 -0.333,0.145,0.145,0.717,0,0,0,0.421,0.558,0.0657,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.0433 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.216 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.26 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.287 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.05,0.05,0,0,0.103,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.258,0.258,0,0,0.414,0.667,0.614,0.583,0.274,0,0.437,0.0866 -0.667,0.298,0.298,0,0,0,0,0.614,0.566,0.26,0,0.109,0 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.161,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.166 -1,0.224,0.224,0,0,0,0,0.807,0.515,0.0474,0,0,0.124 -1,0.279,0.279,0,0,0,0,0.421,0.541,0.0633,0,0,0.244 -1,0.277,0.277,0,0,0,0,0.421,0.55,0.0764,0,0,0.0415 -1,0.374,0.374,0,0,0,0,0.421,0.542,0.126,0,0,0.388 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0 -0.333,0.149,0.149,0.5,0,0,0,0.421,0.558,0.0628,0,0,0.26 -0.333,0.145,0.145,0.45,0,0,0,0.421,0.558,0.0657,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.216 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.18 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.37 -0.333,0.258,0.258,0,0,0,0,0.614,0.583,0.274,0,0,0.163 -0.667,0.298,0.298,0,0,0,0,0.614,0.566,0.26,0,0,0.173 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.161,0,0,0 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.136,0,0,0.129 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0642 -1,0.165,0.165,0.233,0,0,0,0.421,0.553,0.0396,0,0,0 -1,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.143 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0 -1,0.523,0.523,0,0,0,0,1,0.645,0.64,0,0,0.444 -1,0.674,0.674,0,0,0,0,1,0.619,0.79,0,0,0 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0.13 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0374,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.532,0.0236,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.224,0.224,0,0,0,0,0.807,0.515,0.0474,0,0,0.364 -1,0.394,0.394,0,0,0,0,0.421,0.529,0.087,0,0,0.561 -0.667,0.277,0.277,0,0,0,0,0.421,0.55,0.0764,0,0,0.309 -0.667,0.266,0.266,0,0,0,0,0.421,0.55,0.0894,0,0,0.344 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0.277 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0.492 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.226 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.0433 -0.333,0.143,0.143,0,0.583,0,0,0.421,0.558,0.0766,0.832,0,0.0866 -0.333,0.144,0.144,0,0.567,0,0,0.421,0.566,0.0846,0.796,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.208,0.208,0,0,0,0,0.614,0.592,0.224,0,0,0 -0.667,0.258,0.258,0,0,0,0,0.614,0.583,0.274,0,0,0 -0.667,0.298,0.298,0,0,0,0,0.614,0.566,0.26,0,0,0.0866 -0.667,0.225,0.225,0,0,0,0,0.614,0.549,0.161,0,0,0.568 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.113 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.105 -1,0.266,0.266,0,0,0,0,0.421,0.55,0.142,0,0,0.0969 -0.667,0.154,0.154,0,0,0,0,0.421,0.558,0.0933,0,0,0.2 -0.667,0.149,0.149,0,0,0,0,0.421,0.558,0.101,0,0,0.105 -0.667,0.145,0.145,0,0,0,0,0.421,0.558,0.108,0,0,0.501 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.125,0,0,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.141,0,0,0.0433 -0.667,0.238,0.238,0,0,0,0,0.421,0.567,0.29,0,0,0 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.305,0,0,0.0433 -0.667,0.254,0.254,0,0,0,0,0.421,0.619,0.315,0,0,0.26 -0.333,0.171,0.171,0,0.583,0,0,0.585,0.596,0.194,0.554,0,0.0433 -0.333,0.208,0.208,0,0.567,0,0,0.614,0.592,0.251,0.134,0,0.0433 -1,0.674,0.674,0,0.833,0,0,1,0.619,0.844,0.641,0,0.52 -1,0.795,0.795,0,0.317,0,0,1,0.568,0.779,0,0,0.102 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.334,0,0,0 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.155,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.044,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0631 -1,0.137,0.137,0,0,0,0,0.614,0.54,0.0295,0,0,0.161 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.136 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0636,0,0,0 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0803,0,0,0.13 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0933,0,0,0 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.101,0,0,0.0866 -0.667,0.239,0.239,0,0,0,0,0.421,0.55,0.198,0,0,0.417 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.232,0,0,0.0433 -0.667,0.237,0.237,0,0,0,0,0.421,0.55,0.264,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.154,0,0,0.0433 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.162,0,0,0.173 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.167,0,0,0.26 -0.667,0.291,0.291,0,0,0,0,0.749,0.627,0.37,0,0,0.0866 -0.667,0.365,0.365,0,0,0,0,0.807,0.619,0.485,0,0,0.0866 -1,0.674,0.674,0,0.0833,0,0,1,0.619,0.844,0.484,0,0.258 -1,0.547,0.547,0,1,0,0,0.807,0.567,0.525,0.578,0,0.0866 -1,0.401,0.401,0,0.0667,0,0,0.807,0.533,0.334,0.424,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0868,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.137,0.137,0.7,0,0,0,0.614,0.54,0.0316,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0.489 -0.667,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0.253 -0.667,0.258,0.258,0,0,0,0,0.421,0.55,0.0996,0,0,0.503 -0.667,0.247,0.247,0,0,0,0,0.421,0.55,0.11,0,0,0.382 -0.667,0.239,0.239,0,0,0,0,0.421,0.55,0.116,0,0,0.0998 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.13 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.19,0,0,0.26 -0.667,0.254,0.254,0,0,0,0,0.421,0.619,0.232,0,0,0.389 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.298,0.298,0,0,0,0,0.614,0.566,0.26,0,0,0.174 -1,0.576,0.576,0,0,0,0,1,0.516,0.453,0,0,0.532 -1,0.117,0.117,0,0,0,0,0.614,0.536,0.0759,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.123 -1,0.224,0.224,0,0,0,0,0.807,0.515,0.0474,0,0,0.262 -1,0.394,0.394,0,0,0,0,0.421,0.529,0.087,0,0,0.228 -0.667,0.277,0.277,0,0,0,0,0.421,0.55,0.0764,0,0,0.118 -0.333,0.158,0.158,0,0,0,0,0.421,0.558,0.0526,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0.173 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.266 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.0866 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.346 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.216 -0.333,0.171,0.171,0,0,0,0,0.585,0.596,0.163,0,0,0.173 -0.333,0.208,0.208,0,0,0,0,0.614,0.592,0.224,0,0,0.317 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.13 -0.667,0.547,0.547,0.717,0,0,0,0.807,0.567,0.504,0,0,0.0433 -1,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.165,0.165,0.467,0,0,0,0.421,0.553,0.0396,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0,0,0 -0.667,0.266,0.266,0,0,0,0,0.421,0.55,0.0894,0,0,0 -0.333,0.154,0.154,0,0,0,0,0.421,0.558,0.0577,0,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0,0,0.0433 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0 -0.333,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0 -0.333,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.0866 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.216 -0.667,0.241,0.241,0,0,0,0,0.421,0.593,0.19,0,0,0 -1,0.357,0.357,0,0,0,0,0.421,0.645,0.339,0,0,0 -0.667,0.291,0.291,0,0,0,0,0.749,0.627,0.31,0,0,0.246 -1,0.523,0.523,0,0,0,0,1,0.645,0.64,0,0,0 -0.333,0.258,0.258,0,0,0,0,0.614,0.583,0.274,0.158,0,0.173 -0.667,0.547,0.547,0,0.833,0,0,0.807,0.567,0.504,0.657,0,0.519 -0.667,0.401,0.401,0,0.0833,0,0,0.807,0.533,0.307,0,0,0.483 -1,0.184,0.184,0,0,0,0,0.807,0.507,0.136,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.614,0.532,0.0374,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0.144,0,0 -1,0.137,0.137,0,0.833,0,0,0.614,0.54,0.0316,0.742,0,0.0637 -1,0.279,0.279,0,0.0833,0,0,0.421,0.541,0.0633,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.421,0.558,0.0461,0.147,0,0 -0.333,0.158,0.158,0,0.833,0,0,0.421,0.558,0.0526,0.843,0,0 -0.333,0.154,0.154,0,0.317,0,0,0.421,0.558,0.0577,0.663,0,0.0433 -0.333,0.149,0.149,0,0,0,0,0.421,0.558,0.0628,0.214,0,0 -0.333,0.145,0.145,0,0,0,0,0.421,0.558,0.0657,0,0,0.26 -0.667,0.144,0.144,0,0,0,0,0.421,0.558,0.073,0,0,0.173 -0.667,0.143,0.143,0,0,0,0,0.421,0.558,0.0766,0,0,0.433 -0.667,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0.0433 -0.667,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0.346 -0.667,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0 -0.667,0.171,0.171,0.25,0,0,0,0.585,0.596,0.163,0,0,0.389 -0.667,0.208,0.208,0.217,0,0,0,0.614,0.592,0.224,0,0,0.173 -0.667,0.466,0.466,0,0,0,0,0.807,0.601,0.532,0,0,0.0866 -1,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0 -1,0.401,0.401,0,0,0.103,0,0.807,0.533,0.307,0,0,0 -1,0.184,0.184,0,0,0.414,0.217,0.807,0.507,0.136,0,0.368,0.239 -1,0.0999,0.0999,0,0,0,0,0.807,0.498,0.059,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0775,0.0775,0,0,0,0,0.614,0.532,0.0236,0,0,0.285 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.158,0.158,0,0,0.103,0,0.421,0.558,0.0526,0,0,0.188 -0.667,0.154,0.154,0.233,0,0.414,0.667,0.421,0.558,0.0577,0,0.274,0.116 -1,0.346,0.346,0,0,0,0,0.421,0.542,0.157,0,0,0.18 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.144,0.144,0,0,0,0,0.421,0.566,0.0846,0,0,0 -0.333,0.146,0.146,0,0,0,0,0.421,0.579,0.103,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.421,0.592,0.124,0,0,0.0866 -0.667,0.291,0.291,0,0,0,0,0.749,0.627,0.31,0,0,0.389 -0.333,0.208,0.208,0,0,0,0,0.614,0.592,0.224,0,0,0.216 -0.333,0.258,0.258,0,0,0,0,0.614,0.583,0.274,0,0,0.216 -0.667,0.547,0.547,0,0,0,0,0.807,0.567,0.504,0,0,0.576 -0.667,0.401,0.401,0,0,0,0,0.807,0.533,0.307,0,0,0.404 -0.667,0.184,0.184,0,0,0,0,0.807,0.507,0.136,0,0,0.0433 -0.667,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0451,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0603 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0444,0,0,0.111 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.113,0,0,0.142 -1,0.281,0.281,0,0,0,0,0.421,0.552,0.147,0,0,0.432 -1,0.273,0.273,0,0,0,0,0.421,0.552,0.174,0,0,0.26 -0.333,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.152,0.152,0,0,0,0,0.421,0.559,0.111,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.421,0.559,0.129,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.146,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.159,0,0,0.0866 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.167,0,0,0.216 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.172,0,0,0.389 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.383,0,0,0.346 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.588,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.118 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0301,0,0,0.209 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0444,0,0,0.254 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.113,0,0,0.418 -1,0.396,0.396,0,0,0,0,0.421,0.546,0.212,0,0,0.504 -1,0.384,0.384,0,0,0,0,0.421,0.546,0.252,0,0,0.0406 -0.667,0.262,0.262,0,0,0,0,0.421,0.552,0.191,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.111,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.129,0,0,0 -0.667,0.251,0.251,0,0,0,0,0.421,0.552,0.273,0,0,0 -0.667,0.253,0.253,0,0,0,0,0.421,0.57,0.3,0,0,0.26 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.167,0,0,0.173 -0.667,0.289,0.289,0,0,0,0,0.421,0.622,0.326,0,0,0.0866 -0.667,0.354,0.354,0.167,0,0,0,0.749,0.63,0.383,0,0,0.389 -0.667,0.458,0.458,0.0667,0,0,0,0.807,0.622,0.501,0,0,0.173 -0.667,0.304,0.304,0,0,0.517,0.283,0.614,0.585,0.303,0,0,0.26 -0.333,0.05,0.05,0,0,0,0.167,0.421,0.566,0.0181,0,0.459,0 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.182,0,0.381,0.13 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0438 -1,0.0508,0.0508,0,0,0,0,0.614,0.533,0.0188,0,0,0.452 -1,0.0788,0.0788,0,0,0,0,0.614,0.533,0.0241,0,0,0.141 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0323,0,0,0.0998 -1,0.287,0.287,0,0,0,0,0.421,0.544,0.0653,0,0,0.21 -0.667,0.169,0.169,0,0.333,0,0,0.421,0.559,0.0473,0.645,0,0 -0.667,0.165,0.165,0,0.833,0,0,0.421,0.559,0.0541,0.762,0,0.0433 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.103,0.821,0,0.13 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0.0902,0,0.13 -0.333,0.152,0.152,0.483,0,0,0,0.421,0.559,0.0676,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.156,0.156,0.483,0,0,0,0.421,0.581,0.106,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.128,0,0,0 -0.333,0.202,0.202,0,0,0.103,0,0.585,0.598,0.168,0,0,0 -0.333,0.254,0.254,0,0,0.414,0.683,0.614,0.594,0.231,0,0.267,0.216 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0.427,0.0433 -0.667,0.32,0.32,0,0,0,0,0.614,0.568,0.269,0,0,0.173 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.124 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0323,0,0,0.433 -1,0.287,0.287,0.483,0,0,0,0.421,0.544,0.0653,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0.667,0.165,0.165,0,0,0,0,0.421,0.559,0.0541,0,0,0 -0.667,0.161,0.161,0,0,0.517,0.367,0.421,0.559,0.0593,0,0.0618,0.173 -1,0.262,0.262,0,0,0,0.317,0.421,0.552,0.113,0,0.332,0.173 -1,0.254,0.254,0,0,0,0,0.421,0.552,0.119,0,0.55,0.0866 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0.127,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.0433 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0.13 -0.333,0.169,0.169,0.5,0,0,0,0.421,0.594,0.128,0,0,0 -0.333,0.202,0.202,1,0,0,0,0.585,0.598,0.168,0,0,0.13 -0.333,0.254,0.254,1,0,0,0,0.614,0.594,0.231,0,0,0.173 -0.333,0.304,0.304,1,0,0,0,0.614,0.585,0.283,0,0,0.173 -0.667,0.589,0.589,1,0,0,0,0.807,0.57,0.521,0,0,0.0866 -0.667,0.394,0.394,0.817,0,0,0,0.807,0.535,0.317,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.717,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.14,0.14,0.233,0,0,0,0.614,0.542,0.0323,0,0,0 -1,0.405,0.405,0,0,0,0,0.421,0.533,0.09,0,0,0 -0.667,0.288,0.288,0,0,0,0,0.421,0.552,0.0788,0,0,0 -0.333,0.165,0.165,0,0.583,0,0,0.421,0.559,0.0541,0.816,0,0.0866 -0.333,0.161,0.161,0.25,0.583,0,0,0.421,0.559,0.0593,0.779,0,0.13 -0.333,0.156,0.156,0.233,0,0,0,0.421,0.559,0.0646,0,0,0.0866 -0.667,0.254,0.254,0,0,0,0,0.421,0.552,0.119,0,0,0.0866 -0.667,0.251,0.251,0,0,0,0,0.421,0.552,0.134,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.35 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.126 -0.333,0.156,0.156,0.5,0,0,0,0.421,0.581,0.106,0,0,0.297 -0.333,0.169,0.169,0.7,0,0,0,0.421,0.594,0.128,0,0,0.13 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.32,0,0,0.0866 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0.476 -0.333,0.304,0.304,0,0,0,0,0.614,0.585,0.283,0,0,0.0866 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.125 -1,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.292 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0173,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0788,0.0788,0.467,0,0,0,0.614,0.533,0.0241,0,0,0.119 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.128 -0.667,0.287,0.287,0,0,0,0,0.421,0.544,0.0653,0,0,0.151 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.407 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.161,0.161,0.233,0,0,0,0.421,0.559,0.0593,0,0,0.233 -0,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.0433 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0.0866 -0.667,0.289,0.289,0,0.583,0,0,0.421,0.622,0.239,0.451,0,0.0433 -0.333,0.202,0.202,0,0.35,0,0,0.585,0.598,0.168,0,0,0.245 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.446,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.195 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.0433 -1,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0.13 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.191 -1,0.0508,0.0508,0,0,0,0,0.614,0.533,0.0188,0,0,0.226 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.0847 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.0788,0,0,0.204 -1,0.281,0.281,0,0,0,0,0.421,0.552,0.0923,0,0,0.33 -1,0.384,0.384,0,0,0,0,0.421,0.546,0.146,0,0,0.142 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.26 -0.667,0.261,0.261,0,0,0,0,0.421,0.596,0.196,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.128,0,0,0.323 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.168,0,0,0.476 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.485 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.121 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.255 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.397 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0696 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.167,0,0,0,0.421,0.566,0.0181,0,0,0.421 -1,0.32,0.32,0.317,0,0,0,1,0.494,0.054,0,0,0.405 -0.667,0.287,0.287,0,0,0,0,0.421,0.544,0.0706,0,0,0.0853 -0.667,0.288,0.288,0,0,0,0,0.421,0.552,0.113,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.421,0.559,0.0826,0,0,0.216 -0.333,0.161,0.161,0.167,0,0,0,0.421,0.559,0.0961,0,0,0.0433 -0.333,0.156,0.156,0.8,0,0,0,0.421,0.559,0.104,0,0,0.13 -0.667,0.254,0.254,0,0,0,0,0.421,0.552,0.204,0,0,0.26 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.129,0,0,0.26 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.146,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.159,0,0,0 -0.667,0.261,0.261,0,0,0,0,0.421,0.596,0.315,0,0,0.0433 -0.667,0.289,0.289,0,0,0,0,0.421,0.622,0.326,0,0,0.0433 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.383,0,0,0.216 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0.535 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.588,0,0,0.319 -1,0.589,0.589,0,0,0,0,0.807,0.57,0.543,0,0,0.104 -1,0.222,0.222,0,0,0,0,0.614,0.55,0.182,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.107 -1,0.14,0.14,0.167,0,0,0,0.614,0.542,0.0301,0,0,0.322 -1,0.168,0.168,0.55,0,0,0,0.421,0.555,0.0444,0,0,0.0679 -1,0.407,0.407,0,0,0,0,0.421,0.546,0.16,0,0,0 -1,0.396,0.396,0,0,0,0,0.421,0.546,0.212,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.174,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.563 -0,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0181,0.114,0,0.0433 -0.333,0.151,0.151,0,0.75,0,0,0.421,0.559,0.129,0.716,0,0.173 -0,0.05,0.05,0,0.183,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.159,0,0,0 -0.333,0.156,0.156,0.483,0.25,0,0,0.421,0.581,0.167,0.468,0,0.0433 -0.667,0.289,0.289,0,0.683,0,0,0.421,0.622,0.326,0.592,0,0.0433 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.383,0.185,0,0.452 -1,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0.173 -1,0.559,0.559,0,0,0,0,0.807,0.604,0.588,0,0,0 -1,0.32,0.32,0,0,0,0,0.614,0.568,0.281,0,0,0.0433 -1,0.222,0.222,0,0,0,0,0.614,0.55,0.182,0,0,0.13 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.14,0.14,1,0,0,0,0.614,0.542,0.0323,0,0,0 -0.667,0.168,0.168,0.183,0,0,0,0.421,0.555,0.0406,0,0,0.22 -0.333,0.169,0.169,0,0,0,0,0.421,0.559,0.0473,0,0,0.158 -0.333,0.165,0.165,0,0,0,0,0.421,0.559,0.0541,0,0,0.12 -0.333,0.161,0.161,0,0,0,0,0.421,0.559,0.0593,0,0,0.367 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.128,0.166,0,0 -0.333,0.202,0.202,0.233,0.833,0,0,0.585,0.598,0.168,0.744,0,0.0433 -0.667,0.458,0.458,0,0.1,0,0,0.807,0.622,0.446,0.801,0,0.0866 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0.184,0,0.303 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.303 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.111 -1,0.14,0.14,1,0,0,0,0.614,0.542,0.0323,0,0,0.13 -1,0.405,0.405,0.45,0,0,0,0.421,0.533,0.09,0,0,0.106 -0.667,0.288,0.288,0,0,0,0,0.421,0.552,0.0788,0,0,0.134 -0.667,0.281,0.281,0,0,0,0,0.421,0.552,0.0923,0,0,0.484 -0.333,0.161,0.161,0,0,0,0,0.421,0.559,0.0593,0,0,0.0433 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0.13 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.173 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.216 -0,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0.0433 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.128,0,0,0.173 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.168,0,0,0.114 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0.0949 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.216 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.412 -1,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0,0.112 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.169,0.169,0,0,0,0,0.421,0.559,0.0473,0.171,0,0 -0.667,0.281,0.281,0,0.833,0,0,0.421,0.552,0.0923,0.661,0,0 -0.333,0.161,0.161,0,0.1,0,0,0.421,0.559,0.0593,0.615,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0.727,0,0.216 -0.333,0.152,0.152,0.75,0,0,0,0.421,0.559,0.0676,0.954,0,0.0866 -0.333,0.151,0.151,0.217,0,0,0,0.421,0.559,0.0751,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.649 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0.303 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.128,0,0,0.13 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.32,0,0,0 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.446,0,0,0 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.233 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.18 -0.667,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0,0.0944 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.135 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0.125 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0173,0,0,0.145 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0159,0,0,0.348 -1,0.23,0.23,0,0.333,0,0,0.807,0.518,0.0488,0.615,0,0.109 -0.667,0.168,0.168,0,0.833,0,0,0.421,0.555,0.0406,0.19,0,0.366 -0.667,0.288,0.288,0,0.0833,0,0,0.421,0.552,0.0788,0.479,0,0.186 -0.667,0.281,0.281,0,1,0,0,0.421,0.552,0.0923,0.184,0,0.272 -0.667,0.273,0.273,0,0.0833,0,0,0.421,0.552,0.103,0,0,0.238 -0.667,0.262,0.262,0,0,0,0,0.421,0.552,0.113,0,0,0.231 -0.667,0.254,0.254,0,0,0,0,0.421,0.552,0.119,0,0,0.318 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.132 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.169,0.169,0.967,0,0,0,0.421,0.594,0.128,0,0,0 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.168,0,0,0 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0 -1,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.0866 -1,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0158,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.384 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.268 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.0788,0,0,0.163 -0.667,0.281,0.281,0,0,0,0,0.421,0.552,0.0923,0,0,0.0824 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.103,0,0,0.0433 -0.667,0.262,0.262,0,0,0,0,0.421,0.552,0.113,0,0,0 -0.667,0.254,0.254,0,0,0,0,0.421,0.552,0.119,0,0,0.0961 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.36 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.156,0.156,0.25,0,0,0,0.421,0.581,0.106,0,0,0.216 -0.333,0.169,0.169,0.717,0,0,0,0.421,0.594,0.128,0,0,0.0433 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.168,0,0,0 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.446,0,0,0.346 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.13 -1,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.173 -1,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0,0.216 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0788,0.0788,0,0,0,0,0.614,0.533,0.0226,0,0,0.319 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0301,0,0,0.415 -1,0.287,0.287,0,0,0,0,0.421,0.544,0.0706,0,0,0.0873 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.113,0,0,0.0433 -0.667,0.165,0.165,0,0,0,0,0.421,0.559,0.0826,0,0,0.13 -0.333,0.161,0.161,0,0,0,0,0.421,0.559,0.0961,0,0,0.216 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.104,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.111,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.129,0,0,0 -0.333,0.151,0.151,0,0,0.517,0.283,0.421,0.559,0.146,0,0,0.0433 -0.333,0.151,0.151,0,0,0,0.867,0.421,0.568,0.159,0,0.393,0.0866 -0.667,0.261,0.261,0,0,0,0,0.421,0.596,0.315,0,0.547,0.0433 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.172,0,0.637,0.13 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.2,0,0.83,0.303 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0.0866 -0.333,0.304,0.304,0,0,0,0,0.614,0.585,0.303,0,0,0.271 -1,0.859,0.859,0,0,0,0,1,0.572,0.806,0,0,0.374 -1,0.566,0.566,0,0,0,0,1,0.52,0.509,0,0,0.0969 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0632 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.393 -1,0.287,0.287,0,0,0,0,0.421,0.544,0.0706,0,0,0.333 -1,0.407,0.407,0,0,0.517,0.533,0.421,0.546,0.16,0,0.101,0.323 -0.667,0.281,0.281,0,0,0,0.617,0.421,0.552,0.147,0,0.278,0.32 -0.333,0.161,0.161,0,0,0.517,0.45,0.421,0.559,0.0961,0,0.524,0.0433 -0.333,0.156,0.156,0.717,0,0,0,0.421,0.559,0.104,0,0.55,0.0433 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.111,0,0,0.0433 -0.667,0.251,0.251,0,0,0,0,0.421,0.552,0.24,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.146,0,0,0.173 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.159,0,0,0 -0.333,0.156,0.156,0,0.25,0,0,0.421,0.581,0.167,0.567,0,0.0866 -0.667,0.289,0.289,0.667,0.917,0,0,0.421,0.622,0.326,0.615,0,0.216 -0.667,0.354,0.354,1,0,0.448,0.0333,0.749,0.63,0.383,0,0,0.26 -0.667,0.458,0.458,1,0,0.069,0.883,0.807,0.622,0.501,0,0.276,0.0433 -1,0.814,0.814,1,0,0,0,1,0.624,0.873,0,0.505,0 -1,0.589,0.589,1,0,0,0,0.807,0.57,0.543,0,0.0299,0 -1,0.05,0.05,1,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.583,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.267,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.152 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0323,0,0,0.187 -1,0.287,0.287,0,0,0,0,0.421,0.544,0.0653,0,0,0.113 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.421,0.559,0.0593,0,0,0.13 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.26 -0.333,0.151,0.151,0.483,0.333,0,0,0.421,0.568,0.0871,0.573,0,0.173 -0.667,0.261,0.261,0,0.6,0,0,0.421,0.596,0.196,0.53,0,0.285 -0.333,0.169,0.169,0.5,0,0,0,0.421,0.594,0.128,0,0,0.173 -0.333,0.202,0.202,0.467,0,0,0,0.585,0.598,0.168,0,0,0.216 -0.333,0.254,0.254,0.717,0,0,0,0.614,0.594,0.231,0,0,0.0866 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.216 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.0866 -0.667,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.205 -1,0.14,0.14,0.233,0,0,0,0.614,0.542,0.0323,0,0,0.353 -0.667,0.168,0.168,0.717,0,0,0,0.421,0.555,0.0406,0,0,0.0813 -0.667,0.288,0.288,0,0,0,0,0.421,0.552,0.0788,0,0,0.183 -0.667,0.281,0.281,0,0,0,0,0.421,0.552,0.0923,0,0,0 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.103,0,0,0.0433 -0.667,0.262,0.262,0,0,0,0,0.421,0.552,0.113,0,0,0.152 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.213 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.103 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0159,0,0,0.519 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.32,0,0,0 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.446,0,0,0.307 -0.667,0.559,0.559,0,0,0.517,0.367,0.807,0.604,0.55,0,0.0416,0.0433 -0.667,0.589,0.589,0,0,0,0.317,0.807,0.57,0.521,0,0.766,0 -1,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0.0754,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.108 -0.333,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.181 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.156,0.156,0.25,0,0,0,0.421,0.559,0.0646,0,0,0.216 -0.333,0.152,0.152,1,0,0,0,0.421,0.559,0.0676,0,0,0 -0.667,0.151,0.151,0.2,0,0,0,0.421,0.559,0.0751,0,0,0 -0.667,0.151,0.151,0.75,0,0,0,0.421,0.559,0.0789,0,0,0.0433 -1,0.253,0.253,0.933,0,0,0,0.421,0.57,0.158,0,0,0.453 -1,0.367,0.367,0,0,0,0,0.421,0.611,0.286,0,0,0.1 -0.333,0.169,0.169,0.5,0,0,0,0.421,0.594,0.128,0,0,0.13 -0.667,0.354,0.354,0.95,0,0,0,0.749,0.63,0.32,0,0,0.173 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.446,0,0,0.0433 -0.667,0.559,0.559,0,0.333,0,0,0.807,0.604,0.55,0.53,0,0.0433 -0.667,0.32,0.32,0,0.6,0,0,0.614,0.568,0.269,0.368,0,0.0433 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.346 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.168,0.168,0.467,0,0,0,0.421,0.555,0.0406,0,0,0 -0.667,0.169,0.169,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0.667,0.165,0.165,0,0,0,0,0.421,0.559,0.0541,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.327 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0.465 -0.333,0.152,0.152,1,0,0,0,0.421,0.559,0.0676,0,0,0.242 -0.333,0.151,0.151,0.2,0,0,0,0.421,0.559,0.0751,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0.333,0.151,0.151,0,0.0833,0,0,0.421,0.568,0.0871,0.424,0,0.173 -0.333,0.156,0.156,0,1,0,0,0.421,0.581,0.106,0.436,0,0.433 -0.333,0.169,0.169,0,0.317,0,0,0.421,0.594,0.128,0,0,0 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.168,0,0,0.13 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0.13 -0.333,0.304,0.304,0,0,0,0,0.614,0.585,0.283,0,0,0 -0.667,0.32,0.32,0,0,0,0,0.614,0.568,0.269,0,0,0.13 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.26 -0.667,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0.29 -1,0.405,0.405,0.217,0,0,0,0.421,0.533,0.09,0,0,0.441 -1,0.407,0.407,1,0,0,0,0.421,0.546,0.11,0,0,0 -0.667,0.281,0.281,0.2,0,0,0,0.421,0.552,0.0923,0,0,0.15 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.103,0,0,0.187 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0.0433 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.255 -0.667,0.251,0.251,0,0,0,0,0.421,0.552,0.134,0,0,0.216 -0.667,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.26 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0864 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0301,0,0,0.307 -1,0.405,0.405,0,0,0,0,0.421,0.533,0.0968,0,0,0.395 -0.667,0.288,0.288,0,0,0,0,0.421,0.552,0.113,0,0,0.172 -0.667,0.281,0.281,0,0,0,0,0.421,0.552,0.147,0,0,0.282 -1,0.384,0.384,0,0,0,0,0.421,0.546,0.252,0,0,0.389 -0.667,0.262,0.262,0,0,0,0,0.421,0.552,0.191,0,0,0.338 -1,0.355,0.355,0,0,0,0,0.421,0.546,0.297,0,0,0.186 -0.667,0.251,0.251,0,0,0,0,0.421,0.552,0.24,0,0,0.249 -0.667,0.251,0.251,0,0,0.517,0.683,0.421,0.552,0.273,0,0.267,0.343 -0.667,0.253,0.253,0,0,0,0,0.421,0.57,0.3,0,0.619,0.188 -1,0.367,0.367,0,0,0,0,0.421,0.611,0.464,0,0.303,0.0433 -0.667,0.289,0.289,0,0,0,0,0.421,0.622,0.326,0,0.209,0.0433 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.383,0,0,0.609 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0.0433 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.588,0,0,0.0433 -1,0.589,0.589,0,0,0,0,0.807,0.57,0.543,0,0,0 -1,0.222,0.222,0,0,0,0,0.614,0.55,0.182,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.167,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0788,0.0788,0.8,0,0,0,0.614,0.533,0.0226,0,0,0 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0301,0,0,0 -1,0.168,0.168,0.483,0,0,0,0.421,0.555,0.0444,0,0,0.0753 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.113,0,0,0.259 -1,0.281,0.281,0,0,0,0,0.421,0.552,0.147,0,0,0.145 -0.667,0.161,0.161,0.167,0,0,0,0.421,0.559,0.0961,0,0,0.17 -0.667,0.156,0.156,0.55,0,0,0,0.421,0.559,0.104,0,0,0.53 -0.667,0.254,0.254,0,0,0,0,0.421,0.552,0.204,0,0,0.125 -0.667,0.251,0.251,0,0,0,0,0.421,0.552,0.24,0,0,0 -1,0.251,0.251,0,0,0,0,0.421,0.552,0.273,0,0,0.0866 -0.667,0.253,0.253,0.417,0,0,0,0.421,0.57,0.3,0,0,0.1 -1,0.367,0.367,1,0,0,0,0.421,0.611,0.464,0,0,0.173 -0.667,0.289,0.289,0.267,0,0,0,0.421,0.622,0.326,0,0,0.346 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.2,0,0,0.0866 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.26,0,0,0.0433 -0.333,0.304,0.304,0,0,0,0,0.614,0.585,0.303,0,0,0 -0.333,0.32,0.32,0,0,0,0,0.614,0.568,0.281,0,0,0 -0.333,0.222,0.222,0,0,0,0,0.614,0.55,0.182,0,0,0.13 -0.333,0.117,0.117,0,0,0,0,0.614,0.537,0.0894,0,0,0 -0.333,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0.14 -0.667,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.533,0.0173,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.614,0.533,0.0158,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.24 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.108 -0.333,0.169,0.169,0,0,0,0,0.421,0.559,0.0473,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.213 -0.667,0.254,0.254,0,0,0,0,0.421,0.552,0.119,0,0,0.0841 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.269 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0.0433 -0.333,0.169,0.169,0.233,0,0,0,0.421,0.594,0.128,0,0,0.109 -0.667,0.354,0.354,0,0.583,0,0,0.749,0.63,0.32,0.694,0,0.0433 -0.667,0.458,0.458,0,0.817,0,0,0.807,0.622,0.446,0,0,0.0433 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.173 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.357 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0.0866 -1,0.184,0.184,0,0,0,0,0.807,0.509,0.14,0,0,0.222 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.147 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0323,0,0,0.18 -1,0.287,0.287,0,0,0,0,0.421,0.544,0.0653,0,0,0.799 -1,0.288,0.288,0.5,0,0,0,0.421,0.552,0.0788,0,0,0.178 -0.667,0.165,0.165,0.467,0,0,0,0.421,0.559,0.0541,0,0,0.145 -0.667,0.273,0.273,0,0.583,0,0,0.421,0.552,0.103,0.593,0,0.238 -0.667,0.262,0.262,0,0.583,0,0,0.421,0.552,0.113,0,0,0.182 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.0671 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.216 -0.333,0.05,0.05,0.483,0,0,0,0.421,0.566,0.0159,0,0,0.282 -0.667,0.253,0.253,0,0,0,0,0.421,0.57,0.158,0,0,0.571 -0.667,0.261,0.261,0,0,0,0,0.421,0.596,0.196,0,0,0.173 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.128,0,0,0.0433 -0.333,0.202,0.202,0,0.0833,0,0,0.585,0.598,0.168,0.383,0,0.0866 -0.333,0.254,0.254,0,1,0,0,0.614,0.594,0.231,0.262,0,0 -0.667,0.559,0.559,0.483,0.0833,0,0,0.807,0.604,0.55,0,0,0.13 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.0433 -1,0.566,0.566,0,0.333,0,0,1,0.52,0.468,0.547,0,0.0866 -1,0.117,0.117,0,0.6,0,0,0.614,0.537,0.0781,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.149 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.123 -0.667,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.283 -0.333,0.05,0.05,0.233,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.165,0.165,0,0,0,0,0.421,0.559,0.0541,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.421,0.559,0.0593,0,0,0.433 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0.0866 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.0866 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.13 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.216 -0.667,0.261,0.261,0.75,0,0,0,0.421,0.596,0.196,0,0,0.0433 -1,0.289,0.289,0.217,0,0,0,0.421,0.622,0.239,0,0,0.0866 -1,0.354,0.354,0,0,0,0,0.749,0.63,0.32,0,0,0.0433 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.446,0,0,0.0866 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.55,0,0,0.0433 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.521,0,0,0.0433 -0.667,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.137 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0323,0,0,0.202 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.0986 -1,0.288,0.288,0,0,0,0,0.421,0.552,0.0788,0,0,0.146 -1,0.281,0.281,0.483,0,0,0,0.421,0.552,0.0923,0,0,0.482 -1,0.273,0.273,0,0,0,0,0.421,0.552,0.103,0,0,0.474 -1,0.262,0.262,0,0,0,0,0.421,0.552,0.113,0,0,0.568 -1,0.355,0.355,0,0,0,0,0.421,0.546,0.171,0,0,0.326 -1,0.352,0.352,0,0,0,0,0.421,0.546,0.194,0,0,0.189 -1,0.352,0.352,0,0,0,0,0.421,0.546,0.205,0,0,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.146 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0.0833,0,0,0.421,0.566,0.0159,0.407,0,0.303 -0.667,0.458,0.458,0.717,0.85,0,0,0.807,0.622,0.446,0.247,0,0 -1,0.814,0.814,0,0,0,0,1,0.624,0.817,0,0,0 -0.667,0.32,0.32,0,0,0,0,0.614,0.568,0.269,0,0,0.117 -1,0.222,0.222,0,0,0,0,0.614,0.55,0.167,0,0,0 -1,0.117,0.117,0,0,0,0,0.614,0.537,0.0781,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.614,0.533,0.0383,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.614,0.533,0.0241,0,0,0 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0173,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.614,0.533,0.0158,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.157 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0323,0,0,0.23 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0406,0,0,0.191 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.421,0.559,0.0593,0,0,0.581 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.0646,0,0,0.0671 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.0676,0,0,0.175 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0751,0,0,0.184 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.0789,0,0,0.236 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.0871,0,0,0 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.106,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0.333,0.254,0.254,0,0,0,0,0.614,0.594,0.231,0,0,0.216 -0.333,0.304,0.304,0,0,0,0,0.614,0.585,0.283,0,0,0 -0.333,0.32,0.32,0,0,0,0,0.614,0.568,0.269,0,0,0.122 -1,0.394,0.394,0,0,0,0,0.807,0.535,0.317,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.131 -1,0.0788,0.0788,0,0,0,0,0.614,0.533,0.0226,0,0,0.174 -1,0.14,0.14,0,0,0,0,0.614,0.542,0.0301,0,0,0 -1,0.168,0.168,0,0,0,0,0.421,0.555,0.0444,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.491 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.174,0,0,0.211 -0.333,0.156,0.156,0,0,0,0,0.421,0.559,0.104,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.333,0.05,0.05,0,0,0.517,0.683,0.421,0.566,0.0181,0,0.274,0.173 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.146,0,0.382,0.175 -0.667,0.253,0.253,0,0,0,0,0.421,0.57,0.3,0,0.479,0.122 -0.333,0.156,0.156,0.233,0,0,0,0.421,0.581,0.167,0,0.289,0 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.172,0,0,0.0433 -0.333,0.202,0.202,0,0,0,0,0.585,0.598,0.2,0,0,0.631 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0.0433 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.588,0,0,0.0866 -1,0.859,0.859,0,0,0,0,1,0.572,0.806,0,0,0.0866 -1,0.222,0.222,0,0,0,0,0.614,0.55,0.182,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0.448,0.0333,0.421,0.566,0.0181,0,0,0.362 -1,0.287,0.287,0,0,0.069,0.417,0.421,0.544,0.0706,0,0.424,0 -0.667,0.169,0.169,0.417,0,0,0,0.421,0.559,0.0654,0,0.342,0 -0.333,0.165,0.165,0.3,0,0,0,0.421,0.559,0.0826,0,0.382,0 -0.667,0.273,0.273,0,0,0,0,0.421,0.552,0.174,0,0.459,0.26 -0.667,0.262,0.262,0,0,0,0,0.421,0.552,0.191,0,0.247,0.0433 -0.333,0.152,0.152,0,0,0,0,0.421,0.559,0.111,0,0.347,0.0433 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.129,0,0.566,0.303 -0.333,0.151,0.151,0,0,0,0,0.421,0.559,0.146,0,0.472,0 -0.333,0.151,0.151,0,0,0,0,0.421,0.568,0.159,0,0.199,0.0866 -0.333,0.156,0.156,0,0,0,0,0.421,0.581,0.167,0,0.27,0 -0.333,0.169,0.169,0,0,0,0,0.421,0.594,0.172,0,0,0.13 -0.667,0.354,0.354,0,0,0,0,0.749,0.63,0.383,0,0,0.173 -0.667,0.458,0.458,0,0,0,0,0.807,0.622,0.501,0,0,0.792 -0.667,0.559,0.559,0,0,0,0,0.807,0.604,0.588,0,0,0.0497 -0.667,0.589,0.589,0,0,0,0,0.807,0.57,0.543,0,0,0.175 -0.667,0.394,0.394,0,0,0,0,0.807,0.535,0.345,0,0,0.406 -1,0.184,0.184,0,0,0,0,0.807,0.509,0.161,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0224,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.297,0.297,0,0,0,0,0.14,0.614,0.0577,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0.146 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0.0433 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0.0866 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0,0.26 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.26 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.0433 -0.333,0.202,0.202,0.5,0,0,0,0.281,0.636,0.113,0,0,0.13 -0.333,0.254,0.254,0.25,0,0,0,0.281,0.641,0.148,0,0,0.0433 -0.333,0.312,0.312,1,0,0,0,0.281,0.636,0.203,0,0,0 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0,0,0.346 -0.667,0.309,0.309,0,0,0,0,0.281,0.605,0.236,0,0,0.0827 -1,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0178,0,0,0.244 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.124 -0.667,0.144,0.144,0,0,0,0,0.281,0.574,0.0296,0,0,0.139 -0.333,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0.359 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0 -0.333,0.161,0.161,0.25,0,0,0,0.281,0.595,0.0669,0,0,0.364 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.13 -0.667,0.277,0.277,0,0,0,0,0.14,0.645,0.139,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.676,0.172,0,0,0.13 -0.667,0.353,0.353,0.75,0,0,0,0.14,0.707,0.21,0,0,0 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.13 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0,0.189 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.144 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0 -1,0.514,0.514,0,0,0,0,0,0.622,0.409,0,0,0.0866 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0 -1,0.304,0.304,0,0,0,0,0.14,0.624,0.0695,0,0,0 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0 -0.667,0.293,0.293,0.25,0,0,0,0.14,0.624,0.0905,0,0,0 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.0996,0,0,0.13 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0.0866 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0,0.173 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.216 -0.667,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.0433 -0.667,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.216 -0.667,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.0866 -0.667,0.458,0.458,0.5,0,0,0,0.14,0.717,0.28,0,0,0.0866 -0.667,0.575,0.575,0.75,0,0,0,0.14,0.707,0.39,0,0,0.0433 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.232 -0.667,0.309,0.309,0,0,0,0,0.281,0.605,0.236,0,0,0.408 -1,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0224,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0165,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0296,0,0,0.19 -1,0.297,0.297,0,0,0,0,0.14,0.614,0.0577,0,0,0.327 -0.667,0.304,0.304,0,0,0,0,0.14,0.624,0.0695,0,0,0.104 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0.189 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0.355 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.109 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.105,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.0433 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.13 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.216 -0.667,0.458,0.458,0,0,0,0,0.14,0.717,0.28,0,0,0.13 -0,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.216 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.26 -1,0.514,0.514,0,0,0,0,0,0.622,0.409,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0.216 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0,0.0433 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0224,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0178,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0224,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0.172 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0.221 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0.131 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.0996,0,0,0.348 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.105,0,0,0.256 -0.667,0.271,0.271,0,0.333,0,0,0.14,0.624,0.118,0.597,0,0.354 -0.333,0.161,0.161,0,0.65,0.483,0.383,0.281,0.595,0.0702,0.387,0.0039,0.0433 -0.333,0.163,0.163,0,0,0,0.567,0.281,0.605,0.0774,0,0.79,0.0433 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0.318,0.346 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.173 -0.333,0.05,0.05,0,0,0.483,0.133,0.421,0.566,0.0159,0,0,0.173 -0.333,0.338,0.338,0,0,0,0.333,0.281,0.626,0.248,0,0.507,0.149 -1,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0.112,0.153 -1,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0855,0,0,0.144 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0927,0,0,0.0694 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0986,0,0,0.196 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.114,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.129,0,0,0.0866 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.14,0,0,0.13 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.147,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.228,0,0,0.346 -0.667,0.338,0.338,0,0,0,0,0.281,0.626,0.266,0,0,0.0433 -1,0.569,0.569,0,0,0,0,0.14,0.645,0.475,0,0,0 -1,0.36,0.36,0,0,0,0,0.14,0.603,0.302,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0523,0.0523,0,0,0,0,0.14,0.562,0.0205,0,0,0 -1,0.111,0.111,0,0,0,0,0.14,0.562,0.0244,0,0,0 -1,0.239,0.239,0,0,0,0,0.14,0.583,0.0375,0,0,0 -1,0.297,0.297,0.75,0,0,0,0.14,0.614,0.0624,0,0,0.0433 -0.667,0.304,0.304,0.25,0,0,0,0.14,0.624,0.0991,0,0,0.13 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0737,0,0,0.0866 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0855,0,0,0 -0.333,0.166,0.166,0,0,0.483,0.133,0.281,0.595,0.0927,0,0,0 -0.667,0.274,0.274,0,0,0,0.567,0.14,0.624,0.179,0,0.255,0.414 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.21,0,0,0.273 -0.667,0.272,0.272,0,0,0,0,0.14,0.624,0.239,0,0,0.36 -0.333,0.163,0.163,0.25,0,0,0,0.281,0.605,0.14,0,0,0.216 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.147,0,0,0.346 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.152,0,0,0 -0.667,0.458,0.458,0,0.333,0,0,0.14,0.717,0.335,0.492,0,0 -0.667,0.575,0.575,0,1,0,0,0.14,0.707,0.438,0.814,0,0.0433 -0.667,0.338,0.338,0,0.383,0,0,0.281,0.626,0.266,0.691,0,0 -0.667,0.309,0.309,0,0,0,0,0.281,0.605,0.247,0.764,0,0.0433 -0.667,0.205,0.205,0,0,0,0,0.281,0.584,0.16,0.127,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0178,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0.128 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.0996,0,0,0.121 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.105,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.0866 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.173 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.0433 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.0433 -0.333,0.312,0.312,0.75,0,0,0,0.281,0.636,0.203,0,0,0.563 -1,0.626,0.626,0.75,0,0,0,0.14,0.686,0.481,0,0,0.0433 -1,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.195 -1,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.261 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0.245 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0296,0,0,0.192 -1,0.421,0.421,0,0,0,0,0,0.638,0.0786,0,0,0.0495 -0.667,0.304,0.304,0,0,0,0,0.14,0.624,0.0695,0,0,0.179 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0.389 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0.613 -0.333,0.162,0.162,0.5,0,0,0,0.281,0.595,0.0604,0,0,0.0593 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.389 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.1 -0.667,0.353,0.353,0,0,0,0,0.14,0.707,0.21,0,0,0.333 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.173 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0,0 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0,0,0.0433 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.173 -0.667,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.127 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0224,0,0,0.269 -1,0.239,0.239,0,0,0,0,0.14,0.583,0.0433,0,0,0.431 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0 -0.333,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.176,0.176,0.5,0,0,0,0.281,0.595,0.0486,0,0,0.173 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0 -0.333,0.162,0.162,0,0.583,0,0,0.281,0.595,0.0604,0.389,0,0.0433 -0.333,0.161,0.161,0,0.4,0,0,0.281,0.595,0.0669,0,0,0.0433 -0.333,0.161,0.161,0,0.0833,0,0,0.281,0.595,0.0702,0.425,0,0 -0.333,0.163,0.163,0,1,0,0,0.281,0.605,0.0774,0.72,0,0.0866 -0.333,0.174,0.174,0,0.133,0.483,0.383,0.281,0.621,0.0938,0.221,0.0455,0.0433 -0.333,0.202,0.202,0,0,0,0.317,0.281,0.636,0.113,0,0.295,0.173 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0.743,0.0433 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0.218,0.0866 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0,0.317,0.276 -0.333,0.309,0.309,0,0,0.483,0.383,0.281,0.605,0.236,0,0.078,0.305 -0.667,0.36,0.36,0,0,0,0.317,0.14,0.603,0.278,0,0.315,0.479 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.338 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.239,0.239,0,0,0,0,0.14,0.583,0.0433,0,0,0.209 -1,0.297,0.297,0,0,0,0,0.14,0.614,0.0577,0,0,0.185 -0.667,0.304,0.304,0,0.333,0,0,0.14,0.624,0.0695,0.702,0,0.0887 -0.667,0.302,0.302,0,0.65,0,0,0.14,0.624,0.0813,0.144,0,0.277 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0.13 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.0996,0,0,0.173 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.105,0,0,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.0433 -0.333,0.163,0.163,0.25,0,0,0,0.281,0.605,0.0774,0,0,0 -0.667,0.297,0.297,0,0,0,0,0.14,0.676,0.172,0,0,0.0433 -1,0.505,0.505,0,0,0,0,0,0.778,0.307,0,0,0.0433 -1,0.662,0.662,0,0,0,0,0,0.793,0.413,0,0,0.216 -1,0.837,0.837,0,0,0,0,0,0.778,0.578,0,0,0.346 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.346 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.13 -0.667,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.117 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0,0.13 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0224,0,0,0.24 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.239,0.239,0,0,0,0,0.14,0.583,0.0433,0,0,0.254 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0.32 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0.153 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0.389 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0.244 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.105,0,0,0.0972 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.118,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.0433 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.0433 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.0433 -0.667,0.458,0.458,0,0,0,0,0.14,0.717,0.28,0,0,0.173 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.39,0,0,0 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.265 -1,0.514,0.514,0,0,0,0,0,0.622,0.409,0,0,0.364 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.667,0.166,0.166,0,0,0,0,0.281,0.595,0.0927,0,0,0.416 -0.667,0.162,0.162,0,0,0.483,0.633,0.281,0.595,0.0986,0,0.134,0 -0.667,0.161,0.161,0,0,0,0.0667,0.281,0.595,0.114,0,0.687,0 -0.667,0.272,0.272,0,0,0,0,0.14,0.624,0.239,0,0.546,0.0433 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.14,0,0,0.216 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.147,0,0,0.476 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.152,0,0,0 -0.667,0.458,0.458,0,0,0,0,0.14,0.717,0.335,0,0,0.0866 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.438,0,0,0.107 -1,0.914,0.914,0,0,0,0,0,0.747,0.763,0,0,0.557 -1,0.829,0.829,0,0,0.483,0.133,0,0.684,0.704,0,0,0.209 -1,0.205,0.205,0,0,0,0.567,0.281,0.584,0.16,0,0.202,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0193,0,0,0.102 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0.667,0.304,0.304,0,0,0,0,0.14,0.624,0.0991,0,0,0.213 -0.333,0.176,0.176,0.5,0,0,0,0.281,0.595,0.0737,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0855,0,0,0 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0927,0,0,0.0433 -0.333,0.162,0.162,0.5,0,0,0,0.281,0.595,0.0986,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.114,0,0,0 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.129,0,0,0.173 -0.667,0.163,0.163,0,0,0,0,0.281,0.605,0.14,0,0,0.216 -1,0.297,0.297,0,0,0,0,0.14,0.676,0.276,0,0,0.476 -0.667,0.202,0.202,0,0,0,0,0.281,0.636,0.152,0,0,0.6 -0.667,0.254,0.254,0,0.583,0,0,0.281,0.641,0.177,0.786,0,0 -0.667,0.312,0.312,0.75,0.4,0,0,0.281,0.636,0.228,0.206,0,0.226 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.514,0,0,0.165 -0.333,0.309,0.309,0,0,0,0,0.281,0.605,0.247,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0796,0,0,0.313 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0.275 -1,0.304,0.304,0,0,0,0,0.14,0.624,0.0695,0,0,0.468 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0.101 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0.342 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0 -0.333,0.174,0.174,0.5,0,0,0,0.281,0.621,0.0938,0,0,0 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.346 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0,0.525 -0.667,0.626,0.626,0.5,0,0,0,0.14,0.686,0.481,0,0,0.0433 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.0433 -0.667,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.0433 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0.26 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0.483,0.467,0.281,0.564,0.0152,0,0.124,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0.0527,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.144 -1,0.297,0.297,0.25,0,0,0,0.14,0.614,0.0577,0,0,0.32 -1,0.431,0.431,0,0,0.483,0.633,0,0.653,0.0963,0,0.243,0.439 -0.667,0.302,0.302,0,0,0,0.0667,0.14,0.624,0.0813,0,0.481,0.214 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0.293,0 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0.39,0.13 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0.248,0.173 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0.443,0.0866 -0.667,0.272,0.272,0.25,0,0,0,0.14,0.624,0.125,0,0.584,0.162 -0.667,0.277,0.277,0.5,0,0,0,0.14,0.645,0.139,0,0.322,0.221 -0.333,0.174,0.174,0,0,0.483,0.633,0.281,0.621,0.0938,0,0.117,0.173 -0.667,0.353,0.353,0,0,0,0.0667,0.14,0.707,0.21,0,0.498,0.0866 -0.667,0.458,0.458,0,0,0,0,0.14,0.717,0.28,0,0.341,0.216 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0.319,0.26 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0.315,0 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0.449,0 -1,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0.449,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0.615,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0.12,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.211 -1,0.239,0.239,0,0,0,0,0.14,0.583,0.0433,0,0,0.257 -1,0.421,0.421,0,0,0,0,0,0.638,0.0786,0,0,0.15 -0,0.05,0.05,0,0,0.103,0,0.421,0.566,0.0159,0,0,0 -0.333,0.176,0.176,0,0,0.379,0.883,0.281,0.595,0.0486,0,0.243,0.173 -0.333,0.172,0.172,0,0,0,0.0667,0.281,0.595,0.0532,0,0.35,0.0433 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.0996,0,0.393,0.0866 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.105,0,0.316,0.0433 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.118,0,0.593,0 -0.667,0.272,0.272,0,0,0,0,0.14,0.624,0.125,0,0.44,0 -0.667,0.277,0.277,0,0,0,0,0.14,0.645,0.139,0,0.395,0.0433 -0.667,0.297,0.297,0,0,0,0,0.14,0.676,0.172,0,0.463,0.0433 -0.667,0.353,0.353,0,0.333,0,0,0.14,0.707,0.21,0.738,0.0546,0.13 -0.667,0.458,0.458,0,0.65,0,0,0.14,0.717,0.28,0.762,0,0.26 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.39,0.551,0,0.0866 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.173 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0 -1,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.174,0.174,0.25,0,0,0,0.281,0.59,0.0368,0,0,0 -1,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0 -1,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0.241 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0.349 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0,0.362 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.087 -0.667,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.364 -0.667,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.537 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.26 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.346 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0,0.37 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.348 -1,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.152 -1,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0511,0.0511,0,0,0,0,0.281,0.564,0.0178,0,0,0 -1,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0224,0,0,0 -1,0.144,0.144,0.5,0,0.483,0.633,0.281,0.574,0.0296,0,0.124,0 -1,0.174,0.174,0,0,0,0.0667,0.281,0.59,0.0368,0,0.408,0.0866 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0.408,0.216 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0.531,0.244 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0.403,0 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0.394,0.0866 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0.414,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0669,0,0,0 -0.333,0.161,0.161,0.5,0,0,0,0.281,0.595,0.0702,0,0,0 -0.667,0.277,0.277,0,0,0.483,0.133,0.14,0.645,0.139,0,0,0.417 -0.667,0.297,0.297,0,0,0,0.1,0.14,0.676,0.172,0.206,0.51,0.236 -0.667,0.353,0.353,0.5,0.833,0,0,0.14,0.707,0.21,0.797,0.161,0 -0.667,0.458,0.458,0.5,0.383,0.483,0.383,0.14,0.717,0.28,0.689,0.0507,0.0433 -0.667,0.575,0.575,0,0,0,0.567,0.14,0.707,0.39,0.151,0.511,0.13 -1,0.914,0.914,0,0,0,0,0,0.747,0.713,0,0.562,0.377 -1,0.829,0.829,0,0,0,0,0,0.684,0.676,0,0.669,0.259 -1,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0.318,0.0866 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.638,0.0845,0,0,0.229 -1,0.431,0.431,0,0,0,0,0,0.653,0.14,0,0,0.1 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.129,0,0,0.212 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.153,0,0,0.157 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.167,0,0,0.169 -0.667,0.274,0.274,0,0,0,0,0.14,0.624,0.179,0,0,0.36 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.346 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.303 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.147,0,0,0 -0.667,0.353,0.353,0.5,0,0,0,0.14,0.707,0.285,0,0,0 -0.667,0.458,0.458,0.25,0,0,0,0.14,0.717,0.335,0,0,0.0433 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.438,0,0,0.13 -0.667,0.626,0.626,0.5,0,0,0,0.14,0.686,0.514,0,0,0.612 -1,0.569,0.569,0.25,0,0,0,0.14,0.645,0.475,0,0,0.318 -1,0.36,0.36,0,0,0,0,0.14,0.603,0.302,0,0,0.0433 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0796,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.144 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0403,0,0,0.107 -1,0.431,0.431,0,0,0,0,0,0.653,0.14,0,0,0.366 -1,0.428,0.428,0,0,0,0,0,0.653,0.185,0,0,0.486 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.153,0,0,0.173 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0927,0,0,0.404 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0986,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.114,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.129,0,0,0.173 -0.667,0.277,0.277,0,0,0,0,0.14,0.645,0.263,0,0,0.26 -0.667,0.297,0.297,0,0,0,0,0.14,0.676,0.276,0,0,0.216 -0.667,0.353,0.353,0,0.583,0,0,0.14,0.707,0.285,0.692,0,0.173 -0.667,0.458,0.458,0,0.633,0,0,0.14,0.717,0.335,0.917,0,0.0866 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.438,0,0,0.173 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.514,0,0,0.0433 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.475,0,0,0 -0.667,0.205,0.205,0,0,0,0,0.281,0.584,0.16,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0152,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.194 -1,0.297,0.297,0.75,0,0,0,0.14,0.614,0.0577,0,0,0.199 -1,0.431,0.431,0,0,0,0,0,0.653,0.0963,0,0,0.167 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0.154 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0.207 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0.363 -0.333,0.162,0.162,0.25,0,0,0,0.281,0.595,0.0604,0,0,0.104 -0.333,0.161,0.161,0,0,0.483,0.133,0.281,0.595,0.0669,0,0,0.216 -0.667,0.272,0.272,0,0,0,0.333,0.14,0.624,0.125,0,0.423,0 -0.667,0.277,0.277,0,0,0,0,0.14,0.645,0.139,0,0.403,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.402 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.233 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.315 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.39,0,0,0 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.0433 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.389 -0.667,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.173 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.144,0.144,0,0,0,0,0.281,0.574,0.0296,0,0,0.177 -1,0.297,0.297,0,0,0,0,0.14,0.614,0.0577,0,0,0.0705 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0.109 -0.667,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0.0433 -0.667,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0.216 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.0996,0,0,0.397 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.109 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.118,0,0,0.216 -0.667,0.272,0.272,0,0,0,0,0.14,0.624,0.125,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.173 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.148,0,0,0.263 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.39,0,0,0.155 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.303 -0.667,0.309,0.309,0,0,0,0,0.281,0.605,0.236,0,0,0.173 -0.667,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.232 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.116 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.0806,0.0806,0,0,0,0,0.281,0.564,0.0224,0,0,0.205 -0.667,0.144,0.144,0,0,0,0,0.281,0.574,0.0296,0,0,0.179 -0.667,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0 -0.667,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0 -0.667,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0.173 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.118,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.0433 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.0866 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.0433 -0.333,0.254,0.254,0.25,0,0,0,0.281,0.641,0.148,0,0,0.216 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.39,0,0,0.13 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.481,0,0,0.26 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.303 -0.667,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.382 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0.158 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.297,0.297,0.25,0,0,0,0.14,0.614,0.0577,0,0,0.225 -0.667,0.304,0.304,0.25,0,0,0,0.14,0.624,0.0695,0,0,0.0995 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0.173 -0.333,0.172,0.172,0,0,0,0,0.281,0.595,0.0532,0,0,0.173 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,1,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0.13 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0 -0.667,0.353,0.353,0,0,0,0,0.14,0.707,0.21,0,0,0.303 -0.667,0.458,0.458,0,0,0,0,0.14,0.717,0.28,0,0,0.173 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.39,0,0,0.0433 -0.667,0.626,0.626,0,0.583,0,0,0.14,0.686,0.481,0.519,0,0.216 -0.667,0.569,0.569,0,0.4,0,0,0.14,0.645,0.456,0,0,0.0433 -1,0.514,0.514,0,0,0,0,0,0.622,0.409,0,0,0.111 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.564,0.0348,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0224,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0.195 -0.333,0.176,0.176,0,0,0,0,0.281,0.595,0.0486,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.44 -0.667,0.202,0.202,0.5,0,0,0,0.281,0.636,0.113,0,0,0.236 -0.667,0.458,0.458,0,0,0,0,0.14,0.717,0.28,0,0,0.0925 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0,0 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0,0,0.173 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.359 -0.667,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0.183 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0.394 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.174,0.174,0,0,0.483,0.233,0.281,0.59,0.0403,0,0.195,0.207 -1,0.304,0.304,0,0,0,0,0.14,0.624,0.0991,0,0.51,0.147 -1,0.302,0.302,0,0,0,0,0.14,0.624,0.129,0,0,0 -1,0.415,0.415,0,0,0,0,0,0.653,0.22,0,0,0.0972 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0927,0,0,0.0433 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0986,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.114,0,0,0 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.129,0,0,0.13 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.14,0,0,0.26 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.147,0,0,0.0866 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.152,0,0,0.0433 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.177,0,0,0.173 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.228,0,0,0.216 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.266,0,0,0.228 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.475,0,0,0.209 -0.667,0.205,0.205,0,0,0,0,0.281,0.584,0.16,0,0,0.18 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.564,0.0265,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.564,0.0173,0,0,0.304 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0161 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.215 -1,0.431,0.431,0,0,0,0,0,0.653,0.14,0,0,0.372 -1,0.428,0.428,0,0,0,0,0,0.653,0.185,0,0,0.372 -1,0.415,0.415,0,0,0,0,0,0.653,0.22,0,0,0.193 -0.667,0.282,0.282,0,0,0,0,0.14,0.624,0.167,0,0,0.0866 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0986,0,0,0.26 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.114,0,0,0.0433 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.129,0,0,0.173 -0.333,0.163,0.163,0.25,0,0,0,0.281,0.605,0.14,0,0,0.13 -0.333,0.174,0.174,0.5,0,0,0,0.281,0.621,0.147,0,0,0.0866 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.152,0,0,0 -0.333,0.254,0.254,0,0,0,0,0.281,0.641,0.177,0,0,0.0866 -0.667,0.575,0.575,0,0,0,0,0.14,0.707,0.438,0,0,0.0866 -0.667,0.626,0.626,0,0,0,0,0.14,0.686,0.514,0,0,0.0433 -0.667,0.309,0.309,0,0,0,0,0.281,0.605,0.247,0,0,0.0866 -0.667,0.205,0.205,0,0,0,0,0.281,0.584,0.16,0,0,0.348 -1,0.117,0.117,0,0,0,0,0.281,0.569,0.0796,0,0,0.0654 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.144,0.144,0.5,0,0,0,0.281,0.574,0.0296,0,0,0 -1,0.421,0.421,0,0,0,0,0,0.638,0.0786,0,0,0.25 -1,0.431,0.431,0,0,0,0,0,0.653,0.0963,0,0,0.272 -0.667,0.302,0.302,0,0,0,0,0.14,0.624,0.0813,0,0,0.328 -0.667,0.293,0.293,0,0,0,0,0.14,0.624,0.0905,0,0,0.401 -0.667,0.282,0.282,0.25,0,0,0,0.14,0.624,0.0996,0,0,0.216 -0.667,0.274,0.274,0.75,0,0.483,0.633,0.14,0.624,0.105,0,0.0767,0 -0.333,0.161,0.161,0,0,0,0.0667,0.281,0.595,0.0669,0,0.495,0.13 -0.333,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0.254,0.26 -0.333,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0.277,0 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.312,0.312,0,0,0,0,0.281,0.636,0.203,0,0,0.513 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0,0,0.0866 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.139 -1,0.205,0.205,0,0,0,0,0.281,0.584,0.147,0,0,0.0587 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0 -1,0.0999,0.0999,0,0,0,0,0.14,0.562,0.0538,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.174,0.174,0,0,0,0,0.281,0.59,0.0368,0,0,0.244 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.293,0.293,0.25,0,0,0,0.14,0.624,0.0905,0,0,0 -0.667,0.282,0.282,0.75,0.333,0,0,0.14,0.624,0.0996,0.674,0,0.103 -0.667,0.274,0.274,0,0.883,0,0,0.14,0.624,0.105,0.127,0,0 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.118,0,0,0.0433 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.173 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.0433 -0.333,0.202,0.202,0,0,0,0,0.281,0.636,0.113,0,0,0.0866 -0.333,0.254,0.254,0,0.333,0,0,0.281,0.641,0.148,0.516,0,0.13 -0.333,0.312,0.312,0,0.65,0,0,0.281,0.636,0.203,0.773,0,0.173 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0.681,0,0.0433 -0.667,0.569,0.569,0,0,0,0,0.14,0.645,0.456,0,0,0.0433 -1,0.514,0.514,0,0,0,0,0,0.622,0.409,0,0,0.389 -1,0.184,0.184,0,0,0,0,0.14,0.572,0.123,0,0,0.108 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0.256 -0.667,0.174,0.174,0.5,0,0,0,0.281,0.59,0.0368,0,0,0.196 -0.333,0.177,0.177,0,0,0,0,0.281,0.595,0.0427,0,0,0 -0.333,0.176,0.176,0,0.333,0,0,0.281,0.595,0.0486,0.637,0,0 -0.333,0.172,0.172,0,0.65,0,0,0.281,0.595,0.0532,0.131,0,0.0433 -0.333,0.166,0.166,0,0,0,0,0.281,0.595,0.0577,0,0,0 -0.333,0.162,0.162,0,0,0,0,0.281,0.595,0.0604,0,0,0.13 -0.667,0.271,0.271,0,0,0,0,0.14,0.624,0.118,0,0,0.26 -0.667,0.161,0.161,0,0,0,0,0.281,0.595,0.0702,0,0,0 -0.667,0.163,0.163,0,0,0,0,0.281,0.605,0.0774,0,0,0.13 -0.333,0.174,0.174,0,0,0,0,0.281,0.621,0.0938,0,0,0.0433 -0.667,0.353,0.353,0,0.583,0,0,0.14,0.707,0.21,0.703,0,0.26 -0.667,0.458,0.458,0.75,0.633,0,0,0.14,0.717,0.28,0.473,0,0.209 -0.667,0.575,0.575,0.25,0,0,0,0.14,0.707,0.39,0,0,0.0433 -0.333,0.338,0.338,0,0,0,0,0.281,0.626,0.248,0,0,0.26 -0.333,0.309,0.309,0,0,0,0,0.281,0.605,0.236,0,0,0.216 -0.667,0.36,0.36,0,0,0,0,0.14,0.603,0.278,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.281,0.569,0.0695,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0.357 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.554 -0.667,0.185,0.185,0.117,0,0,0,0.281,0.594,0.0424,0,0,0.107 -0.667,0.187,0.187,0.7,0,0,0,0.281,0.594,0.0483,0,0,0.393 -0.667,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.216 -0.333,0.177,0.177,0.367,0,0,0,0.281,0.594,0.0574,0,0,0.173 -0.667,0.172,0.172,1,0,0,0,0.281,0.594,0.06,0,0,0 -0.667,0.171,0.171,0.267,0,0,0,0.281,0.594,0.0665,0,0,0.303 -0.667,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0.0433 -0.667,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0 -0.667,0.429,0.429,0.117,0,0,0,0.14,0.674,0.17,0,0,0 -0.667,0.558,0.558,0.7,0,0,0,0.14,0.705,0.208,0,0,0.216 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.278,0,0,0.102 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.387,0,0,0.271 -1,0.754,0.754,0,0,0,0,0,0.744,0.708,0,0,0.496 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0 -0.667,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0.0866 -0.667,0.184,0.184,0,0.333,0,0,0.14,0.571,0.122,0.611,0,0 -1,0.0749,0.0749,0,1,0,0,0.281,0.563,0.0346,0.661,0,0 -1,0.0583,0.0583,0,0.133,0,0,0.281,0.563,0.0223,0.519,0,0.0873 -1,0.05,0.05,0,0,0,0,0.281,0.563,0.0164,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.563,0.0151,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0.367,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.667,0.179,0.179,0.45,0,0,0,0.281,0.589,0.0366,0,0,0 -0.667,0.185,0.185,0.267,0,0,0,0.281,0.594,0.0424,0,0,0 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.0433 -0.667,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0,0 -0.667,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0.13 -0.667,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0.0866 -0.667,0.175,0.175,0.367,0,0,0,0.281,0.594,0.0697,0,0,0.419 -1,0.486,0.486,0.167,0,0,0,0,0.682,0.199,0,0,0.389 -0.667,0.429,0.429,0,0,0,0,0.14,0.674,0.17,0,0,0.13 -0.667,0.558,0.558,0,0,0.345,0,0.14,0.705,0.208,0.256,0,0.0433 -0.667,0.653,0.653,0,0.95,0.138,0.25,0.14,0.716,0.278,0.359,0.311,0.13 -0.333,0.342,0.342,0,0.1,0,0,0.281,0.636,0.202,0,0.538,0.13 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0.0936,0.0628 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0 -1,0.199,0.199,0,0,0,0,0.281,0.584,0.146,0,0,0.0433 -1,0.05,0.05,0,0.117,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.066 -1,0.0515,0.0515,0,0,0,0,0.281,0.563,0.0192,0,0,0.089 -1,0.0823,0.0823,0,0,0,0,0.281,0.563,0.0212,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0277,0,0,0.115 -1,0.308,0.308,0,0,0,0,0.14,0.612,0.0619,0,0,0.0433 -0.667,0.321,0.321,0,0,0,0,0.14,0.623,0.0983,0,0,0 -0.333,0.187,0.187,0,0,0,0,0.281,0.594,0.0732,0,0,0.13 -0.333,0.183,0.183,0,0,0,0,0.281,0.594,0.0849,0,0,0.13 -0.667,0.303,0.303,0,0,0,0,0.14,0.623,0.166,0,0,0.173 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.0979,0,0,0 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.333,0.175,0.175,0.0167,0,0,0,0.281,0.594,0.128,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.139,0,0,0.0866 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.146,0,0,0 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.15,0,0,0.173 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.332,0,0,0.0866 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.435,0,0,0.173 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.51,0,0,0.216 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.245,0,0,0.216 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.3,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0756 -1,0.179,0.179,0.25,0,0,0,0.281,0.589,0.04,0,0,0 -0.667,0.05,0.05,0.567,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.324,0.324,0,0,0.483,0.633,0.14,0.623,0.128,0,0.157,0 -0.667,0.315,0.315,0,0,0,0.133,0.14,0.623,0.152,0,0.184,0.208 -0.667,0.303,0.303,0,0,0,0,0.14,0.623,0.166,0,0,0 -1,0.417,0.417,0,0,0,0,0,0.651,0.257,0,0,0 -0.667,0.171,0.171,0,0,0,0,0.281,0.594,0.113,0,0,0.0866 -0.333,0.175,0.175,0.267,0,0,0,0.281,0.594,0.128,0,0,0.0433 -0.667,0.195,0.195,0.25,0,0,0,0.281,0.605,0.139,0,0,0.0866 -0.667,0.429,0.429,0.0167,0,0.483,0.633,0.14,0.674,0.274,0,0.289,0.13 -0.667,0.558,0.558,0,0,0,0.65,0.14,0.705,0.283,0,0.573,0 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.175,0,0.326,0.0433 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.227,0,0,0.0866 -1,0.519,0.519,0,0,0,0,0.14,0.685,0.51,0,0,0.13 -1,0.397,0.397,0,0,0,0,0.14,0.643,0.471,0,0,0.216 -1,0.199,0.199,0,0,0,0,0.281,0.584,0.159,0,0,0.443 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.615 -1,0.148,0.148,0.367,0,0,0,0.281,0.573,0.0294,0,0,0.166 -1,0.437,0.437,0.45,0,0,0,0,0.636,0.078,0,0,0.181 -0.333,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0 -0.333,0.187,0.187,0,0.45,0,0,0.281,0.594,0.0483,0.661,0,0.0433 -0.333,0.183,0.183,0,0.867,0,0,0.281,0.594,0.0528,0.689,0,0.303 -0.333,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0.147,0,0.346 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0.13 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0.216 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0 -0.333,0.304,0.304,0,0.45,0,0,0.281,0.636,0.112,0.578,0,0.196 -0.333,0.352,0.352,0,1,0,0,0.281,0.641,0.147,0.144,0,0.31 -0.333,0.342,0.342,0,0.133,0,0,0.281,0.636,0.202,0,0,0.638 -0.667,0.519,0.519,0,0.2,0,0,0.14,0.685,0.477,0.578,0,0.0433 -0.667,0.397,0.397,0,0.85,0,0,0.14,0.643,0.452,0.164,0,0.0433 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.563,0.0177,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0161 -1,0.324,0.324,0,0,0.483,0.517,0.14,0.623,0.0807,0,0.0494,0.202 -0.333,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0.389,0.0433 -0.333,0.177,0.177,0.817,0,0,0,0.281,0.594,0.0574,0,0,0 -0.333,0.172,0.172,0.617,0,0,0,0.281,0.594,0.06,0,0,0.0433 -0.333,0.171,0.171,1,0,0,0,0.281,0.594,0.0665,0,0,0.0866 -0.333,0.175,0.175,0.0167,0,0,0,0.281,0.594,0.0697,0,0,0.216 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0433 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.303 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0.483,0.5,0.421,0.566,0.0159,0,0.0195,0.0433 -0.667,0.397,0.397,0.267,0,0,1,0.14,0.643,0.452,0,0.68,0.0159 -1,0.498,0.498,0,0,0,0.05,0,0.62,0.405,0,0.371,0.304 -1,0.184,0.184,0,0,0,0,0.14,0.571,0.122,0,0,0.104 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.0515,0.0515,0.367,0,0,0,0.281,0.563,0.0177,0,0,0 -1,0.115,0.115,1,0.45,0,0,0.14,0.561,0.0287,0.508,0,0 -1,0.247,0.247,0.55,0.867,0,0,0.14,0.581,0.043,0.32,0,0.261 -1,0.308,0.308,0,0,0,0,0.14,0.612,0.0573,0,0,0.415 -1,0.321,0.321,0,0,0,0,0.14,0.623,0.069,0,0,0.217 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0.465 -0.333,0.05,0.05,0,0,0.345,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0.138,1,0.421,0.566,0.0159,0,0.464,0.0866 -0.333,0.172,0.172,0,0,0,0.283,0.281,0.594,0.06,0,0.378,0.13 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0.415,0.476 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.304,0.304,0.817,0,0,0,0.281,0.636,0.112,0,0,0.4 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.387,0,0,0 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.477,0,0,0 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.216 -0.667,0.199,0.199,0,0,0,0,0.281,0.584,0.146,0,0,0.0753 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.016 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0.329 -1,0.179,0.179,0.867,0,0,0,0.281,0.589,0.0366,0,0,0.258 -1,0.321,0.321,0.217,0,0,0,0.14,0.623,0.069,0,0,0.664 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.0807,0,0,0.238 -0.333,0.183,0.183,0.617,0,0,0,0.281,0.594,0.0528,0,0,0.344 -0.333,0.177,0.177,0.2,0,0,0,0.281,0.594,0.0574,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0.0593 -0.667,0.292,0.292,0,0,0,0,0.14,0.623,0.117,0,0,0.358 -0.667,0.3,0.3,0,0,0,0,0.14,0.623,0.124,0,0,0.365 -0.667,0.341,0.341,0,0,0,0,0.14,0.643,0.138,0,0,0.194 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0.0433 -0.667,0.558,0.558,0,0,0,0,0.14,0.705,0.208,0,0,0.0866 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.278,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.477,0,0,0 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0.133,0,0.303 -0.667,0.348,0.348,0,0.7,0,0,0.14,0.602,0.276,0.761,0,0.118 -0.667,0.184,0.184,0,0.35,0,0,0.14,0.571,0.122,0,0,0.0628 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.563,0.0346,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0223,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.563,0.0164,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.0794 -1,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0.139 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.0807,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.31 -0.333,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0.13 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0.0433 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0433 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0.0866 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.13 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0594 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.477,0,0,0.897 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.0433 -0.667,0.199,0.199,0,0,0,0,0.281,0.584,0.146,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.568,0.0691,0,0,0.148 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0588 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.182 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.04,0,0,0.27 -1,0.321,0.321,0,0,0,0,0.14,0.623,0.0983,0,0,0.162 -1,0.324,0.324,0,0,0,0,0.14,0.623,0.128,0,0,0.518 -1,0.448,0.448,0,0,0,0,0,0.651,0.218,0,0,0.161 -1,0.43,0.43,0,0,0,0,0,0.651,0.24,0,0,0.339 -0.667,0.294,0.294,0,0,0,0,0.14,0.623,0.178,0,0,0 -0.333,0.171,0.171,0,0,0.483,0.133,0.281,0.594,0.113,0,0,0.13 -0.333,0.175,0.175,0,0,0,0.9,0.281,0.594,0.128,0,0.52,0.0433 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.139,0,0.225,0.26 -0.667,0.239,0.239,0,0,0,0,0.281,0.62,0.146,0,0.506,0.216 -0.667,0.304,0.304,0,0,0,0,0.281,0.636,0.15,0,0.501,0.0433 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.332,0,0.785,0 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.435,0,0.324,0.0433 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.51,0,0.73,0.0866 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.245,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.0749,0.0749,0,0,0,0,0.281,0.563,0.0407,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0264,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.567,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.187,0.187,0.75,0,0,0,0.281,0.594,0.0732,0,0,0 -0.667,0.315,0.315,0.617,0,0,0,0.14,0.623,0.152,0,0,0 -0.667,0.303,0.303,0,0,0,0,0.14,0.623,0.166,0,0,0.0433 -0.667,0.294,0.294,0,0,0,0,0.14,0.623,0.178,0,0,0 -0.667,0.292,0.292,0,0,0,0,0.14,0.623,0.209,0,0,0.13 -0.667,0.3,0.3,0,0.583,0,0,0.14,0.623,0.237,0.676,0,0.0866 -0.667,0.341,0.341,0,0.733,0,0,0.14,0.643,0.261,0,0,0.0866 -0.667,0.429,0.429,0.75,0,0,0,0.14,0.674,0.274,0,0,0.0866 -0.333,0.304,0.304,1,0,0,0,0.281,0.636,0.15,0,0,0.13 -0.333,0.352,0.352,0.167,0,0,0,0.281,0.641,0.175,0,0,0.26 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.435,0,0,0.0433 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.51,0,0,0.0433 -1,0.571,0.571,0,0,0,0,0,0.682,0.698,0,0,0.0433 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.3,0,0,0.13 -1,0.117,0.117,0,0,0,0,0.281,0.568,0.079,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.817,0,0,0,0.421,0.566,0.0159,0,0,0.465 -0.667,0.308,0.308,0,0,0,0,0.14,0.612,0.0573,0,0,0.212 -0.667,0.321,0.321,0,0,0,0,0.14,0.623,0.069,0,0,0.471 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.0807,0,0,0.0975 -0.333,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0.303 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0 -0.333,0.239,0.239,0.267,0,0,0,0.281,0.62,0.0931,0,0,0.0433 -0.667,0.558,0.558,0,0.45,0,0,0.14,0.705,0.208,0.654,0,0.346 -0.667,0.653,0.653,0.367,0.867,0,0,0.14,0.716,0.278,0.317,0,0.0433 -0.333,0.342,0.342,0.717,0,0,0,0.281,0.636,0.202,0,0,0 -0.333,0.285,0.285,0.617,0,0,0,0.281,0.625,0.246,0,0,0.599 -1,0.571,0.571,0.467,0,0,0,0,0.682,0.671,0,0,0.235 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0.337 -1,0.184,0.184,0,0,0,0,0.14,0.571,0.122,0,0,0.505 -1,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0534,0,0,0.075 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0223,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.563,0.0164,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.563,0.0177,0,0,0 -1,0.0823,0.0823,0,0,0,0,0.281,0.563,0.0223,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0 -1,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0.216 -0.667,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.14 -0.667,0.177,0.177,0,0,0.483,0.75,0.281,0.594,0.0574,0,0.168,0 -0.667,0.294,0.294,0,0,0,0.0167,0.14,0.623,0.104,0,0.165,0.216 -0.667,0.292,0.292,0,0,0,0,0.14,0.623,0.117,0,0.484,0.288 -0.667,0.3,0.3,0,0,0,0,0.14,0.623,0.124,0,0,0.262 -0.667,0.341,0.341,0,0,0,0,0.14,0.643,0.138,0,0,0.705 -0.667,0.429,0.429,0.617,0,0,0,0.14,0.674,0.17,0,0,0.0921 -0.667,0.558,0.558,1,0,0,0,0.14,0.705,0.208,0,0,0.216 -0.667,0.653,0.653,0.0167,0,0,0,0.14,0.716,0.278,0,0,0.303 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.202,0,0,0 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.13 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0.357 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0.105 -1,0.308,0.308,0.533,0,0,0,0.14,0.612,0.0573,0,0,0.263 -1,0.456,0.456,0,0,0,0,0,0.651,0.0955,0,0,0.482 -0.333,0.187,0.187,0.617,0,0,0,0.281,0.594,0.0483,0,0,0 -0.333,0.183,0.183,1,0,0,0,0.281,0.594,0.0528,0,0,0.0433 -0.333,0.177,0.177,1,0,0,0,0.281,0.594,0.0574,0,0,0.173 -0.333,0.172,0.172,1,0,0,0,0.281,0.594,0.06,0,0,0.303 -0.333,0.171,0.171,1,0,0,0,0.281,0.594,0.0665,0,0,0.0433 -0.333,0.175,0.175,1,0,0,0,0.281,0.594,0.0697,0,0,0.0433 -0.333,0.195,0.195,1,0,0,0,0.281,0.605,0.0769,0,0,0.346 -0,0.05,0.05,1,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.304,0.304,1,0,0,0,0.281,0.636,0.112,0,0,0.173 -0,0.05,0.05,1,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.635,0.635,1,0,0,0,0.14,0.705,0.387,0,0,0 -0.667,0.519,0.519,0.35,0,0,0,0.14,0.685,0.477,0,0,0 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0.0927 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0.345,0,0.421,0.566,0.0159,0.319,0,0 -1,0.308,0.308,0,0.95,0.138,0.517,0.14,0.612,0.0573,0.387,0.345,0 -0.667,0.185,0.185,0,0.367,0,0,0.281,0.594,0.0424,0,0.588,0 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0.472,0 -0.667,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0.371,0.216 -0.667,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0.356,0.13 -0.667,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0.624,0.13 -0.667,0.292,0.292,0.117,0,0,0,0.14,0.623,0.117,0,0,0.0433 -0.667,0.175,0.175,0.15,0,0,0,0.281,0.594,0.0697,0,0,0.0433 -0.667,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0433 -0.667,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0.0433 -0.667,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.0433 -0.667,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0.26 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.519 -0.667,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.0596 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.174 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.571,0.122,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.563,0.0346,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0223,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.185 -0.667,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0.138 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.0433 -0.333,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0,0.0433 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0 -0.333,0.175,0.175,0.267,0,0,0,0.281,0.594,0.0697,0,0,0.0433 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0433 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0.0866 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.216 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0.13 -0.333,0.342,0.342,0.367,0,0,0,0.281,0.636,0.202,0,0,0.173 -0.333,0.285,0.285,0.167,0,0,0,0.281,0.625,0.246,0,0,0.0433 -0.333,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.0433 -0.333,0.199,0.199,0,0,0,0,0.281,0.584,0.146,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.281,0.568,0.0691,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0634 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0753 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.0979,0,0,0.0861 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.333,0.175,0.175,0.5,0,0,0,0.281,0.594,0.128,0,0,0 -0.333,0.195,0.195,0.317,0,0,0,0.281,0.605,0.139,0,0,0.173 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.146,0,0,0.346 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.15,0,0,0.0866 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.332,0,0,0.26 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.227,0,0,0.39 -0.667,0.519,0.519,0.75,0,0,0,0.14,0.685,0.51,0,0,0.522 -0.667,0.397,0.397,0.0667,0,0,0,0.14,0.643,0.471,0,0,0.902 -1,0.498,0.498,0,0,0,0,0,0.62,0.441,0,0,0.25 -1,0.117,0.117,0,0,0,0,0.281,0.568,0.079,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.293 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.04,0,0,0.156 -1,0.321,0.321,0,0,0,0,0.14,0.623,0.0983,0,0,0.134 -1,0.324,0.324,0,0,0,0,0.14,0.623,0.128,0,0,0.547 -1,0.448,0.448,0,0,0,0,0,0.651,0.218,0,0,0.142 -0.667,0.303,0.303,0,0,0,0,0.14,0.623,0.166,0,0,0.137 -0.667,0.294,0.294,0,0,0,0,0.14,0.623,0.178,0,0,0.0614 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.113,0,0,0.346 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.128,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.139,0,0,0.216 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.146,0,0,0.0866 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.15,0,0,0.0866 -0.333,0.352,0.352,0.817,0,0,0,0.281,0.641,0.175,0,0,0.216 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.435,0,0,0.0866 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.51,0,0,0.0866 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0164 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.484 -0.667,0.321,0.321,0,0,0,0,0.14,0.623,0.069,0,0,0.152 -0.333,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0 -0.667,0.341,0.341,0,0,0,0,0.14,0.643,0.138,0,0,0 -0.333,0.239,0.239,0.267,0,0,0,0.281,0.62,0.0931,0,0,0 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.13 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0.0866 -0.333,0.342,0.342,0.267,0,0,0,0.281,0.636,0.202,0,0,0.173 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.477,0,0,0.0433 -1,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.367,0,0,0,0.421,0.566,0.0159,0,0,0.14 -1,0.179,0.179,0.533,0,0,0,0.281,0.589,0.0366,0,0,0.0569 -0.667,0.321,0.321,0.45,0,0,0,0.14,0.623,0.069,0,0,0.231 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.0807,0,0,0 -0.667,0.315,0.315,0,0,0,0,0.14,0.623,0.0898,0,0,0.134 -0.667,0.303,0.303,0.367,0,0,0,0.14,0.623,0.0989,0,0,0.228 -0.333,0.172,0.172,0.717,0,0,0,0.281,0.594,0.06,0,0,0.295 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0.216 -0.333,0.175,0.175,0.617,0,0,0,0.281,0.594,0.0697,0,0,0.173 -0.333,0.195,0.195,0.2,0,0,0,0.281,0.605,0.0769,0,0,0.303 -0.667,0.429,0.429,0,0,0,0,0.14,0.674,0.17,0,0,0.26 -0.667,0.558,0.558,0,0,0,0,0.14,0.705,0.208,0,0,0 -0.333,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0.0994,0,0 -0.667,0.635,0.635,0,0.7,0,0,0.14,0.705,0.387,0.545,0,0.26 -0.667,0.519,0.519,0,0.35,0,0,0.14,0.685,0.477,0,0,0.0586 -1,0.571,0.571,0,0,0,0,0,0.682,0.671,0,0,0.0433 -1,0.498,0.498,0,0,0,0,0,0.62,0.405,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0515,0.0515,0,0,0,0,0.281,0.563,0.0177,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0.121 -1,0.437,0.437,0,0,0,0,0,0.636,0.078,0,0,0.113 -1,0.456,0.456,0,0,0,0,0,0.651,0.0955,0,0,0.265 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.0807,0,0,0.204 -0.333,0.183,0.183,0.367,0,0,0,0.281,0.594,0.0528,0,0,0.173 -0.333,0.177,0.177,0.167,0,0,0,0.281,0.594,0.0574,0,0,0.13 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0.13 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0433 -0.667,0.429,0.429,0,0,0,0,0.14,0.674,0.17,0,0,0 -0.667,0.558,0.558,0,0,0,0,0.14,0.705,0.208,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.389 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.202,0,0,0.173 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.137 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0 -0.667,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.568,0.0691,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.016 -1,0.053,0.053,0.367,0,0,0,0.14,0.561,0.0196,0,0,0.157 -1,0.115,0.115,0.167,0,0,0,0.14,0.561,0.0287,0,0,0.0748 -1,0.247,0.247,0,0,0,0,0.14,0.581,0.043,0,0,0.726 -0.667,0.308,0.308,0,0,0,0,0.14,0.612,0.0573,0,0,0.0727 -0.333,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0.221 -0.333,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0.173 -0.333,0.183,0.183,0.367,0,0,0,0.281,0.594,0.0528,0,0,0.0433 -0.333,0.177,0.177,0.45,0,0,0,0.281,0.594,0.0574,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0.0433 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0.216 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.563 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.0433 -1,0.571,0.571,0,0,0,0,0,0.682,0.671,0,0,0 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.571,0.122,0,0,0.0884 -1,0.0999,0.0999,0,0,0,0,0.14,0.561,0.0534,0,0,0.0433 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0223,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.563,0.0151,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0154 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0.389 -0.667,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.382 -1,0.456,0.456,0,0,0,0,0,0.651,0.0955,0,0,0.148 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0.123 -0.667,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.612 -0.333,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0,0.221 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0.459 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0866 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.202,0,0,0.173 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.303 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.128 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0277,0,0,0.111 -1,0.308,0.308,0,0,0,0,0.14,0.612,0.0619,0,0,0.177 -1,0.456,0.456,0,0,0,0,0,0.651,0.138,0,0,0.204 -1,0.461,0.461,0.267,0,0,0,0,0.651,0.183,0,0,0.137 -0.667,0.315,0.315,0,0,0,0,0.14,0.623,0.152,0,0,0.173 -0.667,0.303,0.303,0,0,0,0,0.14,0.623,0.166,0,0,0 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.0979,0,0,0.13 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.113,0,0,0.13 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.128,0,0,0.179 -0.667,0.341,0.341,0,0,0.103,0,0.14,0.643,0.261,0,0,0.0433 -1,0.618,0.618,0,0,0.379,0.767,0,0.729,0.402,0,0.243,0.0866 -0.667,0.558,0.558,0,0,0,0,0.14,0.705,0.283,0,0.739,0.0866 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.332,0,0.199,0.13 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.435,0,0,0.0433 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.51,0,0,0.231 -1,0.397,0.397,0,0,0,0,0.14,0.643,0.471,0,0,0.398 -1,0.199,0.199,0,0,0,0,0.281,0.584,0.159,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.568,0.079,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.563,0.0407,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.119 -1,0.247,0.247,0,0,0,0,0.14,0.581,0.0372,0,0,0.258 -0.667,0.179,0.179,0,0,0,0,0.281,0.589,0.04,0,0,0.25 -0.667,0.321,0.321,0,0,0,0,0.14,0.623,0.0983,0,0,0.202 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.128,0,0,0.353 -0.667,0.315,0.315,0,0,0,0,0.14,0.623,0.152,0,0,0.13 -0.667,0.303,0.303,0,0,0,0,0.14,0.623,0.166,0,0,0.0866 -0.667,0.294,0.294,0,0,0,0,0.14,0.623,0.178,0,0,0.109 -0.667,0.292,0.292,0,0,0,0,0.14,0.623,0.209,0,0,0.169 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.128,0,0,0.216 -0.333,0.195,0.195,0,0,0.483,0.133,0.281,0.605,0.139,0,0,0.13 -0.333,0.239,0.239,0,0,0,0.633,0.281,0.62,0.146,0,0.177,0.13 -0.333,0.304,0.304,0.5,0,0,0,0.281,0.636,0.15,0,0.341,0.26 -0.333,0.352,0.352,0.583,0,0,0,0.281,0.641,0.175,0,0.421,0.128 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.435,0,0.631,0 -0.667,0.285,0.285,0,0,0,0,0.281,0.625,0.264,0,0.0975,0.0866 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.245,0,0,0.308 -0.667,0.199,0.199,0,0,0,0,0.281,0.584,0.159,0,0,0.398 -1,0.117,0.117,0,0,0,0,0.281,0.568,0.079,0,0,0.191 -1,0.0749,0.0749,0,0,0,0,0.281,0.563,0.0346,0,0,0.168 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0223,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.281,0.563,0.0164,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.367,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0.717,0,0,0,0.281,0.573,0.0294,0,0,0 -1,0.179,0.179,0,0,0,0,0.281,0.589,0.0366,0,0,0.15 -0.667,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0.216 -0.667,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.202,0,0,0.0433 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.303 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0 -0.667,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.568,0.0691,0,0,0.115 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.367,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0823,0.0823,0.167,0,0,0,0.281,0.563,0.0223,0,0,0.0171 -1,0.247,0.247,0,0,0,0,0.14,0.581,0.043,0,0,0.59 -1,0.308,0.308,0,0,0,0,0.14,0.612,0.0573,0,0,0.142 -0.667,0.321,0.321,0,0,0,0,0.14,0.623,0.069,0,0,0.648 -0.667,0.324,0.324,0,0,0,0,0.14,0.623,0.0807,0,0,0.223 -0.333,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.0866 -0.333,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0,0.101 -0.667,0.294,0.294,0,0,0,0,0.14,0.623,0.104,0,0,0.0433 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0.0433 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.0866 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0.26 -0.333,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.0866 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.278,0,0,0.173 -0.333,0.342,0.342,0,0,0,0,0.281,0.636,0.202,0,0,0 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0 -0.333,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.232 -0.333,0.199,0.199,0,0,0,0,0.281,0.584,0.146,0,0,0.252 -0.667,0.117,0.117,0,0,0,0,0.281,0.568,0.0691,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0168 -1,0.308,0.308,0,0,0,0,0.14,0.612,0.0573,0,0,0.354 -0.667,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0 -0.667,0.187,0.187,0,0,0,0,0.281,0.594,0.0483,0,0,0 -0.667,0.183,0.183,0.367,0,0,0,0.281,0.594,0.0528,0,0,0 -0.667,0.177,0.177,0.167,0,0,0,0.281,0.594,0.0574,0,0,0 -0.667,0.294,0.294,0,0,0,0,0.14,0.623,0.104,0,0,0.216 -0.667,0.292,0.292,0,0,0,0,0.14,0.623,0.117,0,0,0.0433 -0.333,0.175,0.175,0,0,0,0,0.281,0.594,0.0697,0,0,0.173 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.26 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0 -0.667,0.304,0.304,0,0,0,0,0.281,0.636,0.112,0,0,0.303 -0.667,0.352,0.352,0,0,0,0,0.281,0.641,0.147,0,0,0.0866 -0.667,0.342,0.342,0,0,0,0,0.281,0.636,0.202,0,0,0.13 -0.667,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0.0866 -0.667,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.0157 -1,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0.314 -1,0.184,0.184,0,0,0,0,0.14,0.571,0.122,0,0,0.269 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.148,0.148,0.367,0,0.483,0.25,0.281,0.573,0.0294,0,0,0.0915 -0.667,0.308,0.308,1,0.45,0,0.783,0.14,0.612,0.0573,0.624,0.427,0 -0.667,0.321,0.321,1,0.6,0,0,0.14,0.623,0.069,0.118,0.268,0 -0.667,0.324,0.324,0.1,0,0.483,0.25,0.14,0.623,0.0807,0,0.181,0.0433 -0.667,0.315,0.315,0,0,0,0.517,0.14,0.623,0.0898,0,0.492,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0 -0.333,0.239,0.239,0,0,0,0,0.281,0.62,0.0931,0,0,0 -0.667,0.558,0.558,0,0,0,0,0.14,0.705,0.208,0,0,0 -0.667,0.653,0.653,0,0,0,0,0.14,0.716,0.278,0,0,0.0866 -0.667,0.635,0.635,0,0,0,0,0.14,0.705,0.387,0,0,0.0866 -0.667,0.519,0.519,0,0,0,0,0.14,0.685,0.477,0,0,0.26 -0.667,0.397,0.397,0,0,0,0,0.14,0.643,0.452,0,0,0.0433 -0.667,0.348,0.348,0,0,0,0,0.14,0.602,0.276,0,0,0.13 -0.667,0.117,0.117,0,0,0,0,0.281,0.568,0.0691,0,0,0.0433 -0.667,0.0749,0.0749,0,0,0,0,0.281,0.563,0.0346,0,0,0.0152 -1,0.0583,0.0583,0,0,0,0,0.281,0.563,0.0223,0,0,0.156 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.115 -1,0.148,0.148,0,0,0,0,0.281,0.573,0.0294,0,0,0.163 -1,0.308,0.308,0.533,0,0,0,0.14,0.612,0.0573,0,0,0.0927 -0.667,0.185,0.185,0,0,0,0,0.281,0.594,0.0424,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.102 -0.333,0.183,0.183,0,0,0,0,0.281,0.594,0.0528,0,0,0.511 -0.333,0.177,0.177,0,0,0,0,0.281,0.594,0.0574,0,0,0.0866 -0.333,0.172,0.172,0,0,0,0,0.281,0.594,0.06,0,0,0 -0.333,0.171,0.171,0,0,0,0,0.281,0.594,0.0665,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.236 -0.667,0.195,0.195,0,0,0,0,0.281,0.605,0.0769,0,0,0.173 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.285,0.285,0,0,0,0,0.281,0.625,0.246,0,0,0 -0.333,0.224,0.224,0,0,0,0,0.281,0.605,0.234,0,0,0.0152 -0.667,0.348,0.348,0,0.45,0,0,0.14,0.602,0.276,0.54,0,0.0911 -0.667,0.184,0.184,0,0.883,0,0,0.14,0.571,0.122,0.424,0,0.0433 -0.667,0.0749,0.0749,0,0.517,0,0,0.281,0.612,0.0499,0.145,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.612,0.0224,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0181,0,0,0.173 -1,0.151,0.151,0.583,0,0,0,0.281,0.625,0.0327,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.049,0,0,0 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.128,0,0,0 -1,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0,0,0.216 -1,0.472,0.472,0,0,0,0,0,0.824,0.289,0,0,0.27 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.173 -0,0.05,0.05,0.267,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.146,0,0,0.216 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.165,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.18,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.189,0,0,0.0866 -0.667,0.602,0.602,0,0.0833,0,0,0.14,0.842,0.372,0.554,0,0 -0.667,0.69,0.69,0,1,0,0,0.14,0.855,0.437,0.525,0,0.0866 -0.667,0.644,0.644,0,0.283,0,0,0.14,0.842,0.573,0.67,0,0.216 -0.667,0.509,0.509,0.75,0,0,0,0.14,0.816,0.673,0.541,0,0 -0.667,0.389,0.389,0.0833,0,0,0,0.14,0.764,0.621,0,0,0.239 -0.667,0.345,0.345,0,0,0,0,0.14,0.711,0.394,0,0,0.26 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.625,0.0327,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.049,0,0,0 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.128,0,0,0.14 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0,0,0.0433 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.108,0,0,0.173 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.118,0,0,0.0866 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.125,0,0,0.216 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.146,0,0,0.216 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.165,0,0,0.0866 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.18,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0.333,0.37,0.37,0.05,0,0,0,0.281,0.71,0.228,0,0,0.216 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.296,0,0,0 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.673,0,0,0 -1,0.389,0.389,0,0,0,0,0.14,0.764,0.621,0.14,0,0.346 -1,0.345,0.345,0,0.833,0,0,0.14,0.711,0.394,0.788,0,0.13 -1,0.184,0.184,0,0.533,0,0,0.14,0.672,0.183,0,0,0.202 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.101 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0 -1,0.183,0.183,0.25,0,0.483,0.633,0.281,0.645,0.0449,0,0.229,0 -1,0.333,0.333,0.3,0,0,1,0.14,0.738,0.0895,0,0.207,0 -0.667,0.195,0.195,0,0,0,0.0167,0.281,0.652,0.0604,0,0,0.0433 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.0866 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.606 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.183,0.183,0.267,0,0,0,0.281,0.652,0.0888,0,0,0.0433 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.181,0,0,0 -0.667,0.461,0.461,0,0,0,0,0.14,0.803,0.224,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.303 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0.173 -0.333,0.347,0.347,0.5,0,0,0,0.281,0.704,0.263,0,0,0.317 -0.667,0.509,0.509,0.617,0,0,0,0.14,0.816,0.629,0,0,0 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.216 -1,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0.542 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.0908 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0873 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0.145 -1,0.05,0.05,0,0,0,0,0.281,0.612,0.0183,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.0449,0,0,0.221 -1,0.474,0.474,0.75,0,0,0,0,0.824,0.126,0,0,0.152 -1,0.485,0.485,0.0833,0,0,0,0,0.824,0.149,0,0,0.123 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.117,0,0,0.241 -0.667,0.319,0.319,0,0,0,0,0.14,0.738,0.129,0,0,0.213 -1,0.44,0.44,0,0,0,0,0,0.824,0.196,0,0,0.521 -1,0.436,0.436,0,0,0,0,0,0.824,0.222,0,0,0.507 -0.667,0.316,0.316,0,0,0.483,0.633,0.14,0.738,0.162,0,0.196,0.264 -0.667,0.362,0.362,0,0,0,0.75,0.14,0.764,0.181,0,0.44,0.0866 -0.667,0.461,0.461,0,0,0,0,0.14,0.803,0.224,0,0.498,0.0433 -0.667,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.346 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.279,0.279,0,0,0,0,0.281,0.691,0.322,0,0,0.557 -1,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0 -1,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0.15 -1,0.117,0.117,0,0,0,0,0.14,0.659,0.0362,0,0,0.172 -1,0.253,0.253,0,0,0,0,0.14,0.685,0.0551,0,0,0.12 -0.667,0.316,0.316,0.55,0,0,0,0.14,0.724,0.074,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.0724,0,0,0 -0.333,0.18,0.18,0,0,0.483,0.383,0.281,0.652,0.0759,0,0.0637,0 -0.333,0.179,0.179,0,0,0,0.433,0.281,0.652,0.0845,0,0.0858,0.26 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.206,0.206,0.0167,0,0,0,0.281,0.665,0.0982,0,0,0.0433 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.0866 -0.667,0.69,0.69,0,0,0,0,0.14,0.855,0.366,0,0,0.0866 -0.667,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0,0.389 -0.667,0.279,0.279,0,0,0,0,0.281,0.691,0.322,0,0,0.173 -0.667,0.22,0.22,0,0,0,0,0.281,0.665,0.306,0,0,0.0433 -1,0.493,0.493,0,0,0,0,0,0.784,0.536,0,0,0.128 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.026,0,0,0.146 -0.667,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0.366 -1,0.316,0.316,0,0,0,0,0.14,0.724,0.074,0,0,0.521 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.364 -1,0.485,0.485,0,0,0,0,0,0.824,0.149,0,0,0.149 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.117,0,0,0 -0.667,0.319,0.319,0,0,0,0,0.14,0.738,0.129,0,0,0.0433 -0.667,0.31,0.31,0,0,0,0,0.14,0.738,0.136,0,0,0.0433 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0,0 -0.333,0.279,0.279,0,0,0,0,0.281,0.691,0.322,0,0,0.13 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.0433 -1,0.198,0.198,0,0,0,0,0.281,0.639,0.189,0,0,0.0866 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0836,0.0836,0.25,0,0,0,0.281,0.612,0.026,0,0,0.305 -1,0.151,0.151,1,0,0,0,0.281,0.625,0.0355,0,0,0 -1,0.316,0.316,0.717,0,0,0,0.14,0.724,0.074,0,0,0.156 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0527,0,0,0.0433 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.105,0,0,0.512 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.269 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0.13 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.563 -0,0.05,0.05,0.833,0,0,0,0.421,0.566,0.0159,0,0,0.433 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0 -0.667,0.644,0.644,0,0,0,0,0.14,0.842,0.51,0,0,0.0433 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0,0.17 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0 -0.667,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0.127 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.625,0.0327,0,0,0 -0.667,0.316,0.316,0,0,0.483,0.55,0.14,0.724,0.0799,0,0.117,0 -0.667,0.333,0.333,0,0,0,0,0.14,0.738,0.128,0,0.625,0 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0,0.367,0.0642 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.198,0,0.468,0.206 -0.667,0.319,0.319,0,0,0,0,0.14,0.738,0.217,0,0.328,0.553 -1,0.44,0.44,0,0,0,0,0,0.824,0.34,0,0.304,0.29 -0.667,0.308,0.308,0,0,0,0,0.14,0.738,0.274,0,0.611,0.0168 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.165,0,0.81,0 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.343,0,0.228,0 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.189,0,0.358,0.0866 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.195,0,0,0.0866 -0.333,0.37,0.37,0.55,0,0,0,0.281,0.71,0.228,0,0,0.13 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.296,0,0,0.606 -0.333,0.279,0.279,0,0,0,0,0.281,0.691,0.345,0,0,0 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.621,0,0,0.476 -0.667,0.345,0.345,0,0,0,0,0.14,0.711,0.394,0,0,0.272 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.128,0,0,0 -1,0.485,0.485,0,0,0,0,0,0.824,0.242,0,0,0.298 -0.667,0.331,0.331,0.267,0,0,0,0.14,0.738,0.198,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.118,0,0,0.0866 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.125,0,0,0.0433 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.146,0,0,0.216 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.165,0,0,0.189 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.18,0,0,0.146 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.189,0,0,0.265 -0.667,0.602,0.602,0,0,0,0,0.14,0.842,0.372,0,0,0.241 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.228,0,0,0.216 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.296,0,0,0.13 -0.333,0.279,0.279,0,0,0,0,0.281,0.691,0.345,0,0,0.173 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.621,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.784,0.582,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.105 -0.667,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.151,0.151,0.867,0,0,0,0.281,0.625,0.0355,0,0,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.724,0.074,0,0,0 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0527,0,0,0 -0.333,0.195,0.195,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.0866 -0.333,0.185,0.185,0.5,0,0,0,0.281,0.652,0.0724,0,0,0.0866 -0.333,0.18,0.18,0.05,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0.563 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.162,0,0,0.216 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.181,0,0,0.0433 -0.667,0.461,0.461,0,0,0,0,0.14,0.803,0.224,0.149,0,0 -0.333,0.326,0.326,0,0.833,0,0,0.281,0.704,0.145,0.646,0,0.173 -0.333,0.37,0.37,0,1,0,0,0.281,0.71,0.191,0.317,0,0.13 -0.333,0.347,0.347,0,0.0667,0,0,0.281,0.704,0.263,0,0,0 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0,0.0904 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.0433 -0.667,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0.0866 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.281,0.612,0.0166,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.026,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0.451 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.206 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.26 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.0982,0,0,0 -0.333,0.256,0.256,0,0.0833,0,0,0.281,0.684,0.12,0.424,0,0.0433 -0.667,0.602,0.602,0.55,1,0.103,0,0.14,0.842,0.273,0.243,0,0 -0.333,0.37,0.37,0,0.283,0.379,0.817,0.281,0.71,0.191,0.709,0.205,0.0433 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0.288,0.216 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0.514,0.304 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0.378,0 -1,0.493,0.493,0,0,0,0,0,0.784,0.536,0,0.717,0.303 -1,0.252,0.252,0,0,0,0,0,0.725,0.232,0,0.209,0.256 -1,0.0999,0.0999,0,0,0,0,0.14,0.659,0.0689,0,0.316,0.22 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0.137,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.151,0.151,0.75,0,0,0,0.281,0.625,0.0355,0,0,0.148 -1,0.316,0.316,0.0833,0,0,0,0.14,0.724,0.074,0,0,0.0895 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.19 -1,0.485,0.485,0,0,0,0,0,0.824,0.149,0,0,0.258 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.222 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.0724,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0.419 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.162,0,0,0.706 -0.333,0.206,0.206,0.267,0,0,0,0.281,0.665,0.0982,0,0,0.0899 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.303 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0.26 -0.333,0.347,0.347,1,0,0,0,0.281,0.704,0.263,0,0,0.216 -0.667,0.509,0.509,0.967,0,0,0,0.14,0.816,0.629,0,0,0.173 -0.667,0.389,0.389,0,0.583,0,0,0.14,0.764,0.596,0.792,0,0.349 -1,0.493,0.493,0,1,0,0,0,0.784,0.536,0,0,0.19 -1,0.117,0.117,0,0.317,0,0,0.281,0.619,0.0879,0,0,0.0433 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0.152 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.026,0,0,0.139 -1,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0.11 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.0449,0,0,0.327 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.0653 -0.667,0.195,0.195,0,0,0,0,0.281,0.652,0.0604,0,0,0.426 -1,0.472,0.472,0,0,0,0,0,0.824,0.168,0,0,0.303 -0.667,0.319,0.319,0,0,0,0,0.14,0.738,0.129,0,0,0.216 -0.667,0.31,0.31,0,0,0,0,0.14,0.738,0.136,0,0,0.304 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0888,0,0,0.0433 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.0982,0,0,0.0433 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.0433 -0.667,0.69,0.69,0,0,0,0,0.14,0.855,0.366,0.103,0,0.0433 -0.667,0.644,0.644,0,0.833,0,0,0.14,0.842,0.51,0.435,0,0.145 -0.667,0.509,0.509,0,0.533,0,0,0.14,0.816,0.629,0,0,0.13 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.227 -0.333,0.198,0.198,0,0,0,0,0.281,0.639,0.189,0,0,0.281 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.111 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.143 -1,0.316,0.316,0.55,0,0,0,0.14,0.724,0.074,0,0,0.0794 -0.667,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.144 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.105,0,0,0.146 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.117,0,0,0.391 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.144 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.206,0.206,0.25,0,0,0,0.281,0.665,0.0982,0,0,0 -0.333,0.256,0.256,0.867,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.131 -0.667,0.69,0.69,0,0,0,0,0.14,0.855,0.366,0,0,0.447 -0.667,0.644,0.644,0.75,0,0,0,0.14,0.842,0.51,0,0,0 -0.667,0.509,0.509,0.65,0,0,0,0.14,0.816,0.629,0,0,0.122 -0.667,0.22,0.22,0,0,0,0,0.281,0.665,0.306,0,0,0.13 -1,0.198,0.198,0,0,0,0,0.281,0.639,0.189,0,0,0.306 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.454 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.031,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.0215,0,0,0 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.0241,0,0,0.173 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.175 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0731,0,0,0.233 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0,0,0.111 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.198,0,0,0 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.118,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.165,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.18,0,0,0.388 -0.667,0.461,0.461,0,0,0,0,0.14,0.803,0.36,0,0,0 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.195,0,0,0.13 -0.333,0.37,0.37,0.75,0,0,0,0.281,0.71,0.228,0,0,0.303 -0.667,0.644,0.644,0.0833,0,0,0,0.14,0.842,0.573,0,0,0.26 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.673,0,0,0.34 -1,0.389,0.389,0,0,0,0,0.14,0.764,0.621,0,0,0.0433 -1,0.198,0.198,0,0,0,0,0.281,0.639,0.206,0,0,0.13 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.101,0,0,0.152 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0716 -1,0.191,0.191,0,0,0,0,0.281,0.652,0.0731,0,0,0.136 -1,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0,0,0.174 -1,0.331,0.331,0,0,0,0,0.14,0.738,0.198,0,0,0 -1,0.319,0.319,0,0,0,0,0.14,0.738,0.217,0,0,0.0866 -0.667,0.18,0.18,0,0,0,0,0.281,0.652,0.125,0,0,0.346 -0.667,0.308,0.308,0,0,0,0,0.14,0.738,0.274,0,0,0.292 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.312,0,0,0.261 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.343,0,0,0.267 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.189,0,0,0.173 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.433 -0.333,0.37,0.37,0,0,0.483,0.133,0.281,0.71,0.228,0,0,0.161 -0.667,0.347,0.347,0.5,0,0,0.683,0.281,0.704,0.296,0,0.39,0.13 -0.667,0.279,0.279,0.333,0,0.483,0.133,0.281,0.691,0.345,0,0,0 -0.667,0.22,0.22,0,0,0,0.683,0.281,0.665,0.32,0,0.598,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.667,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.333,0.333,0.867,0,0,0,0.14,0.738,0.0895,0,0,0 -0.667,0.195,0.195,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.667,0.191,0.191,0,0,0.483,0.133,0.281,0.652,0.0664,0,0,0 -0.667,0.319,0.319,0,0,0,0.417,0.14,0.738,0.129,0,0.321,0.0866 -1,0.44,0.44,0,0,0,0,0,0.824,0.196,0,0.603,0.13 -0.667,0.308,0.308,0,0.583,0,0,0.14,0.738,0.153,0.842,0,0 -0.667,0.316,0.316,0,1,0,0,0.14,0.738,0.162,0.733,0,0.0866 -0.667,0.362,0.362,0,0.317,0,0,0.14,0.764,0.181,0.359,0,0.0866 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.13 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.173 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0.188 -0.667,0.644,0.644,0.5,0,0,0,0.14,0.842,0.51,0,0,0.13 -0.667,0.509,0.509,0.05,0,0,0,0.14,0.816,0.629,0.164,0,0.216 -1,0.559,0.559,0,0.833,0,0,0,0.863,0.887,0.75,0,0 -1,0.493,0.493,0,1,0,0,0,0.784,0.536,0,0,0.426 -1,0.117,0.117,0,0.0667,0,0,0.281,0.619,0.0879,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.55,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0.254 -1,0.316,0.316,0,0,0,0,0.14,0.724,0.074,0,0,0.0731 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.102 -1,0.34,0.34,0,0,0,0,0.14,0.738,0.105,0,0,0.214 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0 -0.667,0.185,0.185,0,0,0,0,0.281,0.652,0.0724,0,0,0.346 -0.667,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0 -0.667,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0.0866 -0.667,0.183,0.183,0,0,0,0,0.281,0.652,0.0888,0,0,0.173 -1,0.518,0.518,0,0,0,0,0,0.863,0.263,0,0,0.619 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.0433 -0.333,0.326,0.326,0.267,0.333,0,0,0.281,0.704,0.145,0.49,0,0.26 -0.667,0.69,0.69,0,1,0,0,0.14,0.855,0.366,0,0,0 -0.667,0.644,0.644,0,0.0333,0,0,0.14,0.842,0.51,0,0,0.216 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0,0.186 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.132 -1,0.493,0.493,0,0,0,0,0,0.784,0.536,0,0,0.421 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.267,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.449,0.449,0,0,0,0,0,0.804,0.103,0,0,0.111 -1,0.474,0.474,0,0,0,0,0,0.824,0.126,0,0,0.225 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.105,0,0,0.085 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.117,0,0,0.173 -0.667,0.185,0.185,0,0,0,0,0.281,0.652,0.0724,0,0,0.0433 -0.667,0.31,0.31,0,0,0,0,0.14,0.738,0.136,0,0,0.195 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.135 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.0982,0,0,0.13 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.365 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.131 -0,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0.336 -0.667,0.644,0.644,0.583,0,0,0,0.14,0.842,0.51,0,0,0.0433 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0,0.0433 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.146 -0.667,0.198,0.198,0,0,0,0,0.281,0.639,0.189,0,0,0.205 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.262 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0.217 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.394 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.122 -1,0.253,0.253,0,0,0,0,0.14,0.685,0.0551,0,0,0.325 -0.667,0.183,0.183,0,0,0,0,0.281,0.645,0.0449,0,0,0.144 -0.667,0.191,0.191,0.25,0,0,0,0.281,0.652,0.0527,0,0,0.138 -0.667,0.34,0.34,0.0167,0,0,0,0.14,0.738,0.105,0,0,0.174 -0.667,0.331,0.331,0,0,0.483,0.133,0.14,0.738,0.117,0,0,0.0825 -0.333,0.185,0.185,0.25,0,0,1,0.281,0.652,0.0724,0,0.338,0.0433 -0.333,0.18,0.18,0.583,0,0,0.517,0.281,0.652,0.0759,0.223,0,0.0866 -0.333,0.179,0.179,0,0.833,0,0,0.281,0.652,0.0845,0.355,0,0.173 -0.667,0.316,0.316,0,0.533,0,0,0.14,0.738,0.162,0,0,0.441 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.181,0,0,0.426 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.216 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.346 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0,0.338 -0.333,0.279,0.279,0,0,0,0,0.281,0.691,0.322,0,0,0.0866 -0.333,0.22,0.22,0,0,0,0,0.281,0.665,0.306,0,0,0 -1,0.493,0.493,0,0,0,0,0,0.784,0.536,0,0,0.157 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.0583,0.0583,0,0,0,0,0.281,0.612,0.026,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0.309 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.026,0,0,0.354 -1,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0.439 -1,0.316,0.316,0,0,0,0,0.14,0.724,0.074,0,0,0.352 -0.667,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.457 -0.333,0.195,0.195,0,0,0,0,0.281,0.652,0.0604,0,0,0.314 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.146 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -0.667,0.179,0.179,0.617,0,0,0,0.281,0.652,0.0845,0,0,0.0866 -0.667,0.183,0.183,0,0,0,0,0.281,0.652,0.0888,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0.333,0.05,0.05,0.75,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.69,0.69,0.933,0,0,0,0.14,0.855,0.366,0,0,0 -1,0.644,0.644,0,0,0,0,0.14,0.842,0.51,0,0,0 -1,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0,0.0918 -1,0.559,0.559,0,0,0,0,0,0.863,0.887,0,0,0.343 -1,0.493,0.493,0,0,0,0,0,0.784,0.536,0,0,0.357 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.0836,0.0836,0,0,0,0,0.281,0.612,0.0241,0,0,0.166 -0.667,0.151,0.151,0,0,0,0,0.281,0.625,0.0327,0,0,0.152 -0.667,0.183,0.183,0,0,0,0,0.281,0.645,0.049,0,0,0.259 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0731,0,0,0 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.198,0,0,0.13 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.118,0,0,0.0433 -0.333,0.18,0.18,0.55,0,0,0,0.281,0.652,0.125,0,0,0.346 -0.667,0.308,0.308,0,0,0,0,0.14,0.738,0.274,0,0,0.0433 -0.667,0.316,0.316,0,0.333,0,0,0.14,0.738,0.312,0.595,0,0.216 -0.667,0.362,0.362,0,1,0,0,0.14,0.764,0.343,0.709,0,0.0866 -0.667,0.461,0.461,0,0.0333,0,0,0.14,0.803,0.36,0.884,0,0.0433 -0.667,0.602,0.602,0,0,0,0,0.14,0.842,0.372,0.396,0,0.13 -0.667,0.69,0.69,0,0,0,0,0.14,0.855,0.437,0.613,0,0.13 -0.667,0.644,0.644,0,0,0,0,0.14,0.842,0.573,0.619,0,0.0433 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.673,0,0,0 -1,0.389,0.389,0,0,0,0,0.14,0.764,0.621,0,0,0.167 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.216 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.117,0.117,0,0,0,0,0.14,0.659,0.0301,0,0,0.496 -1,0.253,0.253,0.833,0,0,0,0.14,0.685,0.0473,0,0,0.0165 -1,0.316,0.316,0,0,0,0,0.14,0.724,0.0799,0,0,0.187 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0731,0,0,0.23 -0.667,0.195,0.195,0.25,0,0,0,0.281,0.652,0.0928,0,0,0.0433 -0.667,0.331,0.331,1,0,0,0,0.14,0.738,0.198,0,0,0 -0.667,0.319,0.319,0.15,0,0,0,0.14,0.738,0.217,0,0,0.303 -0.667,0.18,0.18,0,0,0,0,0.281,0.652,0.125,0,0,0.0433 -1,0.308,0.308,0,0,0,0,0.14,0.738,0.274,0,0,0.0433 -1,0.316,0.316,0,0,0,0,0.14,0.738,0.312,0,0,0.0433 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.343,0,0,0.173 -0.667,0.256,0.256,0,0,0,0,0.281,0.684,0.189,0,0,0.346 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.195,0,0,0.13 -0.667,0.69,0.69,0.25,0,0,0,0.14,0.855,0.437,0,0,0.216 -0.667,0.644,0.644,0.567,0.333,0,0,0.14,0.842,0.573,0.53,0,0.0433 -0.667,0.509,0.509,0,1,0,0,0.14,0.816,0.673,0.164,0,0 -1,0.389,0.389,0,0.0333,0,0,0.14,0.764,0.621,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.389 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.0517,0.0517,0,0,0,0,0.281,0.612,0.02,0,0,0.268 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.026,0,0,0.0878 -1,0.151,0.151,0,0,0,0,0.281,0.625,0.0355,0,0,0.229 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.0449,0,0,0.291 -1,0.191,0.191,0,0,0,0,0.281,0.652,0.0527,0,0,0.185 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.13 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.179,0.179,0.75,0,0,0,0.281,0.652,0.0845,0,0,0 -0.333,0.183,0.183,0.0833,0,0,0,0.281,0.652,0.0888,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.0982,0,0,0.0433 -0.667,0.461,0.461,0,0,0,0,0.14,0.803,0.224,0,0,0.303 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0.173 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0,0.303 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.629,0,0,0.813 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.173 -0.667,0.198,0.198,0,0,0,0,0.281,0.639,0.189,0,0,0 -0.667,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0.335 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0779 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.0449,0,0,0.14 -0.667,0.191,0.191,0,0,0,0,0.281,0.652,0.0527,0,0,0.1 -0.667,0.195,0.195,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.117,0,0,0.436 -0.667,0.319,0.319,0,0,0,0,0.14,0.738,0.129,0,0,0.0866 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0.13 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.0845,0,0,0.216 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.0888,0,0,0.0433 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.181,0,0,0.13 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -0.333,0.37,0.37,0,0,0,0,0.281,0.71,0.191,0,0,0.0433 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0,0.13 -0.333,0.279,0.279,0.75,0,0,0,0.281,0.691,0.322,0,0,0 -0.667,0.389,0.389,0.367,0,0,0,0.14,0.764,0.596,0,0,0.0433 -1,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0 -1,0.117,0.117,0,0,0,0,0.281,0.619,0.0879,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.0836,0.0836,0,0,0,0,0.281,0.612,0.026,0,0,0.0867 -1,0.253,0.253,0,0,0,0,0.14,0.685,0.0551,0,0,0.337 -1,0.449,0.449,0.55,0,0,0,0,0.804,0.103,0,0,0 -0.667,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.303 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.105,0,0,0 -0.667,0.331,0.331,0,0,0,0,0.14,0.738,0.117,0,0,0.249 -0.333,0.185,0.185,0,0,0,0,0.281,0.652,0.0724,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0 -0.333,0.179,0.179,0,0,0.483,0.133,0.281,0.652,0.0845,0,0,0 -0.333,0.183,0.183,0,0,0,1,0.281,0.652,0.0888,0,0.394,0.0433 -0.333,0.206,0.206,0,0,0,1,0.281,0.665,0.0982,0,0,0 -0.333,0.256,0.256,0,0,0,0.0667,0.281,0.684,0.12,0,0,0.216 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.0433 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.13 -0.333,0.347,0.347,0,0,0,0,0.281,0.704,0.263,0,0,0 -0.333,0.279,0.279,0,0,0,0,0.281,0.691,0.322,0,0,0.303 -0.667,0.22,0.22,0,0,0,0,0.281,0.665,0.306,0,0,0.0433 -1,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0.303 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0424,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.114 -0.667,0.05,0.05,0.5,0,0.483,0.133,0.421,0.566,0.0159,0,0,0 -0.667,0.191,0.191,0.05,0,0,0.683,0.281,0.652,0.0527,0,0.475,0 -0.667,0.195,0.195,0,0,0,0,0.281,0.652,0.0604,0,0,0 -0.333,0.05,0.05,0.25,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.185,0.185,0.3,0,0,0,0.281,0.652,0.0724,0,0,0 -0.333,0.18,0.18,0,0,0,0,0.281,0.652,0.0759,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.303 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.331 -0.333,0.256,0.256,0,0,0.483,0.633,0.281,0.684,0.12,0,0.151,0 -0.333,0.326,0.326,0,0,0,0.467,0.281,0.704,0.145,0,0.51,0 -0.333,0.37,0.37,0.5,0,0,0,0.281,0.71,0.191,0,0.585,0 -0.333,0.347,0.347,0.333,0.333,0,0,0.281,0.704,0.263,0.582,0.0936,0.234 -0.667,0.509,0.509,0,0.75,0,0,0.14,0.816,0.629,0.184,0,0.196 -0.667,0.389,0.389,0,0,0,0,0.14,0.764,0.596,0,0,0.389 -1,0.345,0.345,0,0,0,0,0.14,0.711,0.363,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.216 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.173 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0.55,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.316,0.316,0,0,0,0,0.14,0.724,0.074,0,0,0.761 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.139 -1,0.34,0.34,0,0.333,0,0,0.14,0.738,0.105,0.652,0,0.0969 -0.667,0.191,0.191,0,1,0,0,0.281,0.652,0.0664,0,0,0.0433 -0.667,0.185,0.185,0,0.0333,0,0,0.281,0.652,0.0724,0,0,0 -0.667,0.31,0.31,0,0,0,0,0.14,0.738,0.136,0,0,0.26 -0.667,0.308,0.308,0,0,0,0,0.14,0.738,0.153,0,0,0.532 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.162,0,0,0.433 -0.667,0.362,0.362,0,0,0,0,0.14,0.764,0.181,0,0,0.24 -0.667,0.461,0.461,0,0,0,0,0.14,0.803,0.224,0,0,0.308 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.145,0,0,0.357 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0.5,0,0,0,0.421,0.566,0.0159,0,0,0.346 -0.333,0.279,0.279,0.05,0,0,0,0.281,0.691,0.322,0,0,0 -0.333,0.22,0.22,0,0,0,0,0.281,0.665,0.306,0,0,0.0433 -0.333,0.05,0.05,0.75,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.117,0.117,0.933,0,0,0,0.281,0.619,0.0879,0,0,0 -1,0.0749,0.0749,0,0,0,0,0.281,0.612,0.0499,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0433 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.151,0.151,0,0,0,0,0.281,0.625,0.0327,0,0,0 -0.667,0.316,0.316,0,0.583,0,0,0.14,0.724,0.0799,0.952,0,0 -0.667,0.333,0.333,0,0.783,0,0,0.14,0.738,0.128,0.834,0,0 -0.667,0.34,0.34,0,0,0,0,0.14,0.738,0.168,0.709,0,0.358 -0.667,0.331,0.331,0,0,0.103,0,0.14,0.738,0.198,0.783,0,0.26 -0.667,0.319,0.319,0,0,0.379,0.817,0.14,0.738,0.217,0,0.105,0.0866 -0.667,0.31,0.31,0,0,0,0,0.14,0.738,0.233,0,0.573,0.216 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.146,0,0.277,0 -0.667,0.316,0.316,0,0,0,0,0.14,0.738,0.312,0,0.363,0.13 -1,0.518,0.518,0,0,0,0,0,0.863,0.505,0,0,0.0866 -1,0.461,0.461,0,0,0,0,0.14,0.803,0.36,0,0,0.173 -1,0.878,0.878,0.25,0,0,0,0,0.98,0.549,0,0,0.321 -0.333,0.37,0.37,0.3,0.333,0,0,0.281,0.71,0.228,0.587,0,0.347 -1,0.941,0.941,0,0.75,0,0,0,0.98,0.851,0.245,0,0.304 -1,0.738,0.738,0,0,0,0,0,0.941,1,0,0,0.225 -1,0.559,0.559,0,0,0,0,0,0.863,0.923,0,0,0.303 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0866 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.13 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0.667,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0.0637 -0.667,0.183,0.183,0,0,0,0,0.281,0.645,0.049,0,0,0.402 -0.667,0.333,0.333,0,0,0,0,0.14,0.738,0.128,0,0,0.134 -0.333,0.195,0.195,0,0,0,0,0.281,0.652,0.0928,0,0,0.102 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0181,0,0,0 -0,0.05,0.05,0.267,0,0,0,0.421,0.566,0.0181,0,0,0.26 -0.667,0.31,0.31,0,0,0,0,0.14,0.738,0.233,0,0,0.594 -0.333,0.179,0.179,0,0,0,0,0.281,0.652,0.146,0,0,0.13 -0.333,0.183,0.183,0,0,0,0,0.281,0.652,0.165,0,0,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.18,0,0,0 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.189,0,0,0.13 -0.333,0.326,0.326,0,0,0,0,0.281,0.704,0.195,0,0,0.173 -0.667,0.69,0.69,0,0,0,0,0.14,0.855,0.437,0,0,0 -0.667,0.644,0.644,0,0,0,0,0.14,0.842,0.573,0,0,0.13 -0.667,0.509,0.509,0,0,0,0,0.14,0.816,0.673,0,0,0.216 -1,0.559,0.559,0,0,0.483,0.633,0,0.863,0.923,0,0.142,0.216 -1,0.198,0.198,0,0,0,0.467,0.281,0.639,0.206,0.166,0.485,0 -1,0.117,0.117,0,0.833,0,0,0.281,0.619,0.101,0.477,0.0579,0.0433 -1,0.0749,0.0749,0,0.25,0,0,0.281,0.612,0.0424,0.58,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -1,0.183,0.183,0,0,0,0,0.281,0.645,0.0449,0,0,0 -1,0.333,0.333,0,0,0,0,0.14,0.738,0.0895,0,0,0.114 -1,0.34,0.34,0,0,0,0,0.14,0.738,0.105,0,0,0.151 -0.333,0.191,0.191,0,0,0,0,0.281,0.652,0.0664,0,0,0.442 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0.0866 -0,0.05,0.05,0,0,0,0,0.421,0.566,0.0159,0,0,0 -0.333,0.179,0.179,0,0,0.483,0.133,0.281,0.652,0.0845,0,0,0.0433 -0.333,0.183,0.183,0,0,0,0.417,0.281,0.652,0.0888,0,0.278,0 -0.333,0.206,0.206,0,0,0,0,0.281,0.665,0.0982,0,0.429,0 -0.333,0.256,0.256,0,0,0,0,0.281,0.684,0.12,0,0.298,0.284 -0.667,0.602,0.602,0,0,0,0,0.14,0.842,0.273,0,0.564,0.26 -0.667,0.69,0.69,0,0,0,0,0.14,0.855,0.366,0.114,0.28,0.173 -0.667,0.644,0.644,0,0.833,0,0,0.14,0.842,0.51,0.799,0,0.238 -1,0.738,0.738,0.75,0.25,0,0,0,0.941,0.936,0.25,0,0.554 -0.667,0.389,0.389,0.367,0,0,0,0.14,0.764,0.596,0,0,0.0866 -0.667,0.198,0.198,0,0,0,0,0.281,0.639,0.189,0,0,0 -1,0.184,0.184,0,0,0,0,0.14,0.672,0.16,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev-undercharged.csv b/HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev-undercharged.csv new file mode 100644 index 0000000000..b153f9d656 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev-undercharged.csv @@ -0,0 +1,8761 @@ +electric_vehicle +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +1 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +1 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +1 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 diff --git a/HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv b/HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv new file mode 100644 index 0000000000..1e1640bc67 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv @@ -0,0 +1,8761 @@ +electric_vehicle +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +0 +1 +1 +0.5 +0.5 +-1 +-1 +-0.5 +-0.5 +0 +0 +0 +0 +0 +0 diff --git a/HPXMLtoOpenStudio/resources/schedules.rb b/HPXMLtoOpenStudio/resources/schedules.rb index 0da62c5f8a..814bb8f970 100644 --- a/HPXMLtoOpenStudio/resources/schedules.rb +++ b/HPXMLtoOpenStudio/resources/schedules.rb @@ -649,6 +649,10 @@ def self.get_unavailable_periods(runner, schedule_name, unavailable_periods) end # Add unavailable period rules to the OpenStudio Schedule object. + # An unavailable period rule is an OpenStudio ScheduleRule object. + # Each OpenStudio ScheduleRule stores start month/day, end month/day, and day (24 hour) schedule. + # The unavailable period (i.e., number of consecutive days, whether starting/ending in the middle of the day, etc.) determines + # the number of ScheduleRule objects that are needed, as well as the start, end, and day schedule fields that are set. # # @param model [OpenStudio::Model::Model] OpenStudio Model object # @param schedule [OpenStudio::Model::ScheduleRuleset] the OpenStudio Schedule object for which to set unavailable period rules @@ -691,82 +695,44 @@ def self.set_unavailable_periods(model, schedule, sch_name, unavailable_periods) begin_day_schedule = schedule.getDaySchedules(date_s, date_s)[0] end_day_schedule = schedule.getDaySchedules(date_e, date_e)[0] - outage_days = day_e - day_s - if outage_days == 0 # outage is less than 1 calendar day (need 1 outage rule) - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_s, - end_date: date_e, - hourly_values: (0..23).map { |h| (h < period.begin_hour) || (h >= period.end_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value } - ) - else # outage is at least 1 calendar day - if period.begin_hour == 0 && period.end_hour == 24 # 1 outage rule - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_s, - end_date: date_e, - hourly_values: [value] * 24 - ) - elsif (period.begin_hour == 0 && period.end_hour != 24) || (period.begin_hour != 0 && period.end_hour == 24) # 2 outage rules + # [[start_date, end_date, hourly_values], ...] + schedule_ruleset_rules = [] + + unavail_days = day_e - day_s + if unavail_days == 0 # unavailable period is less than 1 calendar day (need 1 unavailable period rule) + schedule_ruleset_rules << [date_s, date_e, (0..23).map { |h| (h < period.begin_hour) || (h >= period.end_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] + else # unavailable period is at least 1 calendar day + if period.begin_hour == 0 && period.end_hour == 24 # 1 unavailable period rule + schedule_ruleset_rules << [date_s, date_e, [value] * 24] + elsif (period.begin_hour == 0 && period.end_hour != 24) || (period.begin_hour != 0 && period.end_hour == 24) # 2 unavailable period rules if period.begin_hour == 0 && period.end_hour != 24 - # last day - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_e, - end_date: date_e, - hourly_values: (0..23).map { |h| (h >= period.end_hour) ? end_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value } - ) - - # all other days - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_s, - end_date: OpenStudio::Date::fromDayOfYear(day_e - 1, year), - hourly_values: [value] * 24 - ) + schedule_ruleset_rules << [date_e, date_e, (0..23).map { |h| (h >= period.end_hour) ? end_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] # last day + schedule_ruleset_rules << [date_s, OpenStudio::Date::fromDayOfYear(day_e - 1, year), [value] * 24] # all other days elsif period.begin_hour != 0 && period.end_hour == 24 - # first day - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_s, - end_date: date_s, - hourly_values: (0..23).map { |h| (h < period.begin_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value } - ) - - # all other days - Model.add_schedule_ruleset_rule( - schedule, - start_date: OpenStudio::Date::fromDayOfYear(day_s + 1, year), - end_date: date_e, - hourly_values: [value] * 24 - ) + schedule_ruleset_rules << [date_s, date_s, (0..23).map { |h| (h < period.begin_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] # first day + schedule_ruleset_rules << [OpenStudio::Date::fromDayOfYear(day_s + 1, year), date_e, [value] * 24] + end + else # 2 or 3 unavailable period rules + if unavail_days == 1 # 2 unavailable period rules + schedule_ruleset_rules << [date_s, date_s, (0..23).map { |h| (h < period.begin_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] # first day + schedule_ruleset_rules << [date_e, date_e, (0..23).map { |h| (h >= period.end_hour) ? end_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] # last day + else # 3 unavailable period rules + schedule_ruleset_rules << [date_s, date_s, (0..23).map { |h| (h < period.begin_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] # first day + schedule_ruleset_rules << [OpenStudio::Date::fromDayOfYear(day_s + 1, year), OpenStudio::Date::fromDayOfYear(day_e - 1, year), [value] * 24] # all other days + schedule_ruleset_rules << [date_e, date_e, (0..23).map { |h| (h >= period.end_hour) ? end_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value }] # last day end - else # 3 outage rules - # first day - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_s, - end_date: date_s, - hourly_values: (0..23).map { |h| (h < period.begin_hour) ? begin_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value } - ) - - # all other days - Model.add_schedule_ruleset_rule( - schedule, - start_date: OpenStudio::Date::fromDayOfYear(day_s + 1, year), - end_date: OpenStudio::Date::fromDayOfYear(day_e - 1, year), - hourly_values: [value] * 24 - ) - - # last day - Model.add_schedule_ruleset_rule( - schedule, - start_date: date_e, - end_date: date_e, - hourly_values: (0..23).map { |h| (h >= period.end_hour) ? end_day_schedule.getValue(OpenStudio::Time.new(0, h + 1, 0, 0)) : value } - ) end end + + schedule_ruleset_rules.each do |schedule_ruleset_rule| + start_date, end_date, hourly_values = schedule_ruleset_rule + Model.add_schedule_ruleset_rule( + schedule, + start_date: start_date, + end_date: end_date, + hourly_values: hourly_values + ) + end end end @@ -972,6 +938,24 @@ def self.validate_emissions_files(hpxml_header) end end end + + # Splits a comma separated schedule string into charging (positive) and discharging (negative) schedules + # + # @param schedule_str [String] schedule with values separated by commas + # @return [Array] 24 hourly comma-separated charging and discharging schedules + def self.split_signed_charging_schedule(schedule_str) + charge_schedule, discharge_schedule = [], [] + schedule_str.split(',').map(&:strip).map(&:to_f).each do |frac| + if frac >= 0 + charge_schedule << frac.to_s + discharge_schedule << 0 + elsif frac < 0 + charge_schedule << 0 + discharge_schedule << (-frac).to_s + end + end + return charge_schedule.join(', '), discharge_schedule.join(', ') + end end # Object that contains information for detailed schedule CSVs. @@ -1024,7 +1008,9 @@ def initialize(name, used_by_unavailable_periods, can_be_stochastic, type) HotWaterFixtures: Column.new('hot_water_fixtures', true, true, :frac), HotWaterRecirculationPump: Column.new('hot_water_recirculation_pump', true, false, :frac), GeneralWaterUse: Column.new('general_water_use', true, false, :frac), - Sleeping: Column.new('sleeping', false, false, nil), + Sleeping: Column.new('sleeping', false, false, nil), # only used to debug stochastic schedule generation + PresentOccupants: Column.new('present_occupants', false, false, :int), # only used to debug stochastic schedule generation + EVOccupant: Column.new('ev_occupant', false, false, nil), # only used to debug stochastic schedule generation HeatingSetpoint: Column.new('heating_setpoint', false, false, :setpoint), CoolingSetpoint: Column.new('cooling_setpoint', false, false, :setpoint), WaterHeaterSetpoint: Column.new('water_heater_setpoint', false, false, :setpoint), @@ -1032,6 +1018,9 @@ def initialize(name, used_by_unavailable_periods, can_be_stochastic, type) Battery: Column.new('battery', false, false, :neg_one_to_one), BatteryCharging: Column.new('battery_charging', true, false, nil), BatteryDischarging: Column.new('battery_discharging', true, false, nil), + ElectricVehicle: Column.new('electric_vehicle', false, false, :neg_one_to_one), + ElectricVehicleCharging: Column.new('electric_vehicle_charging', true, false, nil), + ElectricVehicleDischarging: Column.new('electric_vehicle_discharging', true, false, nil), SpaceHeating: Column.new('space_heating', true, false, nil), SpaceCooling: Column.new('space_cooling', true, false, nil), HVACMaximumPowerRatio: Column.new('hvac_maximum_power_ratio', false, false, :frac), @@ -1488,22 +1477,38 @@ def convert_setpoints(offset_db) end end - # Create separate charging (positive) and discharging (negative) detailed schedules from the battery schedule. + # Assign separate detailed battery charging and discharging schedules + # If a single column (e.g., 'battery' or 'electric_vehicle') is provided, it will be split into two columns based on the sign. # # @return [nil] def create_battery_charging_discharging_schedules - battery_col_name = Columns[:Battery].name - return if !@schedules.keys.include?(battery_col_name) - - @schedules[SchedulesFile::Columns[:BatteryCharging].name] = Array.new(@schedules[battery_col_name].size, 0) - @schedules[SchedulesFile::Columns[:BatteryDischarging].name] = Array.new(@schedules[battery_col_name].size, 0) - @schedules[battery_col_name].each_with_index do |_ts, i| - if @schedules[battery_col_name][i] > 0 - @schedules[SchedulesFile::Columns[:BatteryCharging].name][i] = @schedules[battery_col_name][i] - elsif @schedules[battery_col_name][i] < 0 - @schedules[SchedulesFile::Columns[:BatteryDischarging].name][i] = -1 * @schedules[battery_col_name][i] + battery_col_hashes = [:Battery, :ElectricVehicle].map do |battery_type| + { col: SchedulesFile::Columns[battery_type].name, charging_col: SchedulesFile::Columns[:"#{battery_type}Charging"].name, discharging_col: SchedulesFile::Columns[:"#{battery_type}Discharging"].name } + end + battery_col_hashes.each do |battery_cols| + next unless @schedules.keys.include?(battery_cols[:col]) + + split_signed_column(battery_cols[:col], battery_cols[:charging_col], battery_cols[:discharging_col]) + end + end + + # Splits a single column from the @schedules object into two columns, one populated with the positive values and zeros, and one with the negative values and zeros, then deletes the original column. + # + # @param column [String] Column name in the @schedules object + # @param positive_col [String] Name of new positive column in the @schedules object + # @param negative_col [String] Name of new negative column in the @schedules object + # + # @return [nil] + def split_signed_column(column, positive_col, negative_col) + @schedules[positive_col] = Array.new(@schedules[column].size, 0) + @schedules[negative_col] = Array.new(@schedules[column].size, 0) + @schedules[column].each_with_index do |_ts, i| + if @schedules[column][i] > 0 + @schedules[positive_col][i] = @schedules[column][i] + elsif @schedules[column][i] < 0 + @schedules[negative_col][i] = -1 * @schedules[column][i] end end - @schedules.delete(battery_col_name) + @schedules.delete(column) end end diff --git a/HPXMLtoOpenStudio/resources/vehicle.rb b/HPXMLtoOpenStudio/resources/vehicle.rb new file mode 100644 index 0000000000..f4a1862a8b --- /dev/null +++ b/HPXMLtoOpenStudio/resources/vehicle.rb @@ -0,0 +1,188 @@ +# frozen_string_literal: true + +# Collection of methods for adding vehicle-related OpenStudio objects, built on the Battery class +module Vehicle + # Adds any HPXML Vehicles to the OpenStudio model. + # Currently only models electric vehicles. + # + # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings + # @param model [OpenStudio::Model::Model] OpenStudio Model object + # @param spaces [Hash] Map of HPXML locations => OpenStudio Space objects + # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit + # @param hpxml_header [HPXML::Header] HPXML Header object (one per HPXML file) + # @param schedules_file [SchedulesFile] SchedulesFile wrapper class instance of detailed schedule files + # @return [nil] + def self.apply(runner, model, spaces, hpxml_bldg, hpxml_header, schedules_file) + hpxml_bldg.vehicles.each do |vehicle| + if vehicle.vehicle_type != HPXML::VehicleTypeBEV + # Warning issued by Schematron validator + next + end + + apply_electric_vehicle(runner, model, spaces, hpxml_bldg, hpxml_header, vehicle, schedules_file) + end + end + + # Apply an electric vehicle to the model using the battery.rb Battery class, which assigns OpenStudio ElectricLoadCenterStorageLiIonNMCBattery and ElectricLoadCenterDistribution objects. + # An EMS program models the effect of ambient temperature on the effective power output, scales power with the fraction charged at home, and calculates the unmet driving hours. + # Bi-directional charging is not currently implemented + # + # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings + # @param model [OpenStudio::Model::Model] OpenStudio Model object + # @param spaces [Hash] Map of HPXML locations => OpenStudio Space objects + # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit + # @param hpxml_header [HPXML::Header] HPXML Header object (one per HPXML file) + # @param vehicle [HPXML::Vehicle] Object that defines a single electric vehicle + # @param schedules_file [SchedulesFile] SchedulesFile wrapper class instance of detailed schedule files + # @return [nil] + def self.apply_electric_vehicle(runner, model, spaces, hpxml_bldg, hpxml_header, vehicle, schedules_file) + if hpxml_bldg.plug_loads.any? { |pl| pl.plug_load_type == HPXML::PlugLoadTypeElectricVehicleCharging } + # Warning issued by Schematron validator + return + end + + # Assign charging and vehicle space + ev_charger = vehicle.ev_charger + if ev_charger.nil? + # Warning issued by Schematron validator + return + end + + vehicle.additional_properties.location = ev_charger.location + + if vehicle.fuel_economy_units == HPXML::UnitsKwhPerMile + kwh_per_mile = vehicle.fuel_economy_combined + elsif vehicle.fuel_economy_units == HPXML::UnitsMilePerKwh + kwh_per_mile = 1.0 / vehicle.fuel_economy_combined + elsif vehicle.fuel_economy_units == HPXML::UnitsMPGe + kwh_per_mile = 33.705 / vehicle.fuel_economy_combined # Per EPA, one gallon of gasoline is equal to 33.705 kWh + end + ev_annl_energy = kwh_per_mile * vehicle.miles_per_year # kWh/year + + # Create schedule + charging_schedule, discharging_schedule = nil, nil + charging_col_name, discharging_col_name = SchedulesFile::Columns[:ElectricVehicleCharging].name, SchedulesFile::Columns[:ElectricVehicleDischarging].name + if not schedules_file.nil? + charging_schedule = schedules_file.create_schedule_file(model, col_name: charging_col_name) + discharging_schedule = schedules_file.create_schedule_file(model, col_name: discharging_col_name) + eff_discharge_power = schedules_file.calc_design_level_from_daily_kwh(col_name: discharging_schedule.name.to_s, daily_kwh: ev_annl_energy / 365) + end + if charging_schedule.nil? && discharging_schedule.nil? + charging_unavailable_periods = Schedule.get_unavailable_periods(runner, charging_col_name, hpxml_header.unavailable_periods) + discharging_unavailable_periods = Schedule.get_unavailable_periods(runner, discharging_col_name, hpxml_header.unavailable_periods) + charge_name, discharge_name = "#{vehicle.id} charging schedule", "#{vehicle.id} discharging schedule" + weekday_charge, weekday_discharge = Schedule.split_signed_charging_schedule(vehicle.ev_weekday_fractions) + weekend_charge, weekend_discharge = Schedule.split_signed_charging_schedule(vehicle.ev_weekend_fractions) + charging_schedule_obj = MonthWeekdayWeekendSchedule.new(model, charge_name, weekday_charge, weekend_charge, vehicle.ev_monthly_multipliers, EPlus::ScheduleTypeLimitsFraction, unavailable_periods: charging_unavailable_periods) + discharging_schedule_obj = MonthWeekdayWeekendSchedule.new(model, discharge_name, weekday_discharge, weekend_discharge, vehicle.ev_monthly_multipliers, EPlus::ScheduleTypeLimitsFraction, unavailable_periods: discharging_unavailable_periods) + eff_discharge_power = discharging_schedule_obj.calc_design_level_from_daily_kwh(ev_annl_energy / 365) + discharging_schedule = discharging_schedule_obj.schedule + charging_schedule = charging_schedule_obj.schedule + else + runner.registerWarning("Both schedule file and weekday fractions provided for '#{SchedulesFile::Columns[:ElectricVehicle].name}'; weekday fractions will be ignored.") if !vehicle.ev_weekday_fractions.nil? + runner.registerWarning("Both schedule file and weekend fractions provided for '#{SchedulesFile::Columns[:ElectricVehicle].name}'; weekend fractions will be ignored.") if !vehicle.ev_weekend_fractions.nil? + runner.registerWarning("Both schedule file and monthly multipliers provided for '#{SchedulesFile::Columns[:ElectricVehicle].name}'; monthly multipliers will be ignored.") if !vehicle.ev_monthly_multipliers.nil? + end + + # Scale the effective discharge power by 2.25 to assign the rated discharge power. + # This value reflects the maximum power adjustment allowed in the EMS EV discharge program at -17.8 C. + vehicle.additional_properties.rated_power_output = eff_discharge_power * 2.25 + + # Apply vehicle battery to model + Battery.apply_battery(runner, model, spaces, hpxml_bldg, vehicle, charging_schedule, discharging_schedule) + + # Apply EMS program to adjust discharge power based on ambient temperature. + model.getElectricLoadCenterStorageLiIonNMCBatterys.each do |elcs| + next unless elcs.name.to_s.include? vehicle.id + + ev_elcd = model.getElectricLoadCenterDistributions.find { |elcd| elcd.name.to_s.include?(vehicle.id) } + eff_charge_power = ev_elcd.designStorageControlChargePower + min_soc = ev_elcd.minimumStorageStateofChargeFraction + discharging_schedule = ev_elcd.storageDischargePowerFractionSchedule.get + charging_schedule = ev_elcd.storageChargePowerFractionSchedule.get + + discharge_power_act = Model.add_ems_actuator( + name: 'battery_discharge_power_act', + model_object: ev_elcd, + comp_type_and_control: ['Electrical Storage', 'Power Draw Rate'] + ) + charge_power_act = Model.add_ems_actuator( + name: 'battery_charge_power_act', + model_object: ev_elcd, + comp_type_and_control: ['Electrical Storage', 'Power Charge Rate'] + ) + temp_sensor = Model.add_ems_sensor( + model, + name: 'site_temp', + output_var_or_meter_name: 'Site Outdoor Air Drybulb Temperature', + key_name: 'Environment' + ) + discharge_sch_sensor = Model.add_ems_sensor( + model, + name: 'discharge_sch_sensor', + output_var_or_meter_name: 'Schedule Value', + key_name: discharging_schedule.name.to_s + ) + charge_sch_sensor = Model.add_ems_sensor( + model, + name: 'charge_sch_sensor', + output_var_or_meter_name: 'Schedule Value', + key_name: charging_schedule.name.to_s + ) + soc_sensor = Model.add_ems_sensor( + model, + name: 'soc_sensor', + output_var_or_meter_name: 'Electric Storage Charge Fraction', + key_name: elcs.name.to_s + ) + + ev_discharge_program = Model.add_ems_program( + model, + name: 'ev_discharge_program' + ) + ev_discharge_program.additionalProperties.setFeature('ObjectType', Constants::ObjectTypeBEVDischargeProgram) + unmet_hr_var = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'unmet_driving_hours') + unmet_hr_var.setName('unmet_driving_hours') + unmet_hr_var.setTypeOfDataInVariable('Summed') + unmet_hr_var.setUpdateFrequency('SystemTimestep') + unmet_hr_var.setEMSProgramOrSubroutineName(ev_discharge_program) + unmet_hr_var.setUnits('hr') + + # Power adjustment vs ambient temperature curve; derived from most recent data in Figure 9 of https://www.nrel.gov/docs/fy23osti/83916.pdf + # This adjustment scales power demand based on ambient temperature, and encompasses losses due to battery and space conditioning (i.e., discharging losses), as well as charging losses. + coefs = [1.412768, -3.910397E-02, 9.408235E-04, 8.971560E-06, -7.699244E-07, 1.265614E-08] + power_curve = '' + coefs.each_with_index do |coef, i| + power_curve += "+(#{coef}*(site_temp_adj^#{i}))" + end + power_curve = power_curve[1..] + ev_discharge_program.addLine(" Set power_mult = #{power_curve}") + ev_discharge_program.addLine(" Set site_temp_adj = #{temp_sensor.name}") + ev_discharge_program.addLine(" If #{temp_sensor.name} < #{UnitConversions.convert(0, 'F', 'C').round(3)}") + ev_discharge_program.addLine(" Set site_temp_adj = #{UnitConversions.convert(0, 'F', 'C').round(3)}") + ev_discharge_program.addLine(" ElseIf #{temp_sensor.name} > #{UnitConversions.convert(100, 'F', 'C').round(3)}") + ev_discharge_program.addLine(" Set site_temp_adj = #{UnitConversions.convert(100, 'F', 'C').round(3)}") + ev_discharge_program.addLine(' EndIf') + ev_discharge_program.addLine(" If #{discharge_sch_sensor.name} > 0.0") + ev_discharge_program.addLine(" Set #{discharge_power_act.name} = #{eff_discharge_power} * #{vehicle.fraction_charged_home} * power_mult * #{discharge_sch_sensor.name}") + ev_discharge_program.addLine(" Set #{charge_power_act.name} = #{eff_charge_power} * #{charge_sch_sensor.name}") + ev_discharge_program.addLine(" If #{soc_sensor.name} <= #{min_soc}") + ev_discharge_program.addLine(" Set #{unmet_hr_var.name} = #{discharge_sch_sensor.name}") + ev_discharge_program.addLine(' Else') + ev_discharge_program.addLine(" Set #{unmet_hr_var.name} = 0") + ev_discharge_program.addLine(' EndIf') + ev_discharge_program.addLine(' Else') + ev_discharge_program.addLine(" Set #{charge_power_act.name} = #{eff_charge_power} * #{charge_sch_sensor.name}") + ev_discharge_program.addLine(" Set #{discharge_power_act.name} = 0") + ev_discharge_program.addLine(" Set #{unmet_hr_var.name} = 0") + ev_discharge_program.addLine(' EndIf') + + Model.add_ems_program_calling_manager( + model, + name: 'ev_discharge_pcm', + calling_point: 'BeginTimestepBeforePredictor', + ems_programs: [ev_discharge_program] + ) + end + end +end diff --git a/HPXMLtoOpenStudio/resources/waterheater.rb b/HPXMLtoOpenStudio/resources/waterheater.rb index b7c2d3aeaf..ec47315d48 100644 --- a/HPXMLtoOpenStudio/resources/waterheater.rb +++ b/HPXMLtoOpenStudio/resources/waterheater.rb @@ -56,7 +56,7 @@ def self.apply_tank(runner, model, spaces, hpxml_bldg, hpxml_header, water_heati unit_multiplier = hpxml_bldg.building_construction.number_of_units solar_fraction = get_water_heater_solar_fraction(water_heating_system, hpxml_bldg) t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_version, unit_multiplier) + plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_versions[0], unit_multiplier) act_vol = calc_storage_tank_actual_vol(water_heating_system.tank_volume, water_heating_system.fuel_type) u, ua, eta_c = disaggregate_tank_losses_and_burner_efficiency(act_vol, water_heating_system, solar_fraction, hpxml_bldg.building_construction.number_of_bedrooms) @@ -99,7 +99,7 @@ def self.apply_tankless(runner, model, spaces, hpxml_bldg, hpxml_header, water_h water_heating_system.heating_capacity = 100000000000.0 * unit_multiplier solar_fraction = get_water_heater_solar_fraction(water_heating_system, hpxml_bldg) t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_version, unit_multiplier) + plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_versions[0], unit_multiplier) act_vol = 1.0 * unit_multiplier _u, ua, eta_c = disaggregate_tank_losses_and_burner_efficiency(act_vol, water_heating_system, solar_fraction, hpxml_bldg.building_construction.number_of_bedrooms) @@ -142,7 +142,7 @@ def self.apply_hpwh(runner, model, spaces, hpxml_bldg, hpxml_header, water_heati obj_name = Constants::ObjectTypeWaterHeater solar_fraction = get_water_heater_solar_fraction(water_heating_system, hpxml_bldg) t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_version, unit_multiplier) + plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_versions[0], unit_multiplier) # Add in schedules for Tamb, RHamb, and the compressor hpwh_tamb = Model.add_schedule_constant( @@ -283,7 +283,7 @@ def self.apply_combi(runner, model, spaces, hpxml_bldg, hpxml_header, water_heat end t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_version, unit_multiplier) + plant_loop = add_plant_loop(model, t_set_c, hpxml_header.eri_calculation_versions[0], unit_multiplier) # Create water heater water_heater = apply_water_heater(runner, model, diff --git a/HPXMLtoOpenStudio/tests/test_battery.rb b/HPXMLtoOpenStudio/tests/test_battery.rb index 549c4e5f21..f80856c8a3 100644 --- a/HPXMLtoOpenStudio/tests/test_battery.rb +++ b/HPXMLtoOpenStudio/tests/test_battery.rb @@ -18,12 +18,24 @@ def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end - def get_battery(model, name) + def get_batteries(model, name) + batteries = [] model.getElectricLoadCenterStorageLiIonNMCBatterys.each do |b| next unless b.name.to_s.start_with? "#{name} " - return b + batteries << b end + return batteries + end + + def get_elcds(model, name) + elcds = [] + model.getElectricLoadCenterDistributions.each do |elcd| + next unless elcd.name.to_s.start_with? "#{name} " + + elcds << elcd + end + return elcds end def calc_nom_capacity(battery) @@ -37,7 +49,9 @@ def test_battery_default model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -51,9 +65,11 @@ def test_battery_default assert_in_epsilon(1.42, battery.batterySurfaceArea, 0.01) assert_in_epsilon(10000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -70,13 +86,12 @@ def test_battery model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(0, batteries.size) - assert_empty(battery) + elcds = get_elcds(model, hpxml_battery.id) + assert_equal(0, elcds.size) end - - elcds = model.getElectricLoadCenterDistributions - assert_equal(0, elcds.size) end def test_battery_scheduled @@ -85,7 +100,9 @@ def test_battery_scheduled model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -99,9 +116,11 @@ def test_battery_scheduled assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, hpxml_battery.id) assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('AlternatingCurrentWithStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -126,7 +145,9 @@ def test_pv_battery model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -140,9 +161,11 @@ def test_pv_battery assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -162,7 +185,9 @@ def test_pv_battery_shared model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -176,9 +201,11 @@ def test_pv_battery_shared assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -198,7 +225,9 @@ def test_pv_battery_scheduled model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -212,9 +241,11 @@ def test_pv_battery_scheduled assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -239,7 +270,9 @@ def test_pv_battery_round_trip_efficiency model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -253,9 +286,11 @@ def test_pv_battery_round_trip_efficiency assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -276,7 +311,9 @@ def test_pv_battery_lifetime_model model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -290,9 +327,11 @@ def test_pv_battery_lifetime_model assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -309,7 +348,9 @@ def test_pv_battery_garage model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(battery.thermalZone.is_initialized) @@ -324,9 +365,11 @@ def test_pv_battery_garage assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) @@ -343,7 +386,9 @@ def test_pv_battery_ah model, _hpxml, hpxml_bldg = _test_measure(args_hash) hpxml_bldg.batteries.each do |hpxml_battery| - battery = get_battery(model, hpxml_battery.id) + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] # Check object assert(!battery.thermalZone.is_initialized) @@ -357,9 +402,11 @@ def test_pv_battery_ah assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) - elcds = model.getElectricLoadCenterDistributions + elcds = get_elcds(model, 'PVSystem') assert_equal(1, elcds.size) elcd = elcds[0] + + # Check object assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index c91ae7eaeb..ec2fd96040 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -479,8 +479,10 @@ def test_occupancy hpxml_bldg.building_occupancy.general_water_use_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_occupancy_values(default_hpxml_bldg, @default_schedules_csv_data[Constants::ObjectTypeOccupants]['WeekdayScheduleFractions'], @default_schedules_csv_data[Constants::ObjectTypeOccupants]['WeekendScheduleFractions'], @default_schedules_csv_data[Constants::ObjectTypeOccupants]['MonthlyScheduleMultipliers'], - @default_schedules_csv_data[SchedulesFile::Columns[:GeneralWaterUse].name]['GeneralWaterUseWeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:GeneralWaterUse].name]['GeneralWaterUseWeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:GeneralWaterUse].name]['GeneralWaterUseMonthlyScheduleMultipliers'], 1.0) + default_occ_sched = @default_schedules_csv_data[SchedulesFile::Columns[:Occupants].name] + default_gwu_sched = @default_schedules_csv_data[SchedulesFile::Columns[:GeneralWaterUse].name] + _test_default_occupancy_values(default_hpxml_bldg, default_occ_sched['WeekdayScheduleFractions'], default_occ_sched['WeekendScheduleFractions'], default_occ_sched['MonthlyScheduleMultipliers'], + default_gwu_sched['GeneralWaterUseWeekdayScheduleFractions'], default_gwu_sched['GeneralWaterUseWeekendScheduleFractions'], default_gwu_sched['GeneralWaterUseMonthlyScheduleMultipliers'], 1.0) end def test_building_construction @@ -1166,6 +1168,27 @@ def test_windows_physical_properties assert_equal(HPXML::WindowGlassTypeLowE, default_hpxml_bldg.windows[0].glass_type) assert_equal(HPXML::WindowGasArgon, default_hpxml_bldg.windows[0].gas_fill) + # Test defaults w/ glass block + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersGlassBlock + hpxml_bldg.windows[0].interior_shading_factor_summer = nil + hpxml_bldg.windows[0].interior_shading_factor_winter = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_nil(default_hpxml_bldg.windows[0].thermal_break) + assert_nil(default_hpxml_bldg.windows[0].glass_type) + assert_nil(default_hpxml_bldg.windows[0].gas_fill) + + # Test defaults w/ glass block and interior shading type + hpxml_bldg.windows[0].interior_shading_type = HPXML::InteriorShadingTypeDarkShades + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_nil(default_hpxml_bldg.windows[0].thermal_break) + assert_nil(default_hpxml_bldg.windows[0].glass_type) + assert_nil(default_hpxml_bldg.windows[0].gas_fill) + # Test U/SHGC lookups [frame_type, thermal_break, glass_layers, glass_type, gas_fill] => [ufactor, shgc] tests = { [HPXML::WindowFrameTypeAluminum, false, HPXML::WindowLayersSinglePane, nil, nil] => [1.27, 0.75], [HPXML::WindowFrameTypeWood, nil, HPXML::WindowLayersSinglePane, HPXML::WindowGlassTypeReflective, nil] => [0.89, 0.64], @@ -1414,6 +1437,27 @@ def test_skylights_physical_properties assert_equal(HPXML::WindowGlassTypeLowE, default_hpxml_bldg.skylights[0].glass_type) assert_equal(HPXML::WindowGasArgon, default_hpxml_bldg.skylights[0].gas_fill) + # Test defaults w/ glass block + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersGlassBlock + hpxml_bldg.skylights[0].interior_shading_factor_summer = nil + hpxml_bldg.skylights[0].interior_shading_factor_winter = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_nil(default_hpxml_bldg.skylights[0].thermal_break) + assert_nil(default_hpxml_bldg.skylights[0].glass_type) + assert_nil(default_hpxml_bldg.skylights[0].gas_fill) + + # Test defaults w/ glass block and interior shading type + hpxml_bldg.skylights[0].interior_shading_type = HPXML::InteriorShadingTypeDarkShades + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_nil(default_hpxml_bldg.skylights[0].thermal_break) + assert_nil(default_hpxml_bldg.skylights[0].glass_type) + assert_nil(default_hpxml_bldg.skylights[0].gas_fill) + # Test U/SHGC lookups [frame_type, thermal_break, glass_layers, glass_type, gas_fill] => [ufactor, shgc] tests = { [HPXML::WindowFrameTypeAluminum, false, HPXML::WindowLayersSinglePane, nil, nil] => [1.98, 0.75], [HPXML::WindowFrameTypeWood, nil, HPXML::WindowLayersSinglePane, HPXML::WindowGlassTypeReflective, nil] => [1.47, 0.64], @@ -3379,7 +3423,9 @@ def test_hot_water_distribution hpxml_bldg.hot_water_distributions[0].recirculation_pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 166.96, 10.0, 50.0, 0.0, @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"]['RecirculationPumpWeekdayScheduleFractions'], @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"]['RecirculationPumpWeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name]['RecirculationPumpMonthlyScheduleMultipliers']) + default_rc_sched = @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name] + default_dr_sched = @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"] + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 166.96, 10.0, 50.0, 0.0, default_dr_sched['RecirculationPumpWeekdayScheduleFractions'], default_dr_sched['RecirculationPumpWeekendScheduleFractions'], default_rc_sched['RecirculationPumpMonthlyScheduleMultipliers']) # Test defaults w/ recirculation & unconditioned basement hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') @@ -3389,7 +3435,7 @@ def test_hot_water_distribution recirculation_control_type: HPXML::DHWRecircControlTypeSensor) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 156.96, 10.0, 50.0, 0.0, @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"]['RecirculationPumpWeekdayScheduleFractions'], @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"]['RecirculationPumpWeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name]['RecirculationPumpMonthlyScheduleMultipliers']) + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 156.96, 10.0, 50.0, 0.0, default_dr_sched['RecirculationPumpWeekdayScheduleFractions'], default_dr_sched['RecirculationPumpWeekendScheduleFractions'], default_rc_sched['RecirculationPumpMonthlyScheduleMultipliers']) # Test defaults w/ recirculation & 2-story building hpxml, hpxml_bldg = _create_hpxml('base-enclosure-2stories.xml') @@ -3399,7 +3445,7 @@ def test_hot_water_distribution recirculation_control_type: HPXML::DHWRecircControlTypeSensor) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 186.96, 10.0, 50.0, 0.0, @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"]['RecirculationPumpWeekdayScheduleFractions'], @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_demand_control"]['RecirculationPumpWeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name]['RecirculationPumpMonthlyScheduleMultipliers']) + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 186.96, 10.0, 50.0, 0.0, default_dr_sched['RecirculationPumpWeekdayScheduleFractions'], default_dr_sched['RecirculationPumpWeekendScheduleFractions'], default_rc_sched['RecirculationPumpMonthlyScheduleMultipliers']) # Test defaults w/ shared recirculation hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-water-heater-recirc.xml') @@ -3409,7 +3455,8 @@ def test_hot_water_distribution hpxml_bldg.hot_water_distributions[0].recirculation_pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_shared_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 220.0, @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_no_control"]['RecirculationPumpWeekdayScheduleFractions'], @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_no_control"]['RecirculationPumpWeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name]['RecirculationPumpMonthlyScheduleMultipliers']) + default_ncr_sched = @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_no_control"] + _test_default_shared_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 220.0, default_ncr_sched['RecirculationPumpWeekdayScheduleFractions'], default_ncr_sched['RecirculationPumpWeekendScheduleFractions'], default_rc_sched['RecirculationPumpMonthlyScheduleMultipliers']) end def test_water_fixtures @@ -3437,7 +3484,8 @@ def test_water_fixtures hpxml_bldg.water_fixtures[1].flow_rate = 2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_water_fixture_values(default_hpxml_bldg, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterFixtures].name]['WaterFixturesWeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterFixtures].name]['WaterFixturesWeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterFixtures].name]['WaterFixturesMonthlyScheduleMultipliers'], true, true) + default_fx_sched = @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterFixtures].name] + _test_default_water_fixture_values(default_hpxml_bldg, 1.0, default_fx_sched['WaterFixturesWeekdayScheduleFractions'], default_fx_sched['WaterFixturesWeekendScheduleFractions'], default_fx_sched['WaterFixturesMonthlyScheduleMultipliers'], true, true) end def test_solar_thermal_systems @@ -3609,6 +3657,160 @@ def test_batteries _test_default_battery_values(default_hpxml_bldg.batteries[0], 10.0, nil, 9.0, nil, 5000.0, HPXML::LocationGarage, nil, 0.925) end + def test_vehicles + # Test inputs not overridden by defaults + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger.xml') + hpxml_bldg.vehicles[0].battery_type = HPXML::BatteryTypeLithiumIon + hpxml_bldg.vehicles[0].nominal_capacity_kwh = 45.0 + hpxml_bldg.vehicles[0].nominal_capacity_ah = nil + hpxml_bldg.vehicles[0].usable_capacity_kwh = 34.0 + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + hpxml_bldg.vehicles[0].miles_per_year = 5000 + hpxml_bldg.vehicles[0].hours_per_week = 10 + hpxml_bldg.vehicles[0].fuel_economy_combined = 0.18 + hpxml_bldg.vehicles[0].fuel_economy_units = HPXML::UnitsKwhPerMile + hpxml_bldg.vehicles[0].fraction_charged_home = 0.75 + hpxml_bldg.vehicles[0].ev_weekday_fractions = ConstantDaySchedule + hpxml_bldg.vehicles[0].ev_weekend_fractions = ConstantDaySchedule + hpxml_bldg.vehicles[0].ev_monthly_multipliers = ConstantMonthSchedule + hpxml_bldg.ev_chargers[0].location = HPXML::LocationOutside + hpxml_bldg.ev_chargers[0].charging_level = 3 + hpxml_bldg.ev_chargers[0].charging_power = 99 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 45.0, nil, 34.0, nil, 5000, 10, 0.18, HPXML::UnitsKwhPerMile, 0.75, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule, 3, 99, HPXML::LocationOutside) + + # Test w/ Ah instead of kWh + hpxml_bldg.vehicles[0].nominal_capacity_kwh = nil + hpxml_bldg.vehicles[0].nominal_capacity_ah = 987.0 + hpxml_bldg.vehicles[0].usable_capacity_kwh = nil + hpxml_bldg.vehicles[0].usable_capacity_ah = 876.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, nil, 987.0, nil, 876.0, 5000, 10, 0.18, HPXML::UnitsKwhPerMile, 0.75, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule, 3, 99, HPXML::LocationOutside) + + # Test w/ mile/kWh + hpxml_bldg.vehicles[0].fuel_economy_combined = 5.55 + hpxml_bldg.vehicles[0].fuel_economy_units = HPXML::UnitsMilePerKwh + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, nil, 987.0, nil, 876.0, 5000, 10, 5.55, HPXML::UnitsMilePerKwh, 0.75, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule, 3, 99, HPXML::LocationOutside) + + # FIXME: Test w/ mpge + hpxml_bldg.vehicles[0].fuel_economy_combined = 107.0 + hpxml_bldg.vehicles[0].fuel_economy_units = HPXML::UnitsMPGe + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, nil, 987.0, nil, 876.0, 5000, 10, 107, HPXML::UnitsMPGe, 0.75, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule, 3, 99, HPXML::LocationOutside) + + # Test defaults + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger.xml') + hpxml_bldg.vehicles[0].nominal_capacity_kwh = nil + hpxml_bldg.vehicles[0].nominal_capacity_ah = nil + hpxml_bldg.vehicles[0].usable_capacity_kwh = nil + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + hpxml_bldg.vehicles[0].miles_per_year = nil + hpxml_bldg.vehicles[0].hours_per_week = nil + hpxml_bldg.vehicles[0].fuel_economy_combined = nil + hpxml_bldg.vehicles[0].fuel_economy_units = nil + hpxml_bldg.vehicles[0].fraction_charged_home = nil + hpxml_bldg.vehicles[0].ev_weekday_fractions = nil + hpxml_bldg.vehicles[0].ev_weekend_fractions = nil + hpxml_bldg.vehicles[0].ev_monthly_multipliers = nil + hpxml_bldg.ev_chargers[0].location = nil + hpxml_bldg.ev_chargers[0].charging_level = nil + hpxml_bldg.ev_chargers[0].charging_power = nil + default_ev_sch = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name] + + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 63.0, nil, 50.4, nil, 10900, 8.88, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ nominal kWh + hpxml_bldg.vehicles[0].nominal_capacity_kwh = 45.0 + hpxml_bldg.vehicles[0].nominal_capacity_ah = nil + hpxml_bldg.vehicles[0].usable_capacity_kwh = nil + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 45.0, nil, 36.0, nil, 10900, 8.88, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ usable kWh + hpxml_bldg.vehicles[0].nominal_capacity_kwh = nil + hpxml_bldg.vehicles[0].nominal_capacity_ah = nil + hpxml_bldg.vehicles[0].usable_capacity_kwh = 36.0 + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 45.0, nil, 36.0, nil, 10900, 8.88, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ nominal Ah + hpxml_bldg.vehicles[0].nominal_capacity_kwh = nil + hpxml_bldg.vehicles[0].nominal_capacity_ah = 280.0 + hpxml_bldg.vehicles[0].usable_capacity_kwh = nil + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, nil, 280.0, nil, 224.0, 10900, 8.88, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ usable Ah + hpxml_bldg.vehicles[0].nominal_capacity_kwh = nil + hpxml_bldg.vehicles[0].nominal_capacity_ah = nil + hpxml_bldg.vehicles[0].usable_capacity_kwh = nil + hpxml_bldg.vehicles[0].usable_capacity_ah = 224.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, nil, 280.0, nil, 224.0, 10900, 8.88, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ miles/year + hpxml_bldg.vehicles[0].miles_per_year = 5000 + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 63.0, nil, 50.4, nil, 5000, 4.07, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ hours/week + hpxml_bldg.vehicles[0].miles_per_year = nil + hpxml_bldg.vehicles[0].hours_per_week = 5.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 63.0, nil, 50.4, nil, 6137.4, 5.0, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 2, 5690, HPXML::LocationGarage) + + # Test defaults w/ Level 1 charger + hpxml_bldg.ev_chargers[0].charging_level = 1 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 63.0, nil, 50.4, nil, 6137.4, 5.0, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], 1, 1600, HPXML::LocationGarage) + + # Test defaults w/ charging power + hpxml_bldg.ev_chargers[0].charging_level = nil + hpxml_bldg.ev_chargers[0].charging_power = 3500 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 63.0, nil, 50.4, nil, 6137.4, 5.0, 0.22, HPXML::UnitsKwhPerMile, 0.8, default_ev_sch['WeekdayScheduleFractions'], default_ev_sch['WeekendScheduleFractions'], default_ev_sch['MonthlyScheduleMultipliers'], nil, 3500, HPXML::LocationGarage) + + # Test defaults w/ schedule file + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger-scheduled.xml') + hpxml_bldg.vehicles[0].nominal_capacity_kwh = nil + hpxml_bldg.vehicles[0].nominal_capacity_ah = nil + hpxml_bldg.vehicles[0].usable_capacity_kwh = nil + hpxml_bldg.vehicles[0].usable_capacity_ah = nil + hpxml_bldg.vehicles[0].miles_per_year = nil + hpxml_bldg.vehicles[0].hours_per_week = nil + hpxml_bldg.vehicles[0].fuel_economy_combined = nil + hpxml_bldg.vehicles[0].fuel_economy_units = nil + hpxml_bldg.vehicles[0].fraction_charged_home = nil + hpxml_bldg.vehicles[0].ev_weekday_fractions = nil + hpxml_bldg.vehicles[0].ev_weekend_fractions = nil + hpxml_bldg.vehicles[0].ev_monthly_multipliers = nil + hpxml_bldg.ev_chargers[0].location = nil + hpxml_bldg.ev_chargers[0].charging_level = nil + hpxml_bldg.ev_chargers[0].charging_power = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_vehicle_values(default_hpxml_bldg.vehicles[0], default_hpxml_bldg.ev_chargers[0], HPXML::BatteryTypeLithiumIon, 63.0, nil, 50.4, nil, 10900, 8.88, 0.22, HPXML::UnitsKwhPerMile, 0.8, nil, nil, nil, 2, 5690, HPXML::LocationGarage) + end + def test_generators # Test inputs not overridden by defaults hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -3662,11 +3864,12 @@ def test_clothes_washers hpxml_bldg.clothes_washers[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], false, HPXML::LocationConditionedSpace, 1.0, 400.0, 0.12, 1.09, 27.0, 3.0, 6.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['MonthlyScheduleMultipliers']) + default_cw_sched = @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name] + _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], false, HPXML::LocationConditionedSpace, 1.0, 400.0, 0.12, 1.09, 27.0, 3.0, 6.0, 1.0, default_cw_sched['WeekdayScheduleFractions'], default_cw_sched['WeekendScheduleFractions'], default_cw_sched['MonthlyScheduleMultipliers']) # Test defaults before 301-2019 Addendum A hpxml, hpxml_bldg = _create_hpxml('base.xml') - hpxml.header.eri_calculation_version = '2019' + hpxml.header.eri_calculation_versions = ['2019'] hpxml_bldg.clothes_washers[0].is_shared_appliance = nil hpxml_bldg.clothes_washers[0].location = nil hpxml_bldg.clothes_washers[0].integrated_modified_energy_factor = nil @@ -3682,7 +3885,7 @@ def test_clothes_washers hpxml_bldg.clothes_washers[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], false, HPXML::LocationConditionedSpace, 0.331, 704.0, 0.08, 0.58, 23.0, 2.874, 999, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['MonthlyScheduleMultipliers']) + _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], false, HPXML::LocationConditionedSpace, 0.331, 704.0, 0.08, 0.58, 23.0, 2.874, 999, 1.0, default_cw_sched['WeekdayScheduleFractions'], default_cw_sched['WeekendScheduleFractions'], default_cw_sched['MonthlyScheduleMultipliers']) end def test_clothes_dryers @@ -3711,26 +3914,27 @@ def test_clothes_dryers hpxml_bldg.clothes_dryers[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 3.01, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['MonthlyScheduleMultipliers']) + default_cd_sched = @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name] + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 3.01, 1.0, default_cd_sched['WeekdayScheduleFractions'], default_cd_sched['WeekendScheduleFractions'], default_cd_sched['MonthlyScheduleMultipliers']) # Test defaults w/ gas clothes dryer hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 3.01, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['MonthlyScheduleMultipliers']) + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 3.01, 1.0, default_cd_sched['WeekdayScheduleFractions'], default_cd_sched['WeekendScheduleFractions'], default_cd_sched['MonthlyScheduleMultipliers']) # Test defaults w/ electric clothes dryer before 301-2019 Addendum A - hpxml.header.eri_calculation_version = '2019' + hpxml.header.eri_calculation_versions = ['2019'] hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeElectricity XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 2.62, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['MonthlyScheduleMultipliers']) + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 2.62, 1.0, default_cd_sched['WeekdayScheduleFractions'], default_cd_sched['WeekendScheduleFractions'], default_cd_sched['MonthlyScheduleMultipliers']) # Test defaults w/ gas clothes dryer before 301-2019 Addendum A hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 2.32, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['MonthlyScheduleMultipliers']) + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 2.32, 1.0, default_cd_sched['WeekdayScheduleFractions'], default_cd_sched['WeekendScheduleFractions'], default_cd_sched['MonthlyScheduleMultipliers']) end def test_clothes_dryer_exhaust @@ -3789,13 +3993,14 @@ def test_dishwashers hpxml_bldg.dishwashers[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], false, HPXML::LocationConditionedSpace, 467.0, 0.12, 1.09, 33.12, 4.0, 12, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['MonthlyScheduleMultipliers']) + default_dw_sched = @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name] + _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], false, HPXML::LocationConditionedSpace, 467.0, 0.12, 1.09, 33.12, 4.0, 12, 1.0, default_dw_sched['WeekdayScheduleFractions'], default_dw_sched['WeekendScheduleFractions'], default_dw_sched['MonthlyScheduleMultipliers']) # Test defaults before 301-2019 Addendum A - hpxml.header.eri_calculation_version = '2019' + hpxml.header.eri_calculation_versions = ['2019'] XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], false, HPXML::LocationConditionedSpace, 467.0, 999, 999, 999, 999, 12, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['MonthlyScheduleMultipliers']) + _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], false, HPXML::LocationConditionedSpace, 467.0, 999, 999, 999, 999, 12, 1.0, default_dw_sched['WeekdayScheduleFractions'], default_dw_sched['WeekendScheduleFractions'], default_dw_sched['MonthlyScheduleMultipliers']) end def test_refrigerators @@ -3836,7 +4041,8 @@ def test_refrigerators hpxml_bldg.refrigerators[0].temperature_coefficients = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['WeekdayScheduleFractions'], ConstantDaySchedule, @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['MonthlyScheduleMultipliers'], nil, nil) + default_rf_sched = @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name] + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, default_rf_sched['WeekdayScheduleFractions'], ConstantDaySchedule, default_rf_sched['MonthlyScheduleMultipliers'], nil, nil) # Test defaults 2 hpxml_bldg.refrigerators[0].location = nil @@ -3849,20 +4055,20 @@ def test_refrigerators hpxml_bldg.refrigerators[0].temperature_coefficients = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, nil, nil, nil, @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['ConstantScheduleCoefficients'], @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['TemperatureScheduleCoefficients']) + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, nil, nil, nil, default_rf_sched['ConstantScheduleCoefficients'], default_rf_sched['TemperatureScheduleCoefficients']) # Test defaults w/ refrigerator in 5-bedroom house hpxml_bldg.building_construction.number_of_bedrooms = 5 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 727.0, 1.0, nil, nil, nil, @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['ConstantScheduleCoefficients'], @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['TemperatureScheduleCoefficients']) + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 727.0, 1.0, nil, nil, nil, default_rf_sched['ConstantScheduleCoefficients'], default_rf_sched['TemperatureScheduleCoefficients']) # Test defaults before 301-2019 Addendum A - hpxml.header.eri_calculation_version = '2019' + hpxml.header.eri_calculation_versions = ['2019'] hpxml_bldg.building_construction.number_of_bedrooms = 3 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, nil, nil, nil, @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['ConstantScheduleCoefficients'], @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['TemperatureScheduleCoefficients']) + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, nil, nil, nil, default_rf_sched['ConstantScheduleCoefficients'], default_rf_sched['TemperatureScheduleCoefficients']) end def test_extra_refrigerators @@ -3911,7 +4117,8 @@ def test_extra_refrigerators end XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_extra_refrigerators_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 244.0, 1.0, nil, nil, nil, @default_schedules_csv_data[SchedulesFile::Columns[:ExtraRefrigerator].name]['ConstantScheduleCoefficients'], @default_schedules_csv_data[SchedulesFile::Columns[:ExtraRefrigerator].name]['TemperatureScheduleCoefficients']) + default_ef_sched = @default_schedules_csv_data[SchedulesFile::Columns[:ExtraRefrigerator].name] + _test_default_extra_refrigerators_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 244.0, 1.0, nil, nil, nil, default_ef_sched['ConstantScheduleCoefficients'], default_ef_sched['TemperatureScheduleCoefficients']) end def test_freezers @@ -3960,7 +4167,8 @@ def test_freezers end XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_freezers_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 320.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:Freezer].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:Freezer].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:Freezer].name]['MonthlyScheduleMultipliers'], nil, nil) + default_fz_sched = @default_schedules_csv_data[SchedulesFile::Columns[:Freezer].name] + _test_default_freezers_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 320.0, 1.0, default_fz_sched['WeekdayScheduleFractions'], default_fz_sched['WeekendScheduleFractions'], default_fz_sched['MonthlyScheduleMultipliers'], nil, nil) end def test_cooking_ranges @@ -3985,13 +4193,14 @@ def test_cooking_ranges hpxml_bldg.cooking_ranges[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationConditionedSpace, false, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['MonthlyScheduleMultipliers']) + defult_cr_sched = @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name] + _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationConditionedSpace, false, 1.0, defult_cr_sched['WeekdayScheduleFractions'], defult_cr_sched['WeekendScheduleFractions'], defult_cr_sched['MonthlyScheduleMultipliers']) # Test defaults before 301-2019 Addendum A - hpxml.header.eri_calculation_version = '2019' + hpxml.header.eri_calculation_versions = ['2019'] XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationConditionedSpace, false, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['MonthlyScheduleMultipliers']) + _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationConditionedSpace, false, 1.0, defult_cr_sched['WeekdayScheduleFractions'], defult_cr_sched['WeekendScheduleFractions'], defult_cr_sched['MonthlyScheduleMultipliers']) end def test_ovens @@ -4009,7 +4218,7 @@ def test_ovens _test_default_oven_values(default_hpxml_bldg.ovens[0], false) # Test defaults before 301-2019 Addendum A - hpxml.header.eri_calculation_version = '2019' + hpxml.header.eri_calculation_versions = ['2019'] XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_oven_values(default_hpxml_bldg.ovens[0], false) @@ -4074,13 +4283,15 @@ def test_lighting hpxml_bldg.lighting.holiday_exists = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() + default_il_sched = @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name] + default_el_sched = @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name] _test_default_lighting_values(default_hpxml_bldg, 1.0, 1.0, 1.0, - { int_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorWeekdayScheduleFractions'], - int_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorWeekendScheduleFractions'], - int_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers'], - ext_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorWeekdayScheduleFractions'], - ext_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorWeekdayScheduleFractions'], - ext_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorMonthlyScheduleMultipliers'] }) + { int_wk_sch: default_il_sched['InteriorWeekdayScheduleFractions'], + int_wknd_sch: default_il_sched['InteriorWeekendScheduleFractions'], + int_month_mult: default_il_sched['InteriorMonthlyScheduleMultipliers'], + ext_wk_sch: default_el_sched['ExteriorWeekdayScheduleFractions'], + ext_wknd_sch: default_el_sched['ExteriorWeekdayScheduleFractions'], + ext_month_mult: default_el_sched['ExteriorMonthlyScheduleMultipliers'] }) # Test defaults w/ holiday lighting hpxml_bldg.lighting.holiday_exists = true @@ -4093,20 +4304,21 @@ def test_lighting hpxml_bldg.lighting.holiday_weekend_fractions = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() + default_hl_sched = @default_schedules_csv_data[SchedulesFile::Columns[:LightingExteriorHoliday].name] _test_default_lighting_values(default_hpxml_bldg, 1.0, 1.0, 1.0, - { int_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorWeekdayScheduleFractions'], - int_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorWeekendScheduleFractions'], - int_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers'], - ext_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorWeekdayScheduleFractions'], - ext_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorWeekdayScheduleFractions'], - ext_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorMonthlyScheduleMultipliers'], + { int_wk_sch: default_il_sched['InteriorWeekdayScheduleFractions'], + int_wknd_sch: default_il_sched['InteriorWeekendScheduleFractions'], + int_month_mult: default_il_sched['InteriorMonthlyScheduleMultipliers'], + ext_wk_sch: default_el_sched['ExteriorWeekdayScheduleFractions'], + ext_wknd_sch: default_el_sched['ExteriorWeekdayScheduleFractions'], + ext_month_mult: default_el_sched['ExteriorMonthlyScheduleMultipliers'], hol_kwh_per_day: 1.1, hol_begin_month: 11, hol_begin_day: 24, hol_end_month: 1, hol_end_day: 6, - hol_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExteriorHoliday].name]['WeekdayScheduleFractions'], - hol_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExteriorHoliday].name]['WeekendScheduleFractions'] }) + hol_wk_sch: default_hl_sched['WeekdayScheduleFractions'], + hol_wknd_sch: default_hl_sched['WeekendScheduleFractions'] }) # Test defaults w/ garage hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') hpxml_bldg.lighting.interior_usage_multiplier = nil @@ -4114,16 +4326,17 @@ def test_lighting hpxml_bldg.lighting.exterior_usage_multiplier = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() + default_gl_sched = @default_schedules_csv_data[SchedulesFile::Columns[:LightingGarage].name] _test_default_lighting_values(default_hpxml_bldg, 1.0, 1.0, 1.0, - { int_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorWeekdayScheduleFractions'], - int_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorWeekendScheduleFractions'], - int_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers'], - ext_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorWeekdayScheduleFractions'], - ext_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorWeekdayScheduleFractions'], - ext_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingExterior].name]['ExteriorMonthlyScheduleMultipliers'], - grg_wk_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingGarage].name]['GarageWeekdayScheduleFractions'], - grg_wknd_sch: @default_schedules_csv_data[SchedulesFile::Columns[:LightingGarage].name]['GarageWeekendScheduleFractions'], - grg_month_mult: @default_schedules_csv_data[SchedulesFile::Columns[:LightingGarage].name]['GarageMonthlyScheduleMultipliers'] }) + { int_wk_sch: default_il_sched['InteriorWeekdayScheduleFractions'], + int_wknd_sch: default_il_sched['InteriorWeekendScheduleFractions'], + int_month_mult: default_il_sched['InteriorMonthlyScheduleMultipliers'], + ext_wk_sch: default_el_sched['ExteriorWeekdayScheduleFractions'], + ext_wknd_sch: default_el_sched['ExteriorWeekdayScheduleFractions'], + ext_month_mult: default_el_sched['ExteriorMonthlyScheduleMultipliers'], + grg_wk_sch: default_gl_sched['GarageWeekdayScheduleFractions'], + grg_wknd_sch: default_gl_sched['GarageWeekendScheduleFractions'], + grg_month_mult: default_gl_sched['GarageMonthlyScheduleMultipliers'] }) end def test_ceiling_fans @@ -4163,7 +4376,8 @@ def test_ceiling_fans end XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_ceiling_fan_values(default_hpxml_bldg.ceiling_fans[0], 4, nil, 42.6, @default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name]['WeekendScheduleFractions'], '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0') + default_cf_sched = @default_schedules_csv_data[SchedulesFile::Columns[:CeilingFan].name] + _test_default_ceiling_fan_values(default_hpxml_bldg.ceiling_fans[0], 4, nil, 42.6, default_cf_sched['WeekdayScheduleFractions'], default_cf_sched['WeekendScheduleFractions'], '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0') end def test_pools @@ -4201,8 +4415,10 @@ def test_pools pool.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_pool_heater_values(default_hpxml_bldg.pools[0], HPXML::UnitsThermPerYear, 236, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PoolHeater].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PoolHeater].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PoolHeater].name]['MonthlyScheduleMultipliers']) - _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 2496, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name]['MonthlyScheduleMultipliers']) + default_ph_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PoolHeater].name] + default_pp_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name] + _test_default_pool_heater_values(default_hpxml_bldg.pools[0], HPXML::UnitsThermPerYear, 236, 1.0, default_ph_sched['WeekdayScheduleFractions'], default_ph_sched['WeekendScheduleFractions'], default_ph_sched['MonthlyScheduleMultipliers']) + _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 2496, 1.0, default_pp_sched['WeekdayScheduleFractions'], default_pp_sched['WeekendScheduleFractions'], default_pp_sched['MonthlyScheduleMultipliers']) # Test defaults 2 hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon2.xml') @@ -4221,7 +4437,7 @@ def test_pools XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_pool_heater_values(default_hpxml_bldg.pools[0], nil, nil, nil, nil, nil, nil) - _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 2496, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PoolPump].name]['MonthlyScheduleMultipliers']) + _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 2496, 1.0, default_pp_sched['WeekdayScheduleFractions'], default_pp_sched['WeekendScheduleFractions'], default_pp_sched['MonthlyScheduleMultipliers']) end def test_permanent_spas @@ -4259,8 +4475,10 @@ def test_permanent_spas spa.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsKwhPerYear, 1125, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name]['MonthlyScheduleMultipliers']) - _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 1111, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name]['MonthlyScheduleMultipliers']) + default_sh_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name] + default_sp_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name] + _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsKwhPerYear, 1125, 1.0, default_sh_sched['WeekdayScheduleFractions'], default_sh_sched['WeekendScheduleFractions'], default_sh_sched['MonthlyScheduleMultipliers']) + _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 1111, 1.0, default_sp_sched['WeekdayScheduleFractions'], default_sp_sched['WeekendScheduleFractions'], default_sp_sched['MonthlyScheduleMultipliers']) # Test defaults 2 hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon2.xml') @@ -4278,8 +4496,8 @@ def test_permanent_spas spa.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsKwhPerYear, 225, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaHeater].name]['MonthlyScheduleMultipliers']) - _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 1111, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PermanentSpaPump].name]['MonthlyScheduleMultipliers']) + _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsKwhPerYear, 225, 1.0, default_sh_sched['WeekdayScheduleFractions'], default_sh_sched['WeekendScheduleFractions'], default_sh_sched['MonthlyScheduleMultipliers']) + _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 1111, 1.0, default_sp_sched['WeekdayScheduleFractions'], default_sp_sched['WeekendScheduleFractions'], default_sp_sched['MonthlyScheduleMultipliers']) end def test_plug_loads @@ -4336,10 +4554,14 @@ def test_plug_loads end XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeTelevision, 620, 1.0, 0.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['MonthlyScheduleMultipliers']) - _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeOther, 2457, 0.855, 0.045, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['MonthlyScheduleMultipliers']) - _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeElectricVehicleCharging, 1667, 0.0, 0.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsVehicle].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsVehicle].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsVehicle].name]['MonthlyScheduleMultipliers']) - _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeWellPump, 441, 0.0, 0.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsWellPump].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsWellPump].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsWellPump].name]['MonthlyScheduleMultipliers']) + default_tv_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name] + default_ot_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name] + default_ev_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsVehicle].name] + default_wp_sched = @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsWellPump].name] + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeTelevision, 620, 1.0, 0.0, 1.0, default_tv_sched['WeekdayScheduleFractions'], default_tv_sched['WeekendScheduleFractions'], default_tv_sched['MonthlyScheduleMultipliers']) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeOther, 2457, 0.855, 0.045, 1.0, default_ot_sched['WeekdayScheduleFractions'], default_ot_sched['WeekendScheduleFractions'], default_ot_sched['MonthlyScheduleMultipliers']) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeElectricVehicleCharging, 2368.4, 0.0, 0.0, 1.0, default_ev_sched['WeekdayScheduleFractions'], default_ev_sched['WeekendScheduleFractions'], default_ev_sched['MonthlyScheduleMultipliers']) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeWellPump, 441, 0.0, 0.0, 1.0, default_wp_sched['WeekdayScheduleFractions'], default_wp_sched['WeekendScheduleFractions'], default_wp_sched['MonthlyScheduleMultipliers']) end def test_fuel_loads @@ -4387,9 +4609,12 @@ def test_fuel_loads end XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeGrill, 33, 0.0, 0.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsGrill].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsGrill].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsGrill].name]['MonthlyScheduleMultipliers']) - _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeLighting, 20, 0.0, 0.0, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsLighting].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsLighting].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsLighting].name]['MonthlyScheduleMultipliers']) - _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeFireplace, 67, 0.5, 0.1, 1.0, @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsFireplace].name]['WeekdayScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsFireplace].name]['WeekendScheduleFractions'], @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsFireplace].name]['MonthlyScheduleMultipliers']) + default_gr_sched = @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsGrill].name] + default_li_sched = @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsLighting].name] + default_fp_sched = @default_schedules_csv_data[SchedulesFile::Columns[:FuelLoadsFireplace].name] + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeGrill, 33, 0.0, 0.0, 1.0, default_gr_sched['WeekdayScheduleFractions'], default_gr_sched['WeekendScheduleFractions'], default_gr_sched['MonthlyScheduleMultipliers']) + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeLighting, 20, 0.0, 0.0, 1.0, default_li_sched['WeekdayScheduleFractions'], default_li_sched['WeekendScheduleFractions'], default_li_sched['MonthlyScheduleMultipliers']) + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeFireplace, 67, 0.5, 0.1, 1.0, default_fp_sched['WeekdayScheduleFractions'], default_fp_sched['WeekendScheduleFractions'], default_fp_sched['MonthlyScheduleMultipliers']) end def _test_measure() @@ -5705,6 +5930,60 @@ def _test_default_battery_values(battery, nominal_capacity_kwh, nominal_capacity assert_equal(round_trip_efficiency, battery.round_trip_efficiency) end + def _test_default_vehicle_values(vehicle, ev_charger, battery_type, nominal_capacity_kwh, nominal_capacity_ah, usable_capacity_kwh, + usable_capacity_ah, miles_per_year, hours_per_week, fuel_economy_combined, fuel_economy_units, + fraction_charged_home, weekday_sch, weekend_sch, usage_multiplier, charging_level, charger_power, + location) + assert_equal(battery_type, HPXML::BatteryTypeLithiumIon) + if nominal_capacity_kwh.nil? + assert_nil(vehicle.nominal_capacity_kwh) + else + assert_equal(nominal_capacity_kwh, vehicle.nominal_capacity_kwh) + end + if nominal_capacity_ah.nil? + assert_nil(vehicle.nominal_capacity_ah) + else + assert_equal(nominal_capacity_ah, vehicle.nominal_capacity_ah) + end + if usable_capacity_kwh.nil? + assert_nil(vehicle.usable_capacity_kwh) + else + assert_equal(usable_capacity_kwh, vehicle.usable_capacity_kwh) + end + if usable_capacity_ah.nil? + assert_nil(vehicle.usable_capacity_ah) + else + assert_equal(usable_capacity_ah, vehicle.usable_capacity_ah) + end + assert_in_epsilon(miles_per_year, vehicle.miles_per_year, 0.01) + assert_in_epsilon(hours_per_week, vehicle.hours_per_week, 0.01) + assert_equal(fuel_economy_combined, vehicle.fuel_economy_combined, 0.01) + assert_equal(fuel_economy_units, vehicle.fuel_economy_units) + assert_equal(fraction_charged_home, vehicle.fraction_charged_home) + if weekday_sch.nil? + assert_nil(vehicle.ev_weekday_fractions) + else + assert_equal(weekday_sch, vehicle.ev_weekday_fractions) + end + if weekend_sch.nil? + assert_nil(vehicle.ev_weekend_fractions) + else + assert_equal(weekend_sch, vehicle.ev_weekend_fractions) + end + if usage_multiplier.nil? + assert_nil(vehicle.ev_monthly_multipliers) + else + assert_equal(usage_multiplier, vehicle.ev_monthly_multipliers) + end + if charging_level.nil? + assert_nil(ev_charger.charging_level) + else + assert_equal(charging_level, ev_charger.charging_level) + end + assert_equal(charger_power, ev_charger.charging_power) + assert_equal(location, ev_charger.location) + end + def _test_default_generator_values(hpxml_bldg, is_shared_system) hpxml_bldg.generators.each do |generator| assert_equal(is_shared_system, generator.is_shared_system) diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index d078a3cc61..10c2d4b8db 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -697,10 +697,10 @@ def test_air_to_air_heat_pump_var_speed_detailed_performance assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] assert_equal(2, clg_coil.stages.size) - [4.51, 2.88].each_with_index do |cop, i| + [4.51, 2.80].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - [3435, 10726].each_with_index do |clg_capacity, i| + [3494, 10721].each_with_index do |clg_capacity, i| assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) end @@ -708,10 +708,10 @@ def test_air_to_air_heat_pump_var_speed_detailed_performance assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] assert_equal(2, htg_coil.stages.size) - [4.75, 3.59].each_with_index do |cop, i| + [4.70, 3.54].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - [2927, 10376].each_with_index do |htg_capacity, i| + [2898, 10324].each_with_index do |htg_capacity, i| assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) end @@ -965,10 +965,10 @@ def test_mini_split_heat_pump_detailed_performance assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] assert_equal(2, clg_coil.stages.size) - [4.06, 3.33].each_with_index do |cop, i| + [3.77, 2.49].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - [3041, 12557].each_with_index do |clg_capacity, i| + [2668, 10720].each_with_index do |clg_capacity, i| assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) end @@ -976,10 +976,10 @@ def test_mini_split_heat_pump_detailed_performance assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] assert_equal(2, htg_coil.stages.size) - [4.82, 3.23].each_with_index do |cop, i| + [3.48, 2.79].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - [3557, 16426].each_with_index do |htg_capacity, i| + [3339, 13519].each_with_index do |htg_capacity, i| assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) end diff --git a/HPXMLtoOpenStudio/tests/test_miscloads.rb b/HPXMLtoOpenStudio/tests/test_miscloads.rb index 65fd7d012b..9c74ab2f72 100644 --- a/HPXMLtoOpenStudio/tests/test_miscloads.rb +++ b/HPXMLtoOpenStudio/tests/test_miscloads.rb @@ -366,7 +366,7 @@ def test_operational_large_uncommon_loads # Check vehicle kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants::ObjectTypeMiscElectricVehicleCharging) - assert_in_delta(1667, kwh_yr, 1.0) + assert_in_delta(2368, kwh_yr, 1.0) assert_equal(0, therm_yr) # Check well pump @@ -427,7 +427,7 @@ def test_operational_large_uncommon_loads2 # Check vehicle kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants::ObjectTypeMiscElectricVehicleCharging) - assert_in_delta(1667, kwh_yr, 1.0) + assert_in_delta(2368, kwh_yr, 1.0) assert_equal(0, therm_yr) # Check well pump diff --git a/HPXMLtoOpenStudio/tests/test_schedules.rb b/HPXMLtoOpenStudio/tests/test_schedules.rb index b8314a470b..7e9859d472 100644 --- a/HPXMLtoOpenStudio/tests/test_schedules.rb +++ b/HPXMLtoOpenStudio/tests/test_schedules.rb @@ -6,7 +6,6 @@ require 'fileutils' require_relative '../measure.rb' require_relative '../resources/util.rb' - class HPXMLtoOpenStudioSchedulesTest < Minitest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @@ -87,7 +86,7 @@ def test_simple_schedules model, _hpxml, _hpxml_bldg = _test_measure(args_hash) schedule_constants = 11 - schedule_rulesets = 19 + schedule_rulesets = 21 schedule_fixed_intervals = 1 schedule_files = 0 @@ -111,6 +110,8 @@ def test_simple_schedules assert_in_epsilon(4244, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeHotWaterRecircPump + ' schedule'), @tol) assert_in_epsilon(5000, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeGeneralWaterUse + ' schedule'), @tol) assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) + assert_in_epsilon(5110.0, get_annual_equivalent_full_load_hrs(model, 'Vehicle1 charging schedule'), @tol) + assert_in_epsilon(1032.46, get_annual_equivalent_full_load_hrs(model, 'Vehicle1 discharging schedule'), @tol) end def test_simple_vacancy_schedules @@ -187,6 +188,38 @@ def test_simple_power_outage_schedules assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) end + def test_simple_power_outage_schedules_overnight + args_hash = {} + hpxml_path = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-power-outage.xml')) + hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml.header.unavailable_periods[0].begin_month = 12 + hpxml.header.unavailable_periods[0].begin_day = 14 + hpxml.header.unavailable_periods[0].begin_hour = 20 + hpxml.header.unavailable_periods[0].end_month = 12 + hpxml.header.unavailable_periods[0].end_day = 15 + hpxml.header.unavailable_periods[0].end_hour = 6 + XMLHelper.write_file(hpxml.to_doc(), @tmp_hpxml_path) + args_hash['hpxml_path'] = @tmp_hpxml_path + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) + + unavailable_month_hrs = { 11 => 10.0 } + + assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeOccupants + ' schedule'), @tol) + assert_in_epsilon(3049 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingInterior + ' schedule'), @tol) + assert_in_epsilon(2895 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:Refrigerator].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeRefrigerator + ' schedule'), @tol) + assert_in_epsilon(2441 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:CookingRange].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeCookingRange + ' schedule'), @tol) + assert_in_epsilon(3285 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:Dishwasher].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeDishwasher + ' schedule'), @tol) + assert_in_epsilon(4248 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesWasher].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeClothesWasher + ' schedule'), @tol) + assert_in_epsilon(4502 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:ClothesDryer].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeClothesDryer + ' schedule'), @tol) + assert_in_epsilon(6880 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsOther].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMiscPlugLoads + ' schedule'), @tol) + assert_in_epsilon(3373 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:PlugLoadsTV].name]['MonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMiscTelevision + ' schedule'), @tol) + assert_in_epsilon(4204 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterFixtures].name]['WaterFixturesMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeFixtures + ' schedule'), @tol) + assert_in_epsilon(4244 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name]['RecirculationPumpMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeHotWaterRecircPump + ' schedule'), @tol) + assert_in_epsilon(5000, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeGeneralWaterUse + ' schedule'), @tol) + assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) + end + def test_stochastic_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic.xml')) @@ -214,36 +247,40 @@ def test_stochastic_schedules assert(schedule_file_names.include?(SchedulesFile::Columns[:LightingInterior].name)) assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) assert(!schedule_file_names.include?(SchedulesFile::Columns[:LightingGarage].name)) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:LightingGarage].name)) assert(!schedule_file_names.include?(SchedulesFile::Columns[:LightingExterior].name)) - assert_in_epsilon(4342, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule'), @tol) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:LightingExterior].name)) assert(!schedule_file_names.include?(SchedulesFile::Columns[:LightingExteriorHoliday].name)) assert(!schedule_file_names.include?(SchedulesFile::Columns[:Refrigerator].name)) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:LightingExteriorHoliday].name)) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:Refrigerator].name)) assert(schedule_file_names.include?(SchedulesFile::Columns[:CookingRange].name)) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(300.9, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:Dishwasher].name)) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(161.4, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:ClothesWasher].name)) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(67.6, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:ClothesDryer].name)) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(113.9, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) assert(!schedule_file_names.include?(SchedulesFile::Columns[:CeilingFan].name)) - assert_in_epsilon(3016, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:CeilingFan].name)) assert(schedule_file_names.include?(SchedulesFile::Columns[:PlugLoadsOther].name)) assert_in_epsilon(5388, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:PlugLoadsTV].name)) assert_in_epsilon(1517, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:HotWaterDishwasher].name)) - assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(287.3, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:HotWaterClothesWasher].name)) - assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(322.6, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::Columns[:HotWaterFixtures].name)) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(981.1, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) assert(!schedule_file_names.include?(SchedulesFile::Columns[:GeneralWaterUse].name)) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:GeneralWaterUse].name)) assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!schedule_file_names.include?(SchedulesFile::Columns[:Sleeping].name)) assert(!schedule_file_names.include?('Vacancy')) assert(!schedule_file_names.include?('Power Outage')) + assert(!sf.tmp_schedules.key?(SchedulesFile::Columns[:Sleeping].name)) end def test_stochastic_vacancy_schedules @@ -269,18 +306,16 @@ def test_stochastic_vacancy_schedules assert_in_epsilon(6689 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(4342 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule'), @tol) - assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(300.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(161.4 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(67.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(113.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(5388 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(1517 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(287.3 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(322.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(981.1 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) @@ -327,18 +362,16 @@ def test_stochastic_vacancy_schedules2 assert_in_epsilon(6689 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(4342 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule'), @tol) - assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(300.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(161.4 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(67.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(113.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(5388 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(1517 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(287.3 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(322.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(981.1 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) @@ -371,13 +404,11 @@ def test_stochastic_vacancy_year_round_schedules assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules)) - assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules)) assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule')) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules)) - assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules)) assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules)) @@ -411,18 +442,16 @@ def test_stochastic_power_outage_schedules assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(4342 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule'), @tol) - assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(300.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(161.4 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(67.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(113.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(5388 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(1517 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(287.3 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(322.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(981.1 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) @@ -471,18 +500,16 @@ def test_stochastic_power_outage_schedules2 assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Occupants].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingInterior].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:LightingGarage].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(4342 * get_available_hrs_ratio(unavailable_month_hrs, @default_schedules_csv_data[SchedulesFile::Columns[:LightingInterior].name]['InteriorMonthlyScheduleMultipliers']), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeLightingExterior + ' schedule'), @tol) - assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(3016 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CeilingFan].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(300.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:CookingRange].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(161.4 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:Dishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(67.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(113.9 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:ClothesDryer].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(5388 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsOther].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(1517 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:PlugLoadsTV].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) - assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(287.3 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterDishwasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(322.6 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterClothesWasher].name, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(981.1 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::Columns[:HotWaterFixtures].name, schedules: sf.tmp_schedules), @tol) assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants::ObjectTypeMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::Columns[:Sleeping].name)) assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) @@ -580,6 +607,31 @@ def test_set_unavailable_periods_lighting _test_day_schedule(schedule, end_month, end_day, year, 0, end_hour) _test_day_schedule(schedule, end_month, end_day + 1, year, nil, nil) + # 2 calendar days, partial first and last day + begin_month = 12 + begin_day = 14 + begin_hour = 20 + end_month = 12 + end_day = 15 + end_hour = 6 + + model, hpxml, _hpxml_bldg = _test_measure(args_hash) + year = model.getYearDescription.assumedYear + + schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } + unavailable_periods = _add_unavailable_period(hpxml, 'Power Outage', begin_month, begin_day, begin_hour, end_month, end_day, end_hour) # note the change of end month/day + + schedule_rules = schedule.scheduleRules + Schedule.set_unavailable_periods(model, schedule, sch_name, unavailable_periods) + unavailable_schedule_rules = schedule.scheduleRules - schedule_rules + + assert_equal(2, unavailable_schedule_rules.size) + + _test_day_schedule(schedule, begin_month, begin_day - 1, year, nil, nil) + _test_day_schedule(schedule, begin_month, begin_day, year, begin_hour, 24) + _test_day_schedule(schedule, end_month, end_day, year, 0, end_hour) + _test_day_schedule(schedule, end_month, end_day + 1, year, nil, nil) + # wrap around begin_month = 12 begin_day = 1 diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 187a44efe4..2de97b992b 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -8,7 +8,6 @@ require 'csv' require_relative '../resources/xmlhelper.rb' require_relative '../resources/xmlvalidator.rb' - class HPXMLtoOpenStudioValidationTest < Minitest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @@ -262,6 +261,8 @@ def test_schema_schematron_error_messages 'solar-fraction-one' => ['Expected SolarFraction to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem[SolarFraction], id: "SolarThermalSystem1"]'], 'sum-space-floor-area' => ['Expected sum(Zones/Zone[ZoneType="conditioned"]/Spaces/Space/FloorArea) to be equal to BuildingSummary/BuildingConstruction/ConditionedFloorArea'], 'sum-space-floor-area2' => ['Expected sum(Zones/Zone[ZoneType="conditioned"]/Spaces/Space/FloorArea) to be equal to BuildingSummary/BuildingConstruction/ConditionedFloorArea'], + 'vehicle-ev-multiple-BEV' => ['Expected 0 or 1 element(s) for xpath: Vehicle/VehicleType/BatteryElectricVehicle [context: /HPXML/Building/BuildingDetails/Systems/Vehicles, id: "MyBuilding"]'], + 'vehicle-ev-invalid-fuel-economy-units' => ['Expected ../../FuelEconomyCombined/Units to be "kWh/mile" or "mile/kWh" or "mpge" [context: /HPXML/Building/BuildingDetails/Systems/Vehicles/Vehicle/VehicleType/BatteryElectricVehicle, id: "Vehicle1"]'], 'water-heater-location' => ['A location is specified as "crawlspace - vented" but no surfaces were found adjacent to this space type.'], 'water-heater-location-other' => ["Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space'"], 'water-heater-recovery-efficiency' => ['Expected RecoveryEfficiency to be greater than EnergyFactor'], @@ -787,6 +788,13 @@ def test_schema_schematron_error_messages hpxml_bldg.conditioned_spaces.each do |space| space.floor_area *= 2.0 end + when 'vehicle-ev-multiple-BEV' + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger-scheduled.xml') + hpxml_bldg.vehicles.add(id: 'ElectricVehicle2', + vehicle_type: HPXML::VehicleTypeBEV) + when 'vehicle-ev-invalid-fuel-economy-units' + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger-scheduled.xml') + hpxml_bldg.vehicles[0].fuel_economy_units = 'mpg' when 'water-heater-location' hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.water_heating_systems[0].location = HPXML::LocationCrawlspaceVented @@ -837,6 +845,7 @@ def test_schema_schematron_warning_messages 'dhw-setpoint-low' => ['Hot water setpoint should typically be greater than or equal to 110 deg-F.'], 'erv-atre-low' => ['Adjusted total recovery efficiency should typically be at least half of the adjusted sensible recovery efficiency.'], 'erv-tre-low' => ['Total recovery efficiency should typically be at least half of the sensible recovery efficiency.'], + 'ev-charging-methods' => ['Electric vehicle charging was specified as both a PlugLoad and a Vehicle, the latter will be ignored.'], 'fuel-load-type-other' => ["Fuel load type 'other' is not currently handled, the fuel load will not be modeled."], 'garage-ventilation' => ['Ventilation fans for the garage are not currently modeled.'], 'heat-pump-low-backup-switchover-temp' => ['BackupHeatingSwitchoverTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity.'], @@ -899,6 +908,7 @@ def test_schema_schematron_warning_messages 'slab-large-exposed-perimeter' => ['Slab exposed perimeter is more than twice the slab area, this may indicate an input error.'], 'slab-zero-exposed-perimeter' => ['Slab has zero exposed perimeter, this may indicate an input error.'], 'unit-multiplier' => ['NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.'], + 'vehicle-phev' => ["Vehicle type 'PlugInHybridElectricVehicle' is not currently handled, the vehicle will not be modeled."], 'window-exterior-shading-types' => ["Exterior shading type is 'external overhangs', but overhangs are explicitly defined; exterior shading type will be ignored.", "Exterior shading type is 'building', but neighbor buildings are explicitly defined; exterior shading type will be ignored."], 'wrong-units' => ['Thickness is greater than 12 inches; this may indicate incorrect units.', @@ -942,6 +952,8 @@ def test_schema_schematron_warning_messages when 'erv-tre-low' hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') hpxml_bldg.ventilation_fans[0].total_recovery_efficiency = 0.1 + when 'ev-charging-methods' + hpxml, _hpxml_bldg = _create_hpxml('base-vehicle-ev-charger-plug-load-ev.xml') when 'garage-ventilation' hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.ventilation_fans.add(id: 'VentilationFan1', @@ -1060,6 +1072,9 @@ def test_schema_schematron_warning_messages when 'unit-multiplier' hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.building_construction.number_of_units = 5 + when 'vehicle-phev' + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger-scheduled.xml') + hpxml_bldg.vehicles[0].vehicle_type = 'PlugInHybridElectricVehicle' when 'window-exterior-shading-types' hpxml, _hpxml_bldg = _create_hpxml('base-enclosure-windows-shading-types-detailed.xml') when 'wrong-units' @@ -1207,13 +1222,13 @@ def test_ruby_error_messages when 'battery-bad-values-max-greater-than-one' hpxml, hpxml_bldg = _create_hpxml('base-battery-scheduled.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) - csv_data[1][0] = 1.1 + csv_data[1][csv_data[0].index('battery')] = 1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] when 'battery-bad-values-min-less-than-neg-one' hpxml, hpxml_bldg = _create_hpxml('base-battery-scheduled.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) - csv_data[1][0] = -1.1 + csv_data[1][csv_data[0].index('battery')] = -1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] when 'cfis-with-hydronic-distribution' @@ -1549,19 +1564,19 @@ def test_ruby_error_messages when 'schedule-detailed-bad-values-max-not-one' hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) - csv_data[1][1] = 1.1 + csv_data[1][csv_data[0].index('lighting_interior')] = 1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] when 'schedule-detailed-bad-values-negative' hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) - csv_data[1][1] = -0.5 + csv_data[1][csv_data[0].index('lighting_interior')] = -0.5 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] when 'schedule-detailed-bad-values-non-numeric' hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) - csv_data[1][1] = 'NA' + csv_data[1][csv_data[0].index('lighting_interior')] = 'NA' File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] when 'schedule-detailed-bad-values-mode-negative' @@ -1804,9 +1819,6 @@ def test_ruby_warning_messages "Both 'plug_loads_other' schedule file and weekday fractions provided; the latter will be ignored.", "Both 'plug_loads_other' schedule file and weekend fractions provided; the latter will be ignored.", "Both 'plug_loads_other' schedule file and monthly multipliers provided; the latter will be ignored.", - "Both 'plug_loads_vehicle' schedule file and weekday fractions provided; the latter will be ignored.", - "Both 'plug_loads_vehicle' schedule file and weekend fractions provided; the latter will be ignored.", - "Both 'plug_loads_vehicle' schedule file and monthly multipliers provided; the latter will be ignored.", "Both 'plug_loads_well_pump' schedule file and weekday fractions provided; the latter will be ignored.", "Both 'plug_loads_well_pump' schedule file and weekend fractions provided; the latter will be ignored.", "Both 'plug_loads_well_pump' schedule file and monthly multipliers provided; the latter will be ignored.", @@ -1837,6 +1849,9 @@ def test_ruby_warning_messages "Both 'permanent_spa_heater' schedule file and weekday fractions provided; the latter will be ignored.", "Both 'permanent_spa_heater' schedule file and weekend fractions provided; the latter will be ignored.", "Both 'permanent_spa_heater' schedule file and monthly multipliers provided; the latter will be ignored."], + 'schedule-file-and-weekday-weekend-multipliers-ev' => ["Both schedule file and weekday fractions provided for 'electric_vehicle'; weekday fractions will be ignored.", + "Both schedule file and weekend fractions provided for 'electric_vehicle'; weekend fractions will be ignored.", + "Both schedule file and monthly multipliers provided for 'electric_vehicle'; monthly multipliers will be ignored.",], 'schedule-file-and-refrigerators-freezer-coefficients' => ["Both 'refrigerator' schedule file and constant coefficients provided; the latter will be ignored.", "Both 'refrigerator' schedule file and temperature coefficients provided; the latter will be ignored.", "Both 'extra_refrigerator' schedule file and constant coefficients provided; the latter will be ignored.", @@ -1965,6 +1980,13 @@ def test_ruby_warning_messages hpxml_bldg.hot_water_distributions[0].recirculation_pump_weekday_fractions = @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_no_control"]['RecirculationPumpWeekdayScheduleFractions'] hpxml_bldg.hot_water_distributions[0].recirculation_pump_weekend_fractions = @default_schedules_csv_data["#{SchedulesFile::Columns[:HotWaterRecirculationPump].name}_no_control"]['RecirculationPumpWeekendScheduleFractions'] hpxml_bldg.hot_water_distributions[0].recirculation_pump_monthly_multipliers = @default_schedules_csv_data[SchedulesFile::Columns[:HotWaterRecirculationPump].name]['RecirculationPumpMonthlyScheduleMultipliers'] + when 'schedule-file-and-weekday-weekend-multipliers-ev' + hpxml, hpxml_bldg = _create_hpxml('base-vehicle-ev-charger.xml') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/vehicle-ev.csv') + hpxml_bldg.vehicles[0].nominal_capacity_kwh = 500 + hpxml_bldg.vehicles[0].ev_weekday_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name]['WeekdayScheduleFractions'] + hpxml_bldg.vehicles[0].ev_weekend_fractions = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name]['WeekendScheduleFractions'] + hpxml_bldg.vehicles[0].ev_monthly_multipliers = @default_schedules_csv_data[SchedulesFile::Columns[:ElectricVehicle].name]['MonthlyScheduleMultipliers'] when 'schedule-file-and-refrigerators-freezer-coefficients' hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-stochastic.csv') diff --git a/HPXMLtoOpenStudio/tests/test_vehicle.rb b/HPXMLtoOpenStudio/tests/test_vehicle.rb new file mode 100644 index 0000000000..b580ed0ea6 --- /dev/null +++ b/HPXMLtoOpenStudio/tests/test_vehicle.rb @@ -0,0 +1,312 @@ +# frozen_string_literal: true + +require_relative '../resources/minitest_helper' +require 'openstudio' +require 'openstudio/measure/ShowRunnerOutput' +require 'fileutils' +require_relative '../measure.rb' +require_relative '../resources/util.rb' + +class HPXMLtoOpenStudioVehicleTest < Minitest::Test + def teardown + File.delete(File.join(File.dirname(__FILE__), 'results_annual.csv')) if File.exist? File.join(File.dirname(__FILE__), 'results_annual.csv') + File.delete(File.join(File.dirname(__FILE__), 'results_design_load_details.csv')) if File.exist? File.join(File.dirname(__FILE__), 'results_design_load_details.csv') + end + + def sample_files_dir + return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') + end + + def get_batteries(model, name) + batteries = [] + model.getElectricLoadCenterStorageLiIonNMCBatterys.each do |b| + next unless b.name.to_s.start_with? "#{name} " + + batteries << b + end + return batteries + end + + def get_elcds(model, name) + elcds = [] + model.getElectricLoadCenterDistributions.each do |elcd| + next unless elcd.name.to_s.start_with? "#{name} " + + elcds << elcd + end + return elcds + end + + def calc_nom_capacity(battery) + return (battery.numberofCellsinSeries * battery.numberofStringsinParallel * + battery.cellVoltageatEndofNominalZone * battery.fullyChargedCellCapacity) + end + + def test_vehicle_ev_default + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-misc-defaults.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + hpxml_bldg.vehicles.each do |hpxml_ev| + ev_batteries = get_batteries(model, hpxml_ev.id) + assert_equal(1, ev_batteries.size) + ev_battery = ev_batteries[0] + + # Check object + assert_equal(0.0, ev_battery.radiativeFraction) + assert_equal(HPXML::BatteryLifetimeModelNone, ev_battery.lifetimeModel) + assert_in_epsilon(15, ev_battery.numberofCellsinSeries, 0.01) + assert_in_epsilon(395, ev_battery.numberofStringsinParallel, 0.01) + assert_in_epsilon(0.95, ev_battery.initialFractionalStateofCharge, 0.01) + assert_in_epsilon(627.99, ev_battery.batteryMass, 0.01) + assert_in_epsilon(4.87, ev_battery.batterySurfaceArea, 0.01) + assert_in_epsilon(63364, calc_nom_capacity(ev_battery), 0.01) + + ev_elcds = get_elcds(model, hpxml_ev.id) + assert_equal(1, ev_elcds.size) + ev_elcd = ev_elcds[0] + + # Check object + assert_equal('AlternatingCurrentWithStorage', ev_elcd.electricalBussType) + assert_equal(0.15, ev_elcd.minimumStorageStateofChargeFraction) + assert_equal(0.95, ev_elcd.maximumStorageStateofChargeFraction) + assert_equal(5690.0, ev_elcd.designStorageControlChargePower.get) + assert_in_epsilon(5225.84, ev_elcd.designStorageControlDischargePower.get, 0.01) + assert(!ev_elcd.demandLimitSchemePurchasedElectricDemandLimit.is_initialized) + assert_equal('TrackChargeDischargeSchedules', ev_elcd.storageOperationScheme) + assert(ev_elcd.storageChargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageDischargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageConverter.is_initialized) + end + end + + def test_vehicle_ev_no_charger + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-vehicle-ev-no-charger.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + hpxml_bldg.vehicles.each do |hpxml_ev| + next unless hpxml_ev.vehicle_type == HPXML::VehicleTypeBEV + + ev_batteries = get_batteries(model, hpxml_ev.id) + assert_equal(0, ev_batteries.size) # no charger means no EV is generated + + ev_elcds = get_elcds(model, hpxml_ev.id) + assert_equal(0, ev_elcds.size) + end + end + + def test_vehicle_ev_no_battery + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-ev-charger.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) + assert_equal(0, model.getElectricLoadCenterStorageLiIonNMCBatterys.size) + assert_equal(0, model.getElectricLoadCenterDistributions.size) + end + + def test_vehicle_ev_default_schedule + # EV battery w/ no schedules + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-vehicle-ev-charger.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + hpxml_bldg.vehicles.each do |hpxml_ev| + ev_batteries = get_batteries(model, hpxml_ev.id) + assert_equal(1, ev_batteries.size) + ev_battery = ev_batteries[0] + + # Check object + assert_equal(HPXML::LocationGarage, ev_battery.thermalZone.get.name.get) + assert_equal(0.0, ev_battery.radiativeFraction) + assert_equal(HPXML::BatteryLifetimeModelNone, ev_battery.lifetimeModel) + assert_in_epsilon(15, ev_battery.numberofCellsinSeries, 0.01) + assert_in_epsilon(623, ev_battery.numberofStringsinParallel, 0.01) + assert_in_epsilon(0.95, ev_battery.initialFractionalStateofCharge, 0.01) + assert_in_epsilon(990.0, ev_battery.batteryMass, 0.01) + assert_in_epsilon(6.59, ev_battery.batterySurfaceArea, 0.01) + assert_in_epsilon(100000, calc_nom_capacity(ev_battery), 0.01) + + ev_elcds = get_elcds(model, hpxml_ev.id) + assert_equal(1, ev_elcds.size) + ev_elcd = ev_elcds[0] + + # Check object + assert_equal('AlternatingCurrentWithStorage', ev_elcd.electricalBussType) + assert_equal(0.15, ev_elcd.minimumStorageStateofChargeFraction) + assert_equal(0.95, ev_elcd.maximumStorageStateofChargeFraction) + assert_equal(7000.0, ev_elcd.designStorageControlChargePower.get) + assert_in_epsilon(5448.13, ev_elcd.designStorageControlDischargePower.get, 0.01) + assert(!ev_elcd.demandLimitSchemePurchasedElectricDemandLimit.is_initialized) + assert_equal('TrackChargeDischargeSchedules', ev_elcd.storageOperationScheme) + assert(ev_elcd.storageChargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageDischargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageConverter.is_initialized) + end + end + + def test_vehicle_ev_scheduled + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-vehicle-ev-charger-scheduled.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + hpxml_bldg.vehicles.each do |hpxml_ev| + ev_batteries = get_batteries(model, hpxml_ev.id) + assert_equal(1, ev_batteries.size) + ev_battery = ev_batteries[0] + + # Check object + assert_equal(HPXML::LocationGarage, ev_battery.thermalZone.get.name.get) + assert_equal(0.0, ev_battery.radiativeFraction) + assert_equal(HPXML::BatteryLifetimeModelNone, ev_battery.lifetimeModel) + assert_in_epsilon(15, ev_battery.numberofCellsinSeries, 0.01) + assert_in_epsilon(623, ev_battery.numberofStringsinParallel, 0.01) + assert_in_epsilon(0.95, ev_battery.initialFractionalStateofCharge, 0.01) + assert_in_epsilon(990.0, ev_battery.batteryMass, 0.01) + assert_in_epsilon(6.59, ev_battery.batterySurfaceArea, 0.01) + assert_in_epsilon(100000, calc_nom_capacity(ev_battery), 0.01) + + ev_elcds = get_elcds(model, hpxml_ev.id) + assert_equal(1, ev_elcds.size) + ev_elcd = ev_elcds[0] + + # Check object + assert_equal('AlternatingCurrentWithStorage', ev_elcd.electricalBussType) + assert_equal(0.15, ev_elcd.minimumStorageStateofChargeFraction) + assert_equal(0.95, ev_elcd.maximumStorageStateofChargeFraction) + assert_equal(7000.0, ev_elcd.designStorageControlChargePower.get) + assert_in_epsilon(5136.99, ev_elcd.designStorageControlDischargePower.get, 0.01) + assert(!ev_elcd.demandLimitSchemePurchasedElectricDemandLimit.is_initialized) + assert_equal('TrackChargeDischargeSchedules', ev_elcd.storageOperationScheme) + assert(ev_elcd.storageChargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageDischargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageConverter.is_initialized) + end + end + + def test_vehicle_ev_plug_load_ev + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-vehicle-ev-charger-plug-load-ev.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + hpxml_bldg.vehicles.each do |hpxml_ev| + next unless hpxml_ev.vehicle_type == HPXML::VehicleTypeBEV + + ev_batteries = get_batteries(model, hpxml_ev.id) + assert_equal(0, ev_batteries.size) # plug load method take precedence to battery model + + ev_elcds = get_elcds(model, hpxml_ev.id) + assert_equal(0, ev_elcds.size) + end + end + + def test_vehicle_ev_home_battery + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery-and-vehicle-ev.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + # Test EV Battery + hpxml_bldg.vehicles.each do |hpxml_ev| + ev_batteries = get_batteries(model, hpxml_ev.id) + assert_equal(1, ev_batteries.size) + ev_battery = ev_batteries[0] + + # Check object + assert_equal(0.0, ev_battery.radiativeFraction) + assert_equal(HPXML::BatteryLifetimeModelNone, ev_battery.lifetimeModel) + assert_in_epsilon(15, ev_battery.numberofCellsinSeries, 0.01) + assert_in_epsilon(395, ev_battery.numberofStringsinParallel, 0.01) + assert_in_epsilon(0.95, ev_battery.initialFractionalStateofCharge, 0.01) + assert_in_epsilon(627.99, ev_battery.batteryMass, 0.01) + assert_in_epsilon(4.87, ev_battery.batterySurfaceArea, 0.01) + assert_in_epsilon(63364, calc_nom_capacity(ev_battery), 0.01) + + ev_elcds = get_elcds(model, hpxml_ev.id) + assert_equal(1, ev_elcds.size) + ev_elcd = ev_elcds[0] + + # Check object + assert_equal('AlternatingCurrentWithStorage', ev_elcd.electricalBussType) + assert_equal(0.15, ev_elcd.minimumStorageStateofChargeFraction) + assert_equal(0.95, ev_elcd.maximumStorageStateofChargeFraction) + assert_equal(5690.0, ev_elcd.designStorageControlChargePower.get) + assert_in_epsilon(4927.397, ev_elcd.designStorageControlDischargePower.get, 0.01) + assert(!ev_elcd.demandLimitSchemePurchasedElectricDemandLimit.is_initialized) + assert_equal('TrackChargeDischargeSchedules', ev_elcd.storageOperationScheme) + assert(ev_elcd.storageChargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageDischargePowerFractionSchedule.is_initialized) + assert(ev_elcd.storageConverter.is_initialized) + end + + # Test Home Battery + hpxml_bldg.batteries.each do |hpxml_battery| + batteries = get_batteries(model, hpxml_battery.id) + assert_equal(1, batteries.size) + battery = batteries[0] + + # Check object + assert(!battery.thermalZone.is_initialized) + assert_equal(0, battery.radiativeFraction) + assert_equal(0.925, battery.dctoDCChargingEfficiency) + assert_equal(HPXML::BatteryLifetimeModelNone, battery.lifetimeModel) + assert_in_epsilon(15, battery.numberofCellsinSeries, 0.01) + assert_in_epsilon(125, battery.numberofStringsinParallel, 0.01) + assert_in_epsilon(0.0, battery.initialFractionalStateofCharge, 0.01) + assert_in_epsilon(198.0, battery.batteryMass, 0.01) + assert_in_epsilon(2.25, battery.batterySurfaceArea, 0.01) + assert_in_epsilon(20000, calc_nom_capacity(battery), 0.01) + + elcds = get_elcds(model, 'PVSystem') + assert_equal(1, elcds.size) + elcd = elcds[0] + + # Check object + assert_equal('DirectCurrentWithInverterACStorage', elcd.electricalBussType) + assert_equal(0.075, elcd.minimumStorageStateofChargeFraction) + assert_equal(0.975, elcd.maximumStorageStateofChargeFraction) + assert_equal(6000.0, elcd.designStorageControlChargePower.get) + assert_equal(6000.0, elcd.designStorageControlDischargePower.get) + assert(!elcd.demandLimitSchemePurchasedElectricDemandLimit.is_initialized) + assert_equal('TrackFacilityElectricDemandStoreExcessOnSite', elcd.storageOperationScheme) + assert(!elcd.storageChargePowerFractionSchedule.is_initialized) + assert(!elcd.storageDischargePowerFractionSchedule.is_initialized) + assert(!elcd.storageConverter.is_initialized) + end + end + + def _test_measure(args_hash) + # create an instance of the measure + measure = HPXMLtoOpenStudio.new + + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + model = OpenStudio::Model::Model.new + + # get arguments + args_hash['output_dir'] = File.dirname(__FILE__) + arguments = measure.arguments(model) + argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) + + # populate argument with specified hash value if specified + arguments.each do |arg| + temp_arg_var = arg.clone + if args_hash.has_key?(arg.name) + assert(temp_arg_var.setValue(args_hash[arg.name])) + end + argument_map[arg.name] = temp_arg_var + end + + # run the measure + measure.run(model, runner, argument_map) + result = runner.result + + # show the output + show_output(result) unless result.value.valueName == 'Success' + + # assert that it ran correctly + assert_equal('Success', result.value.valueName) + + hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + + return model, hpxml, hpxml.buildings[0] + end +end diff --git a/README.md b/README.md index a15329f975..ab09370a54 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ OpenStudio-HPXML is used by a number of software products or organizations, incl - [URBANopt](https://www.nrel.gov/buildings/urbanopt.html) - [VEIC](https://www.veic.org) - [Weatherization Assistant](https://weatherization.ornl.gov/softwaredescription/) (pending) +- [XeroHome](https://about.xerohome.com/) Are you using OpenStudio-HPXML and want to be mentioned here? [Email us](mailto:scott.horowitz@nrel.gov) or [open a Pull Request](https://github.com/NREL/OpenStudio-HPXML/edit/master/README.md). diff --git a/ReportSimulationOutput/README.md b/ReportSimulationOutput/README.md index 594b8dbac9..4ca7a6e5ba 100644 --- a/ReportSimulationOutput/README.md +++ b/ReportSimulationOutput/README.md @@ -114,7 +114,7 @@ Generates annual heating, cooling, and hot water loads. **Generate Annual Output: Unmet Hours** -Generates annual unmet hours for heating and cooling. +Generates annual unmet hours for heating, cooling, and EV driving. - **Name:** ``include_annual_unmet_hours`` - **Type:** ``Boolean`` @@ -125,7 +125,7 @@ Generates annual unmet hours for heating and cooling. **Generate Annual Output: Peak Fuels** -Generates annual electricity peaks for summer/winter. +Generates annual/summer/winter electricity peaks. - **Name:** ``include_annual_peak_fuels`` - **Type:** ``Boolean`` @@ -314,7 +314,7 @@ Generates timeseries heating and cooling loads disaggregated by component type. **Generate Timeseries Output: Unmet Hours** -Generates timeseries unmet hours for heating and cooling. +Generates timeseries unmet hours for heating, cooling, and EV driving. - **Name:** ``include_timeseries_unmet_hours`` - **Type:** ``Boolean`` @@ -424,6 +424,17 @@ Optionally generates timeseries EnergyPlus output variables. If multiple output
+**Generate Timeseries Output: EnergyPlus Output Meters** + +Optionally generates timeseries EnergyPlus output meters. If multiple output meters are desired, use a comma-separated list. Example: "Electricity:Facility, HeatingCoils:EnergyTransfer" + +- **Name:** ``user_output_meters`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ **Annual Output File Name** If not provided, defaults to 'results_annual.csv' (or 'results_annual.json' or 'results_annual.msgpack'). @@ -460,6 +471,8 @@ All possible measure outputs are listed below. Actual outputs depend on measure - ``fuel_use_electricity_total_m_btu`` +- ``fuel_use_electricity_net_m_btu`` + - ``fuel_use_natural_gas_total_m_btu`` - ``fuel_use_fuel_oil_total_m_btu`` @@ -524,8 +537,6 @@ All possible measure outputs are listed below. Actual outputs depend on measure - ``end_use_electricity_plug_loads_m_btu`` -- ``end_use_electricity_electric_vehicle_charging_m_btu`` - - ``end_use_electricity_well_pump_m_btu`` - ``end_use_electricity_pool_heater_m_btu`` @@ -542,6 +553,8 @@ All possible measure outputs are listed below. Actual outputs depend on measure - ``end_use_electricity_battery_m_btu`` +- ``end_use_electricity_electric_vehicle_charging_m_btu`` + - ``end_use_natural_gas_heating_m_btu`` - ``end_use_natural_gas_heating_heat_pump_backup_m_btu`` @@ -684,12 +697,20 @@ All possible measure outputs are listed below. Actual outputs depend on measure - ``unmet_hours_cooling_hr`` +- ``unmet_hours_ev_driving_hr`` + - ``peak_electricity_winter_total_w`` - ``peak_electricity_summer_total_w`` - ``peak_electricity_annual_total_w`` +- ``peak_electricity_winter_net_w`` + +- ``peak_electricity_summer_net_w`` + +- ``peak_electricity_annual_net_w`` + - ``peak_load_heating_delivered_k_btu_hr`` - ``peak_load_cooling_delivered_k_btu_hr`` diff --git a/ReportSimulationOutput/measure.rb b/ReportSimulationOutput/measure.rb index f040e8a7c8..d956390c40 100644 --- a/ReportSimulationOutput/measure.rb +++ b/ReportSimulationOutput/measure.rb @@ -97,13 +97,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_annual_unmet_hours', false) arg.setDisplayName('Generate Annual Output: Unmet Hours') - arg.setDescription('Generates annual unmet hours for heating and cooling.') + arg.setDescription('Generates annual unmet hours for heating, cooling, and EV driving.') arg.setDefaultValue(true) args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_annual_peak_fuels', false) arg.setDisplayName('Generate Annual Output: Peak Fuels') - arg.setDescription('Generates annual electricity peaks for summer/winter.') + arg.setDescription('Generates annual/summer/winter electricity peaks.') arg.setDefaultValue(true) args << arg @@ -211,7 +211,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_timeseries_unmet_hours', false) arg.setDisplayName('Generate Timeseries Output: Unmet Hours') - arg.setDescription('Generates timeseries unmet hours for heating and cooling.') + arg.setDescription('Generates timeseries unmet hours for heating, cooling, and EV driving.') arg.setDefaultValue(false) args << arg @@ -270,6 +270,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Optionally generates timeseries EnergyPlus output variables. If multiple output variables are desired, use a comma-separated list. Do not include key values; by default all key values will be requested. Example: "Zone People Occupant Count, Zone People Total Heating Energy"') args << arg + arg = OpenStudio::Measure::OSArgument::makeStringArgument('user_output_meters', false) + arg.setDisplayName('Generate Timeseries Output: EnergyPlus Output Meters') + arg.setDescription('Optionally generates timeseries EnergyPlus output meters. If multiple output meters are desired, use a comma-separated list. Example: "Electricity:Facility, HeatingCoils:EnergyTransfer"') + args << arg + arg = OpenStudio::Measure::OSArgument::makeStringArgument('annual_output_file_name', false) arg.setDisplayName('Annual Output File Name') arg.setDescription("If not provided, defaults to 'results_annual.csv' (or 'results_annual.json' or 'results_annual.msgpack').") @@ -356,12 +361,13 @@ def energyPlusOutputRequests(runner, user_arguments) total_loads_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeTotalLoadsProgram } comp_loads_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeComponentLoadsProgram } total_airflows_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeTotalAirflowsProgram } + unmet_driving_hrs_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeBEVDischargeProgram } heated_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('heated_zones').get) cooled_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('cooled_zones').get) args = get_arguments(runner, arguments(model), user_arguments) - setup_outputs(false, args[:user_output_variables]) + setup_outputs(false, args) args = setup_timeseries_includes(@emissions, args) has_electricity_production = false @@ -370,19 +376,20 @@ def energyPlusOutputRequests(runner, user_arguments) end has_electricity_storage = false - if @end_uses.count { |_key, end_use| end_use.is_storage && end_use.variables.size > 0 } > 0 + if @end_uses.count { |key, end_use| (end_use.is_storage && end_use.variables.size > 0) || (key == [FT::Elec, EUT::Vehicle] && end_use.variables.size > 0) } > 0 has_electricity_storage = true end # Fuel outputs - @fuels.each do |_fuel_type, fuel| - fuel.meters.each do |meter| - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},runperiod;").get - if args[:include_timeseries_fuel_consumptions] - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},#{args[:timeseries_frequency]};").get - end + @fuels.each do |(_fuel_type, _total_or_net), fuel| + next if fuel.meter.nil? + + result << OpenStudio::IdfObject.load("Output:Meter,#{fuel.meter},runperiod;").get + if args[:include_timeseries_fuel_consumptions] + result << OpenStudio::IdfObject.load("Output:Meter,#{fuel.meter},#{args[:timeseries_frequency]};").get end end + if has_electricity_production || has_electricity_storage result << OpenStudio::IdfObject.load('Output:Meter,ElectricityProduced:Facility,runperiod;').get # Used for error checking end @@ -442,7 +449,7 @@ def energyPlusOutputRequests(runner, user_arguments) # Peak Fuel outputs (annual only) @peak_fuels.values.each do |peak_fuel| - result << OpenStudio::IdfObject.load("Output:Table:Monthly,#{peak_fuel.report},2,Electricity:Facility,Maximum;").get + result << OpenStudio::IdfObject.load("Output:Table:Monthly,#{peak_fuel.report},2,#{peak_fuel.meter},Maximum;").get end # Peak Load outputs (annual only) @@ -452,11 +459,15 @@ def energyPlusOutputRequests(runner, user_arguments) end # Unmet Hours (annual only) - @unmet_hours.each do |_key, unmet_hour| - result << OpenStudio::IdfObject.load("EnergyManagementSystem:OutputVariable,#{unmet_hour.ems_variable}_annual_outvar,#{unmet_hour.ems_variable},Summed,ZoneTimestep,#{unmet_hours_program.name},hr;").get + @unmet_hours.each do |key, unmet_hour| + next if key == UHT::Driving && unmet_driving_hrs_program.nil? + + ems_program = key == UHT::Driving ? unmet_driving_hrs_program : unmet_hours_program + + result << OpenStudio::IdfObject.load("EnergyManagementSystem:OutputVariable,#{unmet_hour.ems_variable}_annual_outvar,#{unmet_hour.ems_variable},Summed,ZoneTimestep,#{ems_program.name},hr;").get result << OpenStudio::IdfObject.load("Output:Variable,*,#{unmet_hour.ems_variable}_annual_outvar,runperiod;").get if args[:include_timeseries_unmet_hours] - result << OpenStudio::IdfObject.load("EnergyManagementSystem:OutputVariable,#{unmet_hour.ems_variable}_timeseries_outvar,#{unmet_hour.ems_variable},Summed,ZoneTimestep,#{unmet_hours_program.name},hr;").get + result << OpenStudio::IdfObject.load("EnergyManagementSystem:OutputVariable,#{unmet_hour.ems_variable}_timeseries_outvar,#{unmet_hour.ems_variable},Summed,ZoneTimestep,#{ems_program.name},hr;").get result << OpenStudio::IdfObject.load("Output:Variable,*,#{unmet_hour.ems_variable}_timeseries_outvar,#{args[:timeseries_frequency]};").get end end @@ -531,11 +542,16 @@ def energyPlusOutputRequests(runner, user_arguments) end end - # Optional output variables (timeseries only) - @output_variables_requests.each do |output_variable_name, _output_variable| + # Output variables (timeseries only) + @output_variables_requests.each do |output_variable_name| result << OpenStudio::IdfObject.load("Output:Variable,*,#{output_variable_name},#{args[:timeseries_frequency]};").get end + # Output meters (timeseries only) + @output_meters_requests.each do |output_meter_name| + result << OpenStudio::IdfObject.load("Output:Meter,#{output_meter_name},#{args[:timeseries_frequency]};").get + end + return result.uniq end @@ -576,7 +592,7 @@ def run(runner, user_arguments) @hpxml_header = hpxml.header @hpxml_bldgs = hpxml.buildings - setup_outputs(false, args[:user_output_variables]) + setup_outputs(false, args) if not File.exist? File.join(output_dir, 'eplusout.msgpack') runner.registerError('Cannot find eplusout.msgpack.') @@ -608,34 +624,43 @@ def run(runner, user_arguments) end if args[:timeseries_frequency] != 'none' - @timestamps, timestamps_dst, timestamps_utc = get_timestamps(@msgpackDataTimeseries, @hpxml_header, @hpxml_bldgs, args) + @timestamps, timestamps_dst, timestamps_utc = get_timestamps(@msgpackDataTimeseries, @msgpackData, @hpxml_header, @hpxml_bldgs, args) end # Retrieve outputs - outputs = get_outputs(runner, args) + get_outputs(runner, args) - if not check_for_errors(runner, outputs) + if not check_for_errors(runner) return false end # Write/report results - report_runperiod_output_results(runner, outputs, args, annual_output_path) - report_timeseries_output_results(runner, outputs, timeseries_output_path, args, timestamps_dst, timestamps_utc) + report_runperiod_output_results(runner, args, annual_output_path) + report_timeseries_output_results(runner, timeseries_output_path, args, timestamps_dst, timestamps_utc) return true end # TODO # + # @param msgpackDataTimeseries [TODO] TODO # @param msgpackData [TODO] TODO - # @param hpxml_header [TODO] TODO + # @param hpxml_header [HPXML::Header] HPXML Header object (one per HPXML file) # @param hpxml_bldgs [TODO] TODO # @param args [Hash] Map of :argument_name => value # @return [TODO] TODO - def get_timestamps(msgpackData, hpxml_header, hpxml_bldgs, args) - return if msgpackData.nil? + def get_timestamps(msgpackDataTimeseries, msgpackData, hpxml_header, hpxml_bldgs, args) + if not msgpackDataTimeseries.nil? + ep_timestamps = msgpackDataTimeseries['Rows'].map { |r| r.keys[0] } + elsif not msgpackData.nil? + msgpack_timeseries_name = get_msgpack_timeseries_name(args[:timeseries_frequency]) + timeseries_data = msgpackData['MeterData'][msgpack_timeseries_name] + if not timeseries_data.nil? + ep_timestamps = timeseries_data['Rows'].map { |r| r.keys[0] } + end + end - ep_timestamps = msgpackData['Rows'].map { |r| r.keys[0] } + return if ep_timestamps.nil? if args[:add_timeseries_dst_column] || args[:use_dview_format] dst_start_ts = Time.utc(hpxml_header.sim_calendar_year, hpxml_bldgs[0].dst_begin_month, hpxml_bldgs[0].dst_begin_day, 2) @@ -718,7 +743,7 @@ def get_n_hours_per_period(timeseries_frequency, sim_start_day, sim_end_day, yea # # @param timeseries_output [TODO] TODO # @param timeseries_frequency [TODO] TODO - # @param average [TODO] TODO + # @param average [Boolean] TODO # @return [TODO] TODO def rollup_timeseries_output_to_daily_or_monthly(timeseries_output, timeseries_frequency, average = false) year = @hpxml_header.sim_calendar_year @@ -743,31 +768,21 @@ def rollup_timeseries_output_to_daily_or_monthly(timeseries_output, timeseries_f # @param args [Hash] Map of :argument_name => value # @return [TODO] TODO def get_outputs(runner, args) - outputs = {} - args = setup_timeseries_includes(@emissions, args) # Fuel Uses - @fuels.each do |fuel_type, fuel| - fuel.annual_output = get_report_meter_data_annual(fuel.meters) - fuel.annual_output -= get_report_meter_data_annual(['ElectricStorage:ElectricityProduced']) if fuel_type == FT::Elec # We add Electric Storage onto the annual Electricity fuel meter - + @fuels.each do |(_fuel_type, _total_or_net), fuel| + fuel.annual_output = get_report_meter_data_annual([fuel.meter]) next unless args[:include_timeseries_fuel_consumptions] - fuel.timeseries_output = get_report_meter_data_timeseries(fuel.meters, UnitConversions.convert(1.0, 'J', fuel.timeseries_units), 0, args[:timeseries_frequency]) - - next unless fuel_type == FT::Elec - - # We add Electric Storage onto the timeseries Electricity fuel meter - elec_storage_timeseries_output = get_report_meter_data_timeseries(['ElectricStorage:ElectricityProduced'], UnitConversions.convert(1.0, 'J', fuel.timeseries_units), 0, args[:timeseries_frequency]) - fuel.timeseries_output = fuel.timeseries_output.zip(elec_storage_timeseries_output).map { |x, y| x - y } + fuel.timeseries_output = get_report_meter_data_timeseries([fuel.meter], UnitConversions.convert(1.0, 'J', fuel.timeseries_units), 0, args[:timeseries_frequency]) end # Peak Electricity Consumption is_southern_hemisphere = @model.getBuilding.additionalProperties.getFeatureAsBoolean('is_southern_hemisphere').get is_northern_hemisphere = !is_southern_hemisphere @peak_fuels.each do |key, peak_fuel| - _fuel, season = key + _fuel, _total_or_net, season = key if (season == PFT::Summer && is_northern_hemisphere) || (season == PFT::Winter && is_southern_hemisphere) months = ['June', 'July', 'August'] elsif (season == PFT::Winter && is_northern_hemisphere) || (season == PFT::Summer && is_southern_hemisphere) @@ -776,7 +791,7 @@ def get_outputs(runner, args) months = ['Maximum of Months'] end for month in months - val = get_tabular_data_value(peak_fuel.report.upcase, 'Meter', 'Custom Monthly Report', [month], 'ELECTRICITY:FACILITY {Maximum}', peak_fuel.annual_units) + val = get_tabular_data_value(peak_fuel.report.upcase, 'Meter', 'Custom Monthly Report', [month], "#{peak_fuel.meter.upcase} {Maximum}", peak_fuel.annual_units) peak_fuel.annual_output = [peak_fuel.annual_output.to_f, val].max end end @@ -812,11 +827,15 @@ def get_outputs(runner, args) end # Unmet Hours - @unmet_hours.each do |_key, unmet_hour| + @unmet_hours.each do |key, unmet_hour| unmet_hour.annual_output = get_report_variable_data_annual(['EMS'], ["#{unmet_hour.ems_variable}_annual_outvar"], 1.0) if args[:include_timeseries_unmet_hours] unmet_hour.timeseries_output = get_report_variable_data_timeseries(['EMS'], ["#{unmet_hour.ems_variable}_timeseries_outvar"], 1.0, 0, args[:timeseries_frequency]) end + + if key == UHT::Driving && unmet_hour.annual_output > 0.0 + runner.registerWarning("A total of #{unmet_hour.annual_output} driving hours could not be met due to insufficient vehicle charge. This issue may result from a combination EV battery parameters, charging power, and driving or discharging schedules.") + end end # Peak Building Space Heating/Cooling Loads (total heating/cooling energy delivered including backup ideal air system) @@ -882,7 +901,7 @@ def get_outputs(runner, args) [htg_fan_pump_end_use, backup_htg_fan_pump_end_use, clg_fan_pump_end_use].each do |end_use| next if end_use.annual_output_by_system[sys_id].nil? - apply_multiplier_to_output(end_use, nil, sys_id, energy_multiplier) + apply_multiplier_to_output(end_use, [], sys_id, energy_multiplier) end end @end_uses.delete([FT::Elec, 'TempGSHPSharedPump']) @@ -900,6 +919,7 @@ def get_outputs(runner, args) end end + fuel_types = @fuels.keys.map { |fuel_type, _total_or_net| fuel_type }.uniq @hpxml_bldgs.each do |hpxml_bldg| # Apply Heating/Cooling DSEs (hpxml_bldg.heating_systems + hpxml_bldg.heat_pumps).each do |htg_system| @@ -909,13 +929,14 @@ def get_outputs(runner, args) next if htg_system.distribution_system.annual_heating_dse.nil? dse = htg_system.distribution_system.annual_heating_dse - @fuels.each do |fuel_type, fuel| + fuel_types.each do |fuel_type| [EUT::Heating, EUT::HeatingHeatPumpBackup, EUT::HeatingFanPump, EUT::HeatingHeatPumpBackupFanPump].each do |end_use_type| end_use = @end_uses[[fuel_type, end_use_type]] next if end_use.nil? next if end_use.annual_output_by_system[htg_system.id].nil? - apply_multiplier_to_output(end_use, fuel, htg_system.id, 1.0 / dse) + fuels = @fuels.select { |k, _v| k[0] == fuel_type }.values + apply_multiplier_to_output(end_use, fuels, htg_system.id, 1.0 / dse) end end end @@ -926,13 +947,14 @@ def get_outputs(runner, args) next if clg_system.distribution_system.annual_cooling_dse.nil? dse = clg_system.distribution_system.annual_cooling_dse - @fuels.each do |fuel_type, fuel| + fuel_types.each do |fuel_type| [EUT::Cooling, EUT::CoolingFanPump].each do |end_use_type| end_use = @end_uses[[fuel_type, end_use_type]] next if end_use.nil? next if end_use.annual_output_by_system[clg_system.id].nil? - apply_multiplier_to_output(end_use, fuel, clg_system.id, 1.0 / dse) + fuels = @fuels.select { |k, _v| k[0] == fuel_type }.values + apply_multiplier_to_output(end_use, fuels, clg_system.id, 1.0 / dse) end end end @@ -950,7 +972,7 @@ def get_outputs(runner, args) dhw_ids = hpxml_bldg.water_heating_systems.map { |dhw| dhw.id } end dhw_ids.each do |dhw_id| - apply_multiplier_to_output(@loads[LT::HotWaterDelivered], @loads[LT::HotWaterSolarThermal], dhw_id, 1.0 / (1.0 - solar_system.solar_fraction)) + apply_multiplier_to_output(@loads[LT::HotWaterDelivered], [@loads[LT::HotWaterSolarThermal]], dhw_id, 1.0 / (1.0 - solar_system.solar_fraction)) end end end @@ -1001,30 +1023,26 @@ def get_outputs(runner, args) obj.hourly_output = obj.hourly_output_by_system.values.transpose.map(&:sum) end - # Total/Net Electricity (Net includes, e.g., PV and generators) - outputs[:elec_prod_annual] = @end_uses.select { |k, eu| k[0] == FT::Elec && eu.is_negative }.map { |_k, eu| eu.annual_output.to_f }.sum(0.0) # Negative value - outputs[:elec_net_annual] = @fuels[FT::Elec].annual_output.to_f + outputs[:elec_prod_annual] - if args[:include_timeseries_fuel_consumptions] - prod_end_uses = @end_uses.select { |k, eu| k[0] == FT::Elec && eu.is_negative && eu.timeseries_output.size > 0 }.map { |_k, v| v.timeseries_output } - outputs[:elec_prod_timeseries] = prod_end_uses.transpose.map(&:sum) - outputs[:elec_prod_timeseries] = [0.0] * @timestamps.size if outputs[:elec_prod_timeseries].empty? - outputs[:elec_net_timeseries] = @fuels[FT::Elec].timeseries_output.zip(outputs[:elec_prod_timeseries]).map { |x, y| x + y } - end - - # Total/Net Energy (Net includes, e.g., PV and generators) + # Total/Net Energy @totals[TE::Total].annual_output = 0.0 - @fuels.each do |_fuel_type, fuel| - @totals[TE::Total].annual_output += fuel.annual_output + @totals[TE::Net].annual_output = 0.0 + @fuels.each do |(fuel_type, total_or_net), fuel| + if fuel_type == FT::Elec + te_types = [total_or_net] + else + te_types = [TE::Total, TE::Net] + end + + te_types.each do |te_type| + @totals[te_type].annual_output += fuel.annual_output + end next unless args[:include_timeseries_total_consumptions] && fuel.timeseries_output.sum != 0.0 - @totals[TE::Total].timeseries_output = [0.0] * @timestamps.size if @totals[TE::Total].timeseries_output.empty? - unit_conv = UnitConversions.convert(1.0, fuel.timeseries_units, @totals[TE::Total].timeseries_units) - @totals[TE::Total].timeseries_output = @totals[TE::Total].timeseries_output.zip(fuel.timeseries_output).map { |x, y| x + y * unit_conv } - end - @totals[TE::Net].annual_output = @totals[TE::Total].annual_output + outputs[:elec_prod_annual] - if args[:include_timeseries_total_consumptions] - unit_conv = UnitConversions.convert(1.0, get_timeseries_units_from_fuel_type(FT::Elec), @totals[TE::Total].timeseries_units) - @totals[TE::Net].timeseries_output = @totals[TE::Total].timeseries_output.zip(outputs[:elec_prod_timeseries]).map { |x, y| x + y * unit_conv } + te_types.each do |te_type| + @totals[te_type].timeseries_output = [0.0] * @timestamps.size if @totals[te_type].timeseries_output.empty? + unit_conv = UnitConversions.convert(1.0, fuel.timeseries_units, @totals[te_type].timeseries_units) + @totals[te_type].timeseries_output = @totals[te_type].timeseries_output.zip(fuel.timeseries_output).map { |x, y| x + y * unit_conv } + end end # Resilience @@ -1190,18 +1208,38 @@ def sanitize_name(name) end end + # Output Variables @output_variables = {} - @output_variables_requests.each do |output_variable_name, _output_variable| + @output_variables_requests.each do |output_variable_name| key_values, units = get_report_variable_data_timeseries_key_values_and_units(output_variable_name) - runner.registerWarning("Request for output variable '#{output_variable_name}' returned no key values.") if key_values.empty? + if key_values.empty? + runner.registerWarning("Request for output variable '#{output_variable_name}' returned no results.") + next + end + key_values.each do |key_value| - @output_variables[[output_variable_name, key_value]] = OutputVariable.new + @output_variables[[output_variable_name, key_value]] = OutputVariableOrMeter.new @output_variables[[output_variable_name, key_value]].name = "#{output_variable_name}: #{key_value.split.map(&:capitalize).join(' ')}" @output_variables[[output_variable_name, key_value]].timeseries_units = units @output_variables[[output_variable_name, key_value]].timeseries_output = get_report_variable_data_timeseries([key_value], [output_variable_name], 1, 0, args[:timeseries_frequency]) end end + # Output Meters + @output_meters = {} + @output_meters_requests.each do |output_meter_name| + units = get_report_meter_data_timeseries_units(output_meter_name, args[:timeseries_frequency]) + if units.nil? + runner.registerWarning("Request for output meter '#{output_meter_name}' returned no results.") + next + end + + @output_meters[output_meter_name] = OutputVariableOrMeter.new + @output_meters[output_meter_name].name = output_meter_name + @output_meters[output_meter_name].timeseries_units = units + @output_meters[output_meter_name].timeseries_output = get_report_meter_data_timeseries([output_meter_name], 1, 0, args[:timeseries_frequency]) + end + # Emissions if not @emissions.empty? kwh_to_mwh = UnitConversions.convert(1.0, 'kWh', 'MWh') @@ -1321,27 +1359,20 @@ def sanitize_name(name) end # Roll up end use emissions to fuel emissions - @fuels.each do |fuel_type, _fuel| - if fuel_type == FT::Elec - emission_types = [TE::Total, TE::Net] - else - emission_types = [TE::Total] - end - emission_types.each do |emission_type| - fuel_key = [fuel_type, emission_type] - @emissions[key].annual_output_by_fuel[fuel_key] = 0.0 - @emissions[key].annual_output_by_end_use.keys.each do |eu_key| - next unless eu_key[0] == fuel_type - next if emission_type == TE::Total && @end_uses[eu_key].is_negative # Generation not included in total - next if @emissions[key].annual_output_by_end_use[eu_key] == 0 + @fuels.each do |(fuel_type, total_or_net), _fuel| + fuel_key = [fuel_type, total_or_net] + @emissions[key].annual_output_by_fuel[fuel_key] = 0.0 + @emissions[key].annual_output_by_end_use.keys.each do |eu_key| + next unless eu_key[0] == fuel_type + next if total_or_net == TE::Total && @end_uses[eu_key].is_negative # Generation not included in total + next if @emissions[key].annual_output_by_end_use[eu_key] == 0 - @emissions[key].annual_output_by_fuel[fuel_key] += @emissions[key].annual_output_by_end_use[eu_key] + @emissions[key].annual_output_by_fuel[fuel_key] += @emissions[key].annual_output_by_end_use[eu_key] - next unless args[:include_timeseries_emissions] || args[:include_timeseries_emission_fuels] + next unless args[:include_timeseries_emissions] || args[:include_timeseries_emission_fuels] - @emissions[key].timeseries_output_by_fuel[fuel_key] = [0.0] * @emissions[key].timeseries_output_by_end_use[eu_key].size if @emissions[key].timeseries_output_by_fuel[fuel_key].nil? - @emissions[key].timeseries_output_by_fuel[fuel_key] = @emissions[key].timeseries_output_by_fuel[fuel_key].zip(@emissions[key].timeseries_output_by_end_use[eu_key]).map { |x, y| x + y } - end + @emissions[key].timeseries_output_by_fuel[fuel_key] = [0.0] * @emissions[key].timeseries_output_by_end_use[eu_key].size if @emissions[key].timeseries_output_by_fuel[fuel_key].nil? + @emissions[key].timeseries_output_by_fuel[fuel_key] = @emissions[key].timeseries_output_by_fuel[fuel_key].zip(@emissions[key].timeseries_output_by_end_use[eu_key]).map { |x, y| x + y } end end @@ -1356,8 +1387,6 @@ def sanitize_name(name) end end end - - return outputs end # TODO @@ -1374,12 +1403,9 @@ def get_sim_times_of_year(year) # TODO # - # @param timeseries_frequency [TODO] TODO - # @param sim_start_day [TODO] TODO - # @param sim_end_day [TODO] TODO - # @param year [Integer] the calendar year + # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings # @return [TODO] TODO - def check_for_errors(runner, outputs) + def check_for_errors(runner) tol = 0.1 # ElectricityProduced:Facility contains: @@ -1408,18 +1434,18 @@ def check_for_errors(runner, outputs) end # Check sum of electricity produced end use outputs match total output from meter - if (outputs[:elec_prod_annual] - meter_elec_produced).abs > tol - runner.registerError("#{FT::Elec} produced category end uses (#{outputs[:elec_prod_annual].round(3)}) do not sum to total (#{meter_elec_produced.round(3)}).") + sum_elec_prod_annual = @end_uses.select { |k, eu| k[0] == FT::Elec && eu.is_negative }.map { |_k, eu| eu.annual_output.to_f }.sum(0.0) # Negative value + if (sum_elec_prod_annual - meter_elec_produced).abs > tol + runner.registerError("#{FT::Elec} produced category end uses (#{sum_elec_prod_annual.round(3)}) do not sum to total (#{meter_elec_produced.round(3)}).") return false end # Check sum of end use outputs match fuel outputs from meters - @fuels.keys.each do |fuel_type| + @fuels.keys.each do |fuel_type, total_or_net| + next if fuel_type == FT::Elec && total_or_net == TE::Total # Use net electricity, not total electricity + sum_categories = @end_uses.select { |k, _eu| k[0] == fuel_type }.map { |_k, eu| eu.annual_output.to_f }.sum(0.0) - meter_fuel_total = @fuels[fuel_type].annual_output.to_f - if fuel_type == FT::Elec - meter_fuel_total += meter_elec_produced - end + meter_fuel_total = @fuels[[fuel_type, total_or_net]].annual_output.to_f next unless (sum_categories - meter_fuel_total).abs > tol @@ -1468,11 +1494,10 @@ def check_for_errors(runner, outputs) # TODO # # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings - # @param outputs [TODO] TODO # @param args [Hash] Map of :argument_name => value # @param annual_output_path [TODO] TODO # @return [TODO] TODO - def report_runperiod_output_results(runner, outputs, args, annual_output_path) + def report_runperiod_output_results(runner, args, annual_output_path) # Set rounding precision for run period (e.g., annual) outputs. if args[:output_format] == 'msgpack' # No need to round; no file size penalty to storing full precision @@ -1503,11 +1528,8 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) # Fuels if args[:include_annual_fuel_consumptions] - @fuels.each do |fuel_type, fuel| + @fuels.each do |(_fuel_type, _total_or_net), fuel| results_out << ["#{fuel.name} (#{fuel.annual_units})", fuel.annual_output.to_f.round(n_digits)] - if fuel_type == FT::Elec - results_out << ['Fuel Use: Electricity: Net (MBtu)', outputs[:elec_net_annual].round(n_digits)] - end end results_out << [line_break] end @@ -1556,7 +1578,7 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) if args[:include_annual_emission_end_uses] if not @emissions.empty? @emissions.each do |_scenario_key, emission| - @fuels.keys.each do |fuel| + @fuels.keys.each do |fuel, _total_or_net| @end_uses.keys.each do |key| fuel_type, end_use_type = key next unless fuel_type == fuel @@ -1648,12 +1670,12 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) # TODO # # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings - # @param outputs [TODO] TODO + # @param timeseries_output_path [TODO] TODO # @param args [Hash] Map of :argument_name => value # @param timestamps_dst [TODO] TODO # @param timestamps_utc [TODO] TODO # @return [TODO] TODO - def report_timeseries_output_results(runner, outputs, timeseries_output_path, args, timestamps_dst, timestamps_utc) + def report_timeseries_output_results(runner, timeseries_output_path, args, timestamps_dst, timestamps_utc) return if @timestamps.nil? if not ['timestep', 'hourly', 'daily', 'monthly'].include? args[:timeseries_frequency] @@ -1703,11 +1725,6 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar end if args[:include_timeseries_fuel_consumptions] fuel_data = @fuels.values.select { |x| x.timeseries_output.sum(0.0) != 0 }.map { |x| [x.name, x.timeseries_units] + x.timeseries_output.map { |v| v.round(n_digits) } } - - if outputs[:elec_net_timeseries].sum != 0 - # Also add Net Electricity - fuel_data.insert(1, ['Fuel Use: Electricity: Net', get_timeseries_units_from_fuel_type(FT::Elec)] + outputs[:elec_net_timeseries].map { |v| v.round(n_digits) }) - end else fuel_data = [] end @@ -1806,17 +1823,24 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar output_variables_data = [] end + # EnergyPlus output meters + if not @output_meters.empty? + output_meters_data = @output_meters.values.map { |x| [x.name, x.timeseries_units] + x.timeseries_output } + else + output_meters_data = [] + end + return if (total_energy_data.size + fuel_data.size + end_use_data.size + system_use_data.size + emissions_data.size + emission_fuel_data.size + emission_end_use_data.size + hot_water_use_data.size + total_loads_data.size + comp_loads_data.size + unmet_hours_data.size + - zone_temps_data.size + airflows_data.size + weather_data.size + resilience_data.size + output_variables_data.size) == 0 + zone_temps_data.size + airflows_data.size + weather_data.size + resilience_data.size + output_variables_data.size + output_meters_data.size) == 0 fail 'Unable to obtain timestamps.' if @timestamps.empty? if ['csv'].include? args[:output_format] # Assemble data data = data.zip(*timestamps2, *timestamps3, *total_energy_data, *fuel_data, *end_use_data, *system_use_data, *emissions_data, - *emission_fuel_data, *emission_end_use_data, *hot_water_use_data, *total_loads_data, *comp_loads_data, - *unmet_hours_data, *zone_temps_data, *airflows_data, *weather_data, *resilience_data, *output_variables_data) + *emission_fuel_data, *emission_end_use_data, *hot_water_use_data, *total_loads_data, *comp_loads_data, *unmet_hours_data, + *zone_temps_data, *airflows_data, *weather_data, *resilience_data, *output_variables_data, *output_meters_data) # Error-check n_elements = [] @@ -1882,7 +1906,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar [total_energy_data, fuel_data, end_use_data, system_use_data, emissions_data, emission_fuel_data, emission_end_use_data, hot_water_use_data, total_loads_data, comp_loads_data, unmet_hours_data, - zone_temps_data, airflows_data, weather_data, resilience_data, output_variables_data].each do |d| + zone_temps_data, airflows_data, weather_data, resilience_data, output_variables_data, output_meters_data].each do |d| d.each do |o| grp, name = o[0].split(':', 2) h[grp] = {} if h[grp].nil? @@ -2011,10 +2035,7 @@ def get_resilience_timeseries(init_time_step, batt_kwh, batt_kw, batt_soc_kwh, c def get_report_meter_data_timeseries(meter_names, unit_conv, unit_adder, timeseries_frequency) return [0.0] * @timestamps.size if meter_names.empty? - msgpack_timeseries_name = { 'timestep' => 'TimeStep', - 'hourly' => 'Hourly', - 'daily' => 'Daily', - 'monthly' => 'Monthly' }[timeseries_frequency] + msgpack_timeseries_name = get_msgpack_timeseries_name(timeseries_frequency) timeseries_data = @msgpackData['MeterData'][msgpack_timeseries_name] cols = timeseries_data['Cols'] rows = timeseries_data['Rows'] @@ -2107,23 +2128,55 @@ def apply_ems_shift(timeseries_frequency) # TODO # - # @param var [TODO] TODO + # @param var_name [TODO] TODO # @return [TODO] TODO - def get_report_variable_data_timeseries_key_values_and_units(var) + def get_report_variable_data_timeseries_key_values_and_units(var_name) keys = [] units = '' - if not @msgpackDataTimeseries.nil? - @msgpackDataTimeseries['Cols'].each do |col| - next unless col['Variable'].end_with? ":#{var}" + return keys, units if @msgpackDataTimeseries.nil? - keys << col['Variable'].split(':')[0..-2].join(':') - units = col['Units'] - end + @msgpackDataTimeseries['Cols'].each do |col| + next unless col['Variable'].end_with? ":#{var_name}" + + keys << col['Variable'].split(':')[0..-2].join(':') + units = col['Units'] end return keys, units end + # TODO + # + # @param meter_name [TODO] TODO + # @param timeseries_frequency [TODO] TODO + # @return [TODO] TODO + def get_report_meter_data_timeseries_units(meter_name, timeseries_frequency) + return if @msgpackData.nil? + + msgpack_timeseries_name = get_msgpack_timeseries_name(timeseries_frequency) + timeseries_data = @msgpackData['MeterData'][msgpack_timeseries_name] + return if timeseries_data.nil? + + timeseries_data['Cols'].each do |col| + next unless col['Variable'] == meter_name + + return col['Units'] + end + + return + end + + # TODO + # + # @param timeseries_frequency [TODO] TODO + # @return [TODO] TODO + def get_msgpack_timeseries_name(timeseries_frequency) + return { 'timestep' => 'TimeStep', + 'hourly' => 'Hourly', + 'daily' => 'Daily', + 'monthly' => 'Monthly' }[timeseries_frequency] + end + # TODO # # @param report_name [TODO] TODO @@ -2156,15 +2209,15 @@ def get_tabular_data_value(report_name, report_for_string, table_name, row_names # TODO # # @param obj [TODO] TODO - # @param sync_obj [TODO] TODO + # @param sync_objs [TODO] TODO # @param sys_id [TODO] TODO # @param mult [TODO] TODO # @return [TODO] TODO - def apply_multiplier_to_output(obj, sync_obj, sys_id, mult) + def apply_multiplier_to_output(obj, sync_objs, sys_id, mult) # Annual orig_value = obj.annual_output_by_system[sys_id] obj.annual_output_by_system[sys_id] = orig_value * mult - if not sync_obj.nil? + sync_objs.each do |sync_obj| sync_obj.annual_output += (orig_value * mult - orig_value) end @@ -2172,8 +2225,8 @@ def apply_multiplier_to_output(obj, sync_obj, sys_id, mult) if not obj.timeseries_output_by_system.empty? orig_values = obj.timeseries_output_by_system[sys_id] obj.timeseries_output_by_system[sys_id] = obj.timeseries_output_by_system[sys_id].map { |x| x * mult } - if not sync_obj.nil? - diffs = obj.timeseries_output_by_system[sys_id].zip(orig_values).map { |x, y| x - y } + diffs = obj.timeseries_output_by_system[sys_id].zip(orig_values).map { |x, y| x - y } + sync_objs.each do |sync_obj| sync_obj.timeseries_output = sync_obj.timeseries_output.zip(diffs).map { |x, y| x + y } end end @@ -2249,13 +2302,13 @@ def initialize # TODO class Fuel < BaseOutput - # @param meters [TODO] TODO - def initialize(meters: []) + # @param meter [TODO] TODO + def initialize(meter:) super() - @meters = meters + @meter = meter @timeseries_output_by_system = {} end - attr_accessor(:meters, :timeseries_output_by_system) + attr_accessor(:meter, :timeseries_output_by_system) end # TODO @@ -2263,7 +2316,7 @@ class EndUse < BaseOutput # @param outputs [TODO] TODO # @param is_negative [TODO] TODO # @param is_storage [TODO] TODO - def initialize(outputs: [], is_negative: false, is_storage: false) + def initialize(outputs:, is_negative: false, is_storage: false) super() @variables = outputs.select { |o| !o[2].include?(':') } @meters = outputs.select { |o| o[2].include?(':') } @@ -2297,7 +2350,7 @@ def initialize() # TODO class HotWater < BaseOutput # @param outputs [TODO] TODO - def initialize(outputs: []) + def initialize(outputs:) super() @variables = outputs.select { |o| !o[2].include?(':') } @meters = outputs.select { |o| o[2].include?(':') } @@ -2310,7 +2363,7 @@ def initialize(outputs: []) # TODO class Resilience < BaseOutput # @param variables [TODO] TODO - def initialize(variables: []) + def initialize(variables:) super() @variables = variables end @@ -2320,11 +2373,13 @@ def initialize(variables: []) # TODO class PeakFuel < BaseOutput # @param report [TODO] TODO - def initialize(report:) + # @param meter [TODO] TODO + def initialize(report:, meter:) super() @report = report + @meter = meter end - attr_accessor(:report) + attr_accessor(:report, :meter) end # TODO @@ -2363,16 +2418,6 @@ def initialize(ems_variable:) attr_accessor(:ems_variable) end - # TODO - class IdealLoad < BaseOutput - # @param variables [TODO] TODO - def initialize(variables: []) - super() - @variables = variables - end - attr_accessor(:variables) - end - # TODO class PeakLoad < BaseOutput # @param ems_variable [TODO] TODO @@ -2418,7 +2463,7 @@ def initialize(variable:, variable_units:, timeseries_units:) end # TODO - class OutputVariable < BaseOutput + class OutputVariableOrMeter < BaseOutput def initialize super() end @@ -2428,9 +2473,9 @@ def initialize # TODO # # @param called_from_outputs_method [TODO] TODO - # @param user_output_variables [TODO] TODO + # @param args [TODO] TODO # @return [TODO] TODO - def setup_outputs(called_from_outputs_method, user_output_variables = nil) + def setup_outputs(called_from_outputs_method, args = {}) # TODO # # @param fuel_type [TODO] TODO @@ -2474,7 +2519,6 @@ def get_timeseries_units_from_fuel_type(fuel_type) @end_uses[[FT::Elec, EUT::CeilingFan]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::CeilingFan])) @end_uses[[FT::Elec, EUT::Television]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Television])) @end_uses[[FT::Elec, EUT::PlugLoads]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PlugLoads])) - @end_uses[[FT::Elec, EUT::Vehicle]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Vehicle])) @end_uses[[FT::Elec, EUT::WellPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::WellPump])) @end_uses[[FT::Elec, EUT::PoolHeater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PoolHeater])) @end_uses[[FT::Elec, EUT::PoolPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PoolPump])) @@ -2486,6 +2530,7 @@ def get_timeseries_units_from_fuel_type(fuel_type) is_negative: true) @end_uses[[FT::Elec, EUT::Battery]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Battery]), is_storage: true) + @end_uses[[FT::Elec, EUT::Vehicle]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Vehicle])) @end_uses[[FT::Gas, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::Heating])) @end_uses[[FT::Gas, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::HeatingHeatPumpBackup])) @end_uses[[FT::Gas, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::HotWater])) @@ -2563,20 +2608,25 @@ def get_timeseries_units_from_fuel_type(fuel_type) # Fuels @fuels = {} - @fuels[FT::Elec] = Fuel.new(meters: ["#{EPlus::FuelTypeElectricity}:Facility"]) - @fuels[FT::Gas] = Fuel.new(meters: ["#{EPlus::FuelTypeNaturalGas}:Facility"]) - @fuels[FT::Oil] = Fuel.new(meters: ["#{EPlus::FuelTypeOil}:Facility"]) - @fuels[FT::Propane] = Fuel.new(meters: ["#{EPlus::FuelTypePropane}:Facility"]) - @fuels[FT::WoodCord] = Fuel.new(meters: ["#{EPlus::FuelTypeWoodCord}:Facility"]) - @fuels[FT::WoodPellets] = Fuel.new(meters: ["#{EPlus::FuelTypeWoodPellets}:Facility"]) - @fuels[FT::Coal] = Fuel.new(meters: ["#{EPlus::FuelTypeCoal}:Facility"]) - - @fuels.each do |fuel_type, fuel| - fuel.name = "Fuel Use: #{fuel_type}: Total" + @fuels[[FT::Elec, TE::Total]] = Fuel.new(meter: Outputs::MeterCustomElectricityTotal.upcase) + @fuels[[FT::Elec, TE::Net]] = Fuel.new(meter: Outputs::MeterCustomElectricityNet.upcase) + @fuels[[FT::Gas, TE::Total]] = Fuel.new(meter: "#{EPlus::FuelTypeNaturalGas}:Facility") + @fuels[[FT::Oil, TE::Total]] = Fuel.new(meter: "#{EPlus::FuelTypeOil}:Facility") + @fuels[[FT::Propane, TE::Total]] = Fuel.new(meter: "#{EPlus::FuelTypePropane}:Facility") + @fuels[[FT::WoodCord, TE::Total]] = Fuel.new(meter: "#{EPlus::FuelTypeWoodCord}:Facility") + @fuels[[FT::WoodPellets, TE::Total]] = Fuel.new(meter: "#{EPlus::FuelTypeWoodPellets}:Facility") + @fuels[[FT::Coal, TE::Total]] = Fuel.new(meter: "#{EPlus::FuelTypeCoal}:Facility") + + @fuels.each do |(fuel_type, total_or_net), fuel| + if total_or_net == TE::Net + fuel.name = "Fuel Use: #{fuel_type}: Net" + elsif total_or_net == TE::Total + fuel.name = "Fuel Use: #{fuel_type}: Total" + end fuel.annual_units = 'MBtu' fuel.timeseries_units = get_timeseries_units_from_fuel_type(fuel_type) if @end_uses.count { |key, end_use| key[0] == fuel_type && end_use.variables.size + end_use.meters.size > 0 } == 0 - fuel.meters = [] + fuel.meter = nil end end @@ -2630,13 +2680,20 @@ def get_timeseries_units_from_fuel_type(fuel_type) # Peak Fuels @peak_fuels = {} - @peak_fuels[[FT::Elec, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Total') - @peak_fuels[[FT::Elec, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Total') - @peak_fuels[[FT::Elec, PFT::Annual]] = PeakFuel.new(report: 'Peak Electricity Total') + @peak_fuels[[FT::Elec, TE::Total, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Total', meter: Outputs::MeterCustomElectricityTotal) + @peak_fuels[[FT::Elec, TE::Total, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Total', meter: Outputs::MeterCustomElectricityTotal) + @peak_fuels[[FT::Elec, TE::Total, PFT::Annual]] = PeakFuel.new(report: 'Peak Electricity Total', meter: Outputs::MeterCustomElectricityTotal) + @peak_fuels[[FT::Elec, TE::Net, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Net', meter: Outputs::MeterCustomElectricityNet) + @peak_fuels[[FT::Elec, TE::Net, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Net', meter: Outputs::MeterCustomElectricityNet) + @peak_fuels[[FT::Elec, TE::Net, PFT::Annual]] = PeakFuel.new(report: 'Peak Electricity Net', meter: Outputs::MeterCustomElectricityNet) @peak_fuels.each do |key, peak_fuel| - fuel_type, peak_fuel_type = key - peak_fuel.name = "Peak #{fuel_type}: #{peak_fuel_type} Total" + fuel_type, total_or_net, peak_fuel_type = key + if total_or_net == TE::Net + peak_fuel.name = "Peak #{fuel_type}: #{peak_fuel_type} Net" + elsif total_or_net == TE::Total + peak_fuel.name = "Peak #{fuel_type}: #{peak_fuel_type} Total" + end peak_fuel.annual_units = 'W' end @@ -2714,6 +2771,7 @@ def get_timeseries_units_from_fuel_type(fuel_type) @unmet_hours = {} @unmet_hours[UHT::Heating] = UnmetHours.new(ems_variable: 'htg_unmet_hours') @unmet_hours[UHT::Cooling] = UnmetHours.new(ems_variable: 'clg_unmet_hours') + @unmet_hours[UHT::Driving] = UnmetHours.new(ems_variable: 'unmet_driving_hours') @unmet_hours.each do |load_type, unmet_hour| unmet_hour.name = "Unmet Hours: #{load_type}" @@ -2760,13 +2818,10 @@ def get_timeseries_units_from_fuel_type(fuel_type) end # Output Variables - @output_variables_requests = {} - if not user_output_variables.nil? - output_variables = user_output_variables.split(',').map(&:strip) - output_variables.each do |output_variable| - @output_variables_requests[output_variable] = OutputVariable.new - end - end + @output_variables_requests = args[:user_output_variables].to_s.split(',').map(&:strip) + + # Output Meters + @output_meters_requests = args[:user_output_meters].to_s.split(',').map(&:strip) end # TODO @@ -2955,7 +3010,13 @@ def get_object_outputs_by_key(model, object, class_name) [to_ft[fuel], EUT::Generator] => ["Generator #{fuel} HHV Basis Energy"] } elsif object.to_ElectricLoadCenterStorageLiIonNMCBattery.is_initialized - return { [FT::Elec, EUT::Battery] => ['Electric Storage Production Decrement Energy', 'Electric Storage Discharge Energy'] } + if object.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeVehicle + return { [FT::Elec, EUT::Vehicle] => ['Electric Storage Charge Energy'] } + elsif object.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeBattery + return { [FT::Elec, EUT::Battery] => ['Electric Storage Production Decrement Energy', 'Electric Storage Discharge Energy'] } + else + fail "Unexpected elcs: #{object.name}" + end elsif object.to_ElectricEquipment.is_initialized object = object.to_ElectricEquipment.get @@ -2981,7 +3042,7 @@ def get_object_outputs_by_key(model, object, class_name) Constants::ObjectTypeMiscElectricVehicleCharging => EUT::Vehicle, Constants::ObjectTypeMiscWellPump => EUT::WellPump }.each do |obj_name, eut| next unless subcategory.start_with? obj_name - fail 'Unepected error: multiple matches.' unless end_use.nil? + fail 'Unexpected error: multiple matches.' unless end_use.nil? end_use = eut end @@ -3014,7 +3075,7 @@ def get_object_outputs_by_key(model, object, class_name) Constants::ObjectTypeWaterHeaterAdjustment => EUT::HotWater, Constants::ObjectTypeBatteryLossesAdjustment => EUT::Battery }.each do |obj_name, eut| next unless subcategory.start_with? obj_name - fail 'Unepected error: multiple matches.' unless end_use.nil? + fail 'Unexpected error: multiple matches.' unless end_use.nil? end_use = eut end @@ -3107,7 +3168,9 @@ def get_object_outputs_by_key(model, object, class_name) # Resilience if object.to_ElectricLoadCenterStorageLiIonNMCBattery.is_initialized - return { RT::Battery => ['Electric Storage Charge Fraction'] } + if object.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants::ObjectTypeBattery + return { RT::Battery => ['Electric Storage Charge Fraction'] } + end elsif object.to_OtherEquipment.is_initialized if object_type == Constants::ObjectTypeBatteryLossesAdjustment diff --git a/ReportSimulationOutput/measure.xml b/ReportSimulationOutput/measure.xml index 26a2bed604..5309c64665 100644 --- a/ReportSimulationOutput/measure.xml +++ b/ReportSimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 report_simulation_output df9d170c-c21a-4130-866d-0d46b06073fd - 615f4066-7143-42fb-a5df-3e75c61d42da - 2025-01-10T20:23:42Z + b5532d29-905a-4be2-8cbd-3738368925e5 + 2025-02-27T17:59:20Z 9BF1E6AC ReportSimulationOutput HPXML Simulation Output Report @@ -193,7 +193,7 @@ include_annual_unmet_hours Generate Annual Output: Unmet Hours - Generates annual unmet hours for heating and cooling. + Generates annual unmet hours for heating, cooling, and EV driving. Boolean false false @@ -212,7 +212,7 @@ include_annual_peak_fuels Generate Annual Output: Peak Fuels - Generates annual electricity peaks for summer/winter. + Generates annual/summer/winter electricity peaks. Boolean false false @@ -547,7 +547,7 @@ include_timeseries_unmet_hours Generate Timeseries Output: Unmet Hours - Generates timeseries unmet hours for heating and cooling. + Generates timeseries unmet hours for heating, cooling, and EV driving. Boolean false false @@ -712,6 +712,14 @@ false false + + user_output_meters + Generate Timeseries Output: EnergyPlus Output Meters + Optionally generates timeseries EnergyPlus output meters. If multiple output meters are desired, use a comma-separated list. Example: "Electricity:Facility, HeatingCoils:EnergyTransfer" + String + false + false + annual_output_file_name Annual Output File Name @@ -751,6 +759,13 @@ Double false + + fuel_use_electricity_net_m_btu + fuel_use_electricity_net_m_btu + fuel_use_electricity_net_m_btu + Double + false + fuel_use_natural_gas_total_m_btu fuel_use_natural_gas_total_m_btu @@ -975,13 +990,6 @@ Double false - - end_use_electricity_electric_vehicle_charging_m_btu - end_use_electricity_electric_vehicle_charging_m_btu - end_use_electricity_electric_vehicle_charging_m_btu - Double - false - end_use_electricity_well_pump_m_btu end_use_electricity_well_pump_m_btu @@ -1038,6 +1046,13 @@ Double false + + end_use_electricity_electric_vehicle_charging_m_btu + end_use_electricity_electric_vehicle_charging_m_btu + end_use_electricity_electric_vehicle_charging_m_btu + Double + false + end_use_natural_gas_heating_m_btu end_use_natural_gas_heating_m_btu @@ -1535,6 +1550,13 @@ Double false + + unmet_hours_ev_driving_hr + unmet_hours_ev_driving_hr + unmet_hours_ev_driving_hr + Double + false + peak_electricity_winter_total_w peak_electricity_winter_total_w @@ -1556,6 +1578,27 @@ Double false + + peak_electricity_winter_net_w + peak_electricity_winter_net_w + peak_electricity_winter_net_w + Double + false + + + peak_electricity_summer_net_w + peak_electricity_summer_net_w + peak_electricity_summer_net_w + Double + false + + + peak_electricity_annual_net_w + peak_electricity_annual_net_w + peak_electricity_annual_net_w + Double + false + peak_load_heating_delivered_k_btu_hr peak_load_heating_delivered_k_btu_hr @@ -1912,7 +1955,7 @@ README.md md readme - CDB2D617 + 5BD99B0E
README.md.erb @@ -1929,13 +1972,13 @@ measure.rb rb script - 8265E27A + EF3CBE60 test_report_sim_output.rb rb test - 8552F493 + 97D742B1 diff --git a/ReportSimulationOutput/tests/test_report_sim_output.rb b/ReportSimulationOutput/tests/test_report_sim_output.rb index b147a71913..83060c90fb 100644 --- a/ReportSimulationOutput/tests/test_report_sim_output.rb +++ b/ReportSimulationOutput/tests/test_report_sim_output.rb @@ -9,6 +9,7 @@ require_relative '../../HPXMLtoOpenStudio/resources/xmlhelper.rb' require_relative '../../HPXMLtoOpenStudio/resources/constants.rb' require_relative '../../HPXMLtoOpenStudio/resources/version.rb' +require_relative '../../HPXMLtoOpenStudio/resources/calendar.rb' require 'oga' require 'json' @@ -66,7 +67,6 @@ def teardown "End Use: #{FT::Elec}: #{EUT::CeilingFan} (MBtu)", "End Use: #{FT::Elec}: #{EUT::Television} (MBtu)", "End Use: #{FT::Elec}: #{EUT::PlugLoads} (MBtu)", - "End Use: #{FT::Elec}: #{EUT::Vehicle} (MBtu)", "End Use: #{FT::Elec}: #{EUT::WellPump} (MBtu)", "End Use: #{FT::Elec}: #{EUT::PoolHeater} (MBtu)", "End Use: #{FT::Elec}: #{EUT::PoolPump} (MBtu)", @@ -75,6 +75,7 @@ def teardown "End Use: #{FT::Elec}: #{EUT::PV} (MBtu)", "End Use: #{FT::Elec}: #{EUT::Generator} (MBtu)", "End Use: #{FT::Elec}: #{EUT::Battery} (MBtu)", + "End Use: #{FT::Elec}: #{EUT::Vehicle} (MBtu)", "End Use: #{FT::Gas}: #{EUT::Heating} (MBtu)", "End Use: #{FT::Gas}: #{EUT::HeatingHeatPumpBackup} (MBtu)", "End Use: #{FT::Gas}: #{EUT::HotWater} (MBtu)", @@ -151,9 +152,13 @@ def teardown "Load: #{LT::HotWaterSolarThermal} (MBtu)", "Unmet Hours: #{UHT::Heating} (hr)", "Unmet Hours: #{UHT::Cooling} (hr)", + "Unmet Hours: #{UHT::Driving} (hr)", "Peak Electricity: #{PFT::Winter} #{TE::Total} (W)", "Peak Electricity: #{PFT::Summer} #{TE::Total} (W)", "Peak Electricity: #{PFT::Annual} #{TE::Total} (W)", + "Peak Electricity: #{PFT::Winter} #{TE::Net} (W)", + "Peak Electricity: #{PFT::Summer} #{TE::Net} (W)", + "Peak Electricity: #{PFT::Annual} #{TE::Net} (W)", "Peak Load: #{PLT::Heating} (kBtu/hr)", "Peak Load: #{PLT::Cooling} (kBtu/hr)", "Component Load: Heating: #{CLT::Roofs} (MBtu)", @@ -332,6 +337,7 @@ def teardown BaseHPXMLTimeseriesColsUnmetHours = [ "Unmet Hours: #{UHT::Heating}", "Unmet Hours: #{UHT::Cooling}", + "Unmet Hours: #{UHT::Driving}", ] BaseHPXMLTimeseriesColsZoneTemps = [ @@ -401,6 +407,11 @@ def teardown 'Surface Construction Index: Window4' ] + BaseHPXMLTimeseriesColsEnergyPlusOutputMeters = [ + 'MainsWater:Facility', + 'HeatingCoils:EnergyTransfer' + ] + def all_base_hpxml_timeseries_cols return (BaseHPXMLTimeseriesColsEnergy + BaseHPXMLTimeseriesColsFuels + @@ -425,113 +436,113 @@ def emission_scenarios def emission_annual_cols cols = [] emission_scenarios.each do |scenario| - cols += ["Emissions: #{scenario}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{TE::Net} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{TE::Net} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{TE::Total} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingFanPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingHeatPumpBackupFanPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Cooling} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::CoolingFanPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWaterRecircPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWaterSolarThermalPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsInterior} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsGarage} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsExterior} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::MechVent} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::MechVentPrecool} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::WholeHouseFan} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Refrigerator} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Freezer} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Dehumidifier} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Dishwasher} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesWasher} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::CeilingFan} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Television} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PlugLoads} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Vehicle} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::WellPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PoolHeater} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PoolPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PermanentSpaHeater} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PermanentSpaPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PV} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Generator} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Battery} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::PoolHeater} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::PermanentSpaHeater} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Grill} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Lighting} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Fireplace} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Generator} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Grill} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Lighting} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Fireplace} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Generator} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Grill} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Lighting} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Fireplace} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Generator} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Grill} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Lighting} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Fireplace} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Generator} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Grill} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Lighting} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Fireplace} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Generator} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Heating} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::HeatingHeatPumpBackup} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::HotWater} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::ClothesDryer} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::RangeOven} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Grill} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Lighting} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Fireplace} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::MechVentPreheat} (lb)", - "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Generator} (lb)"] + cols.concat(["Emissions: #{scenario}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{TE::Net} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{TE::Net} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{TE::Total} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingFanPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingHeatPumpBackupFanPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Cooling} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::CoolingFanPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWaterRecircPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWaterSolarThermalPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsInterior} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsGarage} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsExterior} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::MechVent} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::MechVentPrecool} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::WholeHouseFan} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Refrigerator} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Freezer} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Dehumidifier} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Dishwasher} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesWasher} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::CeilingFan} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Television} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PlugLoads} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::WellPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PoolHeater} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PoolPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PermanentSpaHeater} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PermanentSpaPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PV} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Generator} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Battery} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Vehicle} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::PoolHeater} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::PermanentSpaHeater} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Grill} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Lighting} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Fireplace} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Generator} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Grill} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Lighting} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Fireplace} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::Oil}: #{EUT::Generator} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Grill} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Lighting} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Fireplace} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::Propane}: #{EUT::Generator} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Grill} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Lighting} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Fireplace} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::WoodCord}: #{EUT::Generator} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Grill} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Lighting} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Fireplace} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::WoodPellets}: #{EUT::Generator} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Heating} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::HeatingHeatPumpBackup} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::HotWater} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::ClothesDryer} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::RangeOven} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Grill} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Lighting} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Fireplace} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::MechVentPreheat} (lb)", + "Emissions: #{scenario}: #{FT::Coal}: #{EUT::Generator} (lb)"]) end return cols end @@ -539,8 +550,8 @@ def emission_annual_cols def emissions_timeseries_cols cols = [] emission_scenarios.each do |scenario| - cols += ["Emissions: #{scenario}: #{TE::Total}", - "Emissions: #{scenario}: #{TE::Net}"] + cols.concat(["Emissions: #{scenario}: #{TE::Total}", + "Emissions: #{scenario}: #{TE::Net}"]) end return cols end @@ -548,9 +559,9 @@ def emissions_timeseries_cols def emission_fuels_timeseries_cols cols = [] emission_scenarios.each do |scenario| - cols += ["Emissions: #{scenario}: #{FT::Elec}: #{TE::Total}", - "Emissions: #{scenario}: #{FT::Elec}: #{TE::Net}", - "Emissions: #{scenario}: #{FT::Gas}: #{TE::Total}"] + cols.concat(["Emissions: #{scenario}: #{FT::Elec}: #{TE::Total}", + "Emissions: #{scenario}: #{FT::Elec}: #{TE::Net}", + "Emissions: #{scenario}: #{FT::Gas}: #{TE::Total}"]) end return cols end @@ -558,29 +569,31 @@ def emission_fuels_timeseries_cols def emission_end_uses_timeseries_cols cols = [] emission_scenarios.each do |scenario| - cols += ["Emissions: #{scenario}: #{FT::Elec}: #{EUT::Cooling}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::CoolingFanPump}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingFanPump}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWater}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsInterior}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsExterior}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Refrigerator}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Dishwasher}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesWasher}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesDryer}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::RangeOven}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Television}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PlugLoads}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PV}", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Battery}", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Heating}"] + cols.concat(["Emissions: #{scenario}: #{FT::Elec}: #{EUT::Cooling}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::CoolingFanPump}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HeatingFanPump}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotWater}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsInterior}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::LightsExterior}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Refrigerator}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Dishwasher}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesWasher}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::ClothesDryer}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::RangeOven}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Television}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PlugLoads}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PV}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Battery}", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Vehicle}", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Heating}"]) end return cols end def pv_battery_timeseries_cols return ["End Use: #{FT::Elec}: #{EUT::PV}", - "End Use: #{FT::Elec}: #{EUT::Battery}"] + "End Use: #{FT::Elec}: #{EUT::Battery}", + "End Use: #{FT::Elec}: #{EUT::Vehicle}"] end def test_annual_only @@ -616,6 +629,11 @@ def test_annual_only actual_fridge_energy_use = actual_annual_rows["End Use: #{FT::Elec}: #{EUT::Refrigerator} (MBtu)"] rated_fridge_energy_use = UnitConversions.convert(hpxml.buildings[0].refrigerators[0].rated_annual_kwh, 'kWh', 'MBtu') assert_in_epsilon(0.93, actual_fridge_energy_use / rated_fridge_energy_use, 0.1) + + # Verify Total/Net outputs when no PV + actual_annual_rows = _get_annual_values(annual_csv) + assert_equal(actual_annual_rows["Energy Use: #{TE::Total} (MBtu)"], actual_annual_rows["Energy Use: #{TE::Net} (MBtu)"]) + assert_equal(actual_annual_rows["Fuel Use: #{FT::Elec}: #{TE::Total} (MBtu)"], actual_annual_rows["Fuel Use: #{FT::Elec}: #{TE::Net} (MBtu)"]) end def test_annual_only2 @@ -689,6 +707,10 @@ def test_timeseries_hourly_total_energy assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Energy Use: #{TE::Total}", "Energy Use: #{TE::Net}"]) + # Verify Total/Net outputs when PV + actual_annual_rows = _get_annual_values(annual_csv) + assert_operator(actual_annual_rows["Energy Use: #{TE::Total} (MBtu)"], :>, actual_annual_rows["Energy Use: #{TE::Net} (MBtu)"]) + assert_operator(actual_annual_rows["Fuel Use: #{FT::Elec}: #{TE::Total} (MBtu)"], :>, actual_annual_rows["Fuel Use: #{FT::Elec}: #{TE::Net} (MBtu)"]) end def test_timeseries_hourly_fuels @@ -878,13 +900,13 @@ def test_timeseries_hourly_component_loads "Component Load: Cooling: #{CLT::InternalGains}"]) end - def test_timeseries_hourly_unmet_hours - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-hvac-undersized.xml'), + def check_timeseries_hourly_unmet_hours(xml_file, unmet_hours_cols) + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), "../../workflow/sample_files/#{xml_file}"), 'skip_validation' => true, 'add_component_loads' => true, 'timeseries_frequency' => 'hourly', 'include_timeseries_unmet_hours' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) + annual_csv, timeseries_csv, run_log = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsUnmetHours @@ -894,8 +916,15 @@ def test_timeseries_hourly_unmet_hours assert_equal(8760, timeseries_rows.size - 2) timeseries_cols = timeseries_rows.transpose assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Unmet Hours: #{UHT::Heating}", - "Unmet Hours: #{UHT::Cooling}"]) + _check_for_nonzero_avg_timeseries_value(timeseries_csv, unmet_hours_cols) + if xml_file.include? 'base-vehicle-ev-charger-undercharged' + assert(File.readlines(run_log).any? { |line| line.include?('driving hours could not be met') }) + end + end + + def test_timeseries_hourly_unmet_hours + check_timeseries_hourly_unmet_hours('base-hvac-undersized.xml', ["Unmet Hours: #{UHT::Heating}", "Unmet Hours: #{UHT::Cooling}"]) + check_timeseries_hourly_unmet_hours('base-vehicle-ev-charger-undercharged.xml', ["Unmet Hours: #{UHT::Driving}"]) end def test_timeseries_hourly_zone_temperatures @@ -1320,6 +1349,26 @@ def test_timeseries_energyplus_output_variables assert(File.readlines(run_log).any? { |line| line.include?("Request for output variable 'Foo'") }) end + def test_timeseries_energyplus_output_meters + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), + 'skip_validation' => true, + 'add_component_loads' => true, + 'timeseries_frequency' => 'hourly', + 'user_output_meters' => 'MainsWater:Facility, Foo:Meter, HeatingCoils:EnergyTransfer' } + annual_csv, timeseries_csv, run_log = _test_measure(args_hash) + assert(File.exist?(annual_csv)) + assert(File.exist?(timeseries_csv)) + expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsEnergyPlusOutputMeters + actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') + assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) + timeseries_rows = CSV.read(timeseries_csv) + assert_equal(8760, timeseries_rows.size - 2) + timeseries_cols = timeseries_rows.transpose + assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) + _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsEnergyPlusOutputMeters) + assert(File.readlines(run_log).any? { |line| line.include?("Request for output meter 'Foo:Meter'") }) + end + def test_for_unsuccessful_simulation_infinity # Create HPXML w/ AFUE=0 to generate Infinity result hpxml_path = File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml') diff --git a/ReportUtilityBills/measure.rb b/ReportUtilityBills/measure.rb index a4e6158b79..611dd364f8 100644 --- a/ReportUtilityBills/measure.rb +++ b/ReportUtilityBills/measure.rb @@ -203,21 +203,15 @@ def energyPlusOutputRequests(runner, user_arguments) # Has production has_pv = @hpxml_buildings.count { |hpxml_bldg| !hpxml_bldg.pv_systems.empty? } > 0 - has_battery = @model.getElectricLoadCenterStorageLiIonNMCBatterys.size > 0 # has modeled battery - has_generator = @hpxml_buildings.count { |hpxml_bldg| !hpxml_bldg.generators.empty? } > 0 # Fuel outputs fuels.each do |(fuel_type, is_production), fuel| - fuel.meters.each do |meter| - next unless has_fuel[hpxml_fuel_map[fuel_type]] - next if is_production && !has_pv # we don't need to request these meters if there isn't pv - next if meter.include?('ElectricStorage') && !has_battery # we don't need to request this meter if there isn't a modeled battery - next if meter.include?('Cogeneration') && !has_generator # we don't need to request this meter if there isn't a generator - - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get - if fuel_type == FT::Elec && @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},hourly;").get - end + next unless has_fuel[hpxml_fuel_map[fuel_type]] + next if is_production && !has_pv # we don't need to request this meter if there isn't pv + + result << OpenStudio::IdfObject.load("Output:Meter,#{fuel.meter},monthly;").get + if fuel_type == FT::Elec && @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates + result << OpenStudio::IdfObject.load("Output:Meter,#{fuel.meter},hourly;").get end end @@ -699,19 +693,19 @@ def get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario end end - # Initialize the Fuel objects with meters and units. + # Initialize the Fuel objects with meter and fuel units. # # @return [Hash] Fuel type, is_production => Fuel object def setup_fuel_outputs() fuels = {} - fuels[[FT::Elec, false]] = Fuel.new(meters: ["#{EPlus::FuelTypeElectricity}:Facility", "ElectricStorage:#{EPlus::FuelTypeElectricity}Produced", "Cogeneration:#{EPlus::FuelTypeElectricity}Produced"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeElectricity)) - fuels[[FT::Elec, true]] = Fuel.new(meters: ["Photovoltaic:#{EPlus::FuelTypeElectricity}Produced", "PowerConversion:#{EPlus::FuelTypeElectricity}Produced"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeElectricity)) - fuels[[FT::Gas, false]] = Fuel.new(meters: ["#{EPlus::FuelTypeNaturalGas}:Facility"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeNaturalGas)) - fuels[[FT::Oil, false]] = Fuel.new(meters: ["#{EPlus::FuelTypeOil}:Facility"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeOil)) - fuels[[FT::Propane, false]] = Fuel.new(meters: ["#{EPlus::FuelTypePropane}:Facility"], units: UtilityBills.get_fuel_units(HPXML::FuelTypePropane)) - fuels[[FT::WoodCord, false]] = Fuel.new(meters: ["#{EPlus::FuelTypeWoodCord}:Facility"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeWoodCord)) - fuels[[FT::WoodPellets, false]] = Fuel.new(meters: ["#{EPlus::FuelTypeWoodPellets}:Facility"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeWoodPellets)) - fuels[[FT::Coal, false]] = Fuel.new(meters: ["#{EPlus::FuelTypeCoal}:Facility"], units: UtilityBills.get_fuel_units(HPXML::FuelTypeCoal)) + fuels[[FT::Elec, false]] = Fuel.new(meter: Outputs::MeterCustomElectricityTotal.upcase, fuel: HPXML::FuelTypeElectricity) + fuels[[FT::Elec, true]] = Fuel.new(meter: Outputs::MeterCustomElectricityPV.upcase, fuel: HPXML::FuelTypeElectricity) + fuels[[FT::Gas, false]] = Fuel.new(meter: "#{EPlus::FuelTypeNaturalGas}:Facility", fuel: HPXML::FuelTypeNaturalGas) + fuels[[FT::Oil, false]] = Fuel.new(meter: "#{EPlus::FuelTypeOil}:Facility", fuel: HPXML::FuelTypeOil) + fuels[[FT::Propane, false]] = Fuel.new(meter: "#{EPlus::FuelTypePropane}:Facility", fuel: HPXML::FuelTypePropane) + fuels[[FT::WoodCord, false]] = Fuel.new(meter: "#{EPlus::FuelTypeWoodCord}:Facility", fuel: HPXML::FuelTypeWoodCord) + fuels[[FT::WoodPellets, false]] = Fuel.new(meter: "#{EPlus::FuelTypeWoodPellets}:Facility", fuel: HPXML::FuelTypeWoodPellets) + fuels[[FT::Coal, false]] = Fuel.new(meter: "#{EPlus::FuelTypeCoal}:Facility", fuel: HPXML::FuelTypeCoal) return fuels end @@ -750,41 +744,29 @@ def get_outputs(fuels, utility_bill_scenario) timeseries_freq = 'monthly' timeseries_freq = 'hourly' if fuel_type == FT::Elec && !utility_bill_scenario.elec_tariff_filepath.nil? - fuel.timeseries = get_report_meter_data_timeseries(fuel.meters, unit_conv, timeseries_freq) + fuel.timeseries = get_report_meter_data_timeseries(fuel.meter, unit_conv, timeseries_freq) end end - # Get the reported timeseries data from the fuel meters. + # Get the reported timeseries data from the fuel meter. # - # @param meter_names [Array] array of EnergyPlus meter names - # @param unit_conv [Double] the scalar that converts 1 Joule into units of the fuel meters + # @param meter_name [String] EnergyPlus meter name + # @param unit_conv [Double] the scalar that converts 1 Joule into units of the fuel meter # @param timeseries_freq [String] the frequency of the requested timeseries data # @return [Array] array of timeseries data - def get_report_meter_data_timeseries(meter_names, unit_conv, timeseries_freq) + def get_report_meter_data_timeseries(meter_name, unit_conv, timeseries_freq) msgpack_timeseries_name = { 'hourly' => 'Hourly', 'monthly' => 'Monthly' }[timeseries_freq] - begin - data = @msgpackData['MeterData'][msgpack_timeseries_name] - cols = data['Cols'] - rows = data['Rows'] - rescue - return [0.0] - end - indexes = cols.each_index.select { |i| meter_names.include? cols[i]['Variable'] } - meter_names = indexes.each.collect { |i| cols[i]['Variable'] } - indexes = Hash[indexes.zip(meter_names)] + data = @msgpackData['MeterData'][msgpack_timeseries_name] + cols = data['Cols'] + rows = data['Rows'] + + index = cols.each_index.find { |i| meter_name == cols[i]['Variable'] } + return [0.0] * rows.size if index.nil? vals = [] rows.each do |row| - row = row[row.keys[0]] - val = 0.0 - indexes.each do |i, meter_name| - r = row[i] - r *= -1 if ["ElectricStorage:#{EPlus::FuelTypeElectricity}Produced", "Cogeneration:#{EPlus::FuelTypeElectricity}Produced"].include?(meter_name) # positive for this meter means producing - - val += r * unit_conv - end - vals << val + vals << row[row.keys[0]][index] * unit_conv end return vals end diff --git a/ReportUtilityBills/measure.xml b/ReportUtilityBills/measure.xml index eaca6d9b0e..b4a1eaa94f 100644 --- a/ReportUtilityBills/measure.xml +++ b/ReportUtilityBills/measure.xml @@ -3,8 +3,8 @@ 3.1 report_utility_bills ca88a425-e59a-4bc4-af51-c7e7d1e960fe - 3d7e2753-fab2-4d89-bfd9-208a59523248 - 2024-11-27T02:33:42Z + 4c6ffc6f-5918-4eaa-a027-01b24f95f1a1 + 2025-02-17T23:51:16Z 15BF4E57 ReportUtilityBills Utility Bills Report @@ -180,7 +180,7 @@ measure.rb rb script - 48B476E1 + BBA464A6 detailed_rates/README.md @@ -318,7 +318,7 @@ util.rb rb resource - 2D0AE661 + BF9C0E6C Contains Demand Charges.json diff --git a/ReportUtilityBills/resources/util.rb b/ReportUtilityBills/resources/util.rb index b910754c2d..83c421c095 100644 --- a/ReportUtilityBills/resources/util.rb +++ b/ReportUtilityBills/resources/util.rb @@ -2,14 +2,14 @@ # Object that stores collections of EnergyPlus meter names, units, and timeseries data. class Fuel - # @param meters [Array] array of EnergyPlus meter names - # @param units [String] fuel units (HPXML::FuelTypeXXX) - def initialize(meters: [], units:) - @meters = meters + # @param meter [String] EnergyPlus meter name + # @param fuel [String] fuel type (HPXML::FuelTypeXXX) + def initialize(meter:, fuel:) + @meter = meter @timeseries = [] - @units = units + @units = UtilityBills.get_fuel_units(fuel) end - attr_accessor(:meters, :timeseries, :units) + attr_accessor(:meter, :timeseries, :units) end # Object that stores collections of fixed monthly rates, marginal rates, real-time rates, minimum monthly/annual charges, net metering and feed-in tariff information, and detailed tariff file information. @@ -52,8 +52,8 @@ module CalculateUtilityBill # # @param fuel_type [String] fuel type defined in the FT class # @param header [HPXML::Header] HPXML Header object (one per HPXML file) - # @param fuel_time_series [Array] reported timeseries data from the fuel meters - # @param is_production [Boolean] fuel meters are PV production or not + # @param fuel_time_series [Array] reported timeseries data from the fuel meter + # @param is_production [Boolean] fuel meter is PV production or not # @param rate [UtilityRate] UtilityRate object # @param bill [UtilityBill] UtilityBill object # @param net_elec [Double] net electricity production tallied by month diff --git a/docs/source/usage_instructions.rst b/docs/source/usage_instructions.rst index 0031d80089..91dc94afb3 100644 --- a/docs/source/usage_instructions.rst +++ b/docs/source/usage_instructions.rst @@ -38,6 +38,7 @@ Basic Run | ``openstudio workflow/run_simulation.rb -x workflow/sample_files/base.xml --hourly ALL`` | ``openstudio workflow/run_simulation.rb -x workflow/sample_files/base.xml --monthly fuels --monthly temperatures --output-format json`` | ``openstudio workflow/run_simulation.rb -x workflow/sample_files/base.xml --monthly fuels --hourly temperatures --hourly 'Zone People Occupant Count'`` +| ``openstudio workflow/run_simulation.rb -x workflow/sample_files/base.xml --monthly fuels --hourly temperatures --hourly 'MainsWater:Facility'`` | ``openstudio workflow/run_simulation.rb -x workflow/sample_files/base.xml --hourly ALL --output-format csv_dview`` | The last command will create a timeseries CSV output file that can be visualized by `DView `_ (available for download `here `_). diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index d58fb01cc3..4298d84882 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -426,7 +426,7 @@ For these simulations: Notes/caveats about this approach: - Some inputs (e.g., EPW location or ground conductivity) cannot vary across ``Building`` elements. -- :ref:`hpxml_batteries` are not currently supported. +- :ref:`hpxml_batteries` and :ref:`hpxml_vehicles` are not currently supported. - :ref:`hpxml_utility_bill_scenarios` using *detailed* :ref:`electricity_rates` are not supported. .. _building_site: @@ -679,45 +679,46 @@ They can be used to reflect real-world or stochastic occupancy. Detailed schedule inputs are provided via one or more CSV file that should be referenced in the HPXML file as ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/SchedulesFilePath`` elements. The column names available in the schedule CSV files are: - ================================ ======= ================================================================================= =============================== - Column Name Units Description Can Be Stochastically Generated [#]_ - ================================ ======= ================================================================================= =============================== - ``occupants`` frac Occupant heat gain schedule. Yes - ``lighting_interior`` frac Interior lighting energy use schedule. Yes - ``lighting_exterior`` frac Exterior lighting energy use schedule. No - ``lighting_garage`` frac Garage lighting energy use schedule. Yes - ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No - ``cooking_range`` frac Cooking range & oven energy use schedule. Yes - ``refrigerator`` frac Primary refrigerator energy use schedule. No - ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No - ``freezer`` frac Freezer energy use schedule. No - ``dishwasher`` frac Dishwasher energy use schedule. Yes - ``clothes_washer`` frac Clothes washer energy use schedule. Yes - ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes - ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes - ``plug_loads_other`` frac Other plug load energy use schedule. Yes - ``plug_loads_tv`` frac Television plug load energy use schedule. Yes - ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. No - ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No - ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No - ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No - ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No - ``pool_pump`` frac Pool pump energy use schedule. No - ``pool_heater`` frac Pool heater energy use schedule. No - ``permanent_spa_pump`` frac Permanent spa pump energy use schedule. No - ``permanent_spa_heater`` frac Permanent spa heater energy use schedule. No - ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes - ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes - ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes - ``hot_water_recirculation_pump`` frac Hot water recirculation pump schedule. No - ``general_water_use`` frac General water use internal gains. No - ``heating_setpoint`` F Thermostat heating setpoint schedule. No - ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No - ``hvac_maximum_power_ratio`` frac Variable speed system maximum power ratio schedule. [#]_ No - ``water_heater_setpoint`` F Water heater setpoint schedule. No - ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=hybrid/auto, 1=heat pump only. No - ``battery`` -1 to 1 Battery schedule. Positive for charging, negative for discharging. No - ================================ ======= ================================================================================= =============================== + ================================ ======= ============================================================================================= =============================== + Column Name Units Description Can Be Stochastically Generated [#]_ + ================================ ======= ============================================================================================= =============================== + ``occupants`` frac Occupant heat gain schedule. Yes + ``lighting_interior`` frac Interior lighting energy use schedule. Yes + ``lighting_exterior`` frac Exterior lighting energy use schedule. No + ``lighting_garage`` frac Garage lighting energy use schedule. Yes + ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No + ``cooking_range`` frac Cooking range & oven energy use schedule. Yes + ``refrigerator`` frac Primary refrigerator energy use schedule. No + ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No + ``freezer`` frac Freezer energy use schedule. No + ``dishwasher`` frac Dishwasher energy use schedule. Yes + ``clothes_washer`` frac Clothes washer energy use schedule. Yes + ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes + ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes + ``plug_loads_other`` frac Other plug load energy use schedule. Yes + ``plug_loads_tv`` frac Television plug load energy use schedule. Yes + ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. [#]_ No + ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No + ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No + ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No + ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No + ``pool_pump`` frac Pool pump energy use schedule. No + ``pool_heater`` frac Pool heater energy use schedule. No + ``permanent_spa_pump`` frac Permanent spa pump energy use schedule. No + ``permanent_spa_heater`` frac Permanent spa heater energy use schedule. No + ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes + ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes + ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes + ``hot_water_recirculation_pump`` frac Hot water recirculation pump schedule. No + ``general_water_use`` frac General water use internal gains. No + ``heating_setpoint`` F Thermostat heating setpoint schedule. No + ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No + ``hvac_maximum_power_ratio`` frac Variable speed system maximum power ratio schedule. [#]_ No + ``water_heater_setpoint`` F Water heater setpoint schedule. No + ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=hybrid/auto, 1=heat pump only. No + ``battery`` -1 to 1 Battery availability schedule. Positive for charging, negative for discharging. No + ``electric_vehicle`` -1 to 1 Electric vehicle schedule. Positive for charging, negative for discharging. [#]_ Yes + ================================ ======= ============================================================================================= =============================== .. [#] A detailed stochastic occupancy schedule CSV file can also be automatically generated for these columns; see the :ref:`usage_instructions` for the commands. The stochastic occupancy schedules are generated using the methodology described in `Stochastic simulation of occupant-driven energy use in a bottom-up residential building stock model `_. @@ -735,12 +736,19 @@ The column names available in the schedule CSV files are: See :ref:`building_occupancy` and :ref:`building_site` for more information. + .. [#] For use with electric vehicles described using :ref:`plug_loads`. + .. [#] This feature is an advanced research capability. This schedule allows modeling shedding controls for variable speed HVAC systems (instead of setpoint changes) to limit the power of HVAC per `AHRI 1380 `_. While any fraction value can be entered, this is primarily intended to reflect the AHRI capabilities, which has two levels of load shed: "General Curtailment" and "Critical Curtailment". A "General Curtailment" signal prevents the equipment from running at more than 70% of max power and "Critical Curtailment" limits it to 40% of max power until comfort constraints are violated (4F off the setpoint). During the shedding events, the main heat pump is limited to running below the specified fraction of rated power, and the backup system is locked out. When the comfort constraints are violated, both heat pump and backup systems are allowed to run at full load to recover the indoor temperature until reaching setpoint. + .. [#] For use with electric vehicles described using :ref:`hpxml_vehicles`. + This schedule represents times in which EV charging is available or EV discharging occurs. + If a vehicle is fully charged during a scheduled charging event, there will be no charging load. + If a vehicle battery is fully depleted during a discharging event, there will be no further discharging energy and the vehicle will accumulate unmet EV driving hours (see :ref:`annual_unmet_hours`). + Columns with units of `frac` must be normalized to MAX=1; that is, these schedules only define *when* energy is used, not *how much* energy is used. In other words, the amount of energy or hot water used in each simulation timestep is essentially the schedule value divided by the sum of all schedule values in the column, multiplied by the annual energy or hot water use. Example schedule CSV files are provided in the ``HPXMLtoOpenStudio/resources/schedule_files`` directory. @@ -1679,7 +1687,7 @@ Either winter/summer shading coefficients can be directly provided, or they can ============================ ====== ===== =========== ======== ========= ============================================================= .. [#] Type choices are "light blinds", "medium blinds", "dark blinds", "light shades", "medium shades", "dark shades", "light curtains", "medium curtains", "dark curtains", "other", or "none". - .. [#] If Type not provided, and either SummerShadingCoefficient or WinterShadingCoefficient not provided, defaults to "light curtains". + .. [#] If Type not provided, and either SummerShadingCoefficient or WinterShadingCoefficient not provided, defaults to "light curtains" if not glass block windows and "none" for glass block windows. .. [#] BlindsSummerClosedOrOpen choices are "closed", "open", or "half open". .. [#] BlindsWinterClosedOrOpen choices are "closed", "open", or "half open". .. [#] If SummerFractionCovered not provided, defaults to 1.0 for blinds and 0.5 for shades/curtains/other. @@ -4496,7 +4504,7 @@ A detailed solar hot water system is entered as a ``/HPXML/Building/BuildingDeta ``CollectorAzimuth`` or ``CollectorOrientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction panels face (clockwise from North) ``CollectorTilt`` double deg >= 0, <= 90 Yes Tilt relative to horizontal ``CollectorRatedOpticalEfficiency`` double frac > 0, < 1 Yes Rated optical efficiency [#]_ - ``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_ + ``CollectorRatedThermalLosses`` double Btu/hr-ft2-F > 0 Yes Rated thermal losses [#]_ ``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume ``ConnectedTo`` idref See [#]_ Yes Connected water heater ================================================ ================= ================ ======================== ======== ======== ============================== @@ -4628,6 +4636,74 @@ If not entered, the simulation will not include batteries. A battery in a home without PV or charging/discharging schedules is assumed to operate as backup and is not modeled. +.. _hpxml_vehicles: + +HPXML Vehicles +************** + +A single battery electric vehicle can be entered in ``/HPXML/Building/BuildingDetails/Systems/Vehicles/Vehicle``. +All other vehicle types are currently not modeled. +This provides detailed modeling of electric vehicles (batteries and charging/discharging) as an alternative to the simple EV charging in :ref:`plug_loads`. +If not entered, the simulation will not include a detailed electric vehicle model. + + =============================================================================================== ====== ========= ======================= ======== ============= ======================================================= + Element Type Units Constraints Required Default Notes + =============================================================================================== ====== ========= ======================= ======== ============= ======================================================= + ``SystemIdentifier`` id Yes Unique identifier + ``VehicleType/BatteryElectricVehicle/Battery/BatteryType`` string No Li-ion [#]_ EV battery type + ``VehicleType/BatteryElectricVehicle/Battery/NominalCapacity[Units="kWh" or Units="Ah"]/Value`` double kWh or Ah >= 0 No See [#]_ Nominal (total) capacity + ``VehicleType/BatteryElectricVehicle/Battery/UsableCapacity[Units="kWh" or Units="Ah"]/Value`` double kWh or Ah >= 0, < NominalCapacity No See [#]_ Usable capacity + ``VehicleType/BatteryElectricVehicle/Battery/NominalVoltage`` double V >= 0 No Nominal voltage + ``VehicleType/BatteryElectricVehicle/FractionChargedLocation[Location="Home"]/Percentage`` double frac >= 0 No See [#]_ Fraction of EV charging energy provided by home charger + ``VehicleType/BatteryElectricVehicle/ConnectedCharger`` idref See [#]_ No ID of connected EV charger [#]_ + ``VehicleType/BatteryElectricVehicle/extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions + ``VehicleType/BatteryElectricVehicle/extension/WeekendScheduleFractions`` array No 24 comma-separated weekday fractions + ``VehicleType/BatteryElectricVehicle/extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers + ``MilesDrivenPerYear`` double miles >= 0 No See [#]_ Number of miles driven per year + ``HoursDrivenPerWeek`` double hours >= 0 No See [#]_ Number of hours driven per week + ``FuelEconomyCombined[Units="kWh/mile" or Units="mile/kWh" or Units="mpge"]/Value`` double > 0 No See [#]_ The vehicle combined city and highway fuel economy + =============================================================================================== ====== ========= ======================= ======== ============= ======================================================= + + .. [#] Only the "Li-ion" battery type is supported. + .. [#] If NominalCapacity not provided, defaults to UsableCapacity / 0.8 if UsableCapacity provided, else 63 kWh per `2022 Autonomie release `_. + .. [#] If UsableCapacity not provided, defaults to 0.8 * NominalCapacity. + .. [#] If FractionChargedLocation[Location="Home"] not provided, defaults to 0.8 per `Levelized Cost of Charging Electric Vehicles in the United States `_. + .. [#] ConnectedCharger must reference an ``ElectricVehicleCharger``. + .. [#] If a connected charger is not provided, home electric vehicle charging will not be modeled. + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions are not provided (and :ref:`schedules_detailed` not used), then :ref:`schedules_default` are used. + .. [#] If MonthlyScheduleMultipliers are not provided (and :ref:`schedules_detailed` not used), then :ref:`schedules_default` are used. + .. [#] If MilesDrivenPerYear not provided, defaults to HoursDrivenPerWeek * 1227.5, else 10900 miles per `2017 National Household Travel Survey data `_. + .. [#] If HoursDrivenPerWeek not provided, defaults to MilesDrivenPerYear / 1227.5, else 8.88 hours/week per `2017 National Household Travel Survey data `_. + .. [#] If FuelEconomyCombined not provided, defaults to 0.22 kWh/mile per `2022 Autonomie release `_. + + .. note:: + + Only EV charging that occurs at the home is modeled; charging that occurs at, e.g., work or public chargers is not captured. + + If a PlugLoadType for "electric vehicle charging" is also specified, then a warning will be provided and the EV charging plug load will take precedence. + + The effective discharge power is calculated using the vehicle ``FuelEconomyCombined``, ``MilesDrivenPerYear``, and the schedule. + The discharge power is further influenced by the ambient temperature during simulation, and encompasses losses due to battery conditioning, vehicle conditioning, and charging losses. + +HPXML Electric Vehicle Chargers +******************************* + +A single electric vehicle charger can be entered as a ``/HPXML/Building/BuildingDetails/Systems/ElectricVehicleChargers/ElectricVehicleCharger``. + + ==================== ======= ===== =========== ======== ======== ============================================ + Element Type Units Constraints Required Default Notes + ==================== ======= ===== =========== ======== ======== ============================================ + ``SystemIdentifier`` id Yes Unique identifier + ``Location`` string See [#]_ No See [#]_ Location of charger and attached EV when at home + ``ChargingLevel`` integer >= 1, <= 3 No See [#]_ Charger power level + ``ChargingPower`` double W > 0 No See [#]_ Charger power output + ==================== ======= ===== =========== ======== ======== ============================================ + + .. [#] Location choices are "garage" or "outside". + .. [#] If Location not provided, defaults to "garage" if a garage is present, otherwise "outside". + .. [#] If neither ChargingLevel nor ChargingPower provided, defaults to level 2. + .. [#] If ChargingPower not provided, defaults to 1600 W if a level 1 charger, otherwise 5690 W per `EV Watts Public Database `_. + HPXML Generators **************** @@ -5280,7 +5356,7 @@ If not entered, the simulation will not include that type of plug load. \- **well pump**: 50.8 / 0.127 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) - \- **electric vehicle charging**: 1666.67 (calculated using AnnualMiles * kWhPerMile / (ChargerEfficiency * BatteryEfficiency) where AnnualMiles=4500, kWhPerMile=0.3, ChargerEfficiency=0.9, and BatteryEfficiency=0.9) + \- **electric vehicle charging**: 2368.4 (calculated using AnnualMiles * kWhPerMile * FractionChargedAtHome / (ChargerEfficiency * BatteryEfficiency) where AnnualMiles=10900, kWhPerMile=0.22, FractionChargedAtHome=0.8, ChargerEfficiency=0.9, and BatteryEfficiency=0.9). If this plug load type is specified, it will take precedence over an EV specified in :ref:`hpxml_vehicles`. If NumberofResidents is provided, the following defaults are used instead: diff --git a/docs/source/workflow_outputs.rst b/docs/source/workflow_outputs.rst index a2c0db485f..abc188674f 100644 --- a/docs/source/workflow_outputs.rst +++ b/docs/source/workflow_outputs.rst @@ -93,8 +93,8 @@ Annual energy outputs are listed below. ==================================== =========================== Type Notes ==================================== =========================== - Energy Use: Total (MBtu) Total energy consumption; includes any battery charging/discharging - Energy Use: Net (MBtu) Subtracts any power produced by PV or generators + Energy Use: Total (MBtu) Total energy consumption + Energy Use: Net (MBtu) Total energy consumption minus power produced by PV ==================================== =========================== Annual Energy by Fuel Use @@ -105,8 +105,8 @@ Fuel uses are listed below. ==================================== =========================== Type Notes ==================================== =========================== - Fuel Use: Electricity: Total (MBtu) Total electricity consumption, includes any battery charging/discharging - Fuel Use: Electricity: Net (MBtu) Subtracts any power produced by PV or generators + Fuel Use: Electricity: Total (MBtu) Total electricity consumption + Fuel Use: Electricity: Net (MBtu) Total energy consumption minus power produced by PV Fuel Use: Natural Gas: Total (MBtu) Fuel Use: Fuel Oil: Total (MBtu) Includes "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "kerosene", and "diesel" Fuel Use: Propane: Total (MBtu) @@ -154,7 +154,6 @@ So the sum of all end uses for a given fuel (e.g., sum of all "End Use: Natural End Use: Electricity: Ceiling Fan (MBtu) End Use: Electricity: Television (MBtu) End Use: Electricity: Plug Loads (MBtu) Excludes independently reported plug loads (e.g., well pump) - End Use: Electricity: Electric Vehicle Charging (MBtu) End Use: Electricity: Well Pump (MBtu) End Use: Electricity: Pool Heater (MBtu) End Use: Electricity: Pool Pump (MBtu) @@ -163,6 +162,7 @@ So the sum of all end uses for a given fuel (e.g., sum of all "End Use: Natural End Use: Electricity: PV (MBtu) Negative value for any power produced End Use: Electricity: Generator (MBtu) Negative value for any power produced End Use: Electricity: Battery (MBtu) Positive value for charging (including efficiency losses); negative value for discharging + End Use: Electricity: Electric Vehicle Charging (MBtu) End Use: Natural Gas: Heating (MBtu) Excludes heat pump backup End Use: Natural Gas: Heating Heat Pump Backup (MBtu) End Use: Natural Gas: Hot Water (MBtu) @@ -251,8 +251,8 @@ Results for each emissions scenario defined in the HPXML file are listed as show ======================================================================= ================================================================== Type Notes ======================================================================= ================================================================== - Emissions: : : Total (lb) Scenario total emissions, includes any battery charging/discharging - Emissions: : : Net (lb) Subtracts any power produced by PV or generators + Emissions: : : Total (lb) Scenario total emissions + Emissions: : : Net (lb) Scenario total emissions minus power produced by PV ======================================================================= ================================================================== Annual Emissions by Fuel Use @@ -263,8 +263,8 @@ Results for each emissions scenario defined in the HPXML file are listed as show ======================================================================= ================================================================== Type Notes ======================================================================= ================================================================== - Emissions: : : Electricity: Total (lb) Scenario total emissions for Electricity only, includes any battery charging/discharging - Emissions: : : Electricity: Net (lb) Subtracts any power produced by PV or generators + Emissions: : : Electricity: Total (lb) Scenario total emissions for Electricity only + Emissions: : : Electricity: Net (lb) Scenario total emissions for Electricity only minus power produced by PV Emissions: : : Natural Gas: Total (lb) Scenario emissions for Natural Gas only Emissions: : : Fuel Oil: Total (lb) Scenario emissions for Fuel Oil only Emissions: : : Propane: Total (lb) Scenario emissions for Propane only @@ -311,19 +311,26 @@ Annual building loads are listed below. Note that the "Delivered" loads represent the energy delivered by the HVAC/DHW system; if a system is significantly undersized, there will be unmet load not reflected by these values. If the home is not fully conditioned (e.g., a room air conditioner that only meets 30% of the cooling load), the reported load will be likewise reduced compared to a home that is fully conditioned. +.. _annual_unmet_hours: + Annual Unmet Hours ~~~~~~~~~~~~~~~~~~ Annual unmet hours are listed below. - ========================= ===== - Type Notes - ========================= ===== - Unmet Hours: Heating (hr) Number of hours where the heating setpoint is not maintained. - Unmet Hours: Cooling (hr) Number of hours where the cooling setpoint is not maintained. - ========================= ===== + ============================ ===== + Type Notes + ============================ ===== + Unmet Hours: Heating (hr) Number of hours where the heating setpoint is not maintained. [#]_ + Unmet Hours: Cooling (hr) Number of hours where the cooling setpoint is not maintained. + Unmet Hours: EV Driving (hr) Number of hours where the EV driving demand is not met. [#]_ + ============================ ===== + + .. [#] The unmet heating and cooling numbers reflect the number of hours during the heating/cooling season when the conditioned space temperature deviates more than 0.2 deg-C (0.36 deg-F) from the heating/cooling setpoint. -These numbers reflect the number of hours during the heating/cooling season when the conditioned space temperature deviates more than 0.2 deg-C (0.36 deg-F) from the heating/cooling setpoint. + .. [#] The unmet EV driving number represents the total time in which the electric vehicle discharge schedule exceeds zero while the EV battery's state of charge is at its minimum level. + Unmet EV driving hours indicate unrealized driving events and reduced EV charging energy. + Unmet hours will only occur when using the detailed electric vehicle model in :ref:`hpxml_vehicles`, not the simple EV charging in :ref:`plug_loads`. Peak Building Electricity ~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -333,10 +340,16 @@ Peak building electricity outputs are listed below. ================================== ============================================================= Type Notes ================================== ============================================================= - Peak Electricity: Winter Total (W) Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) - Peak Electricity: Summer Total (W) Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) - Peak Electricity: Annual Total (W) Maximum value in any month + Peak Electricity: Winter Total (W) Winter maximum for total electricity consumption [#]_ + Peak Electricity: Summer Total (W) Summer maximum for total electricity consumption [#]_ + Peak Electricity: Annual Total (W) Annual maximum for total electricity consumption + Peak Electricity: Winter Net (W) Winter maximum for total electricity consumption minus power produced by PV + Peak Electricity: Summer Net (W) Summer maximum for total electricity consumption minus power produced by PV + Peak Electricity: Annual Net (W) Annual maximum for total electricity consumption minus power produced by PV ================================== ============================================================= + + .. [#] Winter is Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). + .. [#] Summer is Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). Peak Building Loads ~~~~~~~~~~~~~~~~~~~ @@ -518,43 +531,43 @@ For each conditioned zone (see :ref:`zones_spaces`), zone-level design loads are Zone design loads can also be found in the ``in.xml`` file. Additional detail related to zone design loads can be found in the :ref:`design_load_details`:. - ===================================================================== ==================== - Type Notes - ===================================================================== ==================== - HVAC Zone Design Load: Heating: Total (Btu/h) Total heating design load - HVAC Zone Design Load: Heating: Ducts (Btu/h) Heating design load for ducts - HVAC Zone Design Load: Heating: Windows (Btu/h) Heating design load for windows - HVAC Zone Design Load: Heating: Skylights (Btu/h) Heating design load for skylights - HVAC Zone Design Load: Heating: Doors (Btu/h) Heating design load for doors - HVAC Zone Design Load: Heating: Walls (Btu/h) Heating design load for walls - HVAC Zone Design Load: Heating: Roofs (Btu/h) Heating design load for roofs - HVAC Zone Design Load: Heating: Floors (Btu/h) Heating design load for floors - HVAC Zone Design Load: Heating: Slabs (Btu/h) Heating design load for slabs - HVAC Zone Design Load: Heating: Ceilings (Btu/h) Heating design load for ceilings - HVAC Zone Design Load: Heating: Infiltration (Btu/h) Heating design load for infiltration - HVAC Zone Design Load: Heating: Ventilation (Btu/h) Heating design load for ventilation - HVAC Zone Design Load: Heating: Piping (Btu/h) Heating design load for hydronic piping - HVAC Zone Design Load: Cooling Sensible: Total (Btu/h) Total sensible cooling design load - HVAC Zone Design Load: Cooling Sensible: Ducts (Btu/h) Sensible cooling design load for ducts - HVAC Zone Design Load: Cooling Sensible: Windows (Btu/h) Sensible cooling design load for windows - HVAC Zone Design Load: Cooling Sensible: Skylights (Btu/h) Sensible cooling design load for skylights - HVAC Zone Design Load: Cooling Sensible: Doors (Btu/h) Sensible cooling design load for doors - HVAC Zone Design Load: Cooling Sensible: Walls (Btu/h) Sensible cooling design load for walls - HVAC Zone Design Load: Cooling Sensible: Roofs (Btu/h) Sensible cooling design load for roofs - HVAC Zone Design Load: Cooling Sensible: Floors (Btu/h) Sensible cooling design load for floors - HVAC Zone Design Load: Cooling Sensible: Slabs (Btu/h) Sensible cooling design load for slabs - HVAC Zone Design Load: Cooling Sensible: Ceilings (Btu/h) Sensible cooling design load for ceilings - HVAC Zone Design Load: Cooling Sensible: Infiltration (Btu/h) Sensible cooling design load for infiltration - HVAC Zone Design Load: Cooling Sensible: Ventilation (Btu/h) Sensible cooling design load for ventilation - HVAC Zone Design Load: Cooling Sensible: Internal Gains (Btu/h) Sensible cooling design load for internal gains - HVAC Zone Design Load: Cooling Sensible: Blower Heat (Btu/h) Sensible cooling design load for blower fan heat - HVAC Zone Design Load: Cooling Sensible: AED Excursion (Btu/h) Sensible cooling design load for Adequate Exposure Diversity (AED) excursion - HVAC Zone Design Load: Cooling Latent: Total (Btu/h) Total latent cooling design load - HVAC Zone Design Load: Cooling Latent: Ducts (Btu/h) Latent cooling design load for ducts - HVAC Zone Design Load: Cooling Latent: Infiltration (Btu/h) Latent cooling design load for infiltration - HVAC Zone Design Load: Cooling Latent: Ventilation (Btu/h) Latent cooling design load for ventilation - HVAC Zone Design Load: Cooling Latent: Internal Gains (Btu/h) Latent cooling design load for internal gains - ===================================================================== ==================== + ===================================================================================== ==================== + Type Notes + ===================================================================================== ==================== + HVAC Zone Design Load: : Heating: Total (Btu/h) Total heating design load + HVAC Zone Design Load: : Heating: Ducts (Btu/h) Heating design load for ducts + HVAC Zone Design Load: : Heating: Windows (Btu/h) Heating design load for windows + HVAC Zone Design Load: : Heating: Skylights (Btu/h) Heating design load for skylights + HVAC Zone Design Load: : Heating: Doors (Btu/h) Heating design load for doors + HVAC Zone Design Load: : Heating: Walls (Btu/h) Heating design load for walls + HVAC Zone Design Load: : Heating: Roofs (Btu/h) Heating design load for roofs + HVAC Zone Design Load: : Heating: Floors (Btu/h) Heating design load for floors + HVAC Zone Design Load: : Heating: Slabs (Btu/h) Heating design load for slabs + HVAC Zone Design Load: : Heating: Ceilings (Btu/h) Heating design load for ceilings + HVAC Zone Design Load: : Heating: Infiltration (Btu/h) Heating design load for infiltration + HVAC Zone Design Load: : Heating: Ventilation (Btu/h) Heating design load for ventilation + HVAC Zone Design Load: : Heating: Piping (Btu/h) Heating design load for hydronic piping + HVAC Zone Design Load: : Cooling Sensible: Total (Btu/h) Total sensible cooling design load + HVAC Zone Design Load: : Cooling Sensible: Ducts (Btu/h) Sensible cooling design load for ducts + HVAC Zone Design Load: : Cooling Sensible: Windows (Btu/h) Sensible cooling design load for windows + HVAC Zone Design Load: : Cooling Sensible: Skylights (Btu/h) Sensible cooling design load for skylights + HVAC Zone Design Load: : Cooling Sensible: Doors (Btu/h) Sensible cooling design load for doors + HVAC Zone Design Load: : Cooling Sensible: Walls (Btu/h) Sensible cooling design load for walls + HVAC Zone Design Load: : Cooling Sensible: Roofs (Btu/h) Sensible cooling design load for roofs + HVAC Zone Design Load: : Cooling Sensible: Floors (Btu/h) Sensible cooling design load for floors + HVAC Zone Design Load: : Cooling Sensible: Slabs (Btu/h) Sensible cooling design load for slabs + HVAC Zone Design Load: : Cooling Sensible: Ceilings (Btu/h) Sensible cooling design load for ceilings + HVAC Zone Design Load: : Cooling Sensible: Infiltration (Btu/h) Sensible cooling design load for infiltration + HVAC Zone Design Load: : Cooling Sensible: Ventilation (Btu/h) Sensible cooling design load for ventilation + HVAC Zone Design Load: : Cooling Sensible: Internal Gains (Btu/h) Sensible cooling design load for internal gains + HVAC Zone Design Load: : Cooling Sensible: Blower Heat (Btu/h) Sensible cooling design load for blower fan heat + HVAC Zone Design Load: : Cooling Sensible: AED Excursion (Btu/h) Sensible cooling design load for Adequate Exposure Diversity (AED) excursion + HVAC Zone Design Load: : Cooling Latent: Total (Btu/h) Total latent cooling design load + HVAC Zone Design Load: : Cooling Latent: Ducts (Btu/h) Latent cooling design load for ducts + HVAC Zone Design Load: : Cooling Latent: Infiltration (Btu/h) Latent cooling design load for infiltration + HVAC Zone Design Load: : Cooling Latent: Ventilation (Btu/h) Latent cooling design load for ventilation + HVAC Zone Design Load: : Cooling Latent: Internal Gains (Btu/h) Latent cooling design load for internal gains + ===================================================================================== ==================== .. _hvac_space_design_loads: @@ -619,26 +632,26 @@ If multiple timeseries frequencies are requested (e.g., hourly and daily), the t Depending on the outputs requested, the file may include: - =========================== =================== ================================================================================================================================== - Type Argument [#]_ Notes - =========================== =================== ================================================================================================================================== - Total Consumptions ``total`` Energy use for building total and net (i.e., subtracts any power produced by PV or generators). - Fuel Consumptions ``fuels`` Energy use for each fuel type (in kBtu for fossil fuels and kWh for electricity). - End Use Consumptions ``enduses`` Energy use for each end use type (in kBtu for fossil fuels and kWh for electricity). - System Use Consumptions ``systemuses`` Energy use for each HVAC and water heating system (in kBtu). - Emissions ``emissions`` Emissions (e.g., CO2) for each scenario defined in the HPXML file. - Emission Fuels ``emissionfuels`` Emissions (e.g., CO2) disaggregated by fuel type for each scenario defined in the HPXML file. - Emission End Uses ``emissionenduses`` Emissions (e.g., CO2) disaggregated by end use for each scenario defined in the HPXML file. - Hot Water Uses ``hotwater`` Water use for each end use type (in gallons). - Total Loads ``loads`` Heating, cooling, and hot water loads (in kBtu). - Component Loads ``componentloads`` Heating and cooling loads (in kBtu) disaggregated by component (e.g., Walls, Windows, Infiltration, Ducts, etc.). - Unmet Hours ``unmethours`` Heating and cooling unmet hours. - Zone Temperatures ``temperatures`` Zone temperatures (in deg-F) for each space (e.g., conditioned space, attic, garage, basement, crawlspace, etc.) plus heating/cooling setpoints. - Airflows ``airflows`` Airflow rates (in cfm) for infiltration, mechanical ventilation (including clothes dryer exhaust), natural ventilation, whole house fans. - Weather ``weather`` Weather file data including outdoor temperatures, relative humidity, wind speed, and solar. - Resilience ``resilience`` Resilience outputs (currently only average resilience hours for battery storage). - EnergyPlus Output Variables Any user-specified EnergyPlus output variables (e.g., 'Zone People Occupant Count'). - =========================== =================== ================================================================================================================================== + ================================== =================== ================================================================================================================================== + Type Argument [#]_ Notes + ================================== =================== ================================================================================================================================== + Total Consumptions ``total`` Energy use for building total and net (i.e., subtracts any power produced by PV). + Fuel Consumptions ``fuels`` Energy use for each fuel type (in kBtu for fossil fuels and kWh for electricity). + End Use Consumptions ``enduses`` Energy use for each end use type (in kBtu for fossil fuels and kWh for electricity). + System Use Consumptions ``systemuses`` Energy use for each HVAC and water heating system (in kBtu). + Emissions ``emissions`` Emissions (e.g., CO2) for each scenario defined in the HPXML file. + Emission Fuels ``emissionfuels`` Emissions (e.g., CO2) disaggregated by fuel type for each scenario defined in the HPXML file. + Emission End Uses ``emissionenduses`` Emissions (e.g., CO2) disaggregated by end use for each scenario defined in the HPXML file. + Hot Water Uses ``hotwater`` Water use for each end use type (in gallons). + Total Loads ``loads`` Heating, cooling, and hot water loads (in kBtu). + Component Loads ``componentloads`` Heating and cooling loads (in kBtu) disaggregated by component (e.g., Walls, Windows, Infiltration, Ducts, etc.). + Unmet Hours ``unmethours`` Heating, cooling, and EV driving unmet hours. + Zone Temperatures ``temperatures`` Zone temperatures (in deg-F) for each space (e.g., conditioned space, attic, garage, basement, crawlspace, etc.) plus heating/cooling setpoints. + Airflows ``airflows`` Airflow rates (in cfm) for infiltration, mechanical ventilation (including clothes dryer exhaust), natural ventilation, whole house fans. + Weather ``weather`` Weather file data including outdoor temperatures, relative humidity, wind speed, and solar. + Resilience ``resilience`` Resilience outputs (currently only average resilience hours for battery storage). + EnergyPlus Output Variables/Meters Any user-specified EnergyPlus output variables/meters (e.g., 'Zone People Occupant Count', 'MainsWater:Facility'). + ================================== =================== ================================================================================================================================== .. [#] This is the argument provided to ``run_simulation.rb`` as described in the :ref:`basic_run` usage instructions. diff --git a/tasks.rb b/tasks.rb index 40494f379e..a814de9394 100644 --- a/tasks.rb +++ b/tasks.rb @@ -77,7 +77,7 @@ def create_hpxmls build_residential_hpxml['existing_hpxml_path'] = hpxml_path if i > 1 if hpxml_path.include?('base-bldgtype-mf-whole-building.xml') suffix = "_#{i}" if i > 1 - build_residential_hpxml['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic#{suffix}.csv" + build_residential_hpxml['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/#{stochastic_sched_basename}-mf-unit#{suffix}.csv" build_residential_hpxml['geometry_foundation_type'] = (i <= 2 ? 'UnconditionedBasement' : 'AboveApartment') build_residential_hpxml['geometry_attic_type'] = (i >= 5 ? 'VentedAttic' : 'BelowApartment') build_residential_hpxml['geometry_unit_height_above_grade'] = { 1 => 0.0, 2 => 0.0, 3 => 10.0, 4 => 10.0, 5 => 20.0, 6 => 20.0 }[i] @@ -1471,10 +1471,7 @@ def apply_hpxml_modification_sample_files(hpxml_path, hpxml) window.overhangs_distance_to_bottom_of_window = 0.0 end end - if ['base-enclosure-2stories-garage.xml', - 'base-enclosure-garage.xml', - 'base-zones-spaces.xml', - 'base-zones-spaces-multiple.xml'].include? hpxml_file + if hpxml_bldg.has_location(HPXML::LocationGarage) grg_wall = hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationGarage && w.exterior_adjacent_to == HPXML::LocationOutside @@ -2347,6 +2344,19 @@ def apply_hpxml_modification_sample_files(hpxml_path, hpxml) hpxml_bldg.batteries[0].usable_capacity_kwh = nil end + # ------------- # + # HPXML Vehicle # + # ------------- # + + if ['base-vehicle-multiple.xml'].include? hpxml_file + hpxml_bldg.vehicles.add(id: "Vehicle#{hpxml_bldg.vehicles.size + 1}", + vehicle_type: HPXML::VehicleTypeHybrid, + fuel_economy_units: HPXML::UnitsMPG, + fuel_economy_combined: 44.0, + miles_per_year: 15000.0, + hours_per_week: 10.0) + end + # ---------------- # # HPXML Appliances # # ---------------- # diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 9b09b844b5..fdbac2d44a 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -1006,6 +1006,69 @@ "schedules_unavailable_period_types": "Power Outage", "schedules_unavailable_period_dates": "Jul 1 5 - Jul 31 14" }, + "sample_files/base-vehicle-ev-no-charger.xml": { + "parent_hpxml": "sample_files/base-enclosure-garage.xml", + "vehicle_type": "BatteryElectricVehicle" + }, + "sample_files/base-ev-charger.xml": { + "parent_hpxml": "sample_files/base.xml", + "ev_charger_present": true + }, + "sample_files/base-vehicle-ev-charger.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-no-charger.xml", + "vehicle_battery_capacity": 100, + "vehicle_battery_usable_capacity": 80, + "vehicle_miles_driven_per_year": 10000, + "vehicle_hours_driven_per_week": 14, + "vehicle_fuel_economy_combined": 0.25, + "vehicle_fuel_economy_units": "kWh/mile", + "vehicle_fraction_charged_home": 0.75, + "ev_charger_present": true, + "ev_charger_power": 7000, + "ev_charger_location": "garage" + }, + "sample_files/base-vehicle-ev-charger-level1.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml", + "ev_charger_level": 1, + "ev_charger_power": null + }, + "sample_files/base-vehicle-ev-charger-miles-per-kwh.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml", + "vehicle_fuel_economy_combined": 4.0, + "vehicle_fuel_economy_units": "mile/kWh" + }, + "sample_files/base-vehicle-ev-charger-mpge.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml", + "vehicle_fuel_economy_combined": 135.0, + "vehicle_fuel_economy_units": "mpge" + }, + "sample_files/base-vehicle-ev-charger-scheduled.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv" + }, + "sample_files/base-vehicle-ev-charger-undercharged.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev-undercharged.csv" + }, + "sample_files/base-vehicle-ev-charger-plug-load-ev.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger-scheduled.xml", + "misc_plug_loads_vehicle_present": true, + "misc_plug_loads_vehicle_annual_kwh": 3000 + }, + "sample_files/base-vehicle-multiple.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml" + }, + "sample_files/base-vehicle-ev-charger-occupancy-stochastic.xml": { + "parent_hpxml": "sample_files/base-vehicle-ev-charger.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-ev-charger.csv" + }, + "sample_files/base-pv-battery-and-vehicle-ev.xml": { + "parent_hpxml": "sample_files/base-pv-battery.xml", + "vehicle_type": "BatteryElectricVehicle", + "ev_charger_present": true, + "ev_charger_location": "outside", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv" + }, "sample_files/base-bldgtype-sfa-unit.xml": { "parent_hpxml": "sample_files/base.xml", "geometry_unit_type": "single-family attached", @@ -2158,19 +2221,20 @@ "heat_pump_cooling_compressor_type": "variable speed", "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_efficiency": 17.25, - "heat_pump_heating_efficiency": 10.0, + "heat_pump_cooling_efficiency": 17.5, + "heat_pump_heating_efficiency": 9.5, "hvac_perf_data_capacity_type": "Absolute capacities", "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", - "hvac_perf_data_heating_min_speed_capacities": "10000, 4200, 1900", - "hvac_perf_data_heating_max_speed_capacities": "36000, 24800, 19900", - "hvac_perf_data_heating_min_speed_cops": "4.73, 1.84, 0.81", - "hvac_perf_data_heating_max_speed_cops": "3.44, 2.66, 2.28", + "hvac_perf_data_heating_min_speed_capacities": "9900, 3600, 1100", + "hvac_perf_data_heating_max_speed_capacities": "35800, 24600, 19700", + "hvac_perf_data_heating_min_speed_cops": "4.68, 1.57, 0.47", + "hvac_perf_data_heating_max_speed_cops": "3.4, 2.58, 2.63", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "11700, 13200", - "hvac_perf_data_cooling_max_speed_capacities": "36000, 40000", - "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.34", - "hvac_perf_data_cooling_max_speed_cops": "2.71, 3.53" + "hvac_perf_data_cooling_min_speed_capacities": "11900, 13400", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 40500", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.33", + "hvac_perf_data_cooling_max_speed_cops": "2.64, 3.46", + "additional_properties": "HeatPump=YORK HMH7|HeatPumpAHRICert#=206921308" }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", @@ -2183,34 +2247,15 @@ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.12, 0.05", - "hvac_perf_data_heating_max_speed_capacities": "1.0, 0.69, 0.55", - "hvac_perf_data_cooling_min_speed_capacities": "0.325, 0.37", - "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.11" + "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.10, 0.03", + "hvac_perf_data_heating_max_speed_capacities": "0.99, 0.68, 0.55", + "hvac_perf_data_cooling_min_speed_capacities": "0.33, 0.37", + "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.13" }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml", "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.12, 0.05", - "hvac_perf_data_heating_max_speed_capacities": "1.0, 0.69, 0.55", - "hvac_perf_data_cooling_min_speed_capacities": "0.325, 0.37", - "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.11" - }, - "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", - "hvac_perf_data_capacity_type": "Absolute capacities", - "hvac_perf_data_heating_outdoor_temperatures": "47.0, 55.0", - "hvac_perf_data_heating_min_speed_capacities": "10000, 12000", - "hvac_perf_data_heating_max_speed_capacities": "36000, 45000", - "hvac_perf_data_heating_min_speed_cops": "4.73, 5.5", - "hvac_perf_data_heating_max_speed_cops": "3.44, 4.0", - "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 105.0", - "hvac_perf_data_cooling_min_speed_capacities": "11700, 10000", - "hvac_perf_data_cooling_max_speed_capacities": "36000, 30000", - "hvac_perf_data_cooling_min_speed_cops": "4.47, 3.9", - "hvac_perf_data_cooling_max_speed_cops": "2.71, 2.3" + "heat_pump_cooling_capacity": null }, "sample_files/base-hvac-autosize.xml": { "parent_hpxml": "sample_files/base.xml", @@ -2300,14 +2345,15 @@ "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", "cooling_system_cooling_compressor_type": "variable speed", - "cooling_system_cooling_efficiency": 17.25, + "cooling_system_cooling_efficiency": 17.5, "cooling_system_cooling_capacity": 36000, "hvac_perf_data_capacity_type": "Absolute capacities", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "11700, 13200", - "hvac_perf_data_cooling_max_speed_capacities": "36000, 40000", - "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.34", - "hvac_perf_data_cooling_max_speed_cops": "2.71, 3.53" + "hvac_perf_data_cooling_min_speed_capacities": "11900, 13400", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 40500", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.33", + "hvac_perf_data_cooling_max_speed_cops": "2.64, 3.46", + "additional_properties": "HeatPump=YORK HMH7|HeatPumpAHRICert#=206921308" }, "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml", @@ -2724,21 +2770,22 @@ "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml", "cooling_system_cooling_compressor_type": "variable speed", - "cooling_system_cooling_efficiency": 21.5, + "cooling_system_cooling_efficiency": 17.0, "cooling_system_cooling_capacity": 36000, "hvac_perf_data_capacity_type": "Absolute capacities", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "10372, 19456", - "hvac_perf_data_cooling_max_speed_capacities": "42653, 40093", - "hvac_perf_data_cooling_min_speed_cops": "4.05, 8.03", - "hvac_perf_data_cooling_max_speed_cops": "3.27, 3.27" + "hvac_perf_data_cooling_min_speed_capacities": "9100, 9900", + "hvac_perf_data_cooling_max_speed_capacities": "36400, 43300", + "hvac_perf_data_cooling_min_speed_cops": "3.76, 4.61", + "hvac_perf_data_cooling_max_speed_cops": "2.45, 3.51", + "additional_properties": "HeatPump=Midea|HeatPumpAHRICert#=207683365" }, "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml", "cooling_system_cooling_capacity": null, "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_cooling_min_speed_capacities": "0.255, 0.28", - "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.033" + "hvac_perf_data_cooling_min_speed_capacities": "0.25, 0.28", + "hvac_perf_data_cooling_max_speed_capacities": "1.01, 1.20" }, "sample_files/base-hvac-mini-split-heat-pump-ducted.xml": { "parent_hpxml": "sample_files/base.xml", @@ -2776,24 +2823,25 @@ "heat_pump_cooling_efficiency": 16.7, "heat_pump_heating_efficiency": 11.3, "hvac_perf_data_capacity_type": "Absolute capacities", - "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", - "hvac_perf_data_heating_min_speed_capacities": "9200, 7063, 6310", - "hvac_perf_data_heating_max_speed_capacities": "48000, 36800, 32920", - "hvac_perf_data_heating_min_speed_cops": "4.35, 2.92, 2.60", - "hvac_perf_data_heating_max_speed_cops": "3.21, 2.15, 1.93", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0, -5.0", + "hvac_perf_data_heating_min_speed_capacities": "9200, 7063, 6310, 5683", + "hvac_perf_data_heating_max_speed_capacities": "48000, 36800, 32920, 29640", + "hvac_perf_data_heating_min_speed_cops": "4.35, 2.92, 2.60, 2.49", + "hvac_perf_data_heating_max_speed_cops": "3.21, 2.15, 1.93, 1.82", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", "hvac_perf_data_cooling_min_speed_capacities": "9600, 10224", "hvac_perf_data_cooling_max_speed_capacities": "39000, 41587", "hvac_perf_data_cooling_min_speed_cops": "4.02, 4.61", - "hvac_perf_data_cooling_max_speed_cops": "2.86, 3.29" + "hvac_perf_data_cooling_max_speed_cops": "2.86, 3.29", + "additional_properties": "HeatPump=FUJITSU H-Series|HeatPumpAHRICert#=202537549" }, "sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml", "heat_pump_heating_capacity": null, "heat_pump_cooling_capacity": null, "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_heating_min_speed_capacities": "0.26, 0.20, 0.18", - "hvac_perf_data_heating_max_speed_capacities": "1.33, 1.02, 0.91", + "hvac_perf_data_heating_min_speed_capacities": "0.26, 0.20, 0.18, 0.16", + "hvac_perf_data_heating_max_speed_capacities": "1.33, 1.02, 0.91, 0.82", "hvac_perf_data_cooling_min_speed_capacities": "0.27, 0.28", "hvac_perf_data_cooling_max_speed_capacities": "1.08, 1.16" }, @@ -2841,29 +2889,30 @@ "heat_pump_cooling_compressor_type": "variable speed", "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_efficiency": 21.5, - "heat_pump_heating_efficiency": 10.5, + "heat_pump_cooling_efficiency": 17.0, + "heat_pump_heating_efficiency": 10.0, "hvac_perf_data_capacity_type": "Absolute capacities", - "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", - "hvac_perf_data_heating_min_speed_capacities": "12143, 7414, 8130", - "hvac_perf_data_heating_max_speed_capacities": "56499, 43387, 36037", - "hvac_perf_data_heating_min_speed_cops": "4.81, 1.96, 1.71", - "hvac_perf_data_heating_max_speed_cops": "3.17, 2.31, 1.96", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0, -13.0", + "hvac_perf_data_heating_min_speed_capacities": "11400, 5600, 3600, 2600", + "hvac_perf_data_heating_max_speed_capacities": "46500, 25000, 22000, 16000", + "hvac_perf_data_heating_min_speed_cops": "3.48, 2.78, 1.88, 1.52", + "hvac_perf_data_heating_max_speed_cops": "2.75, 2.11, 1.8, 1.31", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "10372, 19456", - "hvac_perf_data_cooling_max_speed_capacities": "42653, 40093", - "hvac_perf_data_cooling_min_speed_cops": "4.05, 8.03", - "hvac_perf_data_cooling_max_speed_cops": "3.27, 3.27" + "hvac_perf_data_cooling_min_speed_capacities": "9100, 9900", + "hvac_perf_data_cooling_max_speed_capacities": "36400, 43300", + "hvac_perf_data_cooling_min_speed_cops": "3.76, 4.61", + "hvac_perf_data_cooling_max_speed_cops": "2.45, 3.51", + "additional_properties": "HeatPump=Midea|HeatPumpAHRICert#=207683365" }, "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml", "heat_pump_heating_capacity": null, "heat_pump_cooling_capacity": null, "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_heating_min_speed_capacities": "0.34, 0.21, 0.23", - "hvac_perf_data_heating_max_speed_capacities": "1.57, 1.21, 1.00", - "hvac_perf_data_cooling_min_speed_capacities": "0.29, 0.54", - "hvac_perf_data_cooling_max_speed_capacities": "1.18, 1.11" + "hvac_perf_data_heating_min_speed_capacities": "0.30, 0.15, 0.09, 0.07", + "hvac_perf_data_heating_max_speed_capacities": "1.22, 0.66, 0.58, 0.42", + "hvac_perf_data_cooling_min_speed_capacities": "0.25, 0.28", + "hvac_perf_data_cooling_max_speed_capacities": "1.01, 1.20" }, "sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml" @@ -3434,6 +3483,8 @@ "pv_system_array_tilt": 20, "pv_system_max_power_output": 4000, "battery_present": true, + "vehicle_type": "BatteryElectricVehicle", + "ev_charger_present": true, "clothes_washer_location": null, "clothes_washer_efficiency": null, "clothes_washer_rated_annual_kwh": null, @@ -3464,7 +3515,7 @@ "misc_plug_loads_other_frac_latent": null }, "sample_files/base-misc-emissions.xml": { - "parent_hpxml": "sample_files/base-pv-battery.xml", + "parent_hpxml": "sample_files/base-pv-battery-and-vehicle-ev.xml", "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA", "emissions_types": "CO2e, CO2e, CO2e, SO2, NOx", "emissions_electricity_units": "kg/MWh, kg/MWh, kg/MWh, lb/MWh, lb/MWh", @@ -3494,6 +3545,8 @@ "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", "hot_water_distribution_system_type": "Standard", + "vehicle_type": "none", + "ev_charger_present": false, "extra_refrigerator_present": true, "extra_refrigerator_rated_annual_kwh": 700, "freezer_present": true, @@ -3764,7 +3817,10 @@ "hot_water_distribution_recirc_control_type": "no control", "hot_water_distribution_recirc_piping_length": 50, "hot_water_distribution_recirc_branch_piping_length": 50, - "hot_water_distribution_recirc_pump_power": 50 + "hot_water_distribution_recirc_pump_power": 50, + "vehicle_type": "BatteryElectricVehicle", + "ev_charger_present": true, + "misc_plug_loads_vehicle_present": false }, "sample_files/base-schedules-simple-vacancy.xml": { "parent_hpxml": "sample_files/base.xml", diff --git a/workflow/run_simulation.rb b/workflow/run_simulation.rb index 83f1ce0066..fffab04f42 100644 --- a/workflow/run_simulation.rb +++ b/workflow/run_simulation.rb @@ -18,7 +18,7 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, output_format, building_id, ep_input_format, stochastic_schedules, hourly_outputs, daily_outputs, monthly_outputs, timestep_outputs, - skip_simulation) + skip_simulation, master_seed) measures_dir = File.join(basedir, '..') measures = {} @@ -32,6 +32,7 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, args['output_csv_path'] = File.join(rundir, 'stochastic.csv') args['debug'] = debug args['building_id'] = building_id + args['schedules_random_seed'] = master_seed measures[measure_subdir] = [args] end @@ -57,6 +58,11 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, 'timestep' => timestep_outputs }.each do |timeseries_output_freq, timeseries_outputs| next if (timeseries_outputs.empty? && timeseries_output_freq != 'none') + comma_output = timeseries_outputs.find { |o| o.include? ',' } + if not comma_output.nil? + fail "Timeseries output request '#{comma_output}' cannot include a comma." + end + if timeseries_outputs.include? 'ALL' # Replace 'ALL' with all individual timeseries types timeseries_outputs.delete('ALL') @@ -85,8 +91,11 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, args['include_timeseries_airflows'] = timeseries_outputs.include? 'airflows' args['include_timeseries_weather'] = timeseries_outputs.include? 'weather' args['include_timeseries_resilience'] = timeseries_outputs.include? 'resilience' - user_output_variables = timeseries_outputs - $timeseries_types - args['user_output_variables'] = user_output_variables.join(', ') unless user_output_variables.empty? + remaining_outputs = timeseries_outputs - $timeseries_types + output_variables = remaining_outputs.select { |o| !o.include?(':') } + output_meters = remaining_outputs.select { |o| o.include?(':') } + args['user_output_variables'] = output_variables.join(', ') unless output_variables.empty? + args['user_output_meters'] = output_meters.join(', ') unless output_meters.empty? if n_timeseries_freqs > 1 # Need to use different timeseries filenames args['timeseries_output_file_name'] = "results_timeseries_#{timeseries_output_freq}.#{output_format}" @@ -125,22 +134,22 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, end options[:hourly_outputs] = [] - opts.on('--hourly NAME', 'Request hourly output category* or EnergyPlus output variable; can be called multiple times') do |t| + opts.on('--hourly NAME', 'Request hourly output category* or EnergyPlus output variable/meter; can be called multiple times') do |t| options[:hourly_outputs] << t end options[:daily_outputs] = [] - opts.on('--daily NAME', 'Request daily output category* or EnergyPlus output variable; can be called multiple times') do |t| + opts.on('--daily NAME', 'Request daily output category* or EnergyPlus output variable/meter; can be called multiple times') do |t| options[:daily_outputs] << t end options[:monthly_outputs] = [] - opts.on('--monthly NAME', 'Request monthly output category* or EnergyPlus output variable; can be called multiple times') do |t| + opts.on('--monthly NAME', 'Request monthly output category* or EnergyPlus output variable/meter; can be called multiple times') do |t| options[:monthly_outputs] << t end options[:timestep_outputs] = [] - opts.on('--timestep NAME', 'Request timestep output category* or EnergyPlus output variable; can be called multiple times') do |t| + opts.on('--timestep NAME', 'Request timestep output category* or EnergyPlus output variable/meter; can be called multiple times') do |t| options[:timestep_outputs] << t end @@ -164,6 +173,11 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, options[:stochastic_schedules] = true end + options[:master_seed] = nil + opts.on('--master-seed SEED', Integer, 'Master seed for stochastic occupancy schedule random number generator') do |t| + options[:master_seed] = t + end + options[:ep_input_format] = 'idf' opts.on('--ep-input-format TYPE', 'EnergyPlus input file format (idf, epjson)') do |t| options[:ep_input_format] = t @@ -228,7 +242,7 @@ def run_workflow(basedir, rundir, hpxml, debug, skip_validation, add_comp_loads, success = run_workflow(basedir, rundir, options[:hpxml], options[:debug], options[:skip_validation], options[:add_comp_loads], options[:output_format], options[:building_id], options[:ep_input_format], options[:stochastic_schedules], options[:hourly_outputs], options[:daily_outputs], options[:monthly_outputs], options[:timestep_outputs], - options[:skip_simulation]) + options[:skip_simulation], options[:master_seed]) if not success exit! 1 diff --git a/workflow/sample_files/base-bldgtype-mf-whole-building.xml b/workflow/sample_files/base-bldgtype-mf-whole-building.xml index dc645d1a7a..370caab620 100644 --- a/workflow/sample_files/base-bldgtype-mf-whole-building.xml +++ b/workflow/sample_files/base-bldgtype-mf-whole-building.xml @@ -55,7 +55,7 @@ 9600.0 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit.csv @@ -559,7 +559,7 @@ 9600.0 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_2.csv @@ -1063,7 +1063,7 @@ 9600.0 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_3.csv @@ -1455,7 +1455,7 @@ 9600.0 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_4.csv @@ -1847,7 +1847,7 @@ 9600.0 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_5.csv @@ -2296,7 +2296,7 @@ 9600.0 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-mf-unit_6.csv diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml b/workflow/sample_files/base-ev-charger.xml similarity index 82% rename from workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml rename to workflow/sample_files/base-ev-charger.xml index eab541e264..e2ad026a12 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml +++ b/workflow/sample_files/base-ev-charger.xml @@ -317,112 +317,37 @@ - - + + - - + + - air-to-air - electricity + + + + natural gas 36000.0 - 36000.0 - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 36000.0 + + AFUE + 0.92 + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage 1.0 SEER - 17.25 + 13.0 - - HSPF - 10.0 - - - - 95.0 - 11700.0 - minimum - - COP - 4.47 - - - - 95.0 - 36000.0 - maximum - - COP - 2.71 - - - - 105.0 - 10000.0 - minimum - - COP - 3.9 - - - - 105.0 - 30000.0 - maximum - - COP - 2.3 - - - - - - 47.0 - 10000.0 - minimum - - COP - 4.73 - - - - 47.0 - 36000.0 - maximum - - COP - 3.44 - - - - 55.0 - 12000.0 - minimum - - COP - 5.5 - - - - 55.0 - 45000.0 - maximum - - COP - 4.0 - - - - + 0.73 + @@ -502,6 +427,11 @@ false + + + + + diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index 42aab74b43..f33906d5c6 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -399,6 +399,13 @@ 0 4.4 + + + + 70.0 + 180 + 4.4 + diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml index 6fa8d857ba..369cc75adf 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -338,16 +344,16 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 0.325 + 0.33 minimum COP @@ -360,7 +366,7 @@ maximum COP - 2.71 + 2.64 @@ -369,16 +375,16 @@ minimum COP - 6.34 + 6.33 82.0 - 1.11 + 1.13 maximum COP - 3.53 + 3.46 @@ -389,43 +395,43 @@ minimum COP - 4.73 + 4.68 47.0 - 1.0 + 0.99 maximum COP - 3.44 + 3.4 17.0 - 0.12 + 0.1 minimum COP - 1.84 + 1.57 17.0 - 0.69 + 0.68 maximum COP - 2.66 + 2.58 5.0 - 0.05 + 0.03 minimum COP - 0.81 + 0.47 @@ -434,7 +440,7 @@ maximum COP - 2.28 + 2.63 diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml index fe19bd50d7..500ac27470 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -340,65 +346,65 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 47.0 - 10000.0 + 9900.0 minimum COP - 4.73 + 4.68 47.0 - 36000.0 + 35800.0 maximum COP - 3.44 + 3.4 17.0 - 4200.0 + 3600.0 minimum COP - 1.84 + 1.57 17.0 - 24800.0 + 24600.0 maximum COP - 2.66 + 2.58 5.0 - 1900.0 + 1100.0 minimum COP - 0.81 + 0.47 5.0 - 19900.0 + 19700.0 maximum COP - 2.28 + 2.63 diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml index 317806ca93..e0712e4df8 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -340,16 +346,16 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 0.325 + 0.33 minimum COP @@ -362,7 +368,7 @@ maximum COP - 2.71 + 2.64 @@ -371,16 +377,16 @@ minimum COP - 6.34 + 6.33 82.0 - 1.11 + 1.13 maximum COP - 3.53 + 3.46 @@ -391,43 +397,43 @@ minimum COP - 4.73 + 4.68 47.0 - 1.0 + 0.99 maximum COP - 3.44 + 3.4 17.0 - 0.12 + 0.1 minimum COP - 1.84 + 1.57 17.0 - 0.69 + 0.68 maximum COP - 2.66 + 2.58 5.0 - 0.05 + 0.03 minimum COP - 0.81 + 0.47 @@ -436,7 +442,7 @@ maximum COP - 2.28 + 2.63 diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index 4b6d22ffce..4fdd3bf4bd 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -340,16 +346,16 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 11700.0 + 11900.0 minimum COP @@ -362,81 +368,81 @@ maximum COP - 2.71 + 2.64 82.0 - 13200.0 + 13400.0 minimum COP - 6.34 + 6.33 82.0 - 40000.0 + 40500.0 maximum COP - 3.53 + 3.46 47.0 - 10000.0 + 9900.0 minimum COP - 4.73 + 4.68 47.0 - 36000.0 + 35800.0 maximum COP - 3.44 + 3.4 17.0 - 4200.0 + 3600.0 minimum COP - 1.84 + 1.57 17.0 - 24800.0 + 24600.0 maximum COP - 2.66 + 2.58 5.0 - 1900.0 + 1100.0 minimum COP - 0.81 + 0.47 5.0 - 19900.0 + 19700.0 maximum COP - 2.28 + 2.63 diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml index 2bbe831221..994329cc6c 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -328,7 +334,7 @@ 1.0 SEER - 17.25 + 17.5 0.78 @@ -347,7 +353,7 @@ maximum COP - 2.71 + 2.64 @@ -356,7 +362,7 @@ minimum COP - 6.34 + 6.33 @@ -365,7 +371,7 @@ maximum COP - 3.53 + 3.46 diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index df37397c0c..e0e4908ce7 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -329,13 +335,13 @@ 1.0 SEER - 17.25 + 17.5 0.78 95.0 - 11700.0 + 11900.0 minimum COP @@ -348,25 +354,25 @@ maximum COP - 2.71 + 2.64 82.0 - 13200.0 + 13400.0 minimum COP - 6.34 + 6.33 82.0 - 40000.0 + 40500.0 maximum COP - 3.53 + 3.46 diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index bf2e43bc92..8e573d1eb6 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + YORK HMH7 + 206921308 + + @@ -340,16 +346,16 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 11700.0 + 11900.0 minimum COP @@ -362,81 +368,81 @@ maximum COP - 2.71 + 2.64 82.0 - 13200.0 + 13400.0 minimum COP - 6.34 + 6.33 82.0 - 40000.0 + 40500.0 maximum COP - 3.53 + 3.46 47.0 - 10000.0 + 9900.0 minimum COP - 4.73 + 4.68 47.0 - 36000.0 + 35800.0 maximum COP - 3.44 + 3.4 17.0 - 4200.0 + 3600.0 minimum COP - 1.84 + 1.57 17.0 - 24800.0 + 24600.0 maximum COP - 2.66 + 2.58 5.0 - 1900.0 + 1100.0 minimum COP - 0.81 + 0.47 5.0 - 19900.0 + 19700.0 maximum COP - 2.28 + 2.63 diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml index fec0066157..fb481f924d 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + Midea + 207683365 + + @@ -327,26 +333,26 @@ 1.0 SEER - 21.5 + 17.0 0.73 95.0 - 0.255 + 0.25 minimum COP - 4.05 + 3.76 95.0 - 1.0 + 1.01 maximum COP - 3.27 + 2.45 @@ -355,16 +361,16 @@ minimum COP - 8.03 + 4.61 82.0 - 1.033 + 1.2 maximum COP - 3.27 + 3.51 diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index dc65ad0298..629c2cb414 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + Midea + 207683365 + + @@ -328,44 +334,44 @@ 1.0 SEER - 21.5 + 17.0 0.73 95.0 - 10372.0 + 9100.0 minimum COP - 4.05 + 3.76 95.0 - 42653.0 + 36400.0 maximum COP - 3.27 + 2.45 82.0 - 19456.0 + 9900.0 minimum COP - 8.03 + 4.61 82.0 - 40093.0 + 43300.0 maximum COP - 3.27 + 3.51 diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml index 72caad6eef..ed5bb9c15b 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + FUJITSU H-Series + 202537549 + + @@ -437,6 +443,24 @@ 1.93 + + -5.0 + 0.16 + minimum + + COP + 2.49 + + + + -5.0 + 0.82 + maximum + + COP + 1.82 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index 4c6aaf3c0d..b9aea45a1f 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + FUJITSU H-Series + 202537549 + + @@ -439,6 +445,24 @@ 1.93 + + -5.0 + 5683.0 + minimum + + COP + 2.49 + + + + -5.0 + 29640.0 + maximum + + COP + 1.82 + + diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml index 347a37c78d..6f04b9ec76 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + Midea + 207683365 + + @@ -330,103 +336,121 @@ 1.0 SEER - 21.5 + 17.0 HSPF - 10.5 + 10.0 95.0 - 0.29 + 0.25 minimum COP - 4.05 + 3.76 95.0 - 1.18 + 1.01 maximum COP - 3.27 + 2.45 82.0 - 0.54 + 0.28 minimum COP - 8.03 + 4.61 82.0 - 1.11 + 1.2 maximum COP - 3.27 + 3.51 47.0 - 0.34 + 0.3 minimum COP - 4.81 + 3.48 47.0 - 1.57 + 1.22 maximum COP - 3.17 + 2.75 17.0 - 0.21 + 0.15 minimum COP - 1.96 + 2.78 17.0 - 1.21 + 0.66 maximum COP - 2.31 + 2.11 5.0 - 0.23 + 0.09 minimum COP - 1.71 + 1.88 5.0 - 1.0 + 0.58 maximum COP - 1.96 + 1.8 + + + + -13.0 + 0.07 + minimum + + COP + 1.52 + + + + -13.0 + 0.42 + maximum + + COP + 1.31 diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index 275daaf950..5b660148e3 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -51,6 +51,12 @@ 2700.0 21600.0 + + + Midea + 207683365 + + @@ -332,103 +338,121 @@ 1.0 SEER - 21.5 + 17.0 HSPF - 10.5 + 10.0 95.0 - 10372.0 + 9100.0 minimum COP - 4.05 + 3.76 95.0 - 42653.0 + 36400.0 maximum COP - 3.27 + 2.45 82.0 - 19456.0 + 9900.0 minimum COP - 8.03 + 4.61 82.0 - 40093.0 + 43300.0 maximum COP - 3.27 + 3.51 47.0 - 12143.0 + 11400.0 minimum COP - 4.81 + 3.48 47.0 - 56499.0 + 46500.0 maximum COP - 3.17 + 2.75 17.0 - 7414.0 + 5600.0 minimum COP - 1.96 + 2.78 17.0 - 43387.0 + 25000.0 maximum COP - 2.31 + 2.11 5.0 - 8130.0 + 3600.0 minimum COP - 1.71 + 1.88 5.0 - 36037.0 + 22000.0 maximum COP - 1.96 + 1.8 + + + + -13.0 + 2600.0 + minimum + + COP + 1.52 + + + + -13.0 + 16000.0 + maximum + + COP + 1.31 diff --git a/workflow/sample_files/base-misc-defaults.xml b/workflow/sample_files/base-misc-defaults.xml index 260aac12bf..91ee1447b6 100644 --- a/workflow/sample_files/base-misc-defaults.xml +++ b/workflow/sample_files/base-misc-defaults.xml @@ -376,6 +376,21 @@ Li-ion + + + + + + + + + + + + + + + diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index 34e8dabc5e..efc15211c2 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -105,6 +105,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv + @@ -525,6 +528,22 @@ 6000.0 + + + + + + + + + + + + + + outside + + diff --git a/workflow/sample_files/base-pv-battery-and-vehicle-ev.xml b/workflow/sample_files/base-pv-battery-and-vehicle-ev.xml new file mode 100644 index 0000000000..59d270d408 --- /dev/null +++ b/workflow/sample_files/base-pv-battery-and-vehicle-ev.xml @@ -0,0 +1,614 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + + + + + + + + + + outside + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-pv-battery-garage.xml b/workflow/sample_files/base-pv-battery-garage.xml index 5cb3e66622..34ab081a7e 100644 --- a/workflow/sample_files/base-pv-battery-garage.xml +++ b/workflow/sample_files/base-pv-battery-garage.xml @@ -385,6 +385,13 @@ 180 4.4 + + + + 70.0 + 180 + 4.4 + diff --git a/workflow/sample_files/base-residents-5-5.xml b/workflow/sample_files/base-residents-5-5.xml index 1cc84862e4..a5380ed7fc 100644 --- a/workflow/sample_files/base-residents-5-5.xml +++ b/workflow/sample_files/base-residents-5-5.xml @@ -423,6 +423,21 @@ Li-ion + + + + + + + + + + + + + + + diff --git a/workflow/sample_files/base-schedules-simple.xml b/workflow/sample_files/base-schedules-simple.xml index 2a5e06134e..01ddc08421 100644 --- a/workflow/sample_files/base-schedules-simple.xml +++ b/workflow/sample_files/base-schedules-simple.xml @@ -450,6 +450,21 @@ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + + + + + + + + + diff --git a/workflow/sample_files/base-vehicle-ev-charger-level1.xml b/workflow/sample_files/base-vehicle-ev-charger-level1.xml new file mode 100644 index 0000000000..8fcfb2a542 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-level1.xml @@ -0,0 +1,693 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + garage + 1 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger-miles-per-kwh.xml b/workflow/sample_files/base-vehicle-ev-charger-miles-per-kwh.xml new file mode 100644 index 0000000000..8b72d7e841 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-miles-per-kwh.xml @@ -0,0 +1,693 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + mile/kWh + 4.0 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger-mpge.xml b/workflow/sample_files/base-vehicle-ev-charger-mpge.xml new file mode 100644 index 0000000000..edd1d3552d --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-mpge.xml @@ -0,0 +1,693 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + mpge + 135.0 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger-occupancy-stochastic.xml b/workflow/sample_files/base-vehicle-ev-charger-occupancy-stochastic.xml new file mode 100644 index 0000000000..a849e131f3 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-occupancy-stochastic.xml @@ -0,0 +1,696 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-ev-charger.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger-plug-load-ev.xml b/workflow/sample_files/base-vehicle-ev-charger-plug-load-ev.xml new file mode 100644 index 0000000000..d0f1bf1401 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-plug-load-ev.xml @@ -0,0 +1,704 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + electric vehicle charging + + kWh/year + 3000.0 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger-scheduled.xml b/workflow/sample_files/base-vehicle-ev-charger-scheduled.xml new file mode 100644 index 0000000000..0f3710c148 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-scheduled.xml @@ -0,0 +1,696 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger-undercharged.xml b/workflow/sample_files/base-vehicle-ev-charger-undercharged.xml new file mode 100644 index 0000000000..9df6c7e4b5 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger-undercharged.xml @@ -0,0 +1,696 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/vehicle-ev-undercharged.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-charger.xml b/workflow/sample_files/base-vehicle-ev-charger.xml new file mode 100644 index 0000000000..633db9b724 --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-charger.xml @@ -0,0 +1,693 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-ev-no-charger.xml b/workflow/sample_files/base-vehicle-ev-no-charger.xml new file mode 100644 index 0000000000..65b204523e --- /dev/null +++ b/workflow/sample_files/base-vehicle-ev-no-charger.xml @@ -0,0 +1,664 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-vehicle-multiple.xml b/workflow/sample_files/base-vehicle-multiple.xml new file mode 100644 index 0000000000..356a2f7fae --- /dev/null +++ b/workflow/sample_files/base-vehicle-multiple.xml @@ -0,0 +1,705 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + + + + kWh + 100.0 + + + kWh + 80.0 + + + + Home + 0.75 + + + + + 10000.0 + 14.0 + + kWh/mile + 0.25 + + + + + + + + 15000.0 + 10.0 + + mpg + 44.0 + + + + + + + garage + 7000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw b/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw index da3a974b27..ef48e709fb 100644 --- a/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +++ b/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw @@ -135,7 +135,8 @@ "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, - "user_output_variables": "" + "user_output_variables": "", + "user_output_meters": "" }, "measure_dir_name": "ReportSimulationOutput" }, diff --git a/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw b/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw index 376cc13ca1..1552e18dc2 100644 --- a/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +++ b/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw @@ -60,7 +60,8 @@ "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, - "user_output_variables": "" + "user_output_variables": "", + "user_output_meters": "" }, "measure_dir_name": "ReportSimulationOutput" }, diff --git a/workflow/template-run-hpxml-with-stochastic-occupancy.osw b/workflow/template-run-hpxml-with-stochastic-occupancy.osw index 737d8ab397..8a0dff1170 100644 --- a/workflow/template-run-hpxml-with-stochastic-occupancy.osw +++ b/workflow/template-run-hpxml-with-stochastic-occupancy.osw @@ -59,7 +59,8 @@ "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, - "user_output_variables": "" + "user_output_variables": "", + "user_output_meters": "" }, "measure_dir_name": "ReportSimulationOutput" }, diff --git a/workflow/template-run-hpxml.osw b/workflow/template-run-hpxml.osw index cedb0cce1a..ca67d06488 100644 --- a/workflow/template-run-hpxml.osw +++ b/workflow/template-run-hpxml.osw @@ -52,7 +52,8 @@ "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, - "user_output_variables": "" + "user_output_variables": "", + "user_output_meters": "" }, "measure_dir_name": "ReportSimulationOutput" }, diff --git a/workflow/tests/base_results/results_simulations_bills.csv b/workflow/tests/base_results/results_simulations_bills.csv index 7da10fa5bc..6a2eae2c3c 100644 --- a/workflow/tests/base_results/results_simulations_bills.csv +++ b/workflow/tests/base_results/results_simulations_bills.csv @@ -63,7 +63,7 @@ base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1061.62,144.0,633 base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1061.62,144.0,633.14,0.0,777.14,144.0,140.48,284.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-bldgtype-mf-unit-shared-water-heater.xml,1021.73,144.0,593.25,0.0,737.25,144.0,140.48,284.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-bldgtype-mf-unit.xml,1241.43,144.0,944.02,0.0,1088.02,144.0,9.41,153.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-bldgtype-mf-whole-building.xml,8721.53,864.0,7857.53,0.0,8721.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-whole-building.xml,8722.48,864.0,7858.48,0.0,8722.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-bldgtype-sfa-unit-2stories.xml,1726.25,144.0,1257.87,0.0,1401.87,144.0,180.38,324.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-bldgtype-sfa-unit-atticroof-cathedral.xml,2280.22,144.0,1359.46,0.0,1503.46,144.0,632.76,776.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1513.28,144.0,1082.92,0.0,1226.92,144.0,142.36,286.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -117,7 +117,7 @@ base-dhw-tank-heat-pump-uef.xml,1632.95,144.0,1040.42,0.0,1184.42,144.0,304.53,4 base-dhw-tank-heat-pump-with-solar-fraction.xml,1569.62,144.0,1013.6,0.0,1157.6,144.0,268.02,412.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-dhw-tank-heat-pump-with-solar.xml,1579.35,144.0,1035.19,0.0,1179.19,144.0,256.16,400.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-dhw-tank-heat-pump.xml,1666.1,144.0,1082.79,0.0,1226.79,144.0,295.31,439.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1822.88,144.0,1289.16,0.0,1433.16,144.0,245.72,389.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1823.31,144.0,1289.2,0.0,1433.2,144.0,246.11,390.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-dhw-tank-model-type-stratified.xml,1827.0,144.0,1285.89,0.0,1429.89,144.0,253.11,397.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-dhw-tank-oil.xml,1951.24,144.0,980.72,0.0,1124.72,144.0,251.16,395.16,0.0,431.36,431.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-dhw-tank-wood.xml,1694.07,144.0,980.72,0.0,1124.72,144.0,251.16,395.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.19,174.19,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -172,8 +172,9 @@ base-enclosure-windows-shading-factors.xml,1775.68,144.0,1215.56,0.0,1359.56,144 base-enclosure-windows-shading-seasons.xml,1840.23,144.0,1304.01,0.0,1448.01,144.0,248.22,392.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-enclosure-windows-shading-types-detailed.xml,1907.0,144.0,1255.44,0.0,1399.44,144.0,363.56,507.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-enclosure-windows-storms.xml,1836.77,144.0,1282.86,0.0,1426.86,144.0,265.91,409.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-ev-charger.xml,1840.44,144.0,1303.13,0.0,1447.13,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-ambient.xml,1573.55,144.0,1093.92,0.0,1237.92,144.0,191.63,335.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-foundation-basement-garage.xml,1691.43,144.0,1181.82,0.0,1325.82,144.0,221.61,365.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-basement-garage.xml,1690.44,144.0,1181.77,0.0,1325.77,144.0,220.67,364.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-belly-wing-no-skirt.xml,1596.72,144.0,1071.76,0.0,1215.76,144.0,236.96,380.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-belly-wing-skirt.xml,1592.54,144.0,1071.92,0.0,1215.92,144.0,232.62,376.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-foundation-complex.xml,2083.49,144.0,1356.34,0.0,1500.34,144.0,439.15,583.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -210,11 +211,10 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xm base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1871.49,144.0,1423.34,0.0,1567.34,144.0,160.15,304.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,1833.07,144.0,1364.66,0.0,1508.66,144.0,180.41,324.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1877.12,144.0,1429.09,0.0,1573.09,144.0,160.03,304.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1724.59,144.0,1580.59,0.0,1724.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1707.5,144.0,1563.5,0.0,1707.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1705.31,144.0,1561.31,0.0,1705.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1996.87,144.0,1852.87,0.0,1996.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1704.77,144.0,1560.77,0.0,1704.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1732.74,144.0,1588.74,0.0,1732.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1716.15,144.0,1572.15,0.0,1716.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1713.83,144.0,1569.83,0.0,1713.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1714.94,144.0,1570.94,0.0,1714.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,1654.67,144.0,1510.67,0.0,1654.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,1691.96,144.0,1547.96,0.0,1691.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-research-features.xml,1706.6,144.0,1562.6,0.0,1706.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -233,8 +233,8 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,1417.34,144.0,1273.34,0.0, base-hvac-central-ac-only-1-speed-seer2.xml,1428.27,144.0,1284.27,0.0,1428.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-1-speed.xml,1428.74,144.0,1284.74,0.0,1428.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-2-speed.xml,1368.6,144.0,1224.6,0.0,1368.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1383.81,144.0,1239.81,0.0,1383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-central-ac-only-var-speed-detailed-performance.xml,1359.25,144.0,1215.25,0.0,1359.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1385.14,144.0,1241.14,0.0,1385.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1359.44,144.0,1215.44,0.0,1359.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,1345.03,144.0,1201.03,0.0,1345.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-var-speed.xml,1344.67,144.0,1200.67,0.0,1344.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1874.58,144.0,1730.58,0.0,1874.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -286,7 +286,7 @@ base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1634.19,144.0,149 base-hvac-ground-to-air-heat-pump-heating-only.xml,1489.99,144.0,1345.99,0.0,1489.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1952.54,144.0,1808.54,0.0,1952.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1770.1,144.0,1626.1,0.0,1770.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1837.45,144.0,1693.45,0.0,1837.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1847.55,144.0,1703.55,0.0,1847.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1772.98,144.0,1628.98,0.0,1772.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1886.25,144.0,1332.86,0.0,1476.86,144.0,265.39,409.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1829.05,144.0,1275.66,0.0,1419.66,144.0,265.39,409.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -297,12 +297,12 @@ base-hvac-install-quality-ground-to-air-heat-pump-2-speed.xml,1688.51,144.0,1544 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1365.03,144.0,1221.03,0.0,1365.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1663.55,144.0,1519.55,0.0,1663.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1340.97,144.0,1196.97,0.0,1340.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1351.07,144.0,1207.07,0.0,1351.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1328.74,144.0,1184.74,0.0,1328.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1373.16,144.0,1229.16,0.0,1373.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1357.07,144.0,1213.07,0.0,1357.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1341.22,144.0,1197.22,0.0,1341.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1314.01,144.0,1170.01,0.0,1314.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1646.1,144.0,1502.1,0.0,1646.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1624.52,144.0,1480.52,0.0,1624.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1646.05,144.0,1502.05,0.0,1646.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1624.47,144.0,1480.47,0.0,1624.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,1498.32,144.0,1354.32,0.0,1498.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1499.94,144.0,1355.94,0.0,1499.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,1578.19,144.0,1434.19,0.0,1578.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -314,8 +314,8 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1565.72,144.0,1421. base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1714.01,144.0,1327.91,0.0,1471.91,144.0,98.1,242.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1705.44,144.0,1320.66,0.0,1464.66,144.0,96.78,240.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1821.81,144.0,1318.24,0.0,1462.24,0.0,0.0,0.0,0.0,359.57,359.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1559.49,144.0,1415.49,0.0,1559.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1566.92,144.0,1422.92,0.0,1566.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1616.03,144.0,1472.03,0.0,1616.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1604.49,144.0,1460.49,0.0,1604.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1537.55,144.0,1393.55,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1537.55,144.0,1393.55,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-multiple.xml,2589.03,144.0,1980.74,0.0,2124.74,144.0,86.78,230.78,0.0,118.88,118.88,0.0,114.63,114.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -391,8 +391,8 @@ base-misc-bills-pv-detailed-only.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-bills-pv-mixed.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,861.79,144.0,1303.13,-978.65,468.48,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,766.86,108.0,1255.99,-990.44,373.55,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-bills-pv.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,638.83,465.0,1259.07,-1479.22,244.85,132.0,261.98,393.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.17,465.0,1259.07,-2013.87,-289.81,132.0,261.98,393.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-318.65,210.0,1259.07,-2181.7,-712.63,132.0,261.98,393.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-bills.xml,1809.05,144.0,1259.07,0.0,1403.07,144.0,261.98,405.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,1129.4,144.0,1161.69,-700.85,604.85,144.0,380.55,524.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,892.29,144.0,1333.63,-978.65,498.98,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,1406.99,144.0,1439.29,-700.85,882.44,144.0,380.55,524.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,1155.62,144.0,1596.96,-978.65,762.31,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-generators-battery-scheduled.xml,1934.43,144.0,1068.19,0.0,1212.19,144.0,338.28,482.28,0.0,239.96,239.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-generators-battery.xml,1871.29,144.0,1005.05,0.0,1149.05,144.0,338.28,482.28,0.0,239.96,239.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-generators.xml,1871.29,144.0,1005.05,0.0,1149.05,144.0,338.28,482.28,0.0,239.96,239.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -405,7 +405,8 @@ base-misc-shielding-of-home.xml,1840.57,144.0,1308.37,0.0,1452.37,144.0,244.2,38 base-misc-unit-multiplier.xml,18404.43,1440.0,13031.34,0.0,14471.34,1440.0,2493.09,3933.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,2976.84,144.0,1843.6,0.0,1987.6,144.0,728.87,872.87,0.0,0.0,0.0,0.0,59.94,59.94,0.0,56.43,56.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,892.29,144.0,1333.63,-978.65,498.98,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,866.16,144.0,1282.05,-978.65,447.4,144.0,274.76,418.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery-and-vehicle-ev.xml,1155.62,144.0,1596.96,-978.65,762.31,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,865.86,144.0,1282.18,-978.65,447.53,144.0,274.33,418.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-pv-battery-round-trip-efficiency.xml,942.73,144.0,1384.07,-978.65,549.42,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-pv-battery-scheduled.xml,924.93,144.0,1366.27,-978.65,531.62,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-pv-battery.xml,892.29,144.0,1333.63,-978.65,498.98,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -414,19 +415,19 @@ base-pv-generators-battery.xml,924.45,144.0,1036.86,-978.65,202.21,144.0,338.28, base-pv-generators.xml,892.64,144.0,1005.05,-978.65,170.4,144.0,338.28,482.28,0.0,239.96,239.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-pv.xml,861.79,144.0,1303.13,-978.65,468.48,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-residents-0.xml,915.08,144.0,268.02,0.0,412.02,144.0,359.06,503.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,2674.4,144.0,1817.12,0.0,1961.12,144.0,443.44,587.44,0.0,0.0,0.0,0.0,67.32,67.32,0.0,58.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,2404.07,144.0,1731.6,0.0,1875.6,144.0,254.61,398.61,0.0,71.34,71.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,2761.55,144.0,1904.27,0.0,2048.27,144.0,443.44,587.44,0.0,0.0,0.0,0.0,67.32,67.32,0.0,58.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,2491.23,144.0,1818.76,0.0,1962.76,144.0,254.61,398.61,0.0,71.34,71.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-residents-1.xml,1541.41,144.0,980.6,0.0,1124.6,144.0,272.81,416.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-residents-5-5.xml,1486.07,144.0,1589.28,-737.14,996.14,144.0,345.93,489.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,1847.61,144.0,1312.78,0.0,1456.78,144.0,246.83,390.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,1368.67,144.0,1028.75,0.0,1172.75,144.0,51.92,195.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,1608.47,144.0,1235.13,0.0,1379.13,144.0,85.34,229.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1836.6,144.0,1306.7,0.0,1450.7,144.0,241.9,385.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-no-space-cooling.xml,1773.24,144.0,1243.68,0.0,1387.68,144.0,241.56,385.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-no-space-heating.xml,1802.65,144.0,1303.43,0.0,1447.43,144.0,211.22,355.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1535.38,144.0,1094.04,0.0,1238.04,144.0,153.34,297.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1690.67,144.0,1119.57,0.0,1263.57,144.0,283.1,427.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,1836.47,144.0,1306.5,0.0,1450.5,144.0,241.97,385.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-5-5.xml,1763.67,144.0,1866.87,-737.14,1273.74,144.0,345.93,489.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,1847.39,144.0,1312.08,0.0,1456.08,144.0,247.31,391.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1368.18,144.0,1027.97,0.0,1171.97,144.0,52.21,196.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,1608.22,144.0,1234.32,0.0,1378.32,144.0,85.9,229.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1836.74,144.0,1306.44,0.0,1450.44,144.0,242.3,386.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-no-space-cooling.xml,1774.06,144.0,1244.11,0.0,1388.11,144.0,241.95,385.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-no-space-heating.xml,1802.37,144.0,1303.37,0.0,1447.37,144.0,211.0,355.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1534.7,144.0,1093.26,0.0,1237.26,144.0,153.44,297.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,1690.18,144.0,1118.97,0.0,1262.97,144.0,283.21,427.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,1836.88,144.0,1306.52,0.0,1450.52,144.0,242.36,386.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-schedules-detailed-setpoints-daily-schedules.xml,1830.37,144.0,1285.22,0.0,1429.22,144.0,257.15,401.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-schedules-detailed-setpoints-daily-setbacks.xml,1816.75,144.0,1289.46,0.0,1433.46,144.0,239.29,383.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-schedules-detailed-setpoints.xml,1600.51,144.0,1225.23,0.0,1369.23,144.0,87.28,231.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -434,16 +435,26 @@ base-schedules-simple-no-space-cooling.xml,1797.28,144.0,1260.31,0.0,1404.31,144 base-schedules-simple-no-space-heating.xml,1793.49,144.0,1298.88,0.0,1442.88,144.0,206.61,350.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-schedules-simple-power-outage.xml,2210.78,144.0,1681.31,0.0,1825.31,144.0,241.47,385.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-schedules-simple-vacancy.xml,2140.34,144.0,1570.61,0.0,1714.61,144.0,281.73,425.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,2376.33,144.0,1847.08,0.0,1991.08,144.0,241.25,385.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,2653.93,144.0,2124.68,0.0,2268.68,144.0,241.25,385.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-calendar-year-custom.xml,1838.68,144.0,1301.35,0.0,1445.35,144.0,249.33,393.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-daylight-saving-custom.xml,1840.44,144.0,1303.13,0.0,1447.13,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-daylight-saving-disabled.xml,1839.74,144.0,1302.57,0.0,1446.57,144.0,249.17,393.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-runperiod-1-month.xml,222.44,12.01,108.52,0.0,120.53,12.01,89.9,101.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-temperature-capacitance-multiplier.xml,1840.44,144.0,1303.13,0.0,1447.13,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1847.57,144.0,1312.58,0.0,1456.58,144.0,246.99,390.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1846.66,144.0,1312.29,0.0,1456.29,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1847.81,144.0,1312.37,0.0,1456.37,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1847.16,144.0,1312.34,0.0,1456.34,144.0,246.82,390.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-timestep-10-mins.xml,1850.7,144.0,1308.98,0.0,1452.98,144.0,253.72,397.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-timestep-30-mins.xml,1846.68,144.0,1306.51,0.0,1450.51,144.0,252.17,396.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-level1.xml,2083.18,144.0,1520.48,0.0,1664.48,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-miles-per-kwh.xml,2083.2,144.0,1520.5,0.0,1664.5,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-mpge.xml,2082.84,144.0,1520.14,0.0,1664.14,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-occupancy-stochastic.xml,2078.3,144.0,1528.92,0.0,1672.92,144.0,261.38,405.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-plug-load-ev.xml,2184.51,144.0,1621.81,0.0,1765.81,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-scheduled.xml,2069.26,144.0,1506.56,0.0,1650.56,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger-undercharged.xml,1814.34,144.0,1251.64,0.0,1395.64,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-charger.xml,2083.2,144.0,1520.5,0.0,1664.5,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-ev-no-charger.xml,1811.91,144.0,1249.21,0.0,1393.21,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-vehicle-multiple.xml,2083.2,144.0,1520.5,0.0,1664.5,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-zones-spaces-multiple.xml,1811.88,144.0,1249.2,0.0,1393.2,144.0,274.68,418.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-zones-spaces.xml,1811.91,144.0,1249.21,0.0,1393.21,144.0,274.7,418.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base.xml,1840.44,144.0,1303.13,0.0,1447.13,144.0,249.31,393.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_simulations_hvac.csv b/workflow/tests/base_results/results_simulations_hvac.csv index 6d98e19b2d..19363282a0 100644 --- a/workflow/tests/base_results/results_simulations_hvac.csv +++ b/workflow/tests/base_results/results_simulations_hvac.csv @@ -172,6 +172,7 @@ base-enclosure-windows-shading-factors.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0 base-enclosure-windows-shading-seasons.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-enclosure-windows-shading-types-detailed.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,18641.0,6095.0,4528.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,1127.0,139.0,0.0,-661.0,0.0,800.0 base-enclosure-windows-storms.xml,6.8,91.76,36000.0,24000.0,0.0,31386.0,8684.0,6680.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,18778.0,6080.0,5808.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-ev-charger.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-foundation-ambient.xml,6.8,91.76,36000.0,24000.0,0.0,27874.0,8549.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2310.0,0.0,0.0,20090.0,6153.0,7037.0,0.0,207.0,281.0,0.0,488.0,0.0,2293.0,311.0,0.0,3320.0,0.0,0.0,469.0,0.0,-331.0,0.0,800.0 base-foundation-basement-garage.xml,6.8,91.76,36000.0,24000.0,0.0,31787.0,8696.0,7508.0,0.0,627.0,7718.0,0.0,592.0,1223.0,2171.0,3251.0,0.0,0.0,20332.0,6148.0,7037.0,0.0,223.0,692.0,0.0,181.0,0.0,2293.0,438.0,0.0,3320.0,0.0,0.0,335.0,0.0,-465.0,0.0,800.0 base-foundation-belly-wing-no-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21978.0,2636.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2310.0,0.0,0.0,13153.0,804.0,4639.0,0.0,207.0,389.0,0.0,488.0,0.0,2293.0,311.0,0.0,3320.0,0.0,701.0,469.0,0.0,-331.0,0.0,800.0 @@ -213,7 +214,6 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,6.8,91.76,18000.0,18 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,6.8,91.76,31131.0,31131.0,36000.0,31131.0,7600.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,6.8,91.76,36000.0,36000.0,36000.0,31131.0,7600.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,6.8,91.76,36000.0,36000.0,36000.0,31131.0,7600.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31131.0,7600.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,6.8,91.76,36000.0,36000.0,36000.0,31131.0,7600.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,6.8,91.76,36000.0,36000.0,36000.0,31131.0,7600.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,6.8,91.76,72000.0,72000.0,72000.0,37690.0,14159.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,32588.0,18661.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 @@ -297,7 +297,7 @@ base-hvac-install-quality-ground-to-air-heat-pump-2-speed.xml,6.8,91.76,36000.0, base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,6.8,91.76,36000.0,36000.0,36000.0,26082.0,2552.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,6.8,91.76,0.0,15084.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,6.8,91.76,0.0,14383.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,6.8,91.76,0.0,36000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,6.8,91.76,0.0,24000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 @@ -405,6 +405,7 @@ base-misc-shielding-of-home.xml,6.8,91.76,36000.0,24000.0,0.0,31374.0,8683.0,750 base-misc-unit-multiplier.xml,6.8,91.76,360000.0,240000.0,0.0,322390.0,87090.0,75080.0,0.0,5750.0,69180.0,0.0,0.0,17380.0,21710.0,46200.0,0.0,0.0,200390.0,61120.0,70370.0,0.0,2070.0,4480.0,0.0,0.0,0.0,22930.0,6220.0,0.0,33200.0,0.0,0.0,1390.0,0.0,-6610.0,0.0,8000.0 base-misc-usage-multiplier.xml,6.8,91.76,36000.0,24000.0,0.0,33431.0,8742.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,5779.0,0.0,0.0,21277.0,6150.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,4520.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-pv-battery-ah.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-pv-battery-and-vehicle-ev.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-pv-battery-garage.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-pv-battery-round-trip-efficiency.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-pv-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 @@ -444,6 +445,16 @@ base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,6.8,91.76,3600 base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-simcontrol-timestep-10-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-simcontrol-timestep-30-mins.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-level1.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-miles-per-kwh.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-mpge.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-occupancy-stochastic.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-plug-load-ev.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger-undercharged.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-charger.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-ev-no-charger.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-vehicle-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16145.0,3427.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-zones-spaces-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,30802.0,9010.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16746.0,3428.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3920.0,0.0,0.0,439.0,0.0,-661.0,0.0,1100.0 base-zones-spaces.xml,6.8,91.76,36000.0,24000.0,0.0,30857.0,9065.0,5506.0,0.0,575.0,7182.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16757.0,3438.0,5579.0,0.0,207.0,697.0,0.0,0.0,0.0,2293.0,622.0,0.0,3920.0,0.0,0.0,439.0,0.0,-661.0,0.0,1100.0 base.xml,6.8,91.76,36000.0,24000.0,0.0,32239.0,8709.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,20039.0,6112.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 diff --git a/workflow/tests/base_results/results_simulations_loads.csv b/workflow/tests/base_results/results_simulations_loads.csv index 93fe659945..912f9606f0 100644 --- a/workflow/tests/base_results/results_simulations_loads.csv +++ b/workflow/tests/base_results/results_simulations_loads.csv @@ -63,7 +63,7 @@ base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1.029,0.0,8.024,9 base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1.029,0.0,8.024,9.369,0.574,0.0,0.0,0.0,-0.003,1.757,0.0,0.0,0.282,2.551,-1.822,0.0,0.0,0.005,0.0,-0.297,0.996,0.0,0.458,0.0,0.0,-2.47,-0.505,0.0,0.001,-1.843,0.0,0.0,-0.214,-2.458,6.378,0.0,0.0,0.01,0.0,-0.289,-1.121,-1.36,-0.574,0.0,0.0,8.196,1.52 base-bldgtype-mf-unit-shared-water-heater.xml,1.029,0.0,8.024,9.369,0.574,0.0,0.0,0.0,-0.003,1.757,0.0,0.0,0.282,2.551,-1.822,0.0,0.0,0.005,0.0,-0.297,0.996,0.0,0.458,0.0,0.0,-2.47,-0.505,0.0,0.001,-1.843,0.0,0.0,-0.214,-2.458,6.378,0.0,0.0,0.01,0.0,-0.289,-1.121,-1.36,-0.574,0.0,0.0,8.196,1.52 base-bldgtype-mf-unit.xml,0.834,0.0,8.366,9.369,0.581,0.0,0.0,0.0,-0.002,1.627,0.0,0.0,0.262,2.355,-1.637,0.0,0.0,0.007,0.0,-0.273,0.727,0.0,0.423,0.0,0.0,-2.279,-0.457,0.0,0.003,-2.012,0.0,0.0,-0.242,-2.717,6.563,0.0,0.0,0.012,0.0,-0.265,-0.898,-1.393,-0.62,0.0,0.0,8.603,1.568 -base-bldgtype-mf-whole-building.xml,32.265,0.0,51.261,55.31,3.602,0.0,0.0,0.0,7.441,17.359,0.0,0.0,2.293,25.631,-23.05,0.0,0.0,6.568,0.0,-2.946,48.223,0.0,0.0,0.0,0.0,-43.29,-6.251,0.0,-1.631,-5.769,0.0,0.0,-0.312,-6.699,34.3,0.0,0.0,-5.103,0.0,-2.921,-17.611,-8.812,0.0,0.0,0.0,57.959,8.39 +base-bldgtype-mf-whole-building.xml,32.284,0.0,51.238,55.33,3.601,0.0,0.0,0.0,7.43,17.327,0.0,0.0,2.295,25.626,-22.956,0.0,0.0,6.535,0.0,-2.967,48.194,0.0,0.0,0.0,0.0,-43.201,-6.251,0.0,-1.642,-5.807,0.0,0.0,-0.311,-6.713,34.394,0.0,0.0,-5.141,0.0,-2.941,-17.656,-8.816,0.0,0.0,0.0,58.048,8.39 base-bldgtype-sfa-unit-2stories.xml,16.182,0.0,10.166,9.105,0.614,0.0,0.0,0.0,2.643,5.423,0.318,4.405,0.687,7.617,-9.227,0.0,0.0,0.0,4.959,-0.137,7.161,0.0,0.775,0.0,2.473,-8.499,-2.679,0.0,0.069,-0.28,-0.005,1.658,0.033,-0.52,7.267,0.0,0.0,0.0,-4.015,-0.133,-1.149,-2.912,-0.112,0.0,1.403,7.083,1.828 base-bldgtype-sfa-unit-atticroof-cathedral.xml,56.759,0.0,15.849,9.105,0.623,0.0,0.0,51.613,0.0,3.035,0.299,3.177,0.705,5.042,-5.694,0.0,0.0,0.0,2.818,-1.349,7.398,0.0,0.812,0.0,0.0,-9.358,-2.888,10.542,0.0,-0.064,0.014,1.014,0.156,0.357,4.714,0.0,0.0,0.0,-4.893,-1.312,-0.504,-1.14,-0.049,0.0,0.0,6.205,1.619 base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,12.662,0.0,7.979,9.22,0.614,0.0,0.0,0.0,2.44,2.457,0.303,4.293,0.65,3.691,-4.549,0.0,0.0,0.0,4.879,-0.046,3.007,0.0,0.753,0.0,3.563,-7.012,-1.898,0.0,-0.003,-0.187,-0.015,1.635,0.007,-0.464,3.724,0.0,0.0,0.0,-3.844,-0.044,-0.59,-1.327,-0.136,0.0,1.72,6.182,1.368 @@ -117,7 +117,7 @@ base-dhw-tank-heat-pump-uef.xml,27.471,0.0,11.598,9.135,1.286,0.0,0.0,0.0,3.837, base-dhw-tank-heat-pump-with-solar-fraction.xml,24.191,0.0,12.997,9.111,0.594,0.0,5.922,0.0,3.818,3.899,0.548,7.557,0.684,10.798,-13.73,0.0,0.0,0.0,8.39,-0.116,5.291,0.0,0.773,0.0,5.674,-7.051,-2.697,0.0,0.075,-0.148,-0.009,2.886,0.042,-0.523,10.678,0.0,0.0,0.0,-6.018,-0.113,-0.802,-3.732,-0.108,0.0,2.97,6.108,1.81 base-dhw-tank-heat-pump-with-solar.xml,23.119,0.0,14.401,9.018,1.964,0.0,8.051,0.0,3.818,3.889,0.546,7.578,0.683,10.781,-13.569,0.0,0.0,0.0,8.328,-0.117,5.273,0.0,0.772,0.0,5.449,-7.997,-2.667,0.0,0.023,-0.188,-0.014,2.815,0.034,-0.632,10.839,0.0,0.0,0.0,-6.197,-0.114,-0.849,-3.95,-0.115,0.0,3.23,7.788,1.84 base-dhw-tank-heat-pump.xml,26.65,0.0,11.947,9.126,1.699,0.0,0.0,0.0,3.834,3.937,0.552,7.523,0.689,10.904,-14.028,0.0,0.0,0.0,8.415,-0.125,5.357,0.0,0.782,0.0,6.179,-4.992,-2.751,0.0,0.156,-0.081,0.001,2.951,0.055,-0.324,10.381,0.0,0.0,0.0,-5.875,-0.121,-0.726,-3.548,-0.092,0.0,2.764,4.772,1.756 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,22.176,0.0,13.821,9.116,0.095,0.0,0.0,0.0,3.837,3.897,0.548,7.614,0.683,10.788,-13.623,0.0,0.0,0.0,8.392,-0.103,5.683,0.0,0.814,0.0,5.246,-9.283,-2.673,0.0,0.037,-0.179,-0.013,2.848,0.034,-0.622,10.785,0.0,0.0,0.0,-6.141,-0.099,-0.918,-3.893,-0.145,0.0,3.119,7.29,1.837 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,22.21,0.0,13.797,9.126,0.095,0.0,0.0,0.0,3.829,3.891,0.547,7.62,0.682,10.769,-13.601,0.0,0.0,0.0,8.398,-0.099,5.688,0.0,0.814,0.0,5.253,-9.264,-2.667,0.0,0.027,-0.188,-0.014,2.847,0.032,-0.649,10.807,0.0,0.0,0.0,-6.145,-0.094,-0.932,-3.913,-0.121,0.0,3.115,7.309,1.843 base-dhw-tank-model-type-stratified.xml,22.847,0.0,13.568,9.119,0.094,0.0,0.0,0.0,3.818,3.885,0.546,7.567,0.683,10.773,-13.603,0.0,0.0,0.0,8.367,-0.118,5.267,0.0,0.771,0.0,5.396,-8.189,-2.669,0.0,0.038,-0.18,-0.013,2.839,0.037,-0.604,10.805,0.0,0.0,0.0,-6.116,-0.114,-0.836,-3.849,-0.115,0.0,3.082,6.871,1.838 base-dhw-tank-oil.xml,22.67,0.0,14.249,9.07,3.629,0.0,0.0,0.0,3.814,3.88,0.545,7.574,0.683,10.763,-13.52,0.0,0.0,0.0,8.331,-0.119,6.38,0.0,0.77,0.0,5.365,-9.486,-2.657,0.0,0.015,-0.197,-0.015,2.811,0.033,-0.651,10.888,0.0,0.0,0.0,-6.197,-0.115,-1.071,-3.933,-0.118,0.0,3.211,7.852,1.85 base-dhw-tank-wood.xml,22.67,0.0,14.249,9.07,3.629,0.0,0.0,0.0,3.814,3.88,0.545,7.574,0.683,10.763,-13.52,0.0,0.0,0.0,8.331,-0.119,6.38,0.0,0.77,0.0,5.365,-9.486,-2.657,0.0,0.015,-0.197,-0.015,2.811,0.033,-0.651,10.888,0.0,0.0,0.0,-6.197,-0.115,-1.071,-3.933,-0.118,0.0,3.211,7.852,1.85 @@ -172,8 +172,9 @@ base-enclosure-windows-shading-factors.xml,24.562,0.0,5.769,9.07,0.623,0.0,0.0,0 base-enclosure-windows-shading-seasons.xml,22.405,0.0,13.843,9.07,0.615,0.0,0.0,0.0,3.775,3.843,0.54,7.55,0.675,10.631,-13.481,0.0,0.0,0.0,8.36,-0.106,5.218,0.0,0.764,0.0,5.299,-8.378,-2.638,0.0,-0.035,-0.246,-0.022,2.757,0.023,-0.671,11.338,0.0,0.0,0.0,-6.228,-0.102,-0.905,-4.025,-0.125,0.0,3.131,7.204,1.869 base-enclosure-windows-shading-types-detailed.xml,32.815,0.0,8.584,9.07,0.621,0.0,0.0,0.0,3.706,3.991,0.578,7.17,0.827,12.917,-5.98,0.0,0.0,0.0,7.899,-0.136,5.44,0.0,0.787,0.0,7.328,-9.133,-2.845,0.0,0.334,0.032,0.014,3.152,0.061,-1.248,5.265,0.0,0.0,0.0,-5.045,-0.131,-0.63,-3.194,-0.073,0.0,2.003,6.435,1.662 base-enclosure-windows-storms.xml,24.003,0.0,11.783,9.07,0.617,0.0,0.0,0.0,3.8,3.879,0.544,7.467,0.679,9.242,-10.255,0.0,0.0,0.0,8.148,-0.126,5.295,0.0,0.774,0.0,5.609,-8.634,-2.708,0.0,0.131,-0.104,-0.002,2.962,0.052,0.003,7.869,0.0,0.0,0.0,-5.804,-0.122,-0.781,-3.652,-0.104,0.0,2.692,6.943,1.799 +base-ev-charger.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 base-foundation-ambient.xml,17.298,0.0,14.762,9.177,0.608,0.0,0.0,0.0,3.826,3.646,0.0,0.0,0.782,9.927,-10.692,0.0,0.0,9.863,0.0,-0.765,2.229,0.0,0.71,0.0,4.245,-5.411,-1.256,0.0,-0.297,-0.703,0.0,0.0,0.057,-0.606,13.265,0.0,0.0,-3.977,0.0,-0.76,-0.485,-2.808,-0.22,0.0,3.541,6.603,1.39 -base-foundation-basement-garage.xml,20.003,0.0,13.742,9.199,0.614,0.0,0.0,0.0,3.977,5.033,0.549,5.451,0.766,10.59,-13.396,0.0,0.0,0.868,5.925,-0.117,3.66,0.0,0.78,0.0,4.896,-7.301,-2.012,0.0,0.11,-0.301,-0.016,1.934,0.032,-0.318,10.886,0.0,0.0,-0.083,-4.716,-0.114,-0.544,-3.73,-0.113,0.0,3.277,6.159,1.392 +base-foundation-basement-garage.xml,19.918,0.0,13.747,9.199,0.614,0.0,0.0,0.0,3.977,4.987,0.549,5.451,0.762,10.585,-13.385,0.0,0.0,0.834,5.928,-0.116,3.657,0.0,0.78,0.0,4.877,-7.292,-2.01,0.0,0.107,-0.297,-0.016,1.93,0.032,-0.329,10.897,0.0,0.0,-0.077,-4.718,-0.113,-0.547,-3.734,-0.113,0.0,3.278,6.167,1.394 base-foundation-belly-wing-no-skirt.xml,21.384,0.0,12.208,9.177,0.609,0.0,0.0,0.0,4.081,5.115,0.0,0.0,0.778,8.277,-10.441,0.0,0.0,9.965,0.0,-0.717,2.758,0.0,0.72,0.0,7.51,-5.549,-1.29,0.0,0.143,-0.804,0.0,0.0,0.073,-0.254,10.245,0.0,0.0,-3.658,0.0,-0.711,-0.442,-2.567,-0.202,0.0,2.788,6.462,1.356 base-foundation-belly-wing-skirt.xml,20.992,0.0,12.259,9.177,0.609,0.0,0.0,0.0,4.081,5.114,0.0,0.0,0.776,8.256,-10.389,0.0,0.0,9.638,0.0,-0.705,2.737,0.0,0.717,0.0,7.376,-5.513,-1.282,0.0,0.131,-0.822,0.0,0.0,0.069,-0.305,10.297,0.0,0.0,-3.611,0.0,-0.699,-0.452,-2.585,-0.206,0.0,2.796,6.498,1.364 base-foundation-complex.xml,39.64,0.0,17.171,9.07,0.618,0.0,0.0,0.0,3.667,3.918,0.557,20.494,0.687,10.848,-14.308,0.0,0.0,0.0,8.651,-0.176,6.779,0.0,0.792,0.0,8.959,-8.919,-2.804,0.0,0.138,-0.085,-0.006,4.844,0.038,-0.218,10.098,0.0,0.0,0.0,-4.512,-0.169,-0.807,-4.094,-0.079,0.0,3.767,6.655,1.703 @@ -210,11 +211,10 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xm base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,29.603,11.42,15.796,9.07,0.616,0.0,0.0,0.0,3.54,3.9,0.548,7.558,0.686,10.822,-13.633,0.0,0.0,0.0,8.343,-0.128,6.992,0.0,0.772,0.0,11.05,-8.533,-2.68,0.0,-0.031,-0.163,-0.011,2.841,0.041,-0.546,10.775,0.0,0.0,0.0,-6.131,-0.124,-1.013,-3.829,-0.111,0.0,5.324,7.047,1.827 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,27.706,14.301,12.803,9.07,0.615,0.0,0.0,0.0,3.608,3.884,0.546,7.575,0.683,10.761,-13.571,0.0,0.0,0.0,8.373,-0.114,5.841,0.0,0.769,0.0,10.117,-8.472,-2.661,0.0,0.067,-0.188,-0.014,2.825,0.035,-0.638,10.837,0.0,0.0,0.0,-6.14,-0.11,-0.861,-3.882,-0.117,0.0,2.158,7.109,1.846 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,30.017,12.685,15.905,9.07,0.615,0.0,0.0,0.0,3.476,3.885,0.546,7.577,0.683,10.763,-13.571,0.0,0.0,0.0,8.377,-0.114,6.056,0.0,0.769,0.0,12.331,-8.472,-2.661,0.0,-0.057,-0.188,-0.014,2.826,0.035,-0.636,10.837,0.0,0.0,0.0,-6.137,-0.11,-0.84,-3.896,-0.117,0.0,5.347,7.109,1.846 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,27.557,0.309,14.607,9.07,0.615,0.0,0.0,0.0,3.574,3.884,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.54,0.0,0.77,0.0,10.31,-8.475,-2.662,0.0,0.004,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.852,-3.888,-0.117,0.0,4.013,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,26.71,0.095,13.884,9.07,0.615,0.0,0.0,0.0,3.615,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.375,-0.116,5.463,0.0,0.77,0.0,9.502,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.855,-3.885,-0.117,0.0,3.266,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.749,0.098,14.21,9.07,0.615,0.0,0.0,0.0,3.612,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.462,0.0,0.77,0.0,9.545,-8.475,-2.662,0.0,0.02,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.603,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,27.298,6.294,14.192,9.07,0.615,0.0,0.0,0.0,3.592,3.885,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.714,0.0,0.77,0.0,9.858,-8.475,-2.662,0.0,0.021,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.584,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,26.709,0.094,14.214,9.07,0.615,0.0,0.0,0.0,3.615,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.375,-0.116,5.463,0.0,0.77,0.0,9.501,-8.475,-2.662,0.0,0.02,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.607,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,27.586,0.318,14.591,9.07,0.615,0.0,0.0,0.0,3.573,3.884,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.548,0.0,0.77,0.0,10.332,-8.475,-2.662,0.0,0.004,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.852,-3.888,-0.117,0.0,3.995,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,26.908,0.103,13.884,9.07,0.615,0.0,0.0,0.0,3.604,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.472,0.0,0.77,0.0,9.703,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.855,-3.885,-0.117,0.0,3.266,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.787,0.099,14.192,9.07,0.615,0.0,0.0,0.0,3.61,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.472,0.0,0.77,0.0,9.575,-8.475,-2.662,0.0,0.021,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.584,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,26.907,0.103,14.187,9.07,0.615,0.0,0.0,0.0,3.604,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.472,0.0,0.77,0.0,9.702,-8.475,-2.662,0.0,0.021,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.579,7.106,1.845 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,25.757,0.388,14.285,9.07,0.615,0.0,0.0,0.0,3.696,3.912,0.55,7.6,0.696,10.866,-13.518,0.0,0.0,0.0,8.321,-0.108,5.358,0.0,0.778,0.0,8.442,-8.492,-2.669,0.0,0.057,-0.2,-0.017,2.828,0.032,-0.621,10.83,0.0,0.0,0.0,-6.156,-0.103,-0.82,-3.714,-0.119,0.0,3.485,7.089,1.838 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,26.02,0.036,13.905,9.07,0.615,0.0,0.0,0.0,3.659,3.884,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.351,0.0,0.77,0.0,8.888,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.855,-3.885,-0.117,0.0,3.291,7.106,1.845 base-hvac-air-to-air-heat-pump-var-speed-research-features.xml,25.283,0.252,13.882,9.07,0.615,0.0,0.0,0.0,3.671,3.876,0.544,7.553,0.681,10.741,-13.571,0.0,0.0,0.0,8.339,-0.116,5.353,0.0,0.768,0.0,8.245,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.14,-0.112,-0.855,-3.884,-0.117,0.0,3.266,7.106,1.845 @@ -233,8 +233,8 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,12.253,9.07,0.666, base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,13.399,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.069,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.809,-3.758,-0.11,0.0,3.105,6.958,1.811 base-hvac-central-ac-only-1-speed.xml,0.0,0.0,13.399,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.069,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.809,-3.758,-0.11,0.0,3.105,6.958,1.811 base-hvac-central-ac-only-2-speed.xml,0.0,0.0,13.763,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.056,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.806,-3.758,-0.11,0.0,3.475,6.958,1.811 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,14.888,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.809,-3.766,-0.11,0.0,4.654,6.958,1.811 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,13.901,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.058,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.817,-3.76,-0.11,0.0,3.638,6.958,1.811 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,14.886,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.809,-3.766,-0.11,0.0,4.653,6.958,1.811 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,13.906,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.058,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.817,-3.76,-0.11,0.0,3.643,6.958,1.811 base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,0.0,14.723,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.151,-0.009,2.77,0.044,-0.548,10.577,0.0,0.0,0.0,-6.341,-0.114,-0.811,-3.766,-0.111,0.0,4.484,6.955,1.81 base-hvac-central-ac-only-var-speed.xml,0.0,0.0,14.74,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.809,-3.764,-0.11,0.0,4.497,6.958,1.811 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,23.106,0.332,13.821,9.07,0.615,0.0,0.0,0.0,3.792,3.883,0.545,7.571,0.683,10.761,-13.571,0.0,0.0,0.0,8.365,-0.116,5.423,0.0,0.77,0.0,5.778,-8.475,-2.662,0.0,0.026,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.188,7.106,1.845 @@ -286,7 +286,7 @@ base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,25.222,0.0,13.281 base-hvac-ground-to-air-heat-pump-heating-only.xml,21.132,0.0,0.0,9.07,0.592,0.0,0.0,0.0,3.847,3.854,0.542,7.545,0.677,10.677,-13.456,0.0,0.0,0.0,8.209,-0.109,5.194,0.0,0.765,0.0,4.073,-8.398,-2.641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,24.751,0.717,13.255,9.07,0.615,0.0,0.0,0.0,3.716,3.883,0.546,7.574,0.683,10.763,-13.571,0.0,0.0,0.0,8.369,-0.116,5.518,0.0,0.77,0.0,7.398,-8.475,-2.662,0.0,0.047,-0.188,-0.014,2.827,0.035,-0.633,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.852,-3.884,-0.117,0.0,2.617,7.106,1.845 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,25.721,0.642,13.573,9.07,0.615,0.0,0.0,0.0,3.671,3.884,0.546,7.575,0.683,10.764,-13.571,0.0,0.0,0.0,8.372,-0.116,5.575,0.0,0.77,0.0,8.346,-8.475,-2.662,0.0,0.037,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.849,-3.884,-0.117,0.0,2.937,7.106,1.845 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,28.206,0.318,14.983,9.07,0.615,0.0,0.0,0.0,3.545,3.885,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.377,-0.116,5.577,0.0,0.769,0.0,10.948,-8.475,-2.662,0.0,-0.011,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.851,-3.891,-0.117,0.0,4.403,7.106,1.845 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,28.235,0.335,14.964,9.07,0.615,0.0,0.0,0.0,3.544,3.885,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.377,-0.116,5.584,0.0,0.769,0.0,10.972,-8.475,-2.662,0.0,-0.011,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.851,-3.89,-0.117,0.0,4.383,7.106,1.845 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,27.431,0.664,14.726,9.07,0.615,0.0,0.0,0.0,3.585,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.496,0.0,0.77,0.0,10.215,-8.475,-2.662,0.0,-0.002,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.851,-3.888,-0.117,0.0,4.134,7.106,1.845 base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,23.78,0.0,14.745,9.07,0.615,0.0,0.0,0.0,3.757,3.883,0.545,7.572,0.683,10.762,-13.571,0.0,0.0,0.0,8.367,-0.116,5.282,0.0,0.77,0.0,6.632,-8.475,-2.662,0.0,-0.011,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.841,-3.888,-0.117,0.0,4.142,7.106,1.845 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,23.78,0.0,15.197,9.07,0.615,0.0,0.0,0.0,3.757,3.883,0.545,7.572,0.683,10.762,-13.571,0.0,0.0,0.0,8.367,-0.116,5.282,0.0,0.77,0.0,6.632,-8.475,-2.662,0.0,-0.029,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.838,-3.888,-0.117,0.0,4.604,7.106,1.845 @@ -297,7 +297,7 @@ base-hvac-install-quality-ground-to-air-heat-pump-2-speed.xml,24.707,0.0,13.586, base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,12.159,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.111,-0.151,-0.009,2.77,0.045,-0.54,10.589,0.0,0.0,0.0,-6.351,-0.119,-0.825,-3.757,-0.11,0.0,1.859,6.958,1.811 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,20.652,0.128,12.079,9.07,0.615,0.0,0.0,0.0,3.915,3.882,0.545,7.568,0.682,10.758,-13.571,0.0,0.0,0.0,8.359,-0.116,5.115,0.0,0.77,0.0,3.534,-8.475,-2.662,0.0,0.096,-0.188,-0.014,2.825,0.035,-0.634,10.837,0.0,0.0,0.0,-6.141,-0.112,-0.863,-3.881,-0.116,0.0,1.416,7.106,1.845 base-hvac-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,11.907,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.125,-0.151,-0.009,2.77,0.045,-0.54,10.589,0.0,0.0,0.0,-6.352,-0.119,-0.825,-3.756,-0.11,0.0,1.594,6.958,1.811 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,10.397,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,10.398,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,0.0,0.0,10.397,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 base-hvac-mini-split-air-conditioner-only-ductless.xml,0.0,0.0,10.397,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,0.0,0.0,11.407,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.155,-0.151,-0.009,2.769,0.045,-0.541,10.589,0.0,0.0,0.0,-6.353,-0.119,-0.826,-3.754,-0.11,0.0,1.067,6.958,1.811 @@ -314,8 +314,8 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,17.258,0.394,10.74, base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,18.44,7.776,10.655,9.07,0.616,0.0,0.0,0.0,4.123,3.895,0.547,7.546,0.685,10.814,-13.633,0.0,0.0,0.0,8.316,-0.13,6.258,0.0,0.773,0.0,0.116,-8.536,-2.682,0.0,0.205,-0.164,-0.011,2.839,0.041,-0.545,10.775,0.0,0.0,0.0,-6.138,-0.126,-1.035,-3.812,-0.111,0.0,0.0,7.044,1.825 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,17.64,7.671,10.74,9.07,0.615,0.0,0.0,0.0,4.089,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.35,-0.116,5.085,0.0,0.77,0.0,0.395,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,18.315,7.642,10.655,9.07,0.616,0.0,0.0,0.0,4.123,3.895,0.547,7.546,0.685,10.814,-13.633,0.0,0.0,0.0,8.316,-0.13,6.248,0.0,0.773,0.0,0.0,-8.536,-2.682,0.0,0.205,-0.164,-0.011,2.839,0.041,-0.545,10.775,0.0,0.0,0.0,-6.138,-0.126,-1.035,-3.812,-0.111,0.0,0.0,7.044,1.825 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,17.258,0.0,10.739,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.823,0.035,-0.635,10.837,0.0,0.0,0.0,-6.145,-0.112,-0.865,-3.88,-0.116,0.0,0.0,7.106,1.845 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,17.258,0.0,10.739,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.823,0.035,-0.635,10.837,0.0,0.0,0.0,-6.145,-0.112,-0.865,-3.88,-0.116,0.0,0.0,7.106,1.845 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,17.241,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.106,3.879,0.545,7.56,0.682,10.751,-13.571,0.0,0.0,0.0,8.344,-0.116,5.077,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.823,0.035,-0.635,10.837,0.0,0.0,0.0,-6.145,-0.112,-0.865,-3.879,-0.116,0.0,0.0,7.106,1.845 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,17.258,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,17.258,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-mini-split-heat-pump-ductless.xml,17.258,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-multiple.xml,38.479,0.471,18.666,9.07,0.616,0.0,0.0,0.0,3.658,3.898,0.548,7.556,0.686,10.823,-13.633,0.0,0.0,0.0,8.337,-0.13,9.477,0.0,0.772,0.0,17.351,-8.536,-2.682,0.0,-0.017,-0.164,-0.011,2.84,0.041,-0.544,10.774,0.0,0.0,0.0,-6.134,-0.126,-0.922,-3.844,-0.111,0.0,8.121,7.044,1.825 @@ -405,7 +405,8 @@ base-misc-shielding-of-home.xml,22.042,0.0,14.309,9.07,0.615,0.0,0.0,0.0,3.812,3 base-misc-unit-multiplier.xml,225.029,0.0,137.456,90.702,6.152,0.0,0.0,0.0,38.191,38.824,5.454,75.704,6.824,107.605,-135.711,0.0,0.0,0.0,83.636,-1.158,52.59,0.0,7.697,0.0,53.227,-84.752,-26.624,0.0,0.292,-1.878,-0.14,28.27,0.349,-6.321,108.371,0.0,0.0,0.0,-61.382,-1.12,-8.47,-38.842,-1.165,0.0,31.132,71.059,18.448 base-misc-usage-multiplier.xml,20.917,0.0,14.896,8.163,0.614,0.0,0.0,0.0,3.815,3.866,0.543,7.633,0.679,10.716,-13.411,0.0,0.0,0.0,8.426,-0.105,5.266,0.0,0.69,0.0,4.98,-10.154,-2.372,0.0,-0.046,-0.25,-0.022,2.756,0.021,-0.812,10.999,0.0,0.0,0.0,-6.265,-0.101,-0.916,-4.094,-0.113,0.0,3.315,8.86,1.684 base-pv-battery-ah.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 -base-pv-battery-garage.xml,24.792,0.0,9.071,9.07,0.724,0.0,0.0,0.0,3.923,4.133,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.05,-6.613,-2.816,0.0,0.362,0.076,0.014,2.547,0.063,-0.292,7.225,0.0,0.0,0.0,-5.461,-0.097,-0.74,-2.655,0.0,0.0,1.637,4.783,1.691 +base-pv-battery-and-vehicle-ev.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 +base-pv-battery-garage.xml,24.753,0.0,9.074,9.07,0.722,0.0,0.0,0.0,3.914,4.122,0.549,5.913,0.671,8.972,-7.705,0.0,0.0,0.0,6.684,-0.101,5.907,0.0,0.0,0.0,5.029,-6.613,-2.816,0.0,0.363,0.078,0.014,2.547,0.063,-0.292,7.225,0.0,0.0,0.0,-5.462,-0.098,-0.74,-2.656,0.0,0.0,1.64,4.783,1.691 base-pv-battery-round-trip-efficiency.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 base-pv-battery-scheduled.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 base-pv-battery.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 @@ -418,15 +419,15 @@ base-residents-1-misc-loads-large-uncommon.xml,21.522,0.0,14.588,3.416,0.614,0.0 base-residents-1-misc-loads-large-uncommon2.xml,21.522,0.0,14.588,3.416,0.614,0.0,0.0,0.0,3.822,3.877,0.545,7.617,0.681,10.741,-13.462,0.0,0.0,0.0,8.416,-0.111,5.233,0.0,0.766,0.0,5.114,-9.432,-2.643,0.0,-0.024,-0.232,-0.02,2.761,0.024,-0.764,10.946,0.0,0.0,0.0,-6.251,-0.107,-0.887,-4.03,-0.122,0.0,3.256,8.291,1.864 base-residents-1.xml,24.625,0.0,12.438,3.416,0.617,0.0,0.0,0.0,3.829,3.91,0.549,7.497,0.689,10.866,-13.805,0.0,0.0,0.0,8.308,-0.14,5.324,0.0,0.776,0.0,5.779,-6.597,-2.713,0.0,0.121,-0.11,-0.003,2.905,0.054,-0.377,10.604,0.0,0.0,0.0,-5.981,-0.136,-0.759,-3.634,-0.102,0.0,2.868,5.311,1.794 base-residents-5-5.xml,31.207,0.0,6.681,19.689,0.642,0.0,12.225,0.0,4.268,4.009,0.562,7.405,0.724,11.371,-14.068,0.0,0.0,0.0,8.358,-0.265,3.206,0.0,16.783,0.0,3.587,-12.287,-2.81,0.0,0.492,0.139,0.032,3.247,0.126,1.273,12.104,0.0,0.0,0.0,-5.362,-0.261,-0.023,0.0,-2.103,-14.934,0.677,9.674,1.698 -base-schedules-detailed-all-10-mins.xml,22.277,0.0,14.405,9.052,0.639,0.0,0.0,0.0,3.853,3.926,0.552,7.665,0.697,10.89,-13.524,0.0,0.0,0.0,8.387,-0.096,5.738,0.0,0.813,0.0,5.316,-9.591,-2.673,0.0,0.046,-0.205,-0.017,2.835,0.029,-0.654,10.824,0.0,0.0,0.0,-6.168,-0.091,-0.911,-3.756,-0.146,0.0,3.366,7.54,1.836 -base-schedules-detailed-mixed-timesteps-power-outage.xml,4.688,0.0,8.963,7.299,0.563,0.0,0.0,0.0,2.703,2.543,0.355,4.288,0.355,6.718,-13.043,0.0,0.0,0.0,3.932,-0.083,3.532,0.0,0.427,0.0,1.074,-6.689,-1.691,0.0,-0.15,-0.439,-0.05,2.559,-0.026,-1.348,11.31,0.0,0.0,0.0,-7.072,-0.038,-1.168,-6.399,-0.172,0.0,2.194,7.967,1.928 -base-schedules-detailed-mixed-timesteps.xml,7.702,0.0,9.01,9.052,0.673,0.0,0.0,0.0,3.005,2.897,0.405,5.414,0.442,7.764,-13.032,0.0,0.0,0.0,5.769,-0.039,4.019,0.0,0.626,0.0,1.815,-9.083,-2.581,0.0,-0.153,-0.441,-0.05,2.563,-0.027,-1.356,11.316,0.0,0.0,0.0,-7.016,-0.037,-1.171,-6.417,-0.172,0.0,2.203,7.971,1.929 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,21.831,0.0,14.008,9.073,0.615,0.0,0.0,0.0,3.831,3.89,0.547,7.619,0.682,10.775,-13.569,0.0,0.0,0.0,8.388,-0.103,5.674,0.0,0.815,0.0,5.173,-9.567,-2.674,0.0,0.021,-0.192,-0.014,2.837,0.032,-0.651,10.839,0.0,0.0,0.0,-6.166,-0.099,-0.933,-3.927,-0.145,0.0,3.155,7.539,1.836 -base-schedules-detailed-occupancy-stochastic-no-space-cooling.xml,21.8,0.0,8.74,9.07,0.607,0.0,0.0,0.0,3.829,3.887,0.546,7.61,0.683,10.768,-13.551,0.0,0.0,0.0,8.355,-0.103,5.67,0.0,0.815,0.0,5.165,-9.558,-2.666,0.0,-0.097,-0.381,-0.042,2.287,-0.014,-1.226,10.857,0.0,0.0,0.0,-6.897,-0.099,-1.105,-5.561,-0.175,0.0,1.886,7.555,1.844 -base-schedules-detailed-occupancy-stochastic-no-space-heating.xml,19.079,0.0,13.998,9.07,0.62,0.0,0.0,0.0,3.764,3.783,0.532,7.211,0.658,10.473,-13.556,0.0,0.0,0.0,7.514,-0.167,5.477,0.0,0.793,0.0,4.486,-9.555,-2.669,0.0,0.019,-0.194,-0.015,2.834,0.033,-0.65,10.852,0.0,0.0,0.0,-6.168,-0.102,-0.933,-3.927,-0.145,0.0,3.15,7.529,1.841 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,13.843,0.0,13.92,7.312,0.518,0.0,0.0,0.0,3.376,3.305,0.463,5.781,0.538,9.025,-13.587,0.0,0.0,0.0,5.228,-0.197,4.745,0.0,0.551,0.0,3.197,-7.147,-1.788,0.0,0.026,-0.188,-0.014,2.827,0.033,-0.643,10.826,0.0,0.0,0.0,-6.235,-0.099,-0.93,-3.911,-0.145,0.0,3.135,7.52,1.84 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,25.552,0.0,13.997,7.303,0.615,0.0,0.0,0.0,3.768,3.865,0.543,7.541,0.678,10.715,-13.561,0.0,0.0,0.0,8.229,-0.106,5.73,0.0,0.551,0.0,5.961,-6.922,-1.781,0.0,0.019,-0.194,-0.015,2.834,0.033,-0.649,10.852,0.0,0.0,0.0,-6.169,-0.102,-0.933,-3.927,-0.145,0.0,3.15,7.529,1.841 -base-schedules-detailed-occupancy-stochastic.xml,21.838,0.0,14.0,9.07,0.615,0.0,0.0,0.0,3.829,3.888,0.546,7.616,0.683,10.776,-13.556,0.0,0.0,0.0,8.387,-0.106,5.673,0.0,0.815,0.0,5.174,-9.566,-2.669,0.0,0.019,-0.194,-0.015,2.835,0.033,-0.65,10.852,0.0,0.0,0.0,-6.166,-0.102,-0.933,-3.928,-0.145,0.0,3.15,7.529,1.841 +base-schedules-detailed-all-10-mins.xml,22.32,0.0,14.382,9.045,0.633,0.0,0.0,0.0,3.846,3.922,0.552,7.669,0.696,10.875,-13.513,0.0,0.0,0.0,8.388,-0.094,5.749,0.0,0.821,0.0,5.325,-9.571,-2.67,0.0,0.038,-0.211,-0.018,2.834,0.027,-0.676,10.836,0.0,0.0,0.0,-6.176,-0.088,-0.923,-3.777,-0.116,0.0,3.363,7.554,1.839 +base-schedules-detailed-mixed-timesteps-power-outage.xml,4.713,0.0,8.927,7.282,0.558,0.0,0.0,0.0,2.699,2.54,0.354,4.285,0.356,6.718,-13.012,0.0,0.0,0.0,3.932,-0.086,3.54,0.0,0.404,0.0,1.08,-6.675,-1.688,0.0,-0.156,-0.445,-0.05,2.547,-0.026,-1.358,11.341,0.0,0.0,0.0,-7.086,-0.04,-1.178,-6.43,-0.166,0.0,2.187,7.989,1.931 +base-schedules-detailed-mixed-timesteps.xml,7.752,0.0,8.974,9.045,0.667,0.0,0.0,0.0,3.0,2.893,0.405,5.411,0.443,7.762,-13.0,0.0,0.0,0.0,5.767,-0.042,4.031,0.0,0.606,0.0,1.827,-9.054,-2.578,0.0,-0.159,-0.448,-0.051,2.552,-0.027,-1.366,11.348,0.0,0.0,0.0,-7.028,-0.04,-1.18,-6.448,-0.167,0.0,2.197,7.994,1.932 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,21.867,0.0,13.983,9.075,0.615,0.0,0.0,0.0,3.821,3.881,0.545,7.618,0.681,10.752,-13.53,0.0,0.0,0.0,8.391,-0.104,5.677,0.0,0.809,0.0,5.181,-9.534,-2.666,0.0,0.009,-0.203,-0.016,2.828,0.03,-0.682,10.879,0.0,0.0,0.0,-6.174,-0.099,-0.95,-3.949,-0.127,0.0,3.151,7.572,1.844 +base-schedules-detailed-occupancy-stochastic-no-space-cooling.xml,21.835,0.0,8.751,9.079,0.607,0.0,0.0,0.0,3.819,3.879,0.545,7.615,0.681,10.74,-13.529,0.0,0.0,0.0,8.363,-0.1,5.673,0.0,0.809,0.0,5.172,-9.526,-2.658,0.0,-0.108,-0.39,-0.043,2.287,-0.017,-1.257,10.879,0.0,0.0,0.0,-6.892,-0.096,-1.12,-5.571,-0.157,0.0,1.889,7.587,1.852 +base-schedules-detailed-occupancy-stochastic-no-space-heating.xml,19.059,0.0,13.973,9.079,0.62,0.0,0.0,0.0,3.755,3.774,0.53,7.204,0.656,10.444,-13.529,0.0,0.0,0.0,7.502,-0.167,5.478,0.0,0.778,0.0,4.482,-9.523,-2.66,0.0,0.008,-0.203,-0.016,2.827,0.031,-0.683,10.879,0.0,0.0,0.0,-6.174,-0.1,-0.95,-3.949,-0.127,0.0,3.146,7.561,1.85 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,13.852,0.0,13.896,7.286,0.519,0.0,0.0,0.0,3.365,3.296,0.462,5.78,0.538,9.013,-13.538,0.0,0.0,0.0,5.225,-0.202,4.746,0.0,0.541,0.0,3.199,-7.138,-1.782,0.0,0.013,-0.199,-0.015,2.817,0.032,-0.664,10.875,0.0,0.0,0.0,-6.247,-0.104,-0.944,-3.932,-0.127,0.0,3.131,7.542,1.846 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,25.561,0.0,13.972,7.283,0.615,0.0,0.0,0.0,3.76,3.858,0.542,7.541,0.676,10.69,-13.534,0.0,0.0,0.0,8.234,-0.105,5.728,0.0,0.542,0.0,5.964,-6.902,-1.772,0.0,0.008,-0.203,-0.016,2.827,0.031,-0.683,10.879,0.0,0.0,0.0,-6.175,-0.1,-0.95,-3.949,-0.127,0.0,3.146,7.561,1.85 +base-schedules-detailed-occupancy-stochastic.xml,21.872,0.0,13.975,9.079,0.615,0.0,0.0,0.0,3.82,3.88,0.545,7.616,0.681,10.75,-13.529,0.0,0.0,0.0,8.391,-0.104,5.676,0.0,0.809,0.0,5.181,-9.533,-2.66,0.0,0.008,-0.203,-0.016,2.827,0.031,-0.683,10.879,0.0,0.0,0.0,-6.173,-0.1,-0.95,-3.949,-0.127,0.0,3.146,7.561,1.85 base-schedules-detailed-setpoints-daily-schedules.xml,22.592,0.0,12.158,9.07,0.616,0.0,0.0,0.0,3.805,3.861,0.541,7.602,0.672,10.639,-13.643,0.0,0.0,0.0,8.854,-0.073,5.224,0.0,0.777,0.0,5.32,-8.488,-2.678,0.0,0.073,-0.182,-0.014,2.779,0.032,-0.667,10.765,0.0,0.0,0.0,-6.363,-0.083,-0.868,-4.381,-0.115,0.0,2.518,7.09,1.829 base-schedules-detailed-setpoints-daily-setbacks.xml,21.436,0.0,12.677,9.07,0.617,0.0,0.0,0.0,3.783,3.823,0.535,7.475,0.645,10.34,-13.898,0.0,0.0,0.0,8.476,0.033,5.099,0.0,0.77,0.0,4.989,-8.491,-2.682,0.0,0.058,-0.193,-0.017,2.8,0.011,-0.889,10.51,0.0,0.0,0.0,-6.2,0.032,-0.902,-4.233,-0.121,0.0,2.817,7.085,1.825 base-schedules-detailed-setpoints.xml,7.871,0.0,8.299,9.07,0.65,0.0,0.0,0.0,2.98,2.838,0.396,5.3,0.423,7.588,-13.12,0.0,0.0,0.0,5.694,-0.037,3.611,0.0,0.579,0.0,1.838,-7.994,-2.559,0.0,-0.169,-0.421,-0.046,2.579,-0.022,-1.33,11.288,0.0,0.0,0.0,-6.966,-0.037,-1.074,-6.646,-0.16,0.0,1.964,7.508,1.948 @@ -440,10 +441,20 @@ base-simcontrol-daylight-saving-custom.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0, base-simcontrol-daylight-saving-disabled.xml,22.49,0.0,13.692,9.07,0.615,0.0,0.0,0.0,3.817,3.882,0.545,7.575,0.682,10.756,-13.57,0.0,0.0,0.0,8.366,-0.113,5.26,0.0,0.765,0.0,5.319,-8.483,-2.666,0.0,0.028,-0.188,-0.014,2.827,0.035,-0.636,10.838,0.0,0.0,0.0,-6.135,-0.109,-0.848,-3.901,-0.116,0.0,3.088,7.098,1.841 base-simcontrol-runperiod-1-month.xml,8.113,0.0,0.0,0.9243,0.0547,0.0,0.0,0.0,0.5951,0.6589,0.0933,2.0506,0.1156,1.829,-2.3726,0.0,0.0,0.0,3.8041,0.0129,0.945,0.0,0.1225,0.0,1.8606,-1.2712,-0.3948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-simcontrol-temperature-capacitance-multiplier.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,22.292,0.0,14.398,9.073,0.617,0.0,0.0,0.0,3.854,3.927,0.552,7.664,0.697,10.892,-13.526,0.0,0.0,0.0,8.386,-0.097,5.739,0.0,0.813,0.0,5.319,-9.58,-2.674,0.0,0.047,-0.204,-0.017,2.835,0.03,-0.652,10.822,0.0,0.0,0.0,-6.168,-0.092,-0.91,-3.754,-0.146,0.0,3.365,7.529,1.836 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,22.235,0.0,14.392,9.07,0.615,0.0,0.0,0.0,3.852,3.925,0.552,7.662,0.697,10.891,-13.515,0.0,0.0,0.0,8.382,-0.097,5.687,0.0,0.809,0.0,5.307,-9.574,-2.668,0.0,0.045,-0.206,-0.017,2.833,0.029,-0.653,10.834,0.0,0.0,0.0,-6.172,-0.092,-0.9,-3.759,-0.148,0.0,3.361,7.52,1.842 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,22.331,0.0,14.377,9.075,0.617,0.0,0.0,0.0,3.847,3.923,0.552,7.669,0.696,10.876,-13.514,0.0,0.0,0.0,8.387,-0.094,5.749,0.0,0.821,0.0,5.327,-9.562,-2.671,0.0,0.038,-0.21,-0.018,2.833,0.027,-0.675,10.835,0.0,0.0,0.0,-6.177,-0.088,-0.923,-3.776,-0.116,0.0,3.363,7.547,1.839 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,22.276,0.0,14.371,9.08,0.615,0.0,0.0,0.0,3.845,3.921,0.551,7.669,0.696,10.872,-13.506,0.0,0.0,0.0,8.389,-0.092,5.691,0.0,0.815,0.0,5.316,-9.556,-2.663,0.0,0.036,-0.212,-0.018,2.832,0.027,-0.679,10.842,0.0,0.0,0.0,-6.175,-0.087,-0.913,-3.781,-0.123,0.0,3.359,7.539,1.846 base-simcontrol-timestep-10-mins.xml,22.899,0.0,14.138,9.07,0.615,0.0,0.0,0.0,3.841,3.919,0.551,7.619,0.697,10.888,-13.519,0.0,0.0,0.0,8.349,-0.108,5.261,0.0,0.779,0.0,5.458,-8.493,-2.669,0.0,0.054,-0.2,-0.017,2.828,0.032,-0.621,10.83,0.0,0.0,0.0,-6.154,-0.103,-0.807,-3.714,-0.119,0.0,3.325,7.088,1.838 base-simcontrol-timestep-30-mins.xml,22.761,0.0,13.957,9.07,0.615,0.0,0.0,0.0,3.834,3.905,0.549,7.601,0.692,10.847,-13.541,0.0,0.0,0.0,8.359,-0.108,5.255,0.0,0.775,0.0,5.405,-8.484,-2.666,0.0,0.028,-0.2,-0.016,2.836,0.032,-0.642,10.833,0.0,0.0,0.0,-6.137,-0.104,-0.821,-3.775,-0.119,0.0,3.22,7.098,1.841 +base-vehicle-ev-charger-level1.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-charger-miles-per-kwh.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-charger-mpge.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-charger-occupancy-stochastic.xml,23.584,0.0,9.343,9.079,0.728,0.0,0.0,0.0,3.919,4.132,0.548,5.947,0.669,8.941,-7.651,0.0,0.0,0.0,6.691,-0.087,5.884,0.0,0.0,0.0,4.822,-7.657,-2.798,0.0,0.331,0.045,0.011,2.536,0.057,-0.358,7.279,0.0,0.0,0.0,-5.515,-0.084,-0.773,-2.719,0.0,0.0,1.658,5.25,1.712 +base-vehicle-ev-charger-plug-load-ev.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-charger-scheduled.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-charger-undercharged.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-charger.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-ev-no-charger.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 +base-vehicle-multiple.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 base-zones-spaces-multiple.xml,24.782,0.0,9.034,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 base-zones-spaces.xml,24.787,0.0,9.038,9.07,0.726,0.0,0.0,0.0,3.922,4.132,0.549,5.912,0.671,8.971,-7.705,0.0,0.0,0.0,6.683,-0.101,5.907,0.0,0.0,0.0,5.048,-6.613,-2.816,0.0,0.355,0.069,0.014,2.548,0.064,-0.291,7.225,0.0,0.0,0.0,-5.461,-0.098,-0.74,-2.654,0.0,0.0,1.614,4.783,1.691 base.xml,22.503,0.0,13.745,9.07,0.615,0.0,0.0,0.0,3.819,3.882,0.545,7.57,0.682,10.76,-13.571,0.0,0.0,0.0,8.363,-0.116,5.259,0.0,0.77,0.0,5.323,-8.475,-2.662,0.0,0.029,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.113,7.106,1.845 diff --git a/workflow/tests/test_other.rb b/workflow/tests/test_other.rb index 59a6df1c52..1da4549bdc 100644 --- a/workflow/tests/test_other.rb +++ b/workflow/tests/test_other.rb @@ -135,8 +135,10 @@ def test_run_simulation_timeseries_outputs command += ' --hourly ALL' command += " --hourly 'Zone People Occupant Count'" command += " --hourly 'Zone People Total Heating Energy'" + command += " --hourly 'MainsWater:Facility'" end command += " --hourly 'Foobar Variable'" # Test invalid output variable request + command += " --hourly 'Foobar:Meter'" # Test invalid output variable request system(command, err: File::NULL) # Check for output files @@ -151,22 +153,34 @@ def test_run_simulation_timeseries_outputs assert_equal(1, timeseries_rows[0].count { |r| r == 'Time' }) assert_equal(1, timeseries_rows[0].count { |r| r == 'Zone People Occupant Count: Conditioned Space' }) assert_equal(1, timeseries_rows[0].count { |r| r == 'Zone People Total Heating Energy: Conditioned Space' }) + assert_equal(1, timeseries_rows[0].count { |r| r == 'MainsWater:Facility' }) else refute(File.exist? timeseries_output_path) end - # Check run.log has warning about missing Foobar Variable + # Check run.log has warning about missing Foobar Variable & Meter assert(File.exist? File.join(File.dirname(xml), 'run', 'run.log')) log_lines = File.readlines(File.join(File.dirname(xml), 'run', 'run.log')).map(&:strip) - assert(log_lines.include? "Warning: Request for output variable 'Foobar Variable' returned no key values.") + assert(log_lines.include? "Warning: Request for output variable 'Foobar Variable' returned no results.") + assert(log_lines.include? "Warning: Request for output meter 'Foobar:Meter' returned no results.") end end + def test_run_simulation_timeseries_outputs_comma + # Check that the simulation produces timeseries with requested outputs + rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') + xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --hourly 'Zone People Occupant Count,MainsWater:Facility'" + success = system(command, err: File::NULL) + + refute(success) + end + def test_run_simulation_mixed_timeseries_frequencies # Check that we can correctly skip the EnergyPlus simulation and reporting measures rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --timestep weather --hourly enduses --daily temperatures --monthly ALL --monthly 'Zone People Total Heating Energy'" + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --timestep weather --hourly enduses --daily temperatures --monthly ALL --monthly 'Zone People Total Heating Energy' --daily 'MainsWater:Facility'" system(command, err: File::NULL) # Check for output files @@ -180,7 +194,7 @@ def test_run_simulation_mixed_timeseries_frequencies # Check timeseries columns exist { 'timestep' => ['Weather:'], 'hourly' => ['End Use:'], - 'daily' => ['Temperature:'], + 'daily' => ['Temperature:', 'MainsWater:Facility'], 'monthly' => ['End Use:', 'Fuel Use:', 'Zone People Total Heating Energy:'] }.each do |freq, col_names| timeseries_rows = CSV.read(File.join(File.dirname(xml), 'run', "results_timeseries_#{freq}.csv")) assert_equal(1, timeseries_rows[0].count { |r| r == 'Time' }) diff --git a/workflow/tests/util.rb b/workflow/tests/util.rb index bd2bacdb97..6f38f2d663 100644 --- a/workflow/tests/util.rb +++ b/workflow/tests/util.rb @@ -50,6 +50,9 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, annual_results_1x = # FUTURE: Batteries currently don't work with whole SFA/MF buildings # https://github.com/NREL/OpenStudio-HPXML/issues/1499 return + elsif hpxml_bldg.vehicles.size > 0 + # Same as battery issue above + return elsif hpxml.header.hvac_onoff_thermostat_deadband # On off thermostat not supported with unit multiplier yet elsif hpxml.header.heat_pump_backup_heating_capacity_increment @@ -227,6 +230,18 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) if hpxml_bldg.pv_systems.empty? && !hpxml_bldg.batteries.empty? && hpxml_bldg.header.schedules_filepaths.empty? next if message.include? 'Battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled.' end + if hpxml_bldg.vehicles.any? { |vehicle| vehicle.vehicle_type == HPXML::VehicleTypeBEV && vehicle.ev_charger_idref.nil? } + next if message.include? 'Electric vehicle specified with no charger provided; home EV charging will not be modeled.' + end + if hpxml_bldg.vehicles.any? { |vehicle| vehicle.vehicle_type == HPXML::VehicleTypeBEV && !vehicle.ev_charger_idref.nil? && vehicle.ev_weekday_fractions.nil? } && !hpxml_bldg.header.schedules_filepaths.empty? + next if message.include? 'driving hours could not be met' + end + if hpxml_bldg.vehicles.any? { |vehicle| vehicle.vehicle_type == HPXML::VehicleTypeBEV } && hpxml_bldg.plug_loads.any? { |p| p.plug_load_type == HPXML::PlugLoadTypeElectricVehicleCharging } + next if message.include? 'Electric vehicle charging was specified as both a PlugLoad and a Vehicle, the latter will be ignored.' + end + if hpxml_bldg.vehicles.any? { |vehicle| vehicle.vehicle_type != HPXML::VehicleTypeBEV } + next if message.include?('Vehicle type') && message.include?('is not currently handled, the vehicle will not be modeled') + end if hpxml_path.include? 'base-location-capetown-zaf.xml' next if message.include? 'OS Message: Minutes field (60) on line 9 of EPW file' next if message.include? 'Could not find a marginal Electricity rate.'